@seamapi/types 1.774.0 → 1.775.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 +2 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -1
- package/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +1 -0
- 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 +1 -0
- package/src/lib/seam/connect/route-types.ts +8 -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 */
|
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
|
},
|
|
@@ -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 */
|