@revolugo/booking-api-client 6.10.9-beta.2 → 6.10.9-beta.20

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.
@@ -300,6 +300,18 @@ export interface BedApi {
300
300
  * @interface BookingApi
301
301
  */
302
302
  export interface BookingApi {
303
+ /**
304
+ * Additional instructions on how to check-in.
305
+ * @type {string}
306
+ * @memberof BookingApi
307
+ */
308
+ additionalCheckInInstruction?: string | null;
309
+ /**
310
+ * Additional house policy, house manual, or condominium rules.
311
+ * @type {string}
312
+ * @memberof BookingApi
313
+ */
314
+ additionalPolicies?: string | null;
303
315
  /**
304
316
  * The total number of adults who will be staying in the property.
305
317
  * @type {number}
@@ -384,6 +396,12 @@ export interface BookingApi {
384
396
  * @memberof BookingApi
385
397
  */
386
398
  failedAt?: string | null;
399
+ /**
400
+ * Code your guest might need to show to the hotel during check-in. This number will only but available a few days prior to check-in and it’s subject to availability.
401
+ * @type {string}
402
+ * @memberof BookingApi
403
+ */
404
+ hotelConfirmationId?: string | null;
387
405
  /**
388
406
  * Hotel Id of the requested Booking.
389
407
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolugo/booking-api-client",
3
- "version": "6.10.9-beta.2",
3
+ "version": "6.10.9-beta.20",
4
4
  "private": false,
5
5
  "description": "Javascript Revolugo Booking API Client (browser + server)",
6
6
  "keywords": [
@@ -35,12 +35,12 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@hono/node-server": "1.19.5",
38
- "hono": "4.9.10",
39
- "@revolugo/booking-api": "6.10.9",
40
- "@revolugo/engines": "6.10.9",
38
+ "hono": "4.9.11",
41
39
  "@revolugo/env": "6.10.9",
42
40
  "@revolugo/models": "6.10.9",
43
- "@revolugo/node": "6.10.9"
41
+ "@revolugo/node": "6.10.9",
42
+ "@revolugo/booking-api": "6.10.9",
43
+ "@revolugo/engines": "6.10.9"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=20.18.1 <25"