@openrouter/sdk 1.2.67 → 1.2.69

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.
@@ -50,8 +50,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
50
50
  export declare const SDK_METADATA: {
51
51
  readonly language: "typescript";
52
52
  readonly openapiDocVersion: "1.0.0";
53
- readonly sdkVersion: "1.2.67";
53
+ readonly sdkVersion: "1.2.69";
54
54
  readonly genVersion: "2.914.0";
55
- readonly userAgent: "speakeasy-sdk/typescript 1.2.67 2.914.0 1.0.0 @openrouter/sdk";
55
+ readonly userAgent: "speakeasy-sdk/typescript 1.2.69 2.914.0 1.0.0 @openrouter/sdk";
56
56
  };
57
57
  //# sourceMappingURL=config.d.ts.map
package/esm/lib/config.js CHANGED
@@ -29,8 +29,8 @@ export function serverURLFromOptions(options) {
29
29
  export const SDK_METADATA = {
30
30
  language: "typescript",
31
31
  openapiDocVersion: "1.0.0",
32
- sdkVersion: "1.2.67",
32
+ sdkVersion: "1.2.69",
33
33
  genVersion: "2.914.0",
34
- userAgent: "speakeasy-sdk/typescript 1.2.67 2.914.0 1.0.0 @openrouter/sdk",
34
+ userAgent: "speakeasy-sdk/typescript 1.2.69 2.914.0 1.0.0 @openrouter/sdk",
35
35
  };
36
36
  //# sourceMappingURL=config.js.map
@@ -74,7 +74,7 @@ export type CreateGuardrailRequest = {
74
74
  */
75
75
  includeByokInBudgets?: boolean | undefined;
76
76
  /**
77
- * Spending limit in USD
77
+ * Spending limit in USD. Must be provided together with `reset_interval`: a request that sets only one of the two is rejected with a 400.
78
78
  */
79
79
  limitUsd?: number | null | undefined;
80
80
  /**
@@ -11,6 +11,7 @@ export declare const Billable: {
11
11
  };
12
12
  export type Billable = OpenEnum<typeof Billable>;
13
13
  export declare const Unit: {
14
+ readonly Request: "request";
14
15
  readonly Image: "image";
15
16
  readonly Megapixel: "megapixel";
16
17
  readonly Token: "token";
@@ -14,6 +14,7 @@ export const Billable = {
14
14
  InputText: "input_text",
15
15
  };
16
16
  export const Unit = {
17
+ Request: "request",
17
18
  Image: "image",
18
19
  Megapixel: "megapixel",
19
20
  Token: "token",
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@openrouter/sdk",
5
- "version": "1.2.67",
5
+ "version": "1.2.69",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openrouter/sdk",
3
- "version": "1.2.67",
3
+ "version": "1.2.69",
4
4
  "author": "OpenRouter",
5
5
  "description": "The OpenRouter TypeScript SDK is a type-safe toolkit for building AI applications with access to 400+ language models through a unified API.",
6
6
  "keywords": [
@@ -21,8 +21,8 @@
21
21
  "license": "Apache-2.0",
22
22
  "packageManager": "pnpm@10.22.0",
23
23
  "publishConfig": {
24
- "access": "public",
25
- "provenance": true
24
+ "provenance": true,
25
+ "access": "public"
26
26
  },
27
27
  "type": "module",
28
28
  "main": "./esm/index.js",
@@ -73,14 +73,14 @@
73
73
  "lint": "eslint --cache --max-warnings=0 src",
74
74
  "build": "tsc",
75
75
  "prepublishOnly": "npm run build",
76
+ "typecheck": "tsc --noEmit",
77
+ "typecheck:transit": "exit 0",
78
+ "compile": "tsc",
76
79
  "postinstall": "node scripts/check-types.js || true",
77
80
  "prepare": "npm run build",
78
81
  "test": "vitest --run --project unit",
79
82
  "test:e2e": "vitest --run --project e2e",
80
83
  "test:transit": "exit 0",
81
- "typecheck": "tsc --noEmit",
82
- "typecheck:transit": "exit 0",
83
- "compile": "tsc",
84
84
  "test:watch": "vitest --watch --project unit"
85
85
  },
86
86
  "peerDependencies": {},