@seamapi/types 1.774.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 +14 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -1
- package/dist/index.cjs +14 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +13 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +13 -0
- package/src/lib/seam/connect/route-types.ts +13 -1
|
@@ -62576,7 +62576,7 @@ export type Routes = {
|
|
|
62576
62576
|
queryParams: {};
|
|
62577
62577
|
jsonBody: {
|
|
62578
62578
|
/** Type of connector to create */
|
|
62579
|
-
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal';
|
|
62579
|
+
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal' | 'ical';
|
|
62580
62580
|
/** Key identifying the customer */
|
|
62581
62581
|
customer_key?: string | undefined;
|
|
62582
62582
|
/** Instance-specific configuration for the connector */
|
|
@@ -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
|
@@ -63564,6 +63564,7 @@ export default {
|
|
|
63564
63564
|
'cloudbeds',
|
|
63565
63565
|
'smoobu',
|
|
63566
63566
|
'zonal',
|
|
63567
|
+
'ical',
|
|
63567
63568
|
],
|
|
63568
63569
|
type: 'string',
|
|
63569
63570
|
},
|
|
@@ -66845,6 +66846,12 @@ export default {
|
|
|
66845
66846
|
'Whether to exclude the option to select a locale within the portal UI.',
|
|
66846
66847
|
type: 'boolean',
|
|
66847
66848
|
},
|
|
66849
|
+
feature_flags: {
|
|
66850
|
+
properties: {
|
|
66851
|
+
RESERVATION_UI_V2: { type: 'boolean' },
|
|
66852
|
+
},
|
|
66853
|
+
type: 'object',
|
|
66854
|
+
},
|
|
66848
66855
|
features: {
|
|
66849
66856
|
default: { $ref: '#/components/schemas/access_code' },
|
|
66850
66857
|
properties: {
|
|
@@ -67252,6 +67259,12 @@ export default {
|
|
|
67252
67259
|
'Whether to exclude the option to select a locale within the portal UI.',
|
|
67253
67260
|
type: 'boolean',
|
|
67254
67261
|
},
|
|
67262
|
+
feature_flags: {
|
|
67263
|
+
properties: {
|
|
67264
|
+
RESERVATION_UI_V2: { type: 'boolean' },
|
|
67265
|
+
},
|
|
67266
|
+
type: 'object',
|
|
67267
|
+
},
|
|
67255
67268
|
features: {
|
|
67256
67269
|
default: { $ref: '#/components/schemas/access_code' },
|
|
67257
67270
|
properties: {
|
|
@@ -74387,7 +74387,14 @@ export type Routes = {
|
|
|
74387
74387
|
queryParams: {}
|
|
74388
74388
|
jsonBody: {
|
|
74389
74389
|
/** Type of connector to create */
|
|
74390
|
-
connector_type:
|
|
74390
|
+
connector_type:
|
|
74391
|
+
| 'mock'
|
|
74392
|
+
| 'mews'
|
|
74393
|
+
| 'rms'
|
|
74394
|
+
| 'cloudbeds'
|
|
74395
|
+
| 'smoobu'
|
|
74396
|
+
| 'zonal'
|
|
74397
|
+
| 'ical'
|
|
74391
74398
|
/** Key identifying the customer */
|
|
74392
74399
|
customer_key?: string | undefined
|
|
74393
74400
|
/** Instance-specific configuration for the connector */
|
|
@@ -78575,6 +78582,11 @@ export type Routes = {
|
|
|
78575
78582
|
| 'property_tours'
|
|
78576
78583
|
)
|
|
78577
78584
|
| undefined
|
|
78585
|
+
feature_flags?:
|
|
78586
|
+
| {
|
|
78587
|
+
RESERVATION_UI_V2?: boolean | undefined
|
|
78588
|
+
}
|
|
78589
|
+
| undefined
|
|
78578
78590
|
}
|
|
78579
78591
|
}
|
|
78580
78592
|
maxDuration: undefined
|