Skip to content

Commit da4ca24

Browse files
authored
feat: Sync with Seam API via 29ec570b3b11a9cffc25bb0d2fd588b2f9f057a3 (#2608)
1 parent cb08dfa commit da4ca24

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/lib/seam/connect/openapi.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55543,7 +55543,8 @@ export default {
5554355543
auth_token: { type: 'string' },
5554455544
hotel_id: {
5554555545
description:
55546-
'Optional hotel ID for single-property mode',
55546+
'Hotel ID - required for identifying the customer',
55547+
minLength: 1,
5554755548
type: 'string',
5554855549
},
5554955550
id: {
@@ -55565,7 +55566,7 @@ export default {
5556555566
type: 'string',
5556655567
},
5556755568
},
55568-
required: ['api_key', 'id', 'secret'],
55569+
required: ['api_key', 'id', 'secret', 'hotel_id'],
5556955570
type: 'object',
5557055571
},
5557155572
],

src/lib/seam/connect/route-types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63521,8 +63521,8 @@ export type Routes = {
6352163521
id: string
6352263522
/** Zonal Secret for login request body (required) */
6352363523
secret: string
63524-
/** Optional hotel ID for single-property mode */
63525-
hotel_id?: string | undefined
63524+
/** Hotel ID - required for identifying the customer */
63525+
hotel_id: string
6352663526
/** Use staging API instead of production */
6352763527
is_staging?: boolean
6352863528
auth_token?: string | undefined

0 commit comments

Comments
 (0)