@seamapi/types 1.556.0 → 1.558.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 +27 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +67 -13
- package/dist/index.cjs +27 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +30 -10
- package/lib/seam/connect/models/events/connected-accounts.d.ts +6 -6
- package/lib/seam/connect/models/events/connected-accounts.js +1 -1
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -3
- 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 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +27 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/connected-accounts.ts +1 -1
- package/src/lib/seam/connect/models/workspaces/workspace.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +21 -1
- package/src/lib/seam/connect/route-types.ts +27 -5
package/dist/connect.cjs
CHANGED
|
@@ -4710,7 +4710,7 @@ var connect_webview_id = zod.z.string().uuid().describe(
|
|
|
4710
4710
|
var connected_account_connected_event = connected_account_event.extend(
|
|
4711
4711
|
{
|
|
4712
4712
|
event_type: zod.z.literal("connected_account.connected"),
|
|
4713
|
-
connect_webview_id,
|
|
4713
|
+
connect_webview_id: connect_webview_id.optional(),
|
|
4714
4714
|
customer_key: zod.z.string().optional().describe(
|
|
4715
4715
|
"The customer key associated with this connected account, if any."
|
|
4716
4716
|
)
|
|
@@ -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
|
|
@@ -19981,8 +19987,7 @@ var openapi_default = {
|
|
|
19981
19987
|
"created_at",
|
|
19982
19988
|
"occurred_at",
|
|
19983
19989
|
"connected_account_id",
|
|
19984
|
-
"event_type"
|
|
19985
|
-
"connect_webview_id"
|
|
19990
|
+
"event_type"
|
|
19986
19991
|
],
|
|
19987
19992
|
type: "object",
|
|
19988
19993
|
"x-route-path": "/connected_accounts"
|
|
@@ -28598,6 +28603,10 @@ var openapi_default = {
|
|
|
28598
28603
|
},
|
|
28599
28604
|
type: "object"
|
|
28600
28605
|
},
|
|
28606
|
+
is_publishable_key_auth_enabled: {
|
|
28607
|
+
description: "Indicates whether publishable key authentication is enabled for this workspace.",
|
|
28608
|
+
type: "boolean"
|
|
28609
|
+
},
|
|
28601
28610
|
is_sandbox: {
|
|
28602
28611
|
description: "Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces).",
|
|
28603
28612
|
type: "boolean"
|
|
@@ -28610,6 +28619,10 @@ var openapi_default = {
|
|
|
28610
28619
|
description: "Name of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
28611
28620
|
type: "string"
|
|
28612
28621
|
},
|
|
28622
|
+
publishable_key: {
|
|
28623
|
+
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.",
|
|
28624
|
+
type: "string"
|
|
28625
|
+
},
|
|
28613
28626
|
workspace_id: {
|
|
28614
28627
|
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
28615
28628
|
format: "uuid",
|
|
@@ -28623,7 +28636,8 @@ var openapi_default = {
|
|
|
28623
28636
|
"is_sandbox",
|
|
28624
28637
|
"connect_webview_customization",
|
|
28625
28638
|
"is_suspended",
|
|
28626
|
-
"connect_partner_name"
|
|
28639
|
+
"connect_partner_name",
|
|
28640
|
+
"is_publishable_key_auth_enabled"
|
|
28627
28641
|
],
|
|
28628
28642
|
type: "object",
|
|
28629
28643
|
"x-route-path": "/workspaces"
|
|
@@ -60640,6 +60654,10 @@ var openapi_default = {
|
|
|
60640
60654
|
},
|
|
60641
60655
|
type: "object"
|
|
60642
60656
|
},
|
|
60657
|
+
is_publishable_key_auth_enabled: {
|
|
60658
|
+
description: "Indicates whether publishable key authentication is enabled for this workspace.",
|
|
60659
|
+
type: "boolean"
|
|
60660
|
+
},
|
|
60643
60661
|
is_suspended: {
|
|
60644
60662
|
description: "Indicates whether the workspace is suspended.",
|
|
60645
60663
|
type: "boolean"
|
|
@@ -60710,6 +60728,10 @@ var openapi_default = {
|
|
|
60710
60728
|
},
|
|
60711
60729
|
type: "object"
|
|
60712
60730
|
},
|
|
60731
|
+
is_publishable_key_auth_enabled: {
|
|
60732
|
+
description: "Indicates whether publishable key authentication is enabled for this workspace.",
|
|
60733
|
+
type: "boolean"
|
|
60734
|
+
},
|
|
60713
60735
|
is_suspended: {
|
|
60714
60736
|
description: "Indicates whether the workspace is suspended.",
|
|
60715
60737
|
type: "boolean"
|