@revolugo/booking-api-client 6.12.0-beta.2 → 6.12.0-beta.4

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.
@@ -2215,10 +2215,60 @@ export interface HotelOffersApiResponse {
2215
2215
  event?: any | null;
2216
2216
  /**
2217
2217
  *
2218
- * @type {MetaApiPollingResponse}
2218
+ * @type {HotelOffersApiResponseMeta}
2219
2219
  * @memberof HotelOffersApiResponse
2220
2220
  */
2221
- meta: MetaApiPollingResponse;
2221
+ meta: HotelOffersApiResponseMeta;
2222
+ }
2223
+ /**
2224
+ * Meta information about the response list, such as pagination cursors or status.
2225
+ * @export
2226
+ * @interface HotelOffersApiResponseMeta
2227
+ */
2228
+ export interface HotelOffersApiResponseMeta {
2229
+ /**
2230
+ * A cursor to use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
2231
+ * @type {string}
2232
+ * @memberof HotelOffersApiResponseMeta
2233
+ */
2234
+ endingBefore?: string | null;
2235
+ /**
2236
+ * A limit on the number of object to be returned.
2237
+ * @type {number}
2238
+ * @memberof HotelOffersApiResponseMeta
2239
+ */
2240
+ limit?: number;
2241
+ /**
2242
+ * A cursor to use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
2243
+ * @type {string}
2244
+ * @memberof HotelOffersApiResponseMeta
2245
+ */
2246
+ startingAfter?: string | null;
2247
+ /**
2248
+ *
2249
+ * @type {PollerStatus}
2250
+ * @memberof HotelOffersApiResponseMeta
2251
+ */
2252
+ status: PollerStatus;
2253
+ /**
2254
+ *
2255
+ * @type {number}
2256
+ * @memberof HotelOffersApiResponseMeta
2257
+ */
2258
+ totalCount: number;
2259
+ }
2260
+ /**
2261
+ *
2262
+ * @export
2263
+ * @interface HotelOffersApiResponseMetaAllOf
2264
+ */
2265
+ export interface HotelOffersApiResponseMetaAllOf {
2266
+ /**
2267
+ *
2268
+ * @type {number}
2269
+ * @memberof HotelOffersApiResponseMetaAllOf
2270
+ */
2271
+ totalCount: number;
2222
2272
  }
2223
2273
  /**
2224
2274
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolugo/booking-api-client",
3
- "version": "6.12.0-beta.2",
3
+ "version": "6.12.0-beta.4",
4
4
  "private": false,
5
5
  "description": "Javascript Revolugo Booking API Client (browser + server)",
6
6
  "keywords": [
@@ -37,9 +37,9 @@
37
37
  "@hono/node-server": "1.19.5",
38
38
  "hono": "4.10.3",
39
39
  "@revolugo/booking-api": "6.12.0",
40
- "@revolugo/engines": "6.12.0",
41
40
  "@revolugo/env": "6.12.0",
42
41
  "@revolugo/models": "6.12.0",
42
+ "@revolugo/engines": "6.12.0",
43
43
  "@revolugo/node": "6.12.0"
44
44
  },
45
45
  "engines": {