@seamapi/types 1.732.0 → 1.733.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.
@@ -28156,6 +28156,8 @@ export type Routes = {
28156
28156
  resource_type: 'reservation' | 'space';
28157
28157
  resource_key: string;
28158
28158
  } | undefined;
28159
+ /** Whether the portal is in developer mode. Only available for Seam employees. */
28160
+ _dev?: boolean;
28159
28161
  } & {
28160
28162
  customer_data?: {
28161
28163
  /** Your unique identifier for the customer. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.732.0",
3
+ "version": "1.733.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -173,6 +173,14 @@ export const portal_configuration_base = z.object({
173
173
  })
174
174
 
175
175
  export const portal_configuration = portal_configuration_base
176
+ .extend({
177
+ _dev: z.boolean().default(false).describe(`
178
+ ---
179
+ undocumented: Internal developer mode flag.
180
+ ---
181
+ Whether the portal is in developer mode. Only available for Seam employees.
182
+ `),
183
+ })
176
184
  .default({
177
185
  features: {
178
186
  connect: { exclude: false },
@@ -47988,6 +47988,13 @@ export default {
47988
47988
  },
47989
47989
  description: 'Configuration for a customer portal',
47990
47990
  properties: {
47991
+ _dev: {
47992
+ default: false,
47993
+ description:
47994
+ 'Whether the portal is in developer mode. Only available for Seam employees.',
47995
+ type: 'boolean',
47996
+ 'x-undocumented': 'Internal developer mode flag.',
47997
+ },
47991
47998
  customer_resources_filters: {
47992
47999
  description:
47993
48000
  'Filter configuration for resources based on their custom_metadata. Each filter specifies a field, operation, and value to match against resource custom_metadata.',
@@ -32549,6 +32549,8 @@ export type Routes = {
32549
32549
  resource_key: string
32550
32550
  }
32551
32551
  | undefined
32552
+ /** Whether the portal is in developer mode. Only available for Seam employees. */
32553
+ _dev?: boolean
32552
32554
  } & {
32553
32555
  customer_data?:
32554
32556
  | {