@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.
@@ -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: 'Optional hotel ID for single-property mode',
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
  ],