@revolugo/booking-api-client 6.10.10-rc.2 → 6.11.0-rc.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/index.es.js +2864 -3246
- package/dist/index.umd.js +2 -2
- package/dist/types/v1/models/index.d.ts +18 -0
- package/package.json +9 -10
|
@@ -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.
|
|
3
|
+
"version": "6.11.0-rc.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Javascript Revolugo Booking API Client (browser + server)",
|
|
6
6
|
"keywords": [
|
|
@@ -30,18 +30,17 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"cross-fetch": "4.1.0",
|
|
32
32
|
"joi": "18.0.1",
|
|
33
|
-
"lodash-es": "4.17.21",
|
|
34
33
|
"uuid": "13.0.0",
|
|
35
|
-
"@revolugo/common": "6.
|
|
34
|
+
"@revolugo/common": "6.11.0"
|
|
36
35
|
},
|
|
37
36
|
"devDependencies": {
|
|
38
|
-
"@hono/node-server": "1.19.
|
|
39
|
-
"hono": "4.9.
|
|
40
|
-
"@revolugo/booking-api": "6.
|
|
41
|
-
"@revolugo/
|
|
42
|
-
"@revolugo/
|
|
43
|
-
"@revolugo/
|
|
44
|
-
"@revolugo/
|
|
37
|
+
"@hono/node-server": "1.19.5",
|
|
38
|
+
"hono": "4.9.11",
|
|
39
|
+
"@revolugo/booking-api": "6.11.0",
|
|
40
|
+
"@revolugo/env": "6.11.0",
|
|
41
|
+
"@revolugo/models": "6.11.0",
|
|
42
|
+
"@revolugo/engines": "6.11.0",
|
|
43
|
+
"@revolugo/node": "6.11.0"
|
|
45
44
|
},
|
|
46
45
|
"engines": {
|
|
47
46
|
"node": ">=20.18.1 <25"
|