@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.
@@ -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
- /** Optional hotel ID for single-property mode */
53147
- hotel_id?: string | undefined;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.713.0",
3
+ "version": "1.714.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -55543,7 +55543,8 @@ export default {
55543
55543
  auth_token: { type: 'string' },
55544
55544
  hotel_id: {
55545
55545
  description:
55546
- 'Optional hotel ID for single-property mode',
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
- /** Optional hotel ID for single-property mode */
63525
- hotel_id?: string | undefined
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