@revolugo/common 7.2.1 → 7.2.2-alpha.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.2.1",
3
+ "version": "7.2.2-alpha.1",
4
4
  "private": false,
5
5
  "description": "Revolugo common",
6
6
  "author": "Revolugo",
@@ -16,6 +16,12 @@ export interface Booking {
16
16
  * @memberof Booking
17
17
  */
18
18
  id?: string | null
19
+ /**
20
+ * Creation date of the **Booking**.
21
+ * @type {string}
22
+ * @memberof Booking
23
+ */
24
+ createdAt: string
19
25
  /**
20
26
  * The total number of adults who will be staying in the property.
21
27
  * @type {number}
@@ -70,12 +76,6 @@ export interface Booking {
70
76
  * @memberof Booking
71
77
  */
72
78
  contactPerson: ContactPerson
73
- /**
74
- * Creation date of the **Booking**.
75
- * @type {string}
76
- * @memberof Booking
77
- */
78
- createdAt: string
79
79
  /**
80
80
  *
81
81
  * @type {CurrencyClient}
@@ -7,6 +7,12 @@ export interface HotelOfferRequest {
7
7
  * @type {string}
8
8
  */
9
9
  id: string
10
+ /**
11
+ * Date of the **Hotel Room Offer Request** creation
12
+ * @type {string}
13
+ * @memberof HotelOfferRequestApiResponse
14
+ */
15
+ createdAt: string
10
16
  /**
11
17
  * This endpoint allows to find the geo-coordinates of a known address, place or locality via this free-text address query field. This address will eventually be geocoded into a latitude/longitude pair.
12
18
  *
@@ -34,12 +40,6 @@ export interface HotelOfferRequest {
34
40
  * @type {string}
35
41
  */
36
42
  children?: string | null
37
- /**
38
- * Date of the **Hotel Room Offer Request** creation
39
- * @type {string}
40
- * @memberof HotelOfferRequestApiResponse
41
- */
42
- createdAt: string
43
43
  /**
44
44
  *
45
45
  * @type {EventMetadata}
@@ -80,6 +80,12 @@ export interface HotelOfferRequestResponse {
80
80
  * @memberof HotelOfferRequestApiResponse
81
81
  */
82
82
  id: string
83
+ /**
84
+ * Date of the **Hotel Offer Request** creation
85
+ * @type {string}
86
+ * @memberof HotelOfferRequestApiResponse
87
+ */
88
+ createdAt: string
83
89
  /**
84
90
  * This endpoint allows to find the geo-coordinates of a known address, place or locality via this free-text address query field. This address will eventually be geocoded into a latitude/longitude pair.
85
91
  *
@@ -112,12 +118,6 @@ export interface HotelOfferRequestResponse {
112
118
  * @memberof HotelOfferRequestApiResponse
113
119
  */
114
120
  children?: string | null
115
- /**
116
- * Date of the **Hotel Offer Request** creation
117
- * @type {string}
118
- * @memberof HotelOfferRequestApiResponse
119
- */
120
- createdAt: string
121
121
  /**
122
122
  *
123
123
  * @type {EventMetadataApi}
@@ -8,6 +8,12 @@ export interface HotelRoomOfferRequest {
8
8
  * @memberof HotelRoomOfferRequest
9
9
  */
10
10
  id: string
11
+ /**
12
+ * Date of the **Hotel Room Offer Request** creation
13
+ * @type {string}
14
+ * @memberof HotelRoomOfferRequest
15
+ */
16
+ createdAt: string
11
17
  /**
12
18
  * Requested number of adult(s) to be accommodated.
13
19
  * @type {number}
@@ -32,12 +38,6 @@ export interface HotelRoomOfferRequest {
32
38
  * @memberof HotelRoomOfferRequest
33
39
  */
34
40
  children?: string | null
35
- /**
36
- * Date of the **Hotel Room Offer Request** creation
37
- * @type {string}
38
- * @memberof HotelRoomOfferRequest
39
- */
40
- createdAt: string
41
41
  /**
42
42
  *
43
43
  * @type {EventMetadata}
@@ -71,6 +71,12 @@ export interface HotelRoomOfferRequestResponse {
71
71
  * @memberof HotelRoomOfferRequestApiResponse
72
72
  */
73
73
  id: string
74
+ /**
75
+ * Date of the **Hotel Room Offer Request** creation
76
+ * @type {string}
77
+ * @memberof HotelRoomOfferRequestApiResponse
78
+ */
79
+ createdAt: string
74
80
  /**
75
81
  * Requested number of adult(s) to be accommodated.
76
82
  * @type {number}
@@ -95,12 +101,6 @@ export interface HotelRoomOfferRequestResponse {
95
101
  * @memberof HotelRoomOfferRequestApiResponse
96
102
  */
97
103
  children?: string | null
98
- /**
99
- * Date of the **Hotel Room Offer Request** creation
100
- * @type {string}
101
- * @memberof HotelRoomOfferRequestApiResponse
102
- */
103
- createdAt: string
104
104
  /**
105
105
  *
106
106
  * @type {EventMetadataApi}
@@ -3,6 +3,7 @@ import type { IHotelRoomStock } from './hotel-room-stock.ts'
3
3
  export interface IHotelContract {
4
4
  id: string
5
5
  createdAt: string
6
+ updatedAt: string
6
7
  forcedTotalComissionsAmount: number
7
8
  forcedTotalPurchasedAmount: number
8
9
  forcedTotalVatComissionsAmount: number
@@ -10,6 +11,5 @@ export interface IHotelContract {
10
11
  hotelRoomStocks?: IHotelRoomStock[]
11
12
  name: string
12
13
  status: string
13
- updatedAt: string
14
14
  userId: string
15
15
  }