@revolugo/common 7.8.0 → 7.9.0-rc.1

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.8.0",
3
+ "version": "7.9.0-rc.1",
4
4
  "private": false,
5
5
  "description": "Revolugo common",
6
6
  "author": "Revolugo",
@@ -29,7 +29,7 @@
29
29
  "ky": "2.0.1",
30
30
  "slugify": "1.6.9",
31
31
  "type-fest": "5.6.0",
32
- "uuid": "13.0.0",
32
+ "uuid": "14.0.0",
33
33
  "zod": "4.3.6"
34
34
  },
35
35
  "engines": {
@@ -243,3 +243,5 @@ export enum CountryIso2Code {
243
243
  ZM = 'ZM',
244
244
  ZW = 'ZW',
245
245
  }
246
+
247
+ export type CountryIso2CodeType = `${CountryIso2Code}`
@@ -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}