@alba-cars/common-modules 1.10.29 → 1.10.30
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.
|
@@ -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",
|
|
@@ -96,6 +97,7 @@ export declare class SalesAgentGetDTO {
|
|
|
96
97
|
photo?: string;
|
|
97
98
|
agentShortIntro?: string;
|
|
98
99
|
agentIntro?: string;
|
|
100
|
+
sortOrder?: number;
|
|
99
101
|
bioVideoUrl?: string;
|
|
100
102
|
status: number;
|
|
101
103
|
teamCategory: TeamCategory;
|
|
@@ -119,6 +121,7 @@ export declare class SalesAgentResponseDTO {
|
|
|
119
121
|
agentIntro?: string;
|
|
120
122
|
bioVideoUrl?: string;
|
|
121
123
|
status: number;
|
|
124
|
+
sortOrder?: number;
|
|
122
125
|
teamCategory: TeamCategory;
|
|
123
126
|
designation: Designation;
|
|
124
127
|
languages: Languages[];
|
|
@@ -134,6 +137,7 @@ export declare class SalesAgentCreateDTO {
|
|
|
134
137
|
name: string;
|
|
135
138
|
phone: string;
|
|
136
139
|
email: string;
|
|
140
|
+
sortOrder?: number;
|
|
137
141
|
photo?: string;
|
|
138
142
|
agentShortIntro?: string;
|
|
139
143
|
agentIntro?: string;
|
|
@@ -154,6 +158,7 @@ export declare class SalesAgentUpdateDTO {
|
|
|
154
158
|
email?: string;
|
|
155
159
|
photo?: string;
|
|
156
160
|
agentShortIntro?: string;
|
|
161
|
+
sortOrder?: number;
|
|
157
162
|
agentIntro?: string;
|
|
158
163
|
bioVideoUrl?: string;
|
|
159
164
|
status?: number;
|
|
@@ -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";
|
|
@@ -270,6 +271,11 @@ __decorate([
|
|
|
270
271
|
(0, class_validator_1.IsOptional)(),
|
|
271
272
|
__metadata("design:type", String)
|
|
272
273
|
], SalesAgentGetDTO.prototype, "agentIntro", void 0);
|
|
274
|
+
__decorate([
|
|
275
|
+
(0, class_validator_1.IsNumber)(),
|
|
276
|
+
(0, class_validator_1.IsOptional)(),
|
|
277
|
+
__metadata("design:type", Number)
|
|
278
|
+
], SalesAgentGetDTO.prototype, "sortOrder", void 0);
|
|
273
279
|
__decorate([
|
|
274
280
|
(0, class_validator_1.IsString)(),
|
|
275
281
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -360,6 +366,11 @@ __decorate([
|
|
|
360
366
|
(0, class_validator_1.IsNumber)(),
|
|
361
367
|
__metadata("design:type", Number)
|
|
362
368
|
], SalesAgentResponseDTO.prototype, "status", void 0);
|
|
369
|
+
__decorate([
|
|
370
|
+
(0, class_validator_1.IsNumber)(),
|
|
371
|
+
(0, class_validator_1.IsOptional)(),
|
|
372
|
+
__metadata("design:type", Number)
|
|
373
|
+
], SalesAgentResponseDTO.prototype, "sortOrder", void 0);
|
|
363
374
|
__decorate([
|
|
364
375
|
(0, class_validator_1.IsEnum)(TeamCategory),
|
|
365
376
|
__metadata("design:type", String)
|
|
@@ -438,6 +449,11 @@ __decorate([
|
|
|
438
449
|
(0, class_validator_1.IsEmail)(),
|
|
439
450
|
__metadata("design:type", String)
|
|
440
451
|
], SalesAgentCreateDTO.prototype, "email", void 0);
|
|
452
|
+
__decorate([
|
|
453
|
+
(0, class_validator_1.IsNumber)(),
|
|
454
|
+
(0, class_validator_1.IsOptional)(),
|
|
455
|
+
__metadata("design:type", Number)
|
|
456
|
+
], SalesAgentCreateDTO.prototype, "sortOrder", void 0);
|
|
441
457
|
__decorate([
|
|
442
458
|
(0, class_validator_1.IsString)(),
|
|
443
459
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -547,6 +563,11 @@ __decorate([
|
|
|
547
563
|
(0, class_validator_1.IsString)(),
|
|
548
564
|
__metadata("design:type", String)
|
|
549
565
|
], SalesAgentUpdateDTO.prototype, "agentShortIntro", void 0);
|
|
566
|
+
__decorate([
|
|
567
|
+
(0, class_validator_1.IsNumber)(),
|
|
568
|
+
(0, class_validator_1.IsOptional)(),
|
|
569
|
+
__metadata("design:type", Number)
|
|
570
|
+
], SalesAgentUpdateDTO.prototype, "sortOrder", void 0);
|
|
550
571
|
__decorate([
|
|
551
572
|
(0, class_validator_1.IsOptional)(),
|
|
552
573
|
(0, class_validator_1.IsString)(),
|
package/package.json
CHANGED