@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.
@@ -13354,6 +13354,10 @@ export type Routes = {
13354
13354
  /**
13355
13355
  * @deprecated Use `company_name` instead.*/
13356
13356
  connect_partner_name: (string | null) | null;
13357
+ /** 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. */
13358
+ publishable_key?: string | undefined;
13359
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
13360
+ is_publishable_key_auth_enabled: boolean;
13357
13361
  }[] | undefined;
13358
13362
  spaces?: {
13359
13363
  /** ID of the space. */
@@ -79845,6 +79849,10 @@ export type Routes = {
79845
79849
  /**
79846
79850
  * @deprecated Use `company_name` instead.*/
79847
79851
  connect_partner_name: (string | null) | null;
79852
+ /** 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. */
79853
+ publishable_key?: string | undefined;
79854
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
79855
+ is_publishable_key_auth_enabled: boolean;
79848
79856
  };
79849
79857
  };
79850
79858
  };
@@ -80025,6 +80033,10 @@ export type Routes = {
80025
80033
  /**
80026
80034
  * @deprecated Use `company_name` instead.*/
80027
80035
  connect_partner_name: (string | null) | null;
80036
+ /** 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. */
80037
+ publishable_key?: string | undefined;
80038
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
80039
+ is_publishable_key_auth_enabled: boolean;
80028
80040
  }[] | undefined;
80029
80041
  spaces?: {
80030
80042
  /** ID of the space. */
@@ -87071,6 +87083,10 @@ export type Routes = {
87071
87083
  /**
87072
87084
  * @deprecated Use `company_name` instead.*/
87073
87085
  connect_partner_name: (string | null) | null;
87086
+ /** 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. */
87087
+ publishable_key?: string | undefined;
87088
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
87089
+ is_publishable_key_auth_enabled: boolean;
87074
87090
  };
87075
87091
  };
87076
87092
  };
@@ -87108,6 +87124,10 @@ export type Routes = {
87108
87124
  /**
87109
87125
  * @deprecated Use `company_name` instead.*/
87110
87126
  connect_partner_name: (string | null) | null;
87127
+ /** 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. */
87128
+ publishable_key?: string | undefined;
87129
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
87130
+ is_publishable_key_auth_enabled: boolean;
87111
87131
  }[];
87112
87132
  };
87113
87133
  };
@@ -88386,6 +88406,8 @@ export type Routes = {
88386
88406
  /** 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). */
88387
88407
  logo_shape?: (('circle' | 'square') | null) | undefined;
88388
88408
  } | undefined;
88409
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
88410
+ is_publishable_key_auth_enabled?: boolean | undefined;
88389
88411
  /** Indicates whether the workspace is suspended. */
88390
88412
  is_suspended?: boolean | undefined;
88391
88413
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.556.0",
3
+ "version": "1.557.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -70,6 +70,17 @@ export const workspace = z.object({
70
70
  `,
71
71
  )
72
72
  .nullable(),
73
+ publishable_key: z
74
+ .string()
75
+ .optional()
76
+ .describe(
77
+ '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.',
78
+ ),
79
+ is_publishable_key_auth_enabled: z
80
+ .boolean()
81
+ .describe(
82
+ 'Indicates whether publishable key authentication is enabled for this workspace.',
83
+ ),
73
84
  }).describe(`
74
85
  ---
75
86
  route_path: /workspaces
@@ -25639,6 +25639,11 @@ export default {
25639
25639
  },
25640
25640
  type: 'object',
25641
25641
  },
25642
+ is_publishable_key_auth_enabled: {
25643
+ description:
25644
+ 'Indicates whether publishable key authentication is enabled for this workspace.',
25645
+ type: 'boolean',
25646
+ },
25642
25647
  is_sandbox: {
25643
25648
  description:
25644
25649
  'Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces).',
@@ -25654,6 +25659,11 @@ export default {
25654
25659
  'Name of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
25655
25660
  type: 'string',
25656
25661
  },
25662
+ publishable_key: {
25663
+ description:
25664
+ '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.',
25665
+ type: 'string',
25666
+ },
25657
25667
  workspace_id: {
25658
25668
  description:
25659
25669
  'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
@@ -25669,6 +25679,7 @@ export default {
25669
25679
  'connect_webview_customization',
25670
25680
  'is_suspended',
25671
25681
  'connect_partner_name',
25682
+ 'is_publishable_key_auth_enabled',
25672
25683
  ],
25673
25684
  type: 'object',
25674
25685
  'x-route-path': '/workspaces',
@@ -59340,6 +59351,11 @@ export default {
59340
59351
  },
59341
59352
  type: 'object',
59342
59353
  },
59354
+ is_publishable_key_auth_enabled: {
59355
+ description:
59356
+ 'Indicates whether publishable key authentication is enabled for this workspace.',
59357
+ type: 'boolean',
59358
+ },
59343
59359
  is_suspended: {
59344
59360
  description:
59345
59361
  'Indicates whether the workspace is suspended.',
@@ -59417,6 +59433,11 @@ export default {
59417
59433
  },
59418
59434
  type: 'object',
59419
59435
  },
59436
+ is_publishable_key_auth_enabled: {
59437
+ description:
59438
+ 'Indicates whether publishable key authentication is enabled for this workspace.',
59439
+ type: 'boolean',
59440
+ },
59420
59441
  is_suspended: {
59421
59442
  description:
59422
59443
  'Indicates whether the workspace is suspended.',
@@ -15295,6 +15295,10 @@ export type Routes = {
15295
15295
  /**
15296
15296
  * @deprecated Use `company_name` instead.*/
15297
15297
  connect_partner_name: (string | null) | null
15298
+ /** 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. */
15299
+ publishable_key?: string | undefined
15300
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
15301
+ is_publishable_key_auth_enabled: boolean
15298
15302
  }[]
15299
15303
  | undefined
15300
15304
  spaces?:
@@ -94947,6 +94951,10 @@ export type Routes = {
94947
94951
  /**
94948
94952
  * @deprecated Use `company_name` instead.*/
94949
94953
  connect_partner_name: (string | null) | null
94954
+ /** 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. */
94955
+ publishable_key?: string | undefined
94956
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
94957
+ is_publishable_key_auth_enabled: boolean
94950
94958
  }
94951
94959
  }
94952
94960
  }
@@ -95133,6 +95141,10 @@ export type Routes = {
95133
95141
  /**
95134
95142
  * @deprecated Use `company_name` instead.*/
95135
95143
  connect_partner_name: (string | null) | null
95144
+ /** 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. */
95145
+ publishable_key?: string | undefined
95146
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
95147
+ is_publishable_key_auth_enabled: boolean
95136
95148
  }[]
95137
95149
  | undefined
95138
95150
  spaces?:
@@ -103545,6 +103557,10 @@ export type Routes = {
103545
103557
  /**
103546
103558
  * @deprecated Use `company_name` instead.*/
103547
103559
  connect_partner_name: (string | null) | null
103560
+ /** 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. */
103561
+ publishable_key?: string | undefined
103562
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
103563
+ is_publishable_key_auth_enabled: boolean
103548
103564
  }
103549
103565
  }
103550
103566
  }
@@ -103582,6 +103598,10 @@ export type Routes = {
103582
103598
  /**
103583
103599
  * @deprecated Use `company_name` instead.*/
103584
103600
  connect_partner_name: (string | null) | null
103601
+ /** 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. */
103602
+ publishable_key?: string | undefined
103603
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
103604
+ is_publishable_key_auth_enabled: boolean
103585
103605
  }[]
103586
103606
  }
103587
103607
  }
@@ -105051,6 +105071,8 @@ export type Routes = {
105051
105071
  logo_shape?: (('circle' | 'square') | null) | undefined
105052
105072
  }
105053
105073
  | undefined
105074
+ /** Indicates whether publishable key authentication is enabled for this workspace. */
105075
+ is_publishable_key_auth_enabled?: boolean | undefined
105054
105076
  /** Indicates whether the workspace is suspended. */
105055
105077
  is_suspended?: boolean | undefined
105056
105078
  }