@revolugo/common 7.8.0 → 7.9.0-alpha.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revolugo/common",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.9.0-alpha.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Revolugo common",
|
|
6
6
|
"author": "Revolugo",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"@asteasolutions/zod-to-openapi": "8.5.0",
|
|
27
27
|
"change-case": "5.4.4",
|
|
28
28
|
"dayjs": "1.11.20",
|
|
29
|
-
"ky": "2.0.
|
|
29
|
+
"ky": "2.0.2",
|
|
30
30
|
"slugify": "1.6.9",
|
|
31
31
|
"type-fest": "5.6.0",
|
|
32
|
-
"uuid": "
|
|
32
|
+
"uuid": "14.0.0",
|
|
33
33
|
"zod": "4.3.6"
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
@@ -22,6 +22,18 @@ export interface Booking {
|
|
|
22
22
|
* @memberof Booking
|
|
23
23
|
*/
|
|
24
24
|
createdAt: string
|
|
25
|
+
/**
|
|
26
|
+
* Additional check-in instructions provided by the hotel.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof Booking
|
|
29
|
+
*/
|
|
30
|
+
additionalCheckInInstruction?: string | null
|
|
31
|
+
/**
|
|
32
|
+
* Additional policies applied to the booking (e.g. "No pets allowed").
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof Booking
|
|
35
|
+
*/
|
|
36
|
+
additionalPolicies?: string | null
|
|
25
37
|
/**
|
|
26
38
|
* The total number of adults who will be staying in the property.
|
|
27
39
|
* @type {number}
|
|
@@ -100,6 +112,12 @@ export interface Booking {
|
|
|
100
112
|
* @memberof Booking
|
|
101
113
|
*/
|
|
102
114
|
failedAt?: string | null
|
|
115
|
+
/**
|
|
116
|
+
* The hotel's own confirmation number for this booking.
|
|
117
|
+
* @type {string}
|
|
118
|
+
* @memberof Booking
|
|
119
|
+
*/
|
|
120
|
+
hotelConfirmationId?: string | null
|
|
103
121
|
/**
|
|
104
122
|
* Hotel Id of the requested Booking.
|
|
105
123
|
* @type {string}
|