@bisondesk/core-sdk 1.0.306 → 1.0.308

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bisondesk/core-sdk",
3
- "version": "1.0.306",
3
+ "version": "1.0.308",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "clean": "rm -rf build dist lib *.tsbuildinfo",
@@ -72,11 +72,13 @@ export type NewVehicleRequest = {
72
72
  technicalRemarks?: string;
73
73
  };
74
74
  logistics: {
75
- vehicleRole: VehicleInternalInfo['role'];
76
75
  parking: string;
77
76
  deliveryType: VehiclePurchaseDeliveryType;
78
- availableDate: string;
79
77
  pickupAddress?: LocationValue;
78
+ checkedInAt?: string;
79
+ checkedInBy?: string;
80
+ arrivedAt?: string;
81
+ arrivedBy?: string;
80
82
  };
81
83
  prices: {
82
84
  minimum?: string;
@@ -109,6 +111,10 @@ export type NewVehicleRequest = {
109
111
  internalGarage?: string;
110
112
  other?: string;
111
113
  };
114
+ logistics: {
115
+ availableDate: string;
116
+ vehicleRole: VehicleInternalInfo['role'];
117
+ };
112
118
  };
113
119
  };
114
120