@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
|
@@ -53143,8 +53143,8 @@ export type Routes = {
|
|
|
53143
53143
|
id: string;
|
|
53144
53144
|
/** Zonal Secret for login request body (required) */
|
|
53145
53145
|
secret: string;
|
|
53146
|
-
/**
|
|
53147
|
-
hotel_id
|
|
53146
|
+
/** Hotel ID - required for identifying the customer */
|
|
53147
|
+
hotel_id: string;
|
|
53148
53148
|
/** Use staging API instead of production */
|
|
53149
53149
|
is_staging?: boolean;
|
|
53150
53150
|
auth_token?: string | undefined;
|
package/package.json
CHANGED
|
@@ -55543,7 +55543,8 @@ export default {
|
|
|
55543
55543
|
auth_token: { type: 'string' },
|
|
55544
55544
|
hotel_id: {
|
|
55545
55545
|
description:
|
|
55546
|
-
'
|
|
55546
|
+
'Hotel ID - required for identifying the customer',
|
|
55547
|
+
minLength: 1,
|
|
55547
55548
|
type: 'string',
|
|
55548
55549
|
},
|
|
55549
55550
|
id: {
|
|
@@ -55565,7 +55566,7 @@ export default {
|
|
|
55565
55566
|
type: 'string',
|
|
55566
55567
|
},
|
|
55567
55568
|
},
|
|
55568
|
-
required: ['api_key', 'id', 'secret'],
|
|
55569
|
+
required: ['api_key', 'id', 'secret', 'hotel_id'],
|
|
55569
55570
|
type: 'object',
|
|
55570
55571
|
},
|
|
55571
55572
|
],
|
|
@@ -63521,8 +63521,8 @@ export type Routes = {
|
|
|
63521
63521
|
id: string
|
|
63522
63522
|
/** Zonal Secret for login request body (required) */
|
|
63523
63523
|
secret: string
|
|
63524
|
-
/**
|
|
63525
|
-
hotel_id
|
|
63524
|
+
/** Hotel ID - required for identifying the customer */
|
|
63525
|
+
hotel_id: string
|
|
63526
63526
|
/** Use staging API instead of production */
|
|
63527
63527
|
is_staging?: boolean
|
|
63528
63528
|
auth_token?: string | undefined
|