@rendobar/sdk 5.3.0 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -28,6 +28,16 @@
28
28
 
29
29
  `@rendobar/sdk` is the official TypeScript client for [Rendobar](https://rendobar.com), a serverless media processing API. You submit a job, the SDK polls it to completion, and you get back a hosted URL. It ships ESM and CJS builds with full types, retries 429 and 5xx automatically, auto-paginates, and accepts an `AbortSignal` on every method.
30
30
 
31
+ ## Let your AI assistant do it
32
+
33
+ Paste this one line into Claude, ChatGPT, or Cursor and the assistant reads the
34
+ full integration playbook, detects your stack, and wires Rendobar into your
35
+ codebase. Your API key stays in your env file, never in the chat.
36
+
37
+ ```text
38
+ Add Rendobar to my app: read and follow https://rendobar.com/prompts/integrate.md
39
+ ```
40
+
31
41
  ## Requirements
32
42
 
33
43
  Node 18 or later. Works in any runtime with `fetch`, including Cloudflare Workers, Deno, and Bun.
package/dist/index.d.cts CHANGED
@@ -3020,6 +3020,9 @@ declare const orgEventSchema: ZodDiscriminatedUnion<[ZodObject<{
3020
3020
  status: ZodString;
3021
3021
  cancelAtPeriodEnd: ZodOptional<ZodBoolean>;
3022
3022
  timestamp: ZodOptional<ZodNumber>;
3023
+ }, $strip>, ZodObject<{
3024
+ type: ZodLiteral<"apikeys.updated">;
3025
+ timestamp: ZodOptional<ZodNumber>;
3023
3026
  }, $strip>, ZodObject<{
3024
3027
  type: ZodLiteral<"notification">;
3025
3028
  severity: ZodEnum<{
package/dist/index.d.mts CHANGED
@@ -3020,6 +3020,9 @@ declare const orgEventSchema: ZodDiscriminatedUnion<[ZodObject<{
3020
3020
  status: ZodString;
3021
3021
  cancelAtPeriodEnd: ZodOptional<ZodBoolean>;
3022
3022
  timestamp: ZodOptional<ZodNumber>;
3023
+ }, $strip>, ZodObject<{
3024
+ type: ZodLiteral<"apikeys.updated">;
3025
+ timestamp: ZodOptional<ZodNumber>;
3023
3026
  }, $strip>, ZodObject<{
3024
3027
  type: ZodLiteral<"notification">;
3025
3028
  severity: ZodEnum<{
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@rendobar/sdk",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "type": "module",
5
- "description": "TypeScript client for the Rendobar media processing API",
5
+ "description": "Rendobar SDK: TypeScript client for the media processing and AI generation API.",
6
6
  "license": "MIT",
7
7
  "homepage": "https://rendobar.com/docs/sdk",
8
8
  "repository": {