@alba-cars/common-modules 1.10.29 → 1.10.31
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.
|
@@ -5,7 +5,7 @@ export declare enum Designation {
|
|
|
5
5
|
CO_FOUNDER = "co-founder",
|
|
6
6
|
CHIEF_SALES_OFFICER = "chief sales officer",
|
|
7
7
|
CHIEF_PURCHASING_OFFICER = "Chief Purchasing Officer",
|
|
8
|
-
PURCHASER = "
|
|
8
|
+
PURCHASER = "Purchase Manager",
|
|
9
9
|
FINANCE_MANAGER = "Finance Manager",
|
|
10
10
|
HEAD_OF_ACCOUNTS = "Head of Accounts",
|
|
11
11
|
CHIEF_MARKETING_OFFICER = "Chief Marketing Officer",
|
|
@@ -43,6 +43,7 @@ export declare enum Languages {
|
|
|
43
43
|
JAPANESE = "Japanese",
|
|
44
44
|
VIETNAMESE = "Vietnamese",
|
|
45
45
|
THAI = "Thai",
|
|
46
|
+
TAGALOG = "Tagalog",
|
|
46
47
|
FILIPINO = "Filipino",
|
|
47
48
|
INDONESIAN = "Indonesian",
|
|
48
49
|
MALAY = "Malay",
|
|
@@ -65,6 +66,7 @@ export declare class SalesAgentFilterDTO {
|
|
|
65
66
|
status?: number;
|
|
66
67
|
teamCategory?: TeamCategory;
|
|
67
68
|
designation?: Designation;
|
|
69
|
+
sortOrder?: number;
|
|
68
70
|
languages?: Languages[];
|
|
69
71
|
isActive?: boolean;
|
|
70
72
|
createdAtStart?: Date;
|
|
@@ -96,6 +98,7 @@ export declare class SalesAgentGetDTO {
|
|
|
96
98
|
photo?: string;
|
|
97
99
|
agentShortIntro?: string;
|
|
98
100
|
agentIntro?: string;
|
|
101
|
+
sortOrder?: number;
|
|
99
102
|
bioVideoUrl?: string;
|
|
100
103
|
status: number;
|
|
101
104
|
teamCategory: TeamCategory;
|
|
@@ -119,6 +122,7 @@ export declare class SalesAgentResponseDTO {
|
|
|
119
122
|
agentIntro?: string;
|
|
120
123
|
bioVideoUrl?: string;
|
|
121
124
|
status: number;
|
|
125
|
+
sortOrder?: number;
|
|
122
126
|
teamCategory: TeamCategory;
|
|
123
127
|
designation: Designation;
|
|
124
128
|
languages: Languages[];
|
|
@@ -134,6 +138,7 @@ export declare class SalesAgentCreateDTO {
|
|
|
134
138
|
name: string;
|
|
135
139
|
phone: string;
|
|
136
140
|
email: string;
|
|
141
|
+
sortOrder?: number;
|
|
137
142
|
photo?: string;
|
|
138
143
|
agentShortIntro?: string;
|
|
139
144
|
agentIntro?: string;
|
|
@@ -154,6 +159,7 @@ export declare class SalesAgentUpdateDTO {
|
|
|
154
159
|
email?: string;
|
|
155
160
|
photo?: string;
|
|
156
161
|
agentShortIntro?: string;
|
|
162
|
+
sortOrder?: number;
|
|
157
163
|
agentIntro?: string;
|
|
158
164
|
bioVideoUrl?: string;
|
|
159
165
|
status?: number;
|
|
@@ -20,7 +20,7 @@ var Designation;
|
|
|
20
20
|
Designation["CO_FOUNDER"] = "co-founder";
|
|
21
21
|
Designation["CHIEF_SALES_OFFICER"] = "chief sales officer";
|
|
22
22
|
Designation["CHIEF_PURCHASING_OFFICER"] = "Chief Purchasing Officer";
|
|
23
|
-
Designation["PURCHASER"] = "
|
|
23
|
+
Designation["PURCHASER"] = "Purchase Manager";
|
|
24
24
|
Designation["FINANCE_MANAGER"] = "Finance Manager";
|
|
25
25
|
Designation["HEAD_OF_ACCOUNTS"] = "Head of Accounts";
|
|
26
26
|
Designation["CHIEF_MARKETING_OFFICER"] = "Chief Marketing Officer";
|
|
@@ -63,6 +63,7 @@ var Languages;
|
|
|
63
63
|
Languages["JAPANESE"] = "Japanese";
|
|
64
64
|
Languages["VIETNAMESE"] = "Vietnamese";
|
|
65
65
|
Languages["THAI"] = "Thai";
|
|
66
|
+
Languages["TAGALOG"] = "Tagalog";
|
|
66
67
|
Languages["FILIPINO"] = "Filipino";
|
|
67
68
|
Languages["INDONESIAN"] = "Indonesian";
|
|
68
69
|
Languages["MALAY"] = "Malay";
|
|
@@ -126,6 +127,11 @@ __decorate([
|
|
|
126
127
|
(0, class_validator_1.IsEnum)(Designation),
|
|
127
128
|
__metadata("design:type", String)
|
|
128
129
|
], SalesAgentFilterDTO.prototype, "designation", void 0);
|
|
130
|
+
__decorate([
|
|
131
|
+
(0, class_validator_1.IsNumber)(),
|
|
132
|
+
(0, class_validator_1.IsOptional)(),
|
|
133
|
+
__metadata("design:type", Number)
|
|
134
|
+
], SalesAgentFilterDTO.prototype, "sortOrder", void 0);
|
|
129
135
|
__decorate([
|
|
130
136
|
(0, class_validator_1.IsOptional)(),
|
|
131
137
|
(0, class_validator_1.IsArray)(),
|
|
@@ -270,6 +276,11 @@ __decorate([
|
|
|
270
276
|
(0, class_validator_1.IsOptional)(),
|
|
271
277
|
__metadata("design:type", String)
|
|
272
278
|
], SalesAgentGetDTO.prototype, "agentIntro", void 0);
|
|
279
|
+
__decorate([
|
|
280
|
+
(0, class_validator_1.IsNumber)(),
|
|
281
|
+
(0, class_validator_1.IsOptional)(),
|
|
282
|
+
__metadata("design:type", Number)
|
|
283
|
+
], SalesAgentGetDTO.prototype, "sortOrder", void 0);
|
|
273
284
|
__decorate([
|
|
274
285
|
(0, class_validator_1.IsString)(),
|
|
275
286
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -360,6 +371,11 @@ __decorate([
|
|
|
360
371
|
(0, class_validator_1.IsNumber)(),
|
|
361
372
|
__metadata("design:type", Number)
|
|
362
373
|
], SalesAgentResponseDTO.prototype, "status", void 0);
|
|
374
|
+
__decorate([
|
|
375
|
+
(0, class_validator_1.IsNumber)(),
|
|
376
|
+
(0, class_validator_1.IsOptional)(),
|
|
377
|
+
__metadata("design:type", Number)
|
|
378
|
+
], SalesAgentResponseDTO.prototype, "sortOrder", void 0);
|
|
363
379
|
__decorate([
|
|
364
380
|
(0, class_validator_1.IsEnum)(TeamCategory),
|
|
365
381
|
__metadata("design:type", String)
|
|
@@ -438,6 +454,11 @@ __decorate([
|
|
|
438
454
|
(0, class_validator_1.IsEmail)(),
|
|
439
455
|
__metadata("design:type", String)
|
|
440
456
|
], SalesAgentCreateDTO.prototype, "email", void 0);
|
|
457
|
+
__decorate([
|
|
458
|
+
(0, class_validator_1.IsNumber)(),
|
|
459
|
+
(0, class_validator_1.IsOptional)(),
|
|
460
|
+
__metadata("design:type", Number)
|
|
461
|
+
], SalesAgentCreateDTO.prototype, "sortOrder", void 0);
|
|
441
462
|
__decorate([
|
|
442
463
|
(0, class_validator_1.IsString)(),
|
|
443
464
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -547,6 +568,11 @@ __decorate([
|
|
|
547
568
|
(0, class_validator_1.IsString)(),
|
|
548
569
|
__metadata("design:type", String)
|
|
549
570
|
], SalesAgentUpdateDTO.prototype, "agentShortIntro", void 0);
|
|
571
|
+
__decorate([
|
|
572
|
+
(0, class_validator_1.IsNumber)(),
|
|
573
|
+
(0, class_validator_1.IsOptional)(),
|
|
574
|
+
__metadata("design:type", Number)
|
|
575
|
+
], SalesAgentUpdateDTO.prototype, "sortOrder", void 0);
|
|
550
576
|
__decorate([
|
|
551
577
|
(0, class_validator_1.IsOptional)(),
|
|
552
578
|
(0, class_validator_1.IsString)(),
|
package/package.json
CHANGED