@vulog/aima-booking 1.1.55 → 1.1.56
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
- package/src/getStations.ts +1 -1
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vulog/aima-booking",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.56",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"author": "Vulog",
|
|
20
20
|
"license": "ISC",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@vulog/aima-client": "1.1.
|
|
23
|
-
"@vulog/aima-core": "1.1.
|
|
22
|
+
"@vulog/aima-client": "1.1.56",
|
|
23
|
+
"@vulog/aima-core": "1.1.56"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"es-toolkit": "^1.33.0",
|
package/src/getStations.ts
CHANGED
|
@@ -149,7 +149,7 @@ export const getStations = async (client: Client, includes: Include[] = []): Pro
|
|
|
149
149
|
}
|
|
150
150
|
acc[service.station.id].services.push({
|
|
151
151
|
id: service.serviceId,
|
|
152
|
-
models: service.models,
|
|
152
|
+
models: service.station.models,
|
|
153
153
|
});
|
|
154
154
|
return acc;
|
|
155
155
|
}, {})
|