@alba-cars/common-modules 2.1.1 → 2.3.0

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.
@@ -27,5 +27,10 @@ export declare class BankValuationRequest {
27
27
  images?: string[];
28
28
  createdAt?: Date;
29
29
  updatedAt?: Date;
30
- sessionId?: string;
30
+ sessionId?: string | null;
31
+ bankApplicationId?: string | null;
32
+ rejectionReason?: string | null;
33
+ approvalComments?: string | null;
34
+ approvedValuation?: number | null;
35
+ certificateUrl?: string | null;
31
36
  }
@@ -74,6 +74,8 @@ export declare class SalesAgentFilterDTO {
74
74
  createdAtEnd?: Date;
75
75
  lastLoginStart?: Date;
76
76
  lastLoginEnd?: Date;
77
+ nationality?: string;
78
+ previousWorkplace?: string;
77
79
  validate(): string[];
78
80
  static fromPlain(plain: Record<string, unknown>): SalesAgentFilterDTO;
79
81
  toPlain(): Record<string, unknown>;
@@ -107,6 +109,8 @@ export declare class SalesAgentGetDTO {
107
109
  languages: Languages[];
108
110
  filter?: SalesAgentFilterDTO;
109
111
  options?: SalesAgentOptionsDTO;
112
+ nationality?: string;
113
+ previousWorkplace?: string;
110
114
  static fromPlain(plain: Record<string, unknown>): SalesAgentGetDTO;
111
115
  static toPlain(instance: SalesAgentGetDTO): Record<string, unknown>;
112
116
  toPlain(): Record<string, unknown>;
@@ -131,6 +135,8 @@ export declare class SalesAgentResponseDTO {
131
135
  createdAt: Date;
132
136
  updatedAt: Date;
133
137
  lastLogin?: Date;
138
+ nationality?: string;
139
+ previousWorkplace?: string;
134
140
  validate(): string[];
135
141
  static fromPlain(plain: Record<string, unknown>): SalesAgentResponseDTO;
136
142
  toPlain(): Record<string, unknown>;
@@ -148,6 +154,8 @@ export declare class SalesAgentCreateDTO {
148
154
  teamCategory: TeamCategory;
149
155
  designation: Designation;
150
156
  languages: Languages[];
157
+ nationality?: string;
158
+ previousWorkplace?: string;
151
159
  validate(): string[];
152
160
  toUserDTO(): UserCreateDTO;
153
161
  toSalesAgentData(): Partial<any>;
@@ -168,6 +176,8 @@ export declare class SalesAgentUpdateDTO {
168
176
  designation?: Designation;
169
177
  languages?: Languages[];
170
178
  isActive?: boolean;
179
+ nationality?: string;
180
+ previousWorkplace?: string;
171
181
  validate(): string[];
172
182
  toUserDTO(): UserUpdateDTO;
173
183
  toSalesAgentData(): Partial<any>;