@revolugo/booking-api-client 6.13.0 → 6.13.1-beta.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.
@@ -1586,10 +1586,10 @@ export interface HotelApi {
1586
1586
  postalCode?: string | null;
1587
1587
  /**
1588
1588
  * Hotel Star rating.
1589
- * @type {any}
1589
+ * @type {number}
1590
1590
  * @memberof HotelApi
1591
1591
  */
1592
- rating?: any | null;
1592
+ rating?: number | null;
1593
1593
  /**
1594
1594
  * Hotel address state.
1595
1595
  * @type {string}
@@ -1865,10 +1865,10 @@ export interface HotelOfferApi {
1865
1865
  postalCode?: string | null;
1866
1866
  /**
1867
1867
  * Hotel Star rating.
1868
- * @type {any}
1868
+ * @type {number}
1869
1869
  * @memberof HotelOfferApi
1870
1870
  */
1871
- rating?: any | null;
1871
+ rating?: number | null;
1872
1872
  /**
1873
1873
  * Hotel address state.
1874
1874
  * @type {string}
@@ -2418,6 +2418,12 @@ export interface HotelRoomApi {
2418
2418
  * @memberof HotelRoomApi
2419
2419
  */
2420
2420
  imageIndexes?: Array<number> | null;
2421
+ /**
2422
+ * Hotel Room images.
2423
+ * @type {Array<HotelImageApi>}
2424
+ * @memberof HotelRoomApi
2425
+ */
2426
+ images?: Array<HotelImageApi> | null;
2421
2427
  /**
2422
2428
  * Whether low resolution images are available.
2423
2429
  * @type {boolean}
@@ -3132,6 +3138,12 @@ export interface HotelRoomingListApiHotelRoom {
3132
3138
  * @memberof HotelRoomingListApiHotelRoom
3133
3139
  */
3134
3140
  imageIndexes?: Array<number> | null;
3141
+ /**
3142
+ * Hotel Room images.
3143
+ * @type {Array<HotelImageApi>}
3144
+ * @memberof HotelRoomingListApiHotelRoom
3145
+ */
3146
+ images?: Array<HotelImageApi> | null;
3135
3147
  /**
3136
3148
  * Whether low resolution images are available.
3137
3149
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolugo/booking-api-client",
3
- "version": "6.13.0",
3
+ "version": "6.13.1-beta.0",
4
4
  "private": false,
5
5
  "description": "Javascript Revolugo Booking API Client (browser + server)",
6
6
  "keywords": [
@@ -31,16 +31,16 @@
31
31
  "cross-fetch": "4.1.0",
32
32
  "joi": "18.0.1",
33
33
  "uuid": "13.0.0",
34
- "@revolugo/common": "6.13.0"
34
+ "@revolugo/common": "6.13.1"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@hono/node-server": "1.19.6",
38
- "hono": "4.10.4",
39
- "@revolugo/booking-api": "6.13.0",
40
- "@revolugo/env": "6.13.0",
41
- "@revolugo/engines": "6.13.0",
42
- "@revolugo/models": "6.13.0",
43
- "@revolugo/node": "6.13.0"
38
+ "hono": "4.10.6",
39
+ "@revolugo/booking-api": "6.13.1",
40
+ "@revolugo/engines": "6.13.1",
41
+ "@revolugo/env": "6.13.1",
42
+ "@revolugo/models": "6.13.1",
43
+ "@revolugo/node": "6.13.1"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=20.18.1 <25"