@bisondesk/core-sdk 1.0.418 → 1.0.420
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/lib/types/crm.d.ts +1 -0
- package/lib/types/crm.d.ts.map +1 -1
- package/lib/types/crm.js +1 -0
- package/lib/types/crm.js.map +1 -1
- package/lib/types/marketing.d.ts +14 -7
- package/lib/types/marketing.d.ts.map +1 -1
- package/lib/types/marketing.js.map +1 -1
- package/lib/types/offers.d.ts +25 -3
- package/lib/types/offers.d.ts.map +1 -1
- package/lib/types/offers.js.map +1 -1
- package/lib/types/vehicles.d.ts +12 -0
- package/lib/types/vehicles.d.ts.map +1 -1
- package/lib/types/vehicles.js.map +1 -1
- package/package.json +1 -1
- package/src/types/crm.ts +1 -0
- package/src/types/marketing.ts +9 -7
- package/src/types/offers.ts +30 -3
- package/src/types/vehicles.ts +12 -0
- package/tsconfig.tsbuildinfo +1 -1
package/src/types/vehicles.ts
CHANGED
|
@@ -333,6 +333,11 @@ export type VehicleOriginalInfo = {
|
|
|
333
333
|
reserved?: boolean;
|
|
334
334
|
price?: string;
|
|
335
335
|
currency?: string;
|
|
336
|
+
marginScheme?: boolean;
|
|
337
|
+
manufacturerWarranty?: {
|
|
338
|
+
remarks?: string;
|
|
339
|
+
available?: boolean;
|
|
340
|
+
};
|
|
336
341
|
};
|
|
337
342
|
};
|
|
338
343
|
|
|
@@ -412,6 +417,8 @@ export type VehicleExternalInfo = {
|
|
|
412
417
|
currentRegistration?: {
|
|
413
418
|
country?: string;
|
|
414
419
|
technicalInspectionEndDate?: string;
|
|
420
|
+
carpassUrl?: string;
|
|
421
|
+
carpassAvailable?: boolean;
|
|
415
422
|
};
|
|
416
423
|
firstRegistration?: string;
|
|
417
424
|
cocPvg?: string;
|
|
@@ -448,6 +455,11 @@ export type VehicleExternalInfo = {
|
|
|
448
455
|
expected?: boolean;
|
|
449
456
|
price?: string | undefined;
|
|
450
457
|
currency?: string | undefined;
|
|
458
|
+
marginScheme?: boolean;
|
|
459
|
+
manufacturerWarranty?: {
|
|
460
|
+
remarks?: string;
|
|
461
|
+
available?: boolean;
|
|
462
|
+
};
|
|
451
463
|
};
|
|
452
464
|
superstructure?: VehicleSuperstructure;
|
|
453
465
|
weights?: {
|