@seamapi/types 1.684.0 → 1.685.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 +8 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -1
- package/dist/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +8 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -1
- package/src/lib/seam/connect/route-types.ts +1 -1
|
@@ -52600,7 +52600,7 @@ export type Routes = {
|
|
|
52600
52600
|
queryParams: {};
|
|
52601
52601
|
jsonBody: {
|
|
52602
52602
|
/** Type of connector to create */
|
|
52603
|
-
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu';
|
|
52603
|
+
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal';
|
|
52604
52604
|
/** Key identifying the customer */
|
|
52605
52605
|
customer_key?: string | undefined;
|
|
52606
52606
|
/** Instance-specific configuration for the connector */
|
package/package.json
CHANGED
|
@@ -54189,7 +54189,14 @@ export default {
|
|
|
54189
54189
|
},
|
|
54190
54190
|
connector_type: {
|
|
54191
54191
|
description: 'Type of connector to create',
|
|
54192
|
-
enum: [
|
|
54192
|
+
enum: [
|
|
54193
|
+
'mock',
|
|
54194
|
+
'mews',
|
|
54195
|
+
'rms',
|
|
54196
|
+
'cloudbeds',
|
|
54197
|
+
'smoobu',
|
|
54198
|
+
'zonal',
|
|
54199
|
+
],
|
|
54193
54200
|
type: 'string',
|
|
54194
54201
|
},
|
|
54195
54202
|
customer_key: {
|
|
@@ -62925,7 +62925,7 @@ export type Routes = {
|
|
|
62925
62925
|
queryParams: {}
|
|
62926
62926
|
jsonBody: {
|
|
62927
62927
|
/** Type of connector to create */
|
|
62928
|
-
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu'
|
|
62928
|
+
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal'
|
|
62929
62929
|
/** Key identifying the customer */
|
|
62930
62930
|
customer_key?: string | undefined
|
|
62931
62931
|
/** Instance-specific configuration for the connector */
|