@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.
- package/lib/apis/crm.d.ts +4 -0
- package/lib/apis/crm.d.ts.map +1 -0
- package/lib/apis/crm.js +41 -0
- package/lib/apis/crm.js.map +1 -0
- package/lib/apis/settings.d.ts +2 -0
- package/lib/apis/settings.d.ts.map +1 -0
- package/lib/apis/settings.js +26 -0
- package/lib/apis/settings.js.map +1 -0
- package/lib/apis/tenants.d.ts +4 -0
- package/lib/apis/tenants.d.ts.map +1 -0
- package/lib/apis/tenants.js +38 -0
- package/lib/apis/tenants.js.map +1 -0
- package/lib/apis/utils.d.ts +5 -0
- package/lib/apis/utils.d.ts.map +1 -0
- package/lib/apis/utils.js +34 -0
- package/lib/apis/utils.js.map +1 -0
- package/lib/constants.d.ts +1 -0
- package/lib/constants.d.ts.map +1 -1
- package/lib/constants.js +5 -1
- package/lib/constants.js.map +1 -1
- package/lib/types/settings.d.ts +5 -0
- package/lib/types/settings.d.ts.map +1 -1
- package/lib/types/storage.d.ts +2 -2
- package/lib/types/storage.d.ts.map +1 -1
- package/lib/types/tenants.d.ts +1 -7
- package/lib/types/tenants.d.ts.map +1 -1
- package/lib/types/vehicles.d.ts +7 -8
- package/lib/types/vehicles.d.ts.map +1 -1
- package/package.json +5 -3
- package/src/apis/crm.ts +51 -0
- package/src/apis/settings.ts +27 -0
- package/src/apis/tenants.ts +44 -0
- package/src/apis/utils.ts +31 -0
- package/src/constants.ts +5 -0
- package/src/types/settings.ts +7 -1
- package/src/types/storage.ts +2 -2
- package/src/types/tenants.ts +1 -8
- package/src/types/vehicles.ts +8 -8
- package/tsconfig.tsbuildinfo +919 -858
package/src/types/vehicles.ts
CHANGED
|
@@ -29,8 +29,9 @@ export type VehicleInternalInfo = {
|
|
|
29
29
|
};
|
|
30
30
|
marketingPlatforms: string[];
|
|
31
31
|
identification: {
|
|
32
|
-
administrativeNumber
|
|
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
|
+
};
|