@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.
- package/dist/connect.cjs +6 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +4 -0
- package/lib/seam/connect/models/customer/customer-portal.js +8 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +6 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +7 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -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
|
@@ -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
|
| {
|