@unified-api/typescript-sdk 2.46.0 → 2.48.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/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@unified-api/typescript-sdk",
5
- "version": "2.46.0",
5
+ "version": "2.48.0",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./sdk/models/errors": "./src/sdk/models/errors/index.ts",
package/lib/config.d.ts CHANGED
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
31
31
  export declare const SDK_METADATA: {
32
32
  readonly language: "typescript";
33
33
  readonly openapiDocVersion: "1.0";
34
- readonly sdkVersion: "2.46.0";
34
+ readonly sdkVersion: "2.48.0";
35
35
  readonly genVersion: "2.522.1";
36
- readonly userAgent: "speakeasy-sdk/typescript 2.46.0 2.522.1 1.0 @unified-api/typescript-sdk";
36
+ readonly userAgent: "speakeasy-sdk/typescript 2.48.0 2.522.1 1.0 @unified-api/typescript-sdk";
37
37
  };
38
38
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -39,8 +39,8 @@ function serverURLFromOptions(options) {
39
39
  exports.SDK_METADATA = {
40
40
  language: "typescript",
41
41
  openapiDocVersion: "1.0",
42
- sdkVersion: "2.46.0",
42
+ sdkVersion: "2.48.0",
43
43
  genVersion: "2.522.1",
44
- userAgent: "speakeasy-sdk/typescript 2.46.0 2.522.1 1.0 @unified-api/typescript-sdk",
44
+ userAgent: "speakeasy-sdk/typescript 2.48.0 2.522.1 1.0 @unified-api/typescript-sdk",
45
45
  };
46
46
  //# sourceMappingURL=config.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unified-api/typescript-sdk",
3
- "version": "2.46.0",
3
+ "version": "2.48.0",
4
4
  "author": "Unified",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
@@ -10,7 +10,7 @@ export declare const ContentType: {
10
10
  };
11
11
  export type ContentType = ClosedEnum<typeof ContentType>;
12
12
  export declare const KmsCommentType: {
13
- readonly PageInline: "PAGE-INLINE";
13
+ readonly PageInline: "PAGE_INLINE";
14
14
  readonly Page: "PAGE";
15
15
  };
16
16
  export type KmsCommentType = ClosedEnum<typeof KmsCommentType>;
@@ -63,12 +63,12 @@ export declare const KmsCommentType$outboundSchema: z.ZodNativeEnum<typeof KmsCo
63
63
  export declare namespace KmsCommentType$ {
64
64
  /** @deprecated use `KmsCommentType$inboundSchema` instead. */
65
65
  const inboundSchema: z.ZodNativeEnum<{
66
- readonly PageInline: "PAGE-INLINE";
66
+ readonly PageInline: "PAGE_INLINE";
67
67
  readonly Page: "PAGE";
68
68
  }>;
69
69
  /** @deprecated use `KmsCommentType$outboundSchema` instead. */
70
70
  const outboundSchema: z.ZodNativeEnum<{
71
- readonly PageInline: "PAGE-INLINE";
71
+ readonly PageInline: "PAGE_INLINE";
72
72
  readonly Page: "PAGE";
73
73
  }>;
74
74
  }
@@ -39,7 +39,7 @@ exports.ContentType = {
39
39
  Other: "OTHER",
40
40
  };
41
41
  exports.KmsCommentType = {
42
- PageInline: "PAGE-INLINE",
42
+ PageInline: "PAGE_INLINE",
43
43
  Page: "PAGE",
44
44
  };
45
45
  /** @internal */
package/src/lib/config.ts CHANGED
@@ -69,8 +69,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
69
69
  export const SDK_METADATA = {
70
70
  language: "typescript",
71
71
  openapiDocVersion: "1.0",
72
- sdkVersion: "2.46.0",
72
+ sdkVersion: "2.48.0",
73
73
  genVersion: "2.522.1",
74
74
  userAgent:
75
- "speakeasy-sdk/typescript 2.46.0 2.522.1 1.0 @unified-api/typescript-sdk",
75
+ "speakeasy-sdk/typescript 2.48.0 2.522.1 1.0 @unified-api/typescript-sdk",
76
76
  } as const;
@@ -18,7 +18,7 @@ export const ContentType = {
18
18
  export type ContentType = ClosedEnum<typeof ContentType>;
19
19
 
20
20
  export const KmsCommentType = {
21
- PageInline: "PAGE-INLINE",
21
+ PageInline: "PAGE_INLINE",
22
22
  Page: "PAGE",
23
23
  } as const;
24
24
  export type KmsCommentType = ClosedEnum<typeof KmsCommentType>;