@vulog/aima-vehicle 1.2.16 → 1.2.18

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/README.md CHANGED
@@ -169,6 +169,8 @@ interface VehicleRealTime {
169
169
  plate: string;
170
170
  vin: string;
171
171
  fleetid: string;
172
+ currentFleetId: string;
173
+ ownerFleetId: string;
172
174
  boxid: string;
173
175
  vehicle_status: number;
174
176
  zones: Zone[];
package/dist/index.d.mts CHANGED
@@ -114,6 +114,8 @@ type VehicleRealTime = {
114
114
  plate: string;
115
115
  vin: string;
116
116
  fleetid: string;
117
+ currentFleetId: string;
118
+ ownerFleetId: string;
117
119
  boxid: string;
118
120
  vehicle_status: number;
119
121
  zones: Zone[];
package/dist/index.d.ts CHANGED
@@ -114,6 +114,8 @@ type VehicleRealTime = {
114
114
  plate: string;
115
115
  vin: string;
116
116
  fleetid: string;
117
+ currentFleetId: string;
118
+ ownerFleetId: string;
117
119
  boxid: string;
118
120
  vehicle_status: number;
119
121
  zones: Zone[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vulog/aima-vehicle",
3
- "version": "1.2.16",
3
+ "version": "1.2.18",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -19,11 +19,11 @@
19
19
  "author": "Vulog",
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
- "@vulog/aima-client": "1.2.16",
23
- "@vulog/aima-core": "1.2.16"
22
+ "@vulog/aima-client": "1.2.18",
23
+ "@vulog/aima-core": "1.2.18"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "zod": "^3.25.76"
27
27
  },
28
28
  "description": ""
29
- }
29
+ }
package/src/types.ts CHANGED
@@ -115,6 +115,8 @@ export type VehicleRealTime = {
115
115
  plate: string;
116
116
  vin: string;
117
117
  fleetid: string;
118
+ currentFleetId: string;
119
+ ownerFleetId: string;
118
120
  boxid: string;
119
121
  vehicle_status: number;
120
122
  zones: Zone[];