@revolugo/booking-api-client 6.10.4-rc.0 → 6.10.5-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.
- package/dist/index.es.js +7 -10
- package/package.json +9 -7
package/dist/index.es.js
CHANGED
|
@@ -4090,16 +4090,13 @@ class oe {
|
|
|
4090
4090
|
return (t?.meta?.status ?? "") !== "COMPLETE";
|
|
4091
4091
|
}
|
|
4092
4092
|
buildPollerOptions(t) {
|
|
4093
|
-
const a = Object.entries(t).reduce(
|
|
4094
|
-
(
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
},
|
|
4101
|
-
{}
|
|
4102
|
-
);
|
|
4093
|
+
const a = Object.entries(t).reduce((n, [r, l]) => {
|
|
4094
|
+
if (l !== void 0) {
|
|
4095
|
+
const s = r;
|
|
4096
|
+
n[s] = l;
|
|
4097
|
+
}
|
|
4098
|
+
return n;
|
|
4099
|
+
}, {});
|
|
4103
4100
|
return {
|
|
4104
4101
|
...this.defaultOptions,
|
|
4105
4102
|
...a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revolugo/booking-api-client",
|
|
3
|
-
"version": "6.10.
|
|
3
|
+
"version": "6.10.5-beta.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Javascript Revolugo Booking API Client (browser + server)",
|
|
6
6
|
"keywords": [
|
|
@@ -32,14 +32,16 @@
|
|
|
32
32
|
"joi": "18.0.1",
|
|
33
33
|
"lodash-es": "4.17.21",
|
|
34
34
|
"uuid": "13.0.0",
|
|
35
|
-
"@revolugo/common": "6.10.
|
|
35
|
+
"@revolugo/common": "6.10.5"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@
|
|
39
|
-
"
|
|
40
|
-
"@revolugo/
|
|
41
|
-
"@revolugo/
|
|
42
|
-
"@revolugo/node": "6.10.
|
|
38
|
+
"@hono/node-server": "1.19.4",
|
|
39
|
+
"hono": "4.9.9",
|
|
40
|
+
"@revolugo/booking-api": "6.10.5",
|
|
41
|
+
"@revolugo/env": "6.10.5",
|
|
42
|
+
"@revolugo/node": "6.10.5",
|
|
43
|
+
"@revolugo/models": "6.10.5",
|
|
44
|
+
"@revolugo/engines": "6.10.5"
|
|
43
45
|
},
|
|
44
46
|
"engines": {
|
|
45
47
|
"node": ">=20.18.1 <25"
|