@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
package/dist/connect.d.cts
CHANGED
|
@@ -117883,6 +117883,14 @@ declare const _default: {
|
|
|
117883
117883
|
description: string;
|
|
117884
117884
|
type: string;
|
|
117885
117885
|
};
|
|
117886
|
+
feature_flags: {
|
|
117887
|
+
properties: {
|
|
117888
|
+
RESERVATION_UI_V2: {
|
|
117889
|
+
type: string;
|
|
117890
|
+
};
|
|
117891
|
+
};
|
|
117892
|
+
type: string;
|
|
117893
|
+
};
|
|
117886
117894
|
features: {
|
|
117887
117895
|
default: {
|
|
117888
117896
|
$ref: string;
|
|
@@ -118371,6 +118379,14 @@ declare const _default: {
|
|
|
118371
118379
|
description: string;
|
|
118372
118380
|
type: string;
|
|
118373
118381
|
};
|
|
118382
|
+
feature_flags: {
|
|
118383
|
+
properties: {
|
|
118384
|
+
RESERVATION_UI_V2: {
|
|
118385
|
+
type: string;
|
|
118386
|
+
};
|
|
118387
|
+
};
|
|
118388
|
+
type: string;
|
|
118389
|
+
};
|
|
118374
118390
|
features: {
|
|
118375
118391
|
default: {
|
|
118376
118392
|
$ref: string;
|
|
@@ -197963,7 +197979,7 @@ type Routes = {
|
|
|
197963
197979
|
queryParams: {};
|
|
197964
197980
|
jsonBody: {
|
|
197965
197981
|
/** Type of connector to create */
|
|
197966
|
-
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal';
|
|
197982
|
+
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal' | 'ical';
|
|
197967
197983
|
/** Key identifying the customer */
|
|
197968
197984
|
customer_key?: string | undefined;
|
|
197969
197985
|
/** Instance-specific configuration for the connector */
|
|
@@ -201460,6 +201476,9 @@ type Routes = {
|
|
|
201460
201476
|
} | undefined;
|
|
201461
201477
|
/** Business vertical of the customer portal. */
|
|
201462
201478
|
business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
201479
|
+
feature_flags?: {
|
|
201480
|
+
RESERVATION_UI_V2?: boolean | undefined;
|
|
201481
|
+
} | undefined;
|
|
201463
201482
|
};
|
|
201464
201483
|
};
|
|
201465
201484
|
maxDuration: undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -65018,7 +65018,8 @@ var openapi_default = {
|
|
|
65018
65018
|
"rms",
|
|
65019
65019
|
"cloudbeds",
|
|
65020
65020
|
"smoobu",
|
|
65021
|
-
"zonal"
|
|
65021
|
+
"zonal",
|
|
65022
|
+
"ical"
|
|
65022
65023
|
],
|
|
65023
65024
|
type: "string"
|
|
65024
65025
|
},
|
|
@@ -68204,6 +68205,12 @@ var openapi_default = {
|
|
|
68204
68205
|
description: "Whether to exclude the option to select a locale within the portal UI.",
|
|
68205
68206
|
type: "boolean"
|
|
68206
68207
|
},
|
|
68208
|
+
feature_flags: {
|
|
68209
|
+
properties: {
|
|
68210
|
+
RESERVATION_UI_V2: { type: "boolean" }
|
|
68211
|
+
},
|
|
68212
|
+
type: "object"
|
|
68213
|
+
},
|
|
68207
68214
|
features: {
|
|
68208
68215
|
default: { $ref: "#/components/schemas/access_code" },
|
|
68209
68216
|
properties: {
|
|
@@ -68578,6 +68585,12 @@ var openapi_default = {
|
|
|
68578
68585
|
description: "Whether to exclude the option to select a locale within the portal UI.",
|
|
68579
68586
|
type: "boolean"
|
|
68580
68587
|
},
|
|
68588
|
+
feature_flags: {
|
|
68589
|
+
properties: {
|
|
68590
|
+
RESERVATION_UI_V2: { type: "boolean" }
|
|
68591
|
+
},
|
|
68592
|
+
type: "object"
|
|
68593
|
+
},
|
|
68581
68594
|
features: {
|
|
68582
68595
|
default: { $ref: "#/components/schemas/access_code" },
|
|
68583
68596
|
properties: {
|