@seamapi/types 1.912.0 → 1.913.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 CHANGED
@@ -6924,6 +6924,9 @@ var workspace = zod.z.object({
6924
6924
  ),
6925
6925
  is_publishable_key_auth_enabled: zod.z.boolean().describe(
6926
6926
  "Indicates whether publishable key authentication is enabled for this workspace."
6927
+ ),
6928
+ organization_id: zod.z.string().uuid().nullable().describe(
6929
+ "ID of the organization to which the [workspace](https://docs.seam.co/core-concepts/workspaces) belongs, or `null` if the workspace is not assigned to an organization."
6927
6930
  )
6928
6931
  }).describe(`
6929
6932
  ---
@@ -36903,6 +36906,12 @@ var openapi = {
36903
36906
  description: "Name of the [workspace](https://docs.seam.co/core-concepts/workspaces).",
36904
36907
  type: "string"
36905
36908
  },
36909
+ organization_id: {
36910
+ description: "ID of the organization to which the [workspace](https://docs.seam.co/core-concepts/workspaces) belongs, or `null` if the workspace is not assigned to an organization.",
36911
+ format: "uuid",
36912
+ nullable: true,
36913
+ type: "string"
36914
+ },
36906
36915
  publishable_key: {
36907
36916
  description: "Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications.",
36908
36917
  type: "string"
@@ -36921,7 +36930,8 @@ var openapi = {
36921
36930
  "connect_webview_customization",
36922
36931
  "is_suspended",
36923
36932
  "connect_partner_name",
36924
- "is_publishable_key_auth_enabled"
36933
+ "is_publishable_key_auth_enabled",
36934
+ "organization_id"
36925
36935
  ],
36926
36936
  type: "object",
36927
36937
  "x-route-path": "/workspaces"
@@ -88146,6 +88156,11 @@ var openapi = {
88146
88156
  name: {
88147
88157
  description: "Name of the workspace.",
88148
88158
  type: "string"
88159
+ },
88160
+ organization_id: {
88161
+ description: "ID of the organization to assign the workspace to. The authenticated user must be the owner of the workspace and an admin of the target organization.",
88162
+ format: "uuid",
88163
+ type: "string"
88149
88164
  }
88150
88165
  },
88151
88166
  type: "object"
@@ -88220,6 +88235,11 @@ var openapi = {
88220
88235
  name: {
88221
88236
  description: "Name of the workspace.",
88222
88237
  type: "string"
88238
+ },
88239
+ organization_id: {
88240
+ description: "ID of the organization to assign the workspace to. The authenticated user must be the owner of the workspace and an admin of the target organization.",
88241
+ format: "uuid",
88242
+ type: "string"
88223
88243
  }
88224
88244
  },
88225
88245
  type: "object"