@seamapi/types 1.713.0 → 1.714.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 +3 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -2
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1 -0
- package/lib/seam/connect/openapi.js +3 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +3 -2
- package/src/lib/seam/connect/route-types.ts +2 -2
|
@@ -46588,6 +46588,7 @@ declare const _default: {
|
|
|
46588
46588
|
};
|
|
46589
46589
|
hotel_id: {
|
|
46590
46590
|
description: string;
|
|
46591
|
+
minLength: number;
|
|
46591
46592
|
type: string;
|
|
46592
46593
|
};
|
|
46593
46594
|
id: {
|
|
@@ -51192,7 +51192,8 @@ export default {
|
|
|
51192
51192
|
},
|
|
51193
51193
|
auth_token: { type: 'string' },
|
|
51194
51194
|
hotel_id: {
|
|
51195
|
-
description: '
|
|
51195
|
+
description: 'Hotel ID - required for identifying the customer',
|
|
51196
|
+
minLength: 1,
|
|
51196
51197
|
type: 'string',
|
|
51197
51198
|
},
|
|
51198
51199
|
id: {
|
|
@@ -51211,7 +51212,7 @@ export default {
|
|
|
51211
51212
|
type: 'string',
|
|
51212
51213
|
},
|
|
51213
51214
|
},
|
|
51214
|
-
required: ['api_key', 'id', 'secret'],
|
|
51215
|
+
required: ['api_key', 'id', 'secret', 'hotel_id'],
|
|
51215
51216
|
type: 'object',
|
|
51216
51217
|
},
|
|
51217
51218
|
],
|