@bisondesk/core-sdk 1.0.61 → 1.0.63

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.
@@ -29,8 +29,9 @@ export type VehicleInternalInfo = {
29
29
  };
30
30
  marketingPlatforms: string[];
31
31
  identification: {
32
- administrativeNumber: string;
32
+ administrativeNumber?: string;
33
33
  stockNumber: string;
34
+ hyperdmsTenantId?: string;
34
35
  };
35
36
  pricing: {
36
37
  premium?: string;
@@ -45,14 +46,8 @@ export type VehicleOriginalInfo = {
45
46
  tenantId: string;
46
47
  identification: {
47
48
  id: string;
48
- administrativeNumber: string;
49
49
  stockNumber: string;
50
- };
51
- description?: {
52
- remarks?: MultiLangValue;
53
- titles?: MultiLangValue;
54
- internalRemarks?: MultiLangValue;
55
- internalTechnicalRemarks?: MultiLangValue;
50
+ hyperdmsTenantId?: string;
56
51
  };
57
52
  salesConditions: {
58
53
  leasing?: boolean;
@@ -280,3 +275,8 @@ export type VehicleAxle = {
280
275
  tyreConditionPercRightOutside?: number;
281
276
  tyreSize?: string;
282
277
  };
278
+
279
+ export type VehicleMarketing = {
280
+ titles: MultiLangValue;
281
+ remarks?: MultiLangValue;
282
+ };