@seamapi/types 1.775.0 → 1.776.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 +12 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +19 -0
- package/dist/index.cjs +12 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
|
@@ -66073,6 +66073,9 @@ export type Routes = {
|
|
|
66073
66073
|
} | undefined;
|
|
66074
66074
|
/** Business vertical of the customer portal. */
|
|
66075
66075
|
business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
66076
|
+
feature_flags?: {
|
|
66077
|
+
RESERVATION_UI_V2?: boolean | undefined;
|
|
66078
|
+
} | undefined;
|
|
66076
66079
|
};
|
|
66077
66080
|
};
|
|
66078
66081
|
maxDuration: undefined;
|
package/package.json
CHANGED
|
@@ -66846,6 +66846,12 @@ export default {
|
|
|
66846
66846
|
'Whether to exclude the option to select a locale within the portal UI.',
|
|
66847
66847
|
type: 'boolean',
|
|
66848
66848
|
},
|
|
66849
|
+
feature_flags: {
|
|
66850
|
+
properties: {
|
|
66851
|
+
RESERVATION_UI_V2: { type: 'boolean' },
|
|
66852
|
+
},
|
|
66853
|
+
type: 'object',
|
|
66854
|
+
},
|
|
66849
66855
|
features: {
|
|
66850
66856
|
default: { $ref: '#/components/schemas/access_code' },
|
|
66851
66857
|
properties: {
|
|
@@ -67253,6 +67259,12 @@ export default {
|
|
|
67253
67259
|
'Whether to exclude the option to select a locale within the portal UI.',
|
|
67254
67260
|
type: 'boolean',
|
|
67255
67261
|
},
|
|
67262
|
+
feature_flags: {
|
|
67263
|
+
properties: {
|
|
67264
|
+
RESERVATION_UI_V2: { type: 'boolean' },
|
|
67265
|
+
},
|
|
67266
|
+
type: 'object',
|
|
67267
|
+
},
|
|
67256
67268
|
features: {
|
|
67257
67269
|
default: { $ref: '#/components/schemas/access_code' },
|
|
67258
67270
|
properties: {
|
|
@@ -78582,6 +78582,11 @@ export type Routes = {
|
|
|
78582
78582
|
| 'property_tours'
|
|
78583
78583
|
)
|
|
78584
78584
|
| undefined
|
|
78585
|
+
feature_flags?:
|
|
78586
|
+
| {
|
|
78587
|
+
RESERVATION_UI_V2?: boolean | undefined
|
|
78588
|
+
}
|
|
78589
|
+
| undefined
|
|
78585
78590
|
}
|
|
78586
78591
|
}
|
|
78587
78592
|
maxDuration: undefined
|