@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.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"
|