@seamapi/types 1.556.0 → 1.557.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/dist/connect.cjs +25 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +54 -0
- package/dist/index.cjs +25 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -0
- package/lib/seam/connect/models/workspaces/workspace.d.ts +6 -0
- package/lib/seam/connect/models/workspaces/workspace.js +7 -0
- package/lib/seam/connect/models/workspaces/workspace.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +17 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/workspaces/workspace.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +21 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
package/dist/connect.d.cts
CHANGED
|
@@ -10393,6 +10393,8 @@ declare const batch: z.ZodObject<{
|
|
|
10393
10393
|
}>;
|
|
10394
10394
|
is_suspended: z.ZodBoolean;
|
|
10395
10395
|
connect_partner_name: z.ZodNullable<z.ZodNullable<z.ZodString>>;
|
|
10396
|
+
publishable_key: z.ZodOptional<z.ZodString>;
|
|
10397
|
+
is_publishable_key_auth_enabled: z.ZodBoolean;
|
|
10396
10398
|
}, "strip", z.ZodTypeAny, {
|
|
10397
10399
|
name: string;
|
|
10398
10400
|
workspace_id: string;
|
|
@@ -10407,6 +10409,8 @@ declare const batch: z.ZodObject<{
|
|
|
10407
10409
|
inviter_logo_url?: string | undefined;
|
|
10408
10410
|
};
|
|
10409
10411
|
connect_partner_name: string | null;
|
|
10412
|
+
is_publishable_key_auth_enabled: boolean;
|
|
10413
|
+
publishable_key?: string | undefined;
|
|
10410
10414
|
}, {
|
|
10411
10415
|
name: string;
|
|
10412
10416
|
workspace_id: string;
|
|
@@ -10421,6 +10425,8 @@ declare const batch: z.ZodObject<{
|
|
|
10421
10425
|
inviter_logo_url?: string | undefined;
|
|
10422
10426
|
};
|
|
10423
10427
|
connect_partner_name: string | null;
|
|
10428
|
+
is_publishable_key_auth_enabled: boolean;
|
|
10429
|
+
publishable_key?: string | undefined;
|
|
10424
10430
|
}>, "many">>;
|
|
10425
10431
|
spaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10426
10432
|
space_id: z.ZodString;
|
|
@@ -31915,6 +31921,8 @@ declare const batch: z.ZodObject<{
|
|
|
31915
31921
|
inviter_logo_url?: string | undefined;
|
|
31916
31922
|
};
|
|
31917
31923
|
connect_partner_name: string | null;
|
|
31924
|
+
is_publishable_key_auth_enabled: boolean;
|
|
31925
|
+
publishable_key?: string | undefined;
|
|
31918
31926
|
}[] | undefined;
|
|
31919
31927
|
acs_users?: {
|
|
31920
31928
|
display_name: string;
|
|
@@ -35818,6 +35826,8 @@ declare const batch: z.ZodObject<{
|
|
|
35818
35826
|
inviter_logo_url?: string | undefined;
|
|
35819
35827
|
};
|
|
35820
35828
|
connect_partner_name: string | null;
|
|
35829
|
+
is_publishable_key_auth_enabled: boolean;
|
|
35830
|
+
publishable_key?: string | undefined;
|
|
35821
35831
|
}[] | undefined;
|
|
35822
35832
|
acs_users?: {
|
|
35823
35833
|
display_name: string;
|
|
@@ -51369,6 +51379,8 @@ declare const workspace: z.ZodObject<{
|
|
|
51369
51379
|
}>;
|
|
51370
51380
|
is_suspended: z.ZodBoolean;
|
|
51371
51381
|
connect_partner_name: z.ZodNullable<z.ZodNullable<z.ZodString>>;
|
|
51382
|
+
publishable_key: z.ZodOptional<z.ZodString>;
|
|
51383
|
+
is_publishable_key_auth_enabled: z.ZodBoolean;
|
|
51372
51384
|
}, "strip", z.ZodTypeAny, {
|
|
51373
51385
|
name: string;
|
|
51374
51386
|
workspace_id: string;
|
|
@@ -51383,6 +51395,8 @@ declare const workspace: z.ZodObject<{
|
|
|
51383
51395
|
inviter_logo_url?: string | undefined;
|
|
51384
51396
|
};
|
|
51385
51397
|
connect_partner_name: string | null;
|
|
51398
|
+
is_publishable_key_auth_enabled: boolean;
|
|
51399
|
+
publishable_key?: string | undefined;
|
|
51386
51400
|
}, {
|
|
51387
51401
|
name: string;
|
|
51388
51402
|
workspace_id: string;
|
|
@@ -51397,6 +51411,8 @@ declare const workspace: z.ZodObject<{
|
|
|
51397
51411
|
inviter_logo_url?: string | undefined;
|
|
51398
51412
|
};
|
|
51399
51413
|
connect_partner_name: string | null;
|
|
51414
|
+
is_publishable_key_auth_enabled: boolean;
|
|
51415
|
+
publishable_key?: string | undefined;
|
|
51400
51416
|
}>;
|
|
51401
51417
|
type Workspace = z.infer<typeof workspace>;
|
|
51402
51418
|
|
|
@@ -65629,6 +65645,10 @@ declare const _default: {
|
|
|
65629
65645
|
};
|
|
65630
65646
|
type: string;
|
|
65631
65647
|
};
|
|
65648
|
+
is_publishable_key_auth_enabled: {
|
|
65649
|
+
description: string;
|
|
65650
|
+
type: string;
|
|
65651
|
+
};
|
|
65632
65652
|
is_sandbox: {
|
|
65633
65653
|
description: string;
|
|
65634
65654
|
type: string;
|
|
@@ -65641,6 +65661,10 @@ declare const _default: {
|
|
|
65641
65661
|
description: string;
|
|
65642
65662
|
type: string;
|
|
65643
65663
|
};
|
|
65664
|
+
publishable_key: {
|
|
65665
|
+
description: string;
|
|
65666
|
+
type: string;
|
|
65667
|
+
};
|
|
65644
65668
|
workspace_id: {
|
|
65645
65669
|
description: string;
|
|
65646
65670
|
format: string;
|
|
@@ -103444,6 +103468,10 @@ declare const _default: {
|
|
|
103444
103468
|
};
|
|
103445
103469
|
type: string;
|
|
103446
103470
|
};
|
|
103471
|
+
is_publishable_key_auth_enabled: {
|
|
103472
|
+
description: string;
|
|
103473
|
+
type: string;
|
|
103474
|
+
};
|
|
103447
103475
|
is_suspended: {
|
|
103448
103476
|
description: string;
|
|
103449
103477
|
type: string;
|
|
@@ -103528,6 +103556,10 @@ declare const _default: {
|
|
|
103528
103556
|
};
|
|
103529
103557
|
type: string;
|
|
103530
103558
|
};
|
|
103559
|
+
is_publishable_key_auth_enabled: {
|
|
103560
|
+
description: string;
|
|
103561
|
+
type: string;
|
|
103562
|
+
};
|
|
103531
103563
|
is_suspended: {
|
|
103532
103564
|
description: string;
|
|
103533
103565
|
type: string;
|
|
@@ -116940,6 +116972,10 @@ type Routes = {
|
|
|
116940
116972
|
/**
|
|
116941
116973
|
* @deprecated Use `company_name` instead.*/
|
|
116942
116974
|
connect_partner_name: (string | null) | null;
|
|
116975
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
116976
|
+
publishable_key?: string | undefined;
|
|
116977
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
116978
|
+
is_publishable_key_auth_enabled: boolean;
|
|
116943
116979
|
}[] | undefined;
|
|
116944
116980
|
spaces?: {
|
|
116945
116981
|
/** ID of the space. */
|
|
@@ -183431,6 +183467,10 @@ type Routes = {
|
|
|
183431
183467
|
/**
|
|
183432
183468
|
* @deprecated Use `company_name` instead.*/
|
|
183433
183469
|
connect_partner_name: (string | null) | null;
|
|
183470
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
183471
|
+
publishable_key?: string | undefined;
|
|
183472
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
183473
|
+
is_publishable_key_auth_enabled: boolean;
|
|
183434
183474
|
};
|
|
183435
183475
|
};
|
|
183436
183476
|
};
|
|
@@ -183611,6 +183651,10 @@ type Routes = {
|
|
|
183611
183651
|
/**
|
|
183612
183652
|
* @deprecated Use `company_name` instead.*/
|
|
183613
183653
|
connect_partner_name: (string | null) | null;
|
|
183654
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
183655
|
+
publishable_key?: string | undefined;
|
|
183656
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
183657
|
+
is_publishable_key_auth_enabled: boolean;
|
|
183614
183658
|
}[] | undefined;
|
|
183615
183659
|
spaces?: {
|
|
183616
183660
|
/** ID of the space. */
|
|
@@ -190657,6 +190701,10 @@ type Routes = {
|
|
|
190657
190701
|
/**
|
|
190658
190702
|
* @deprecated Use `company_name` instead.*/
|
|
190659
190703
|
connect_partner_name: (string | null) | null;
|
|
190704
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
190705
|
+
publishable_key?: string | undefined;
|
|
190706
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
190707
|
+
is_publishable_key_auth_enabled: boolean;
|
|
190660
190708
|
};
|
|
190661
190709
|
};
|
|
190662
190710
|
};
|
|
@@ -190694,6 +190742,10 @@ type Routes = {
|
|
|
190694
190742
|
/**
|
|
190695
190743
|
* @deprecated Use `company_name` instead.*/
|
|
190696
190744
|
connect_partner_name: (string | null) | null;
|
|
190745
|
+
/** Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
190746
|
+
publishable_key?: string | undefined;
|
|
190747
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
190748
|
+
is_publishable_key_auth_enabled: boolean;
|
|
190697
190749
|
}[];
|
|
190698
190750
|
};
|
|
190699
190751
|
};
|
|
@@ -191972,6 +192024,8 @@ type Routes = {
|
|
|
191972
192024
|
/** Logo shape for [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
191973
192025
|
logo_shape?: (('circle' | 'square') | null) | undefined;
|
|
191974
192026
|
} | undefined;
|
|
192027
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
192028
|
+
is_publishable_key_auth_enabled?: boolean | undefined;
|
|
191975
192029
|
/** Indicates whether the workspace is suspended. */
|
|
191976
192030
|
is_suspended?: boolean | undefined;
|
|
191977
192031
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -5435,7 +5435,13 @@ var workspace = zod.z.object({
|
|
|
5435
5435
|
deprecated: Use \`company_name\` instead.
|
|
5436
5436
|
---
|
|
5437
5437
|
`
|
|
5438
|
-
).nullable()
|
|
5438
|
+
).nullable(),
|
|
5439
|
+
publishable_key: zod.z.string().optional().describe(
|
|
5440
|
+
"Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications."
|
|
5441
|
+
),
|
|
5442
|
+
is_publishable_key_auth_enabled: zod.z.boolean().describe(
|
|
5443
|
+
"Indicates whether publishable key authentication is enabled for this workspace."
|
|
5444
|
+
)
|
|
5439
5445
|
}).describe(`
|
|
5440
5446
|
---
|
|
5441
5447
|
route_path: /workspaces
|
|
@@ -28598,6 +28604,10 @@ var openapi_default = {
|
|
|
28598
28604
|
},
|
|
28599
28605
|
type: "object"
|
|
28600
28606
|
},
|
|
28607
|
+
is_publishable_key_auth_enabled: {
|
|
28608
|
+
description: "Indicates whether publishable key authentication is enabled for this workspace.",
|
|
28609
|
+
type: "boolean"
|
|
28610
|
+
},
|
|
28601
28611
|
is_sandbox: {
|
|
28602
28612
|
description: "Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces).",
|
|
28603
28613
|
type: "boolean"
|
|
@@ -28610,6 +28620,10 @@ var openapi_default = {
|
|
|
28610
28620
|
description: "Name of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
28611
28621
|
type: "string"
|
|
28612
28622
|
},
|
|
28623
|
+
publishable_key: {
|
|
28624
|
+
description: "Publishable key for the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). This key is used to identify the workspace in client-side applications.",
|
|
28625
|
+
type: "string"
|
|
28626
|
+
},
|
|
28613
28627
|
workspace_id: {
|
|
28614
28628
|
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
28615
28629
|
format: "uuid",
|
|
@@ -28623,7 +28637,8 @@ var openapi_default = {
|
|
|
28623
28637
|
"is_sandbox",
|
|
28624
28638
|
"connect_webview_customization",
|
|
28625
28639
|
"is_suspended",
|
|
28626
|
-
"connect_partner_name"
|
|
28640
|
+
"connect_partner_name",
|
|
28641
|
+
"is_publishable_key_auth_enabled"
|
|
28627
28642
|
],
|
|
28628
28643
|
type: "object",
|
|
28629
28644
|
"x-route-path": "/workspaces"
|
|
@@ -60640,6 +60655,10 @@ var openapi_default = {
|
|
|
60640
60655
|
},
|
|
60641
60656
|
type: "object"
|
|
60642
60657
|
},
|
|
60658
|
+
is_publishable_key_auth_enabled: {
|
|
60659
|
+
description: "Indicates whether publishable key authentication is enabled for this workspace.",
|
|
60660
|
+
type: "boolean"
|
|
60661
|
+
},
|
|
60643
60662
|
is_suspended: {
|
|
60644
60663
|
description: "Indicates whether the workspace is suspended.",
|
|
60645
60664
|
type: "boolean"
|
|
@@ -60710,6 +60729,10 @@ var openapi_default = {
|
|
|
60710
60729
|
},
|
|
60711
60730
|
type: "object"
|
|
60712
60731
|
},
|
|
60732
|
+
is_publishable_key_auth_enabled: {
|
|
60733
|
+
description: "Indicates whether publishable key authentication is enabled for this workspace.",
|
|
60734
|
+
type: "boolean"
|
|
60735
|
+
},
|
|
60713
60736
|
is_suspended: {
|
|
60714
60737
|
description: "Indicates whether the workspace is suspended.",
|
|
60715
60738
|
type: "boolean"
|