July 20, 2026
@aishorty/sdk 0.1.0 — Shorty changelog
The official TypeScript SDK: typed resources, auto-idempotent writes, retry with backoff, cursor auto-pagination, jobs.waitFor, and webhook verification.
A hand-written, dependency-light TypeScript client for the Shorty API, open-sourced at github.com/DevinoSolutions/shorty-sdk. @aishorty/sdk is the package name.
import { Shorty } from '@aishorty/sdk'
const shorty = new Shorty({ apiKey: process.env.SHORTY_API_KEY })
const job = await shorty.summaries.create({
source: 'youtube',
url: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
})
const done = await shorty.jobs.waitFor(job.job_id)- Typed wire DTOs for every resource.
- Automatic
Idempotency-Keyon writes; safe retries with backoff. for awaitcursor auto-pagination.verifyWebhookSignaturefor Standard-Webhooks receivers.