@vulog/aima-booking 1.1.54 → 1.1.55

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 CHANGED
@@ -242,7 +242,7 @@ var getStations = async (client, includes = []) => {
242
242
  );
243
243
  stations.forEach((station) => {
244
244
  if (services[station.id]) {
245
- Object.assign(station, services[station.poiId]);
245
+ Object.assign(station, services[station.id]);
246
246
  }
247
247
  });
248
248
  }
package/dist/index.mjs CHANGED
@@ -210,7 +210,7 @@ var getStations = async (client, includes = []) => {
210
210
  );
211
211
  stations.forEach((station) => {
212
212
  if (services[station.id]) {
213
- Object.assign(station, services[station.poiId]);
213
+ Object.assign(station, services[station.id]);
214
214
  }
215
215
  });
216
216
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vulog/aima-booking",
3
- "version": "1.1.54",
3
+ "version": "1.1.55",
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.54",
23
- "@vulog/aima-core": "1.1.54"
22
+ "@vulog/aima-client": "1.1.55",
23
+ "@vulog/aima-core": "1.1.55"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "es-toolkit": "^1.33.0",
@@ -157,7 +157,7 @@ export const getStations = async (client: Client, includes: Include[] = []): Pro
157
157
 
158
158
  stations.forEach((station) => {
159
159
  if (services[station.id]) {
160
- Object.assign(station, services[station.poiId]);
160
+ Object.assign(station, services[station.id]);
161
161
  }
162
162
  });
163
163
  }