@gr4vy/sdk 2.4.5 → 2.4.6

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/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@gr4vy/sdk",
5
- "version": "2.4.5",
5
+ "version": "2.4.6",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/lib/config.d.ts CHANGED
@@ -44,8 +44,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
44
44
  export declare const SDK_METADATA: {
45
45
  readonly language: "typescript";
46
46
  readonly openapiDocVersion: "1.0.0";
47
- readonly sdkVersion: "2.4.5";
48
- readonly genVersion: "2.926.8";
49
- readonly userAgent: "speakeasy-sdk/typescript 2.4.5 2.926.8 1.0.0 @gr4vy/sdk";
47
+ readonly sdkVersion: "2.4.6";
48
+ readonly genVersion: "2.927.0";
49
+ readonly userAgent: "speakeasy-sdk/typescript 2.4.6 2.927.0 1.0.0 @gr4vy/sdk";
50
50
  };
51
51
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -37,8 +37,8 @@ function serverURLFromOptions(options) {
37
37
  exports.SDK_METADATA = {
38
38
  language: "typescript",
39
39
  openapiDocVersion: "1.0.0",
40
- sdkVersion: "2.4.5",
41
- genVersion: "2.926.8",
42
- userAgent: "speakeasy-sdk/typescript 2.4.5 2.926.8 1.0.0 @gr4vy/sdk",
40
+ sdkVersion: "2.4.6",
41
+ genVersion: "2.927.0",
42
+ userAgent: "speakeasy-sdk/typescript 2.4.6 2.927.0 1.0.0 @gr4vy/sdk",
43
43
  };
44
44
  //# sourceMappingURL=config.js.map
@@ -11,7 +11,7 @@ export type APIKeyPairCreate = {
11
11
  */
12
12
  active?: boolean | undefined;
13
13
  /**
14
- * The ID of the role to assign to the API key pair. Exactly one role is supported. The caller can only assign a role whose scopes are a subset of its own.
14
+ * The IDs of the roles to assign to the API key pair. The caller can only assign roles whose scopes are a subset of its own.
15
15
  */
16
16
  roleIds: Array<string>;
17
17
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gr4vy/sdk",
3
- "version": "2.4.5",
3
+ "version": "2.4.6",
4
4
  "author": "Gr4vy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
package/src/lib/config.ts CHANGED
@@ -77,7 +77,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
77
77
  export const SDK_METADATA = {
78
78
  language: "typescript",
79
79
  openapiDocVersion: "1.0.0",
80
- sdkVersion: "2.4.5",
81
- genVersion: "2.926.8",
82
- userAgent: "speakeasy-sdk/typescript 2.4.5 2.926.8 1.0.0 @gr4vy/sdk",
80
+ sdkVersion: "2.4.6",
81
+ genVersion: "2.927.0",
82
+ userAgent: "speakeasy-sdk/typescript 2.4.6 2.927.0 1.0.0 @gr4vy/sdk",
83
83
  } as const;
@@ -20,7 +20,7 @@ export type APIKeyPairCreate = {
20
20
  */
21
21
  active?: boolean | undefined;
22
22
  /**
23
- * The ID of the role to assign to the API key pair. Exactly one role is supported. The caller can only assign a role whose scopes are a subset of its own.
23
+ * The IDs of the roles to assign to the API key pair. The caller can only assign roles whose scopes are a subset of its own.
24
24
  */
25
25
  roleIds: Array<string>;
26
26
  /**