@investtal/models 1.2.61 → 1.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.
package/dist/index.mjs CHANGED
@@ -11,57 +11,265 @@ let SortDirection = /* @__PURE__ */ function(SortDirection) {
11
11
  //#region src/generated/administrator/exceptions.ts
12
12
  const DocumentExceptions = { DOCUMENT_NOT_FOUND: "Document not found" };
13
13
  //#endregion
14
- //#region src/generated/ticket/ticket.enum.ts
15
- let TicketType = /* @__PURE__ */ function(TicketType) {
16
- TicketType["APPROVE_USER_TO_BROKER"] = "APPROVE_USER_TO_BROKER";
17
- TicketType["APPROVE_USER_TO_INVESTOR_REPRESENTATIVE"] = "APPROVE_USER_TO_INVESTOR_REPRESENTATIVE";
18
- return TicketType;
14
+ //#region src/generated/blacklist/exceptions.ts
15
+ const BlacklistExceptions = {
16
+ FORBIDDEN: "You are not authorized to create a blacklist",
17
+ NOT_FOUND: "Blacklist not found"
18
+ };
19
+ //#endregion
20
+ //#region src/generated/blacklist/blacklist.enum.ts
21
+ let BlackListEntityType = /* @__PURE__ */ function(BlackListEntityType) {
22
+ BlackListEntityType["USER"] = "USER";
23
+ BlackListEntityType["ORGANIZATION"] = "ORGANIZATION";
24
+ return BlackListEntityType;
19
25
  }({});
20
- let TicketStatus = /* @__PURE__ */ function(TicketStatus) {
21
- TicketStatus["PENDING"] = "PENDING";
22
- TicketStatus["PROCESSING"] = "PROCESSING";
23
- TicketStatus["APPROVED"] = "APPROVED";
24
- TicketStatus["REJECTED"] = "REJECTED";
25
- return TicketStatus;
26
+ let BlackListStatus = /* @__PURE__ */ function(BlackListStatus) {
27
+ BlackListStatus["ACTIVE"] = "ACTIVE";
28
+ BlackListStatus["EXPIRED"] = "EXPIRED";
29
+ BlackListStatus["REMOVED"] = "REMOVED";
30
+ return BlackListStatus;
26
31
  }({});
27
32
  //#endregion
28
- //#region src/generated/agreement/exceptions.ts
29
- const AgreementExceptions = {
30
- AGREEMENT_NOT_FOUND: "Agreement not found",
31
- AGREEMENT_IS_NOT_ALLOW: "Agreement is not allowed",
32
- AGREEMENT_ALREADY_SIGNED: "Agreement already signed"
33
+ //#region src/generated/conversation/exceptions.ts
34
+ const ConversationExceptions = {
35
+ CHAT_GROUP_NOT_FOUND: "Chat group not found",
36
+ MEMBER_NOT_FOUND: "Member not found",
37
+ NOT_CHAT_GROUP_MEMBER: "User is not a member of this chat group",
38
+ ALREADY_MEMBER: "User is already a member of this chat group",
39
+ INSUFFICIENT_PERMISSIONS: "Insufficient permissions to perform this action",
40
+ MEMBER_ALREADY_EXISTS: "Member already exists in this chat group",
41
+ MEMBER_HAS_LEFT: "Member has left this chat group",
42
+ CANNOT_DELETE_DIRECT_MESSAGE: "Cannot delete direct message chat group",
43
+ CANNOT_DELETE_DEAL_LINKED_CHAT: "Cannot delete chat group linked to a deal",
44
+ CANNOT_DELETE_DEAL_STEP_LINKED_CHAT: "Cannot delete chat group linked to a deal step",
45
+ MESSAGE_NOT_FOUND: "Message not found",
46
+ MESSAGE_NOT_IN_CHAT_GROUP: "Message does not belong to this chat group"
33
47
  };
34
- const AgreementTypeExceptions = {
35
- AGREEMENT_TYPE_NOT_FOUND: "Agreement type not found",
36
- AGREEMENT_TYPE_IS_NOT_ALLOW: "Agreement type is not allow"
48
+ //#endregion
49
+ //#region src/generated/conversation/conversation.enum.ts
50
+ let ChatGroupMemberRole = /* @__PURE__ */ function(ChatGroupMemberRole) {
51
+ ChatGroupMemberRole["ADMIN"] = "ADMIN";
52
+ ChatGroupMemberRole["MEMBER"] = "MEMBER";
53
+ ChatGroupMemberRole["GUEST"] = "GUEST";
54
+ return ChatGroupMemberRole;
55
+ }({});
56
+ let MessageType = /* @__PURE__ */ function(MessageType) {
57
+ MessageType["TEXT"] = "TEXT";
58
+ MessageType["IMAGE"] = "IMAGE";
59
+ MessageType["VIDEO"] = "VIDEO";
60
+ MessageType["AUDIO"] = "AUDIO";
61
+ MessageType["DOCUMENT"] = "DOCUMENT";
62
+ MessageType["LINK"] = "LINK";
63
+ return MessageType;
64
+ }({});
65
+ //#endregion
66
+ //#region src/generated/investor/exceptions.ts
67
+ const InvestorExceptions = {
68
+ INVESTOR_NOT_FOUND: "Investor not found",
69
+ MEMBER_NOT_FOUND: "Member not found",
70
+ MEMBER_ALREADY_DELETED: "Member already deleted",
71
+ MEMBER_ALREADY_REGISTERED: "Member already registered",
72
+ ORGANIZATION_NOT_FOUND: "Organization not found",
73
+ ROLE_NOT_FOUND: "Role not found"
37
74
  };
38
75
  //#endregion
39
- //#region src/generated/agreement-template/exceptions.ts
40
- const AgreementTemplateExceptions = {
41
- TEMPLATE_NOT_FOUND: "Agreement template not found",
42
- FILE_NOT_FOUND: "Template file not found",
43
- ACCESS_DENIED: "Access denied to this template",
44
- PERMISSION_DENIED: "Permission denied",
45
- TEMPLATE_IN_USE: "Template is in use and cannot be deleted",
46
- CREATION_FAILED: "Failed to create agreement template",
47
- INVALID_TEMPLATE_TYPE: "Invalid template type for user role",
48
- TEMPLATE_ALREADY_EXISTS: "Agreement template already exists"
76
+ //#region src/generated/notification/notification.enum.ts
77
+ let NotificationEnv = /* @__PURE__ */ function(NotificationEnv) {
78
+ NotificationEnv["PRODUCTION"] = "production";
79
+ NotificationEnv["TESTING"] = "testing";
80
+ NotificationEnv["STAGING"] = "staging";
81
+ return NotificationEnv;
82
+ }({});
83
+ let NotificationType = /* @__PURE__ */ function(NotificationType) {
84
+ NotificationType["EMAIL"] = "EMAIL";
85
+ NotificationType["SMS"] = "SMS";
86
+ NotificationType["PUSH"] = "PUSH";
87
+ return NotificationType;
88
+ }({});
89
+ let NotificationDetailStatus = /* @__PURE__ */ function(NotificationDetailStatus) {
90
+ NotificationDetailStatus["CREATED"] = "CREATED";
91
+ NotificationDetailStatus["SENT"] = "SENT";
92
+ NotificationDetailStatus["FAILED"] = "FAILED";
93
+ NotificationDetailStatus["READ"] = "READ";
94
+ return NotificationDetailStatus;
95
+ }({});
96
+ let NotificationScheduleStatus = /* @__PURE__ */ function(NotificationScheduleStatus) {
97
+ NotificationScheduleStatus["PENDING"] = "PENDING";
98
+ NotificationScheduleStatus["PROCESSING"] = "PROCESSING";
99
+ NotificationScheduleStatus["COMPLETED"] = "COMPLETED";
100
+ NotificationScheduleStatus["FAILED"] = "FAILED";
101
+ NotificationScheduleStatus["CANCELLED"] = "CANCELLED";
102
+ return NotificationScheduleStatus;
103
+ }({});
104
+ let JobType = /* @__PURE__ */ function(JobType) {
105
+ JobType["STANDARD"] = "STANDARD";
106
+ JobType["REMINDER"] = "REMINDER";
107
+ JobType["RECURRING_REMINDER"] = "RECURRING_REMINDER";
108
+ return JobType;
109
+ }({});
110
+ let JobStatus = /* @__PURE__ */ function(JobStatus) {
111
+ JobStatus["PENDING"] = "PENDING";
112
+ JobStatus["SCHEDULED"] = "SCHEDULED";
113
+ JobStatus["RUNNING"] = "RUNNING";
114
+ JobStatus["COMPLETED"] = "COMPLETED";
115
+ JobStatus["FAILED"] = "FAILED";
116
+ JobStatus["CANCELLED"] = "CANCELLED";
117
+ JobStatus["RETRYING"] = "RETRYING";
118
+ return JobStatus;
119
+ }({});
120
+ //#endregion
121
+ //#region src/generated/project/exceptions.ts
122
+ const ProjectExceptions = {
123
+ PROJECT_NOT_FOUND: "Project not found",
124
+ PROJECT_NOT_ALLOWED_TO_UPDATE: "Not allowed to update this project",
125
+ PROJECT_NOT_ALLOWED_TO_DELETE: "Not allowed to delete this project",
126
+ PROJECT_ALREADY_EXISTS: "Project already exists"
49
127
  };
50
128
  //#endregion
51
- //#region src/generated/agreement-template/agreement-template.enum.ts
52
- let AgreementTemplateType = /* @__PURE__ */ function(AgreementTemplateType) {
53
- AgreementTemplateType["SYSTEM"] = "SYSTEM";
54
- AgreementTemplateType["BROKER"] = "BROKER";
55
- AgreementTemplateType["CLIENT"] = "CLIENT";
56
- AgreementTemplateType["INVESTOR"] = "INVESTOR";
57
- AgreementTemplateType["OWNER"] = "OWNER";
58
- AgreementTemplateType["MOU"] = "MOU";
59
- AgreementTemplateType["DEPOSIT"] = "DEPOSIT";
60
- AgreementTemplateType["DISCLOSURE"] = "DISCLOSURE";
61
- AgreementTemplateType["OTHER"] = "OTHER";
62
- return AgreementTemplateType;
129
+ //#region src/generated/project/project.enum.ts
130
+ let ProjectType = /* @__PURE__ */ function(ProjectType) {
131
+ ProjectType["GREEN_CLEAN"] = "GREEN_CLEAN";
132
+ ProjectType["HIGH_TECH"] = "HIGH_TECH";
133
+ ProjectType["HEAVY_INDUSTRY"] = "HEAVY_INDUSTRY";
134
+ ProjectType["MIXED_USE"] = "MIXED_USE";
135
+ ProjectType["SPECIALIZED"] = "SPECIALIZED";
136
+ return ProjectType;
137
+ }({});
138
+ let ProjectClassification = /* @__PURE__ */ function(ProjectClassification) {
139
+ ProjectClassification["INDUSTRIAL_PARK"] = "INDUSTRIAL_PARK";
140
+ ProjectClassification["INDUSTRIAL_CLUSTER"] = "INDUSTRIAL_CLUSTER";
141
+ ProjectClassification["OFFICE_ZONE"] = "OFFICE_ZONE";
142
+ ProjectClassification["MIXED_COMPLEX"] = "MIXED_COMPLEX";
143
+ ProjectClassification["SHOPPING_CENTER"] = "SHOPPING_CENTER";
144
+ return ProjectClassification;
145
+ }({});
146
+ let ProjectApprovalStatus = /* @__PURE__ */ function(ProjectApprovalStatus) {
147
+ ProjectApprovalStatus["PENDING"] = "PENDING";
148
+ ProjectApprovalStatus["APPROVED"] = "APPROVED";
149
+ ProjectApprovalStatus["REJECTED"] = "REJECTED";
150
+ return ProjectApprovalStatus;
151
+ }({});
152
+ let ProjectStandard = /* @__PURE__ */ function(ProjectStandard) {
153
+ ProjectStandard["PREMIUM"] = "PREMIUM";
154
+ ProjectStandard["MEDIUM"] = "MEDIUM";
155
+ ProjectStandard["BASIC"] = "BASIC";
156
+ ProjectStandard["LUXURY"] = "LUXURY";
157
+ return ProjectStandard;
158
+ }({});
159
+ let ProjectStage = /* @__PURE__ */ function(ProjectStage) {
160
+ ProjectStage["OVERALL_PROJECT_DEVELOPMENT"] = "OVERALL_PROJECT_DEVELOPMENT";
161
+ ProjectStage["STAGE_1"] = "STAGE_1";
162
+ ProjectStage["STAGE_2"] = "STAGE_2";
163
+ ProjectStage["STAGE_3"] = "STAGE_3";
164
+ ProjectStage["STAGE_4"] = "STAGE_4";
165
+ ProjectStage["STAGE_5"] = "STAGE_5";
166
+ ProjectStage["EXPANSION"] = "EXPANSION";
167
+ return ProjectStage;
168
+ }({});
169
+ let ProjectCurrentStatus = /* @__PURE__ */ function(ProjectCurrentStatus) {
170
+ ProjectCurrentStatus["UPCOMING_FOR_SALE"] = "UPCOMING_FOR_SALE";
171
+ ProjectCurrentStatus["FOR_SALE_OR_FOR_LEASE"] = "FOR_SALE_OR_FOR_LEASE";
172
+ ProjectCurrentStatus["IN_OPERATION"] = "IN_OPERATION";
173
+ ProjectCurrentStatus["INACTIVE"] = "INACTIVE";
174
+ ProjectCurrentStatus["UNSPECIFIED"] = "UNSPECIFIED";
175
+ return ProjectCurrentStatus;
176
+ }({});
177
+ //#endregion
178
+ //#region src/generated/for-sale/exceptions.ts
179
+ const ForSaleExceptions = { FOR_SALE_NOT_FOUND: "For sale not found" };
180
+ //#endregion
181
+ //#region src/generated/for-sale/for-sale.enum.ts
182
+ let ForSaleRoadType = /* @__PURE__ */ function(ForSaleRoadType) {
183
+ ForSaleRoadType["UNRECOGNIZED"] = "UNRECOGNIZED";
184
+ ForSaleRoadType["ASPHALT"] = "ASPHALT";
185
+ ForSaleRoadType["CONCRETE"] = "CONCRETE";
186
+ ForSaleRoadType["DIRT"] = "DIRT";
187
+ ForSaleRoadType["BRICK"] = "BRICK";
188
+ ForSaleRoadType["CRUSHED_ROCK"] = "CRUSHED_ROCK";
189
+ return ForSaleRoadType;
190
+ }({});
191
+ let ForSaleBuildingStandard = /* @__PURE__ */ function(ForSaleBuildingStandard) {
192
+ ForSaleBuildingStandard["UNRECOGNIZED"] = "UNRECOGNIZED";
193
+ ForSaleBuildingStandard["BASIC"] = "BASIC";
194
+ ForSaleBuildingStandard["MEDIUM"] = "MEDIUM";
195
+ ForSaleBuildingStandard["TEMPORARY"] = "TEMPORARY";
196
+ ForSaleBuildingStandard["HIGH_END"] = "HIGH_END";
197
+ ForSaleBuildingStandard["LUXURY"] = "LUXURY";
198
+ return ForSaleBuildingStandard;
199
+ }({});
200
+ let ForSaleInfrastructureStatus = /* @__PURE__ */ function(ForSaleInfrastructureStatus) {
201
+ ForSaleInfrastructureStatus["UNRECOGNIZED"] = "UNRECOGNIZED";
202
+ ForSaleInfrastructureStatus["BASIC_INFRASTRUCTURE"] = "BASIC_INFRASTRUCTURE";
203
+ ForSaleInfrastructureStatus["NO_INFRASTRUCTURE"] = "NO_INFRASTRUCTURE";
204
+ ForSaleInfrastructureStatus["OPERATING"] = "OPERATING";
205
+ ForSaleInfrastructureStatus["COMPLETED_INFRASTRUCTURE"] = "COMPLETED_INFRASTRUCTURE";
206
+ ForSaleInfrastructureStatus["STEEL_FRAME"] = "STEEL_FRAME";
207
+ ForSaleInfrastructureStatus["CONCRETE_FRAME"] = "CONCRETE_FRAME";
208
+ ForSaleInfrastructureStatus["TEMPORARY_INFRASTRUCTURE"] = "TEMPORARY_INFRASTRUCTURE";
209
+ ForSaleInfrastructureStatus["FOUNDATION_AND_BOUNDARY_WALLS_AVAILABLE"] = "FOUNDATION_AND_BOUNDARY_WALLS_AVAILABLE";
210
+ ForSaleInfrastructureStatus["INFRASTRUCTURE_AND_CONSTRUCTION_AVAILABLE"] = "INFRASTRUCTURE_AND_CONSTRUCTION_AVAILABLE";
211
+ ForSaleInfrastructureStatus["UNLEVELED"] = "UNLEVELED";
212
+ return ForSaleInfrastructureStatus;
213
+ }({});
214
+ let ForSalePropertyType = /* @__PURE__ */ function(ForSalePropertyType) {
215
+ ForSalePropertyType["UNRECOGNIZED"] = "UNRECOGNIZED";
216
+ ForSalePropertyType["INDUSTRIAL_LAND_AND_FACTORIES"] = "INDUSTRIAL_LAND_AND_FACTORIES";
217
+ ForSalePropertyType["FOREST_AGRICULTURAL_AND_AQUACULTURE_LAND"] = "FOREST_AGRICULTURAL_AND_AQUACULTURE_LAND";
218
+ ForSalePropertyType["RESIDENTIAL_AND_COMMERCIAL_SERVICE_LAND"] = "RESIDENTIAL_AND_COMMERCIAL_SERVICE_LAND";
219
+ ForSalePropertyType["AMUSEMENT_PARKS_AND_SPORTS_ZONES"] = "AMUSEMENT_PARKS_AND_SPORTS_ZONES";
220
+ ForSalePropertyType["TOWNHOUSES_AND_APARTMENTS"] = "TOWNHOUSES_AND_APARTMENTS";
221
+ ForSalePropertyType["HOSPITALS_AND_CLINICS"] = "HOSPITALS_AND_CLINICS";
222
+ ForSalePropertyType["SCHOOLS_AND_TRAINING_CENTERS"] = "SCHOOLS_AND_TRAINING_CENTERS";
223
+ ForSalePropertyType["ENERGY_PROJECT"] = "ENERGY_PROJECT";
224
+ ForSalePropertyType["SHOPPING_CENTERS_AND_OFFICE"] = "SHOPPING_CENTERS_AND_OFFICE";
225
+ ForSalePropertyType["INDUSTRIAL_PARKS"] = "INDUSTRIAL_PARKS";
226
+ ForSalePropertyType["RESORT_AND_HOTEL"] = "RESORT_AND_HOTEL";
227
+ ForSalePropertyType["MINES_AND_MINERALS"] = "MINES_AND_MINERALS";
228
+ ForSalePropertyType["GAS_STATIONS_AND_EV_CHARGING_STATIONS"] = "GAS_STATIONS_AND_EV_CHARGING_STATIONS";
229
+ ForSalePropertyType["DOCKS_AND_YARDS"] = "DOCKS_AND_YARDS";
230
+ ForSalePropertyType["ECOLOGICAL_AREAS_AND_FARMS"] = "ECOLOGICAL_AREAS_AND_FARMS";
231
+ return ForSalePropertyType;
232
+ }({});
233
+ let ForSalePostType = /* @__PURE__ */ function(ForSalePostType) {
234
+ ForSalePostType["NORMAL"] = "NORMAL";
235
+ ForSalePostType["URGENT_SALE"] = "URGENT_SALE";
236
+ ForSalePostType["PROMOTED"] = "PROMOTED";
237
+ ForSalePostType["UNDER_MARKET"] = "UNDER_MARKET";
238
+ ForSalePostType["SPECIAL"] = "SPECIAL";
239
+ ForSalePostType["PRE_SALE"] = "PRE_SALE";
240
+ return ForSalePostType;
241
+ }({});
242
+ let ForSaleStatus = /* @__PURE__ */ function(ForSaleStatus) {
243
+ ForSaleStatus["DRAFT"] = "DRAFT";
244
+ ForSaleStatus["UNPUBLISHED"] = "UNPUBLISHED";
245
+ ForSaleStatus["PUBLISHED"] = "PUBLISHED";
246
+ return ForSaleStatus;
247
+ }({});
248
+ let ForSaleApproveStatus = /* @__PURE__ */ function(ForSaleApproveStatus) {
249
+ ForSaleApproveStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
250
+ ForSaleApproveStatus["APPROVED"] = "APPROVED";
251
+ return ForSaleApproveStatus;
252
+ }({});
253
+ let ForSaleUtilities = /* @__PURE__ */ function(ForSaleUtilities) {
254
+ ForSaleUtilities["FULLY_FINISHED_WITH_HIGH_END_ITEMS"] = "FULLY_FINISHED_WITH_HIGH_END_ITEMS";
255
+ ForSaleUtilities["SEMI_FINISHED"] = "SEMI_FINISHED";
256
+ ForSaleUtilities["FULLY_FINISHED"] = "FULLY_FINISHED";
257
+ ForSaleUtilities["BASIC_CONSTRUCTION"] = "BASIC_CONSTRUCTION";
258
+ return ForSaleUtilities;
63
259
  }({});
64
260
  //#endregion
261
+ //#region src/generated/auth/exceptions.ts
262
+ const UserExceptions = {
263
+ USER_NOT_FOUND: "User not found",
264
+ INVALID_CREDENTIALS: "Invalid credentials",
265
+ TOO_MANY_LOGIN_ATTEMPTS: "Too many login attempts",
266
+ USER_NOT_ACTIVE: "User is not active",
267
+ PASSWORD_INCORRECT: "Password is not correct",
268
+ USER_ALREADY_EXISTS: "User already exists",
269
+ OTP_EXPIRED: "OTP expired",
270
+ INVALID_OTP: "Invalid OTP"
271
+ };
272
+ //#endregion
65
273
  //#region src/generated/auth/auth.enum.ts
66
274
  let RoleCodes = /* @__PURE__ */ function(RoleCodes) {
67
275
  RoleCodes["SUPER_ADMIN"] = "SUPER_ADMIN";
@@ -214,6 +422,18 @@ let OtpType = /* @__PURE__ */ function(OtpType) {
214
422
  return OtpType;
215
423
  }({});
216
424
  //#endregion
425
+ //#region src/generated/register/exceptions.ts
426
+ const RegisterExceptions = {
427
+ INVALID_VERIFICATION_TYPE: "Verification type is invalid",
428
+ OTP_ALREADY_SENT: "OTP is already sent",
429
+ RESEND_REACH_LIMIT: "Resend OTP too fast or reached limit",
430
+ VERIFY_REACH_LIMIT: "Verify reached limit",
431
+ REGISTER_ACCOUNT_REQUEST_NOT_FOUND: "Register account request not found",
432
+ REGISTER_ACCOUNT_NOT_VERIFIED: "Register account request is not verified",
433
+ INVALID_OTP_CODE: "Invalid Otp code",
434
+ REGISTER_ACCOUNT_VERIFICATION_NOT_FOUND: "Register account verification is not found"
435
+ };
436
+ //#endregion
217
437
  //#region src/generated/appointment/exceptions.ts
218
438
  const AppointmentExceptions = {
219
439
  APPOINTMENT_NOT_FOUND: "Appointment not found or access denied",
@@ -262,240 +482,70 @@ let SchedulerStatus = /* @__PURE__ */ function(SchedulerStatus) {
262
482
  return SchedulerStatus;
263
483
  }({});
264
484
  //#endregion
265
- //#region src/generated/deal/deal.enum.ts
266
- let DealStatus = /* @__PURE__ */ function(DealStatus) {
267
- DealStatus["PENDING"] = "PENDING";
268
- DealStatus["PROCESSING"] = "PROCESSING";
269
- DealStatus["COMPLETED"] = "COMPLETED";
270
- DealStatus["CANCELLED"] = "CANCELLED";
271
- DealStatus["ON_HOLD"] = "ON_HOLD";
272
- return DealStatus;
273
- }({});
274
- let DealFilterType = /* @__PURE__ */ function(DealFilterType) {
275
- DealFilterType["ORDER_REQUEST_RENT"] = "ORDER_REQUEST_RENT";
276
- DealFilterType["ORDER_REQUEST_SELL"] = "ORDER_REQUEST_SELL";
277
- DealFilterType["CONSIGNMENT_REQUEST_RENT"] = "CONSIGNMENT_REQUEST_RENT";
278
- DealFilterType["CONSIGNMENT_REQUEST_SELL"] = "CONSIGNMENT_REQUEST_SELL";
279
- return DealFilterType;
280
- }({});
281
- let DealStepStatus = /* @__PURE__ */ function(DealStepStatus) {
282
- DealStepStatus["PENDING"] = "PENDING";
283
- DealStepStatus["PROCESSING"] = "PROCESSING";
284
- DealStepStatus["COMPLETED"] = "COMPLETED";
285
- DealStepStatus["CANCELLED"] = "CANCELLED";
286
- DealStepStatus["ON_HOLD"] = "ON_HOLD";
287
- return DealStepStatus;
288
- }({});
289
- let DealProgress = /* @__PURE__ */ function(DealProgress) {
290
- DealProgress["INITIATED"] = "INITIATED";
291
- DealProgress["CONSULTING"] = "CONSULTING";
292
- DealProgress["SCHEDULE_SURVEY"] = "SCHEDULE_SURVEY";
293
- DealProgress["NEGOTIATING"] = "NEGOTIATING";
294
- DealProgress["DEPOSIT"] = "DEPOSIT";
295
- DealProgress["PAYMENT"] = "PAYMENT";
296
- DealProgress["HANDOVER"] = "HANDOVER";
297
- DealProgress["COMPLETED"] = "COMPLETED";
298
- DealProgress["CANCELLED"] = "CANCELLED";
299
- return DealProgress;
300
- }({});
301
- let ParticipantRole = /* @__PURE__ */ function(ParticipantRole) {
302
- ParticipantRole["CLIENT_BROKER"] = "CLIENT_BROKER";
303
- ParticipantRole["INVESTOR_BROKER"] = "INVESTOR_BROKER";
304
- ParticipantRole["OWNER"] = "OWNER";
305
- ParticipantRole["INVESTOR"] = "INVESTOR";
306
- ParticipantRole["CLIENT"] = "CLIENT";
307
- ParticipantRole["INVESTOR_REPRESENTATIVE"] = "INVESTOR_REPRESENTATIVE";
308
- return ParticipantRole;
309
- }({});
310
- let ParticipantStatus = /* @__PURE__ */ function(ParticipantStatus) {
311
- ParticipantStatus["PENDING"] = "PENDING";
312
- ParticipantStatus["APPROVED"] = "APPROVED";
313
- ParticipantStatus["REJECTED"] = "REJECTED";
314
- ParticipantStatus["ACKNOWLEDGED"] = "ACKNOWLEDGED";
315
- ParticipantStatus["NO_RESPONSE"] = "NO_RESPONSE";
316
- return ParticipantStatus;
317
- }({});
318
- //#endregion
319
- //#region src/generated/auth/exceptions.ts
320
- const UserExceptions = {
321
- USER_NOT_FOUND: "User not found",
322
- INVALID_CREDENTIALS: "Invalid credentials",
323
- TOO_MANY_LOGIN_ATTEMPTS: "Too many login attempts",
324
- USER_NOT_ACTIVE: "User is not active",
325
- PASSWORD_INCORRECT: "Password is not correct",
326
- USER_ALREADY_EXISTS: "User already exists",
327
- OTP_EXPIRED: "OTP expired",
328
- INVALID_OTP: "Invalid OTP"
329
- };
330
- //#endregion
331
- //#region src/generated/blacklist/exceptions.ts
332
- const BlacklistExceptions = {
333
- FORBIDDEN: "You are not authorized to create a blacklist",
334
- NOT_FOUND: "Blacklist not found"
335
- };
336
- //#endregion
337
- //#region src/generated/blacklist/blacklist.enum.ts
338
- let BlackListEntityType = /* @__PURE__ */ function(BlackListEntityType) {
339
- BlackListEntityType["USER"] = "USER";
340
- BlackListEntityType["ORGANIZATION"] = "ORGANIZATION";
341
- return BlackListEntityType;
342
- }({});
343
- let BlackListStatus = /* @__PURE__ */ function(BlackListStatus) {
344
- BlackListStatus["ACTIVE"] = "ACTIVE";
345
- BlackListStatus["EXPIRED"] = "EXPIRED";
346
- BlackListStatus["REMOVED"] = "REMOVED";
347
- return BlackListStatus;
348
- }({});
349
- //#endregion
350
- //#region src/generated/broker/exceptions.ts
351
- const BrokerExceptions = {
352
- INVITED_USER_NOT_FOUND: "Invited user not found",
353
- INPUT_DATA_IS_INVALID: "Input data is invalid"
354
- };
355
- //#endregion
356
- //#region src/generated/broker/broker.enum.ts
357
- let ConvertBrokerClientType = /* @__PURE__ */ function(ConvertBrokerClientType) {
358
- ConvertBrokerClientType["VOICE"] = "VOICE";
359
- ConvertBrokerClientType["CSV"] = "CSV";
360
- ConvertBrokerClientType["EXCEL"] = "EXCEL";
361
- return ConvertBrokerClientType;
362
- }({});
363
- //#endregion
364
- //#region src/generated/client/exceptions.ts
365
- const ClientExceptions = {
366
- CLIENT_NOT_FOUND: "Client not found",
367
- CLIENTS_NOT_FOUND: "One or more clients not found",
368
- FORBIDDEN: "Forbidden",
369
- CLIENTS_NOT_CREATED_BY_USER: "One or more clients are not created by the user"
370
- };
371
- const ClientCategoryExceptions = {
372
- CLIENT_CATEGORY_NOT_FOUND: "Client category not found",
373
- CLIENT_CATEGORY_ACCESS_DENIED: "Access denied to this client category",
374
- CLIENT_CATEGORY_PERMISSION_DENIED: "Permission denied to client category",
375
- CLIENT_CATEGORY_CREATION_FAILED: "Failed to create client category",
376
- CLIENT_CATEGORY_UPDATE_FAILED: "Failed to update client category",
377
- CLIENT_CATEGORY_DELETION_FAILED: "Failed to delete client category",
378
- FORBIDDEN: "Forbidden"
379
- };
380
- //#endregion
381
- //#region src/generated/client/client.enum.ts
382
- let ClientNeed = /* @__PURE__ */ function(ClientNeed) {
383
- ClientNeed["FOR_SALE"] = "FOR_SALE";
384
- ClientNeed["FOR_LEASE"] = "FOR_LEASE";
385
- return ClientNeed;
386
- }({});
387
- let ClientRoles = /* @__PURE__ */ function(ClientRoles) {
388
- ClientRoles["BROKER"] = "BROKER";
389
- ClientRoles["OWNER"] = "OWNER";
390
- ClientRoles["INVESTOR"] = "INVESTOR";
391
- return ClientRoles;
392
- }({});
393
- let ClientStatus = /* @__PURE__ */ function(ClientStatus) {
394
- ClientStatus["POTENTIAL"] = "POTENTIAL";
395
- ClientStatus["INTERESTED"] = "INTERESTED";
396
- ClientStatus["NEGOTIATING"] = "NEGOTIATING";
397
- ClientStatus["PURCHASED"] = "PURCHASED";
398
- ClientStatus["LOST"] = "LOST";
399
- ClientStatus["RESEARCHING"] = "RESEARCHING";
400
- ClientStatus["FOLLOW_UP_NEEDED"] = "FOLLOW_UP_NEEDED";
401
- return ClientStatus;
402
- }({});
403
- let ClientSource = /* @__PURE__ */ function(ClientSource) {
404
- ClientSource["WEBSITE"] = "WEBSITE";
405
- ClientSource["FACEBOOK"] = "FACEBOOK";
406
- ClientSource["REFERRAL"] = "REFERRAL";
407
- ClientSource["PHONE_CALL"] = "PHONE_CALL";
408
- ClientSource["EMAIL"] = "EMAIL";
409
- ClientSource["WALK_IN"] = "WALK_IN";
410
- ClientSource["ADVERTISEMENT"] = "ADVERTISEMENT";
411
- ClientSource["EVENT"] = "EVENT";
412
- ClientSource["OTHER"] = "OTHER";
413
- return ClientSource;
414
- }({});
415
- let ClientType = /* @__PURE__ */ function(ClientType) {
416
- ClientType["PERSONAL"] = "PERSONAL";
417
- ClientType["ORGANIZATION"] = "ORGANIZATION";
418
- return ClientType;
419
- }({});
420
- //#endregion
421
- //#region src/generated/for-sale/for-sale.enum.ts
422
- let ForSaleRoadType = /* @__PURE__ */ function(ForSaleRoadType) {
423
- ForSaleRoadType["UNRECOGNIZED"] = "UNRECOGNIZED";
424
- ForSaleRoadType["ASPHALT"] = "ASPHALT";
425
- ForSaleRoadType["CONCRETE"] = "CONCRETE";
426
- ForSaleRoadType["DIRT"] = "DIRT";
427
- ForSaleRoadType["BRICK"] = "BRICK";
428
- ForSaleRoadType["CRUSHED_ROCK"] = "CRUSHED_ROCK";
429
- return ForSaleRoadType;
430
- }({});
431
- let ForSaleBuildingStandard = /* @__PURE__ */ function(ForSaleBuildingStandard) {
432
- ForSaleBuildingStandard["UNRECOGNIZED"] = "UNRECOGNIZED";
433
- ForSaleBuildingStandard["BASIC"] = "BASIC";
434
- ForSaleBuildingStandard["MEDIUM"] = "MEDIUM";
435
- ForSaleBuildingStandard["TEMPORARY"] = "TEMPORARY";
436
- ForSaleBuildingStandard["HIGH_END"] = "HIGH_END";
437
- ForSaleBuildingStandard["LUXURY"] = "LUXURY";
438
- return ForSaleBuildingStandard;
439
- }({});
440
- let ForSaleInfrastructureStatus = /* @__PURE__ */ function(ForSaleInfrastructureStatus) {
441
- ForSaleInfrastructureStatus["UNRECOGNIZED"] = "UNRECOGNIZED";
442
- ForSaleInfrastructureStatus["BASIC_INFRASTRUCTURE"] = "BASIC_INFRASTRUCTURE";
443
- ForSaleInfrastructureStatus["NO_INFRASTRUCTURE"] = "NO_INFRASTRUCTURE";
444
- ForSaleInfrastructureStatus["OPERATING"] = "OPERATING";
445
- ForSaleInfrastructureStatus["COMPLETED_INFRASTRUCTURE"] = "COMPLETED_INFRASTRUCTURE";
446
- ForSaleInfrastructureStatus["STEEL_FRAME"] = "STEEL_FRAME";
447
- ForSaleInfrastructureStatus["CONCRETE_FRAME"] = "CONCRETE_FRAME";
448
- ForSaleInfrastructureStatus["TEMPORARY_INFRASTRUCTURE"] = "TEMPORARY_INFRASTRUCTURE";
449
- ForSaleInfrastructureStatus["FOUNDATION_AND_BOUNDARY_WALLS_AVAILABLE"] = "FOUNDATION_AND_BOUNDARY_WALLS_AVAILABLE";
450
- ForSaleInfrastructureStatus["INFRASTRUCTURE_AND_CONSTRUCTION_AVAILABLE"] = "INFRASTRUCTURE_AND_CONSTRUCTION_AVAILABLE";
451
- ForSaleInfrastructureStatus["UNLEVELED"] = "UNLEVELED";
452
- return ForSaleInfrastructureStatus;
453
- }({});
454
- let ForSalePropertyType = /* @__PURE__ */ function(ForSalePropertyType) {
455
- ForSalePropertyType["UNRECOGNIZED"] = "UNRECOGNIZED";
456
- ForSalePropertyType["INDUSTRIAL_LAND_AND_FACTORIES"] = "INDUSTRIAL_LAND_AND_FACTORIES";
457
- ForSalePropertyType["FOREST_AGRICULTURAL_AND_AQUACULTURE_LAND"] = "FOREST_AGRICULTURAL_AND_AQUACULTURE_LAND";
458
- ForSalePropertyType["RESIDENTIAL_AND_COMMERCIAL_SERVICE_LAND"] = "RESIDENTIAL_AND_COMMERCIAL_SERVICE_LAND";
459
- ForSalePropertyType["AMUSEMENT_PARKS_AND_SPORTS_ZONES"] = "AMUSEMENT_PARKS_AND_SPORTS_ZONES";
460
- ForSalePropertyType["TOWNHOUSES_AND_APARTMENTS"] = "TOWNHOUSES_AND_APARTMENTS";
461
- ForSalePropertyType["HOSPITALS_AND_CLINICS"] = "HOSPITALS_AND_CLINICS";
462
- ForSalePropertyType["SCHOOLS_AND_TRAINING_CENTERS"] = "SCHOOLS_AND_TRAINING_CENTERS";
463
- ForSalePropertyType["ENERGY_PROJECT"] = "ENERGY_PROJECT";
464
- ForSalePropertyType["SHOPPING_CENTERS_AND_OFFICE"] = "SHOPPING_CENTERS_AND_OFFICE";
465
- ForSalePropertyType["INDUSTRIAL_PARKS"] = "INDUSTRIAL_PARKS";
466
- ForSalePropertyType["RESORT_AND_HOTEL"] = "RESORT_AND_HOTEL";
467
- ForSalePropertyType["MINES_AND_MINERALS"] = "MINES_AND_MINERALS";
468
- ForSalePropertyType["GAS_STATIONS_AND_EV_CHARGING_STATIONS"] = "GAS_STATIONS_AND_EV_CHARGING_STATIONS";
469
- ForSalePropertyType["DOCKS_AND_YARDS"] = "DOCKS_AND_YARDS";
470
- ForSalePropertyType["ECOLOGICAL_AREAS_AND_FARMS"] = "ECOLOGICAL_AREAS_AND_FARMS";
471
- return ForSalePropertyType;
472
- }({});
473
- let ForSalePostType = /* @__PURE__ */ function(ForSalePostType) {
474
- ForSalePostType["NORMAL"] = "NORMAL";
475
- ForSalePostType["URGENT_SALE"] = "URGENT_SALE";
476
- ForSalePostType["PROMOTED"] = "PROMOTED";
477
- ForSalePostType["UNDER_MARKET"] = "UNDER_MARKET";
478
- ForSalePostType["SPECIAL"] = "SPECIAL";
479
- ForSalePostType["PRE_SALE"] = "PRE_SALE";
480
- return ForSalePostType;
485
+ //#region src/generated/payment-process/exceptions.ts
486
+ const PaymentProcessExceptions = {
487
+ PAYMENT_PROCESS_NOT_FOUND: "Payment process not found",
488
+ PAYMENT_PROCESS_NOT_IN_PROGRESS: "Payment process is not in progress",
489
+ PAYMENT_PROCESS_NOT_ALLOWED_TO_CONFIRM: "You are not allowed to confirm this payment process",
490
+ PAYMENT_PROCESS_NOT_ALLOWED_TO_UPDATE: "You are not allowed to update this payment process",
491
+ PAYMENT_INSTALLMENT_NOT_FOUND: "Payment installment not found",
492
+ PAYMENT_INSTALLMENT_NOT_PENDING: "Payment installment is not pending",
493
+ PAYMENT_INSTALLMENT_NOT_ALLOWED_TO_CONFIRM: "You are not allowed to confirm this payment installment",
494
+ PAYMENT_INSTALLMENT_NOT_ALLOWED_TO_UPDATE: "You are not allowed to update this payment installment"
495
+ };
496
+ //#endregion
497
+ //#region src/generated/payment-process/payment-process.enum.ts
498
+ let PaymentProcessStatus = /* @__PURE__ */ function(PaymentProcessStatus) {
499
+ PaymentProcessStatus["IN_PROGRESS"] = "IN_PROGRESS";
500
+ PaymentProcessStatus["COMPLETED"] = "COMPLETED";
501
+ PaymentProcessStatus["CANCELLED"] = "CANCELLED";
502
+ return PaymentProcessStatus;
481
503
  }({});
482
- let ForSaleStatus = /* @__PURE__ */ function(ForSaleStatus) {
483
- ForSaleStatus["DRAFT"] = "DRAFT";
484
- ForSaleStatus["UNPUBLISHED"] = "UNPUBLISHED";
485
- ForSaleStatus["PUBLISHED"] = "PUBLISHED";
486
- return ForSaleStatus;
504
+ let PaymentInstallmentStatus = /* @__PURE__ */ function(PaymentInstallmentStatus) {
505
+ PaymentInstallmentStatus["PENDING"] = "PENDING";
506
+ PaymentInstallmentStatus["PAID"] = "PAID";
507
+ PaymentInstallmentStatus["CANCELLED"] = "CANCELLED";
508
+ return PaymentInstallmentStatus;
487
509
  }({});
488
- let ForSaleApproveStatus = /* @__PURE__ */ function(ForSaleApproveStatus) {
489
- ForSaleApproveStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
490
- ForSaleApproveStatus["APPROVED"] = "APPROVED";
491
- return ForSaleApproveStatus;
510
+ //#endregion
511
+ //#region src/generated/agreement-template/exceptions.ts
512
+ const AgreementTemplateExceptions = {
513
+ TEMPLATE_NOT_FOUND: "Agreement template not found",
514
+ FILE_NOT_FOUND: "Template file not found",
515
+ ACCESS_DENIED: "Access denied to this template",
516
+ PERMISSION_DENIED: "Permission denied",
517
+ TEMPLATE_IN_USE: "Template is in use and cannot be deleted",
518
+ CREATION_FAILED: "Failed to create agreement template",
519
+ INVALID_TEMPLATE_TYPE: "Invalid template type for user role",
520
+ TEMPLATE_ALREADY_EXISTS: "Agreement template already exists"
521
+ };
522
+ //#endregion
523
+ //#region src/generated/agreement-template/agreement-template.enum.ts
524
+ let AgreementTemplateType = /* @__PURE__ */ function(AgreementTemplateType) {
525
+ AgreementTemplateType["SYSTEM"] = "SYSTEM";
526
+ AgreementTemplateType["BROKER"] = "BROKER";
527
+ AgreementTemplateType["CLIENT"] = "CLIENT";
528
+ AgreementTemplateType["INVESTOR"] = "INVESTOR";
529
+ AgreementTemplateType["OWNER"] = "OWNER";
530
+ AgreementTemplateType["MOU"] = "MOU";
531
+ AgreementTemplateType["DEPOSIT"] = "DEPOSIT";
532
+ AgreementTemplateType["DISCLOSURE"] = "DISCLOSURE";
533
+ AgreementTemplateType["OTHER"] = "OTHER";
534
+ return AgreementTemplateType;
492
535
  }({});
493
- let ForSaleUtilities = /* @__PURE__ */ function(ForSaleUtilities) {
494
- ForSaleUtilities["FULLY_FINISHED_WITH_HIGH_END_ITEMS"] = "FULLY_FINISHED_WITH_HIGH_END_ITEMS";
495
- ForSaleUtilities["SEMI_FINISHED"] = "SEMI_FINISHED";
496
- ForSaleUtilities["FULLY_FINISHED"] = "FULLY_FINISHED";
497
- ForSaleUtilities["BASIC_CONSTRUCTION"] = "BASIC_CONSTRUCTION";
498
- return ForSaleUtilities;
536
+ //#endregion
537
+ //#region src/generated/broker/exceptions.ts
538
+ const BrokerExceptions = {
539
+ INVITED_USER_NOT_FOUND: "Invited user not found",
540
+ INPUT_DATA_IS_INVALID: "Input data is invalid"
541
+ };
542
+ //#endregion
543
+ //#region src/generated/broker/broker.enum.ts
544
+ let ConvertBrokerClientType = /* @__PURE__ */ function(ConvertBrokerClientType) {
545
+ ConvertBrokerClientType["VOICE"] = "VOICE";
546
+ ConvertBrokerClientType["CSV"] = "CSV";
547
+ ConvertBrokerClientType["EXCEL"] = "EXCEL";
548
+ return ConvertBrokerClientType;
499
549
  }({});
500
550
  //#endregion
501
551
  //#region src/generated/consignment-request/exceptions.ts
@@ -511,52 +561,10 @@ let ConsignmentRequestType = /* @__PURE__ */ function(ConsignmentRequestType) {
511
561
  return ConsignmentRequestType;
512
562
  }({});
513
563
  //#endregion
514
- //#region src/generated/conversation/exceptions.ts
515
- const ConversationExceptions = {
516
- CHAT_GROUP_NOT_FOUND: "Chat group not found",
517
- MEMBER_NOT_FOUND: "Member not found",
518
- NOT_CHAT_GROUP_MEMBER: "User is not a member of this chat group",
519
- ALREADY_MEMBER: "User is already a member of this chat group",
520
- INSUFFICIENT_PERMISSIONS: "Insufficient permissions to perform this action",
521
- MEMBER_ALREADY_EXISTS: "Member already exists in this chat group",
522
- MEMBER_HAS_LEFT: "Member has left this chat group",
523
- CANNOT_DELETE_DIRECT_MESSAGE: "Cannot delete direct message chat group",
524
- CANNOT_DELETE_DEAL_LINKED_CHAT: "Cannot delete chat group linked to a deal",
525
- CANNOT_DELETE_DEAL_STEP_LINKED_CHAT: "Cannot delete chat group linked to a deal step",
526
- MESSAGE_NOT_FOUND: "Message not found",
527
- MESSAGE_NOT_IN_CHAT_GROUP: "Message does not belong to this chat group"
528
- };
529
- //#endregion
530
- //#region src/generated/conversation/conversation.enum.ts
531
- let ChatGroupMemberRole = /* @__PURE__ */ function(ChatGroupMemberRole) {
532
- ChatGroupMemberRole["ADMIN"] = "ADMIN";
533
- ChatGroupMemberRole["MEMBER"] = "MEMBER";
534
- ChatGroupMemberRole["GUEST"] = "GUEST";
535
- return ChatGroupMemberRole;
536
- }({});
537
- let MessageType = /* @__PURE__ */ function(MessageType) {
538
- MessageType["TEXT"] = "TEXT";
539
- MessageType["IMAGE"] = "IMAGE";
540
- MessageType["VIDEO"] = "VIDEO";
541
- MessageType["AUDIO"] = "AUDIO";
542
- MessageType["DOCUMENT"] = "DOCUMENT";
543
- MessageType["LINK"] = "LINK";
544
- return MessageType;
545
- }({});
546
- //#endregion
547
- //#region src/generated/deal/exceptions.ts
548
- const DealExceptions = {
549
- DEAL_NOT_FOUND: "Deal not found",
550
- DEAL_STEP_NOT_FOUND: "Deal step not found"
551
- };
552
- const DealStepExceptions = {
553
- DEAL_STEP_NOT_FOUND: "Deal step not found",
554
- DEAL_STEP_PARTICIPANTS_NOT_FOUND: "Deal step participants not found"
555
- };
556
- const PreDealExceptions = { PRE_DEAL_NOT_FOUND: "Pre-deal not found" };
557
- //#endregion
558
- //#region src/generated/for-sale/exceptions.ts
559
- const ForSaleExceptions = { FOR_SALE_NOT_FOUND: "For sale not found" };
564
+ //#region src/generated/location/exceptions.ts
565
+ const ProvinceExceptions = { PROVINCE_NOT_FOUND: "Province not found" };
566
+ const DistrictExceptions = { DISTRICT_NOT_FOUND: "District not found" };
567
+ const WardExceptions = { WARD_NOT_FOUND: "Ward not found" };
560
568
  //#endregion
561
569
  //#region src/generated/identity/exceptions.ts
562
570
  const IdentityExceptions = { IDENTITY_NOT_FOUND: "Identity not found" };
@@ -576,6 +584,57 @@ let IdentityNationality = /* @__PURE__ */ function(IdentityNationality) {
576
584
  return IdentityNationality;
577
585
  }({});
578
586
  //#endregion
587
+ //#region src/generated/order-request/exceptions.ts
588
+ const OrderRequestExceptions = {
589
+ ORDER_REQUEST_NOT_FOUND: "Order request not found",
590
+ ORDER_REQUEST_NOT_ALLOWED: "Order request not allowed"
591
+ };
592
+ //#endregion
593
+ //#region src/generated/order-request/order-request.enum.ts
594
+ let OrderRequestType = /* @__PURE__ */ function(OrderRequestType) {
595
+ OrderRequestType["SELL"] = "SELL";
596
+ OrderRequestType["RENT"] = "RENT";
597
+ return OrderRequestType;
598
+ }({});
599
+ //#endregion
600
+ //#region src/generated/agreement/exceptions.ts
601
+ const AgreementExceptions = {
602
+ AGREEMENT_NOT_FOUND: "Agreement not found",
603
+ AGREEMENT_IS_NOT_ALLOW: "Agreement is not allowed",
604
+ AGREEMENT_ALREADY_SIGNED: "Agreement already signed"
605
+ };
606
+ const AgreementTypeExceptions = {
607
+ AGREEMENT_TYPE_NOT_FOUND: "Agreement type not found",
608
+ AGREEMENT_TYPE_IS_NOT_ALLOW: "Agreement type is not allow"
609
+ };
610
+ //#endregion
611
+ //#region src/generated/media/exceptions.ts
612
+ const MediaExceptions = {
613
+ MEDIA_NOT_FOUND: "Media not found",
614
+ MEDIA_TOO_LARGE: "Media too large",
615
+ MEDIA_NOT_ALLOWED: "Media not allowed",
616
+ FILE_TYPE_NOT_ALLOWED: "File type not allowed",
617
+ FILE_FORMAT_NOT_ALLOWED: "File format not allowed",
618
+ MEDIA_SHOULD_BE_PUBLIC: "Media should be public"
619
+ };
620
+ //#endregion
621
+ //#region src/generated/media/media.enum.ts
622
+ let MediaType = /* @__PURE__ */ function(MediaType) {
623
+ MediaType["IMAGE"] = "IMAGE";
624
+ MediaType["VIDEO"] = "VIDEO";
625
+ MediaType["AUDIO"] = "AUDIO";
626
+ MediaType["DOCUMENT"] = "DOCUMENT";
627
+ MediaType["OTHER"] = "OTHER";
628
+ return MediaType;
629
+ }({});
630
+ let MediaSortField = /* @__PURE__ */ function(MediaSortField) {
631
+ MediaSortField["CREATED_BY"] = "createdBy";
632
+ MediaSortField["UPDATED_BY"] = "updatedBy";
633
+ MediaSortField["NAME"] = "name";
634
+ MediaSortField["FILE_SIZE"] = "fileSize";
635
+ return MediaSortField;
636
+ }({});
637
+ //#endregion
579
638
  //#region src/generated/industrial-property/exceptions.ts
580
639
  const IndustrialParkExceptions = { INDUSTRIAL_PARK_NOT_FOUND: "Industrial Park not found" };
581
640
  const PropertyExceptions = {
@@ -711,228 +770,169 @@ let Orientation = /* @__PURE__ */ function(Orientation) {
711
770
  Orientation["North"] = "NORTH";
712
771
  Orientation["South"] = "SOUTH";
713
772
  Orientation["East"] = "EAST";
714
- Orientation["West"] = "WEST";
715
- Orientation["Northeast"] = "NORTHEAST";
716
- Orientation["Northwest"] = "NORTHWEST";
717
- Orientation["Southeast"] = "SOUTHEAST";
718
- Orientation["Southwest"] = "SOUTHWEST";
719
- Orientation["Unknown"] = "UNKNOWN";
720
- return Orientation;
721
- }({});
722
- let VersionAction = /* @__PURE__ */ function(VersionAction) {
723
- VersionAction["CREATE"] = "CREATE";
724
- VersionAction["UPDATE"] = "UPDATE";
725
- return VersionAction;
726
- }({});
727
- //#endregion
728
- //#region src/generated/investor/exceptions.ts
729
- const InvestorExceptions = {
730
- INVESTOR_NOT_FOUND: "Investor not found",
731
- MEMBER_NOT_FOUND: "Member not found",
732
- MEMBER_ALREADY_DELETED: "Member already deleted",
733
- MEMBER_ALREADY_REGISTERED: "Member already registered",
734
- ORGANIZATION_NOT_FOUND: "Organization not found",
735
- ROLE_NOT_FOUND: "Role not found"
736
- };
737
- //#endregion
738
- //#region src/generated/location/exceptions.ts
739
- const ProvinceExceptions = { PROVINCE_NOT_FOUND: "Province not found" };
740
- const DistrictExceptions = { DISTRICT_NOT_FOUND: "District not found" };
741
- const WardExceptions = { WARD_NOT_FOUND: "Ward not found" };
742
- //#endregion
743
- //#region src/generated/media/exceptions.ts
744
- const MediaExceptions = {
745
- MEDIA_NOT_FOUND: "Media not found",
746
- MEDIA_TOO_LARGE: "Media too large",
747
- MEDIA_NOT_ALLOWED: "Media not allowed",
748
- FILE_TYPE_NOT_ALLOWED: "File type not allowed",
749
- FILE_FORMAT_NOT_ALLOWED: "File format not allowed",
750
- MEDIA_SHOULD_BE_PUBLIC: "Media should be public"
751
- };
752
- //#endregion
753
- //#region src/generated/media/media.enum.ts
754
- let MediaType = /* @__PURE__ */ function(MediaType) {
755
- MediaType["IMAGE"] = "IMAGE";
756
- MediaType["VIDEO"] = "VIDEO";
757
- MediaType["AUDIO"] = "AUDIO";
758
- MediaType["DOCUMENT"] = "DOCUMENT";
759
- MediaType["OTHER"] = "OTHER";
760
- return MediaType;
761
- }({});
762
- let MediaSortField = /* @__PURE__ */ function(MediaSortField) {
763
- MediaSortField["CREATED_BY"] = "createdBy";
764
- MediaSortField["UPDATED_BY"] = "updatedBy";
765
- MediaSortField["NAME"] = "name";
766
- MediaSortField["FILE_SIZE"] = "fileSize";
767
- return MediaSortField;
768
- }({});
769
- //#endregion
770
- //#region src/generated/notification/notification.enum.ts
771
- let NotificationEnv = /* @__PURE__ */ function(NotificationEnv) {
772
- NotificationEnv["PRODUCTION"] = "production";
773
- NotificationEnv["TESTING"] = "testing";
774
- NotificationEnv["STAGING"] = "staging";
775
- return NotificationEnv;
776
- }({});
777
- let NotificationType = /* @__PURE__ */ function(NotificationType) {
778
- NotificationType["EMAIL"] = "EMAIL";
779
- NotificationType["SMS"] = "SMS";
780
- NotificationType["PUSH"] = "PUSH";
781
- return NotificationType;
782
- }({});
783
- let NotificationDetailStatus = /* @__PURE__ */ function(NotificationDetailStatus) {
784
- NotificationDetailStatus["CREATED"] = "CREATED";
785
- NotificationDetailStatus["SENT"] = "SENT";
786
- NotificationDetailStatus["FAILED"] = "FAILED";
787
- NotificationDetailStatus["READ"] = "READ";
788
- return NotificationDetailStatus;
789
- }({});
790
- let NotificationScheduleStatus = /* @__PURE__ */ function(NotificationScheduleStatus) {
791
- NotificationScheduleStatus["PENDING"] = "PENDING";
792
- NotificationScheduleStatus["PROCESSING"] = "PROCESSING";
793
- NotificationScheduleStatus["COMPLETED"] = "COMPLETED";
794
- NotificationScheduleStatus["FAILED"] = "FAILED";
795
- NotificationScheduleStatus["CANCELLED"] = "CANCELLED";
796
- return NotificationScheduleStatus;
797
- }({});
798
- let JobType = /* @__PURE__ */ function(JobType) {
799
- JobType["STANDARD"] = "STANDARD";
800
- JobType["REMINDER"] = "REMINDER";
801
- JobType["RECURRING_REMINDER"] = "RECURRING_REMINDER";
802
- return JobType;
773
+ Orientation["West"] = "WEST";
774
+ Orientation["Northeast"] = "NORTHEAST";
775
+ Orientation["Northwest"] = "NORTHWEST";
776
+ Orientation["Southeast"] = "SOUTHEAST";
777
+ Orientation["Southwest"] = "SOUTHWEST";
778
+ Orientation["Unknown"] = "UNKNOWN";
779
+ return Orientation;
803
780
  }({});
804
- let JobStatus = /* @__PURE__ */ function(JobStatus) {
805
- JobStatus["PENDING"] = "PENDING";
806
- JobStatus["SCHEDULED"] = "SCHEDULED";
807
- JobStatus["RUNNING"] = "RUNNING";
808
- JobStatus["COMPLETED"] = "COMPLETED";
809
- JobStatus["FAILED"] = "FAILED";
810
- JobStatus["CANCELLED"] = "CANCELLED";
811
- JobStatus["RETRYING"] = "RETRYING";
812
- return JobStatus;
781
+ let VersionAction = /* @__PURE__ */ function(VersionAction) {
782
+ VersionAction["CREATE"] = "CREATE";
783
+ VersionAction["UPDATE"] = "UPDATE";
784
+ return VersionAction;
813
785
  }({});
814
786
  //#endregion
815
- //#region src/generated/order-request/exceptions.ts
816
- const OrderRequestExceptions = {
817
- ORDER_REQUEST_NOT_FOUND: "Order request not found",
818
- ORDER_REQUEST_NOT_ALLOWED: "Order request not allowed"
787
+ //#region src/generated/ticket/exceptions.ts
788
+ const TicketExceptions = {
789
+ TICKETS_NOT_FOUND: "Tickets not found",
790
+ FORBIDEN_PERMISSION: "You do not have permission to approve tickets"
819
791
  };
820
792
  //#endregion
821
- //#region src/generated/order-request/order-request.enum.ts
822
- let OrderRequestType = /* @__PURE__ */ function(OrderRequestType) {
823
- OrderRequestType["SELL"] = "SELL";
824
- OrderRequestType["RENT"] = "RENT";
825
- return OrderRequestType;
793
+ //#region src/generated/ticket/ticket.enum.ts
794
+ let TicketType = /* @__PURE__ */ function(TicketType) {
795
+ TicketType["APPROVE_USER_TO_BROKER"] = "APPROVE_USER_TO_BROKER";
796
+ TicketType["APPROVE_USER_TO_INVESTOR_REPRESENTATIVE"] = "APPROVE_USER_TO_INVESTOR_REPRESENTATIVE";
797
+ return TicketType;
798
+ }({});
799
+ let TicketStatus = /* @__PURE__ */ function(TicketStatus) {
800
+ TicketStatus["PENDING"] = "PENDING";
801
+ TicketStatus["PROCESSING"] = "PROCESSING";
802
+ TicketStatus["APPROVED"] = "APPROVED";
803
+ TicketStatus["REJECTED"] = "REJECTED";
804
+ return TicketStatus;
826
805
  }({});
827
806
  //#endregion
828
- //#region src/generated/payment-process/exceptions.ts
829
- const PaymentProcessExceptions = {
830
- PAYMENT_PROCESS_NOT_FOUND: "Payment process not found",
831
- PAYMENT_PROCESS_NOT_IN_PROGRESS: "Payment process is not in progress",
832
- PAYMENT_PROCESS_NOT_ALLOWED_TO_CONFIRM: "You are not allowed to confirm this payment process",
833
- PAYMENT_PROCESS_NOT_ALLOWED_TO_UPDATE: "You are not allowed to update this payment process",
834
- PAYMENT_INSTALLMENT_NOT_FOUND: "Payment installment not found",
835
- PAYMENT_INSTALLMENT_NOT_PENDING: "Payment installment is not pending",
836
- PAYMENT_INSTALLMENT_NOT_ALLOWED_TO_CONFIRM: "You are not allowed to confirm this payment installment",
837
- PAYMENT_INSTALLMENT_NOT_ALLOWED_TO_UPDATE: "You are not allowed to update this payment installment"
807
+ //#region src/generated/settings/exceptions.ts
808
+ const RoleExceptions = { ROLE_NOT_FOUND: "Role not found" };
809
+ const SettingExceptions = {
810
+ EMAIL_IS_THE_SAME_AS_CURRENT_EMAIL: "Email is the same as the current email",
811
+ INVALID_MAGIC_LINK: "Invalid magic link",
812
+ PHONE_NUMBER_IS_THE_SAME_AS_CURRENT: "Phone number is the same as the current phone number"
838
813
  };
839
814
  //#endregion
840
- //#region src/generated/payment-process/payment-process.enum.ts
841
- let PaymentProcessStatus = /* @__PURE__ */ function(PaymentProcessStatus) {
842
- PaymentProcessStatus["IN_PROGRESS"] = "IN_PROGRESS";
843
- PaymentProcessStatus["COMPLETED"] = "COMPLETED";
844
- PaymentProcessStatus["CANCELLED"] = "CANCELLED";
845
- return PaymentProcessStatus;
846
- }({});
847
- let PaymentInstallmentStatus = /* @__PURE__ */ function(PaymentInstallmentStatus) {
848
- PaymentInstallmentStatus["PENDING"] = "PENDING";
849
- PaymentInstallmentStatus["PAID"] = "PAID";
850
- PaymentInstallmentStatus["CANCELLED"] = "CANCELLED";
851
- return PaymentInstallmentStatus;
852
- }({});
853
- //#endregion
854
- //#region src/generated/project/exceptions.ts
855
- const ProjectExceptions = {
856
- PROJECT_NOT_FOUND: "Project not found",
857
- PROJECT_NOT_ALLOWED_TO_UPDATE: "Not allowed to update this project",
858
- PROJECT_NOT_ALLOWED_TO_DELETE: "Not allowed to delete this project",
859
- PROJECT_ALREADY_EXISTS: "Project already exists"
815
+ //#region src/generated/client/exceptions.ts
816
+ const ClientExceptions = {
817
+ CLIENT_NOT_FOUND: "Client not found",
818
+ CLIENTS_NOT_FOUND: "One or more clients not found",
819
+ FORBIDDEN: "Forbidden",
820
+ CLIENTS_NOT_CREATED_BY_USER: "One or more clients are not created by the user"
821
+ };
822
+ const ClientCategoryExceptions = {
823
+ CLIENT_CATEGORY_NOT_FOUND: "Client category not found",
824
+ CLIENT_CATEGORY_ACCESS_DENIED: "Access denied to this client category",
825
+ CLIENT_CATEGORY_PERMISSION_DENIED: "Permission denied to client category",
826
+ CLIENT_CATEGORY_CREATION_FAILED: "Failed to create client category",
827
+ CLIENT_CATEGORY_UPDATE_FAILED: "Failed to update client category",
828
+ CLIENT_CATEGORY_DELETION_FAILED: "Failed to delete client category",
829
+ FORBIDDEN: "Forbidden"
860
830
  };
861
831
  //#endregion
862
- //#region src/generated/project/project.enum.ts
863
- let ProjectType = /* @__PURE__ */ function(ProjectType) {
864
- ProjectType["GREEN_CLEAN"] = "GREEN_CLEAN";
865
- ProjectType["HIGH_TECH"] = "HIGH_TECH";
866
- ProjectType["HEAVY_INDUSTRY"] = "HEAVY_INDUSTRY";
867
- ProjectType["MIXED_USE"] = "MIXED_USE";
868
- ProjectType["SPECIALIZED"] = "SPECIALIZED";
869
- return ProjectType;
870
- }({});
871
- let ProjectClassification = /* @__PURE__ */ function(ProjectClassification) {
872
- ProjectClassification["INDUSTRIAL_PARK"] = "INDUSTRIAL_PARK";
873
- ProjectClassification["INDUSTRIAL_CLUSTER"] = "INDUSTRIAL_CLUSTER";
874
- ProjectClassification["OFFICE_ZONE"] = "OFFICE_ZONE";
875
- ProjectClassification["MIXED_COMPLEX"] = "MIXED_COMPLEX";
876
- ProjectClassification["SHOPPING_CENTER"] = "SHOPPING_CENTER";
877
- return ProjectClassification;
832
+ //#region src/generated/client/client.enum.ts
833
+ let ClientNeed = /* @__PURE__ */ function(ClientNeed) {
834
+ ClientNeed["FOR_SALE"] = "FOR_SALE";
835
+ ClientNeed["FOR_LEASE"] = "FOR_LEASE";
836
+ return ClientNeed;
878
837
  }({});
879
- let ProjectApprovalStatus = /* @__PURE__ */ function(ProjectApprovalStatus) {
880
- ProjectApprovalStatus["PENDING"] = "PENDING";
881
- ProjectApprovalStatus["APPROVED"] = "APPROVED";
882
- ProjectApprovalStatus["REJECTED"] = "REJECTED";
883
- return ProjectApprovalStatus;
838
+ let ClientRoles = /* @__PURE__ */ function(ClientRoles) {
839
+ ClientRoles["BROKER"] = "BROKER";
840
+ ClientRoles["OWNER"] = "OWNER";
841
+ ClientRoles["INVESTOR"] = "INVESTOR";
842
+ return ClientRoles;
884
843
  }({});
885
- let ProjectStandard = /* @__PURE__ */ function(ProjectStandard) {
886
- ProjectStandard["PREMIUM"] = "PREMIUM";
887
- ProjectStandard["MEDIUM"] = "MEDIUM";
888
- ProjectStandard["BASIC"] = "BASIC";
889
- ProjectStandard["LUXURY"] = "LUXURY";
890
- return ProjectStandard;
844
+ let ClientStatus = /* @__PURE__ */ function(ClientStatus) {
845
+ ClientStatus["POTENTIAL"] = "POTENTIAL";
846
+ ClientStatus["INTERESTED"] = "INTERESTED";
847
+ ClientStatus["NEGOTIATING"] = "NEGOTIATING";
848
+ ClientStatus["PURCHASED"] = "PURCHASED";
849
+ ClientStatus["LOST"] = "LOST";
850
+ ClientStatus["RESEARCHING"] = "RESEARCHING";
851
+ ClientStatus["FOLLOW_UP_NEEDED"] = "FOLLOW_UP_NEEDED";
852
+ return ClientStatus;
891
853
  }({});
892
- let ProjectStage = /* @__PURE__ */ function(ProjectStage) {
893
- ProjectStage["OVERALL_PROJECT_DEVELOPMENT"] = "OVERALL_PROJECT_DEVELOPMENT";
894
- ProjectStage["STAGE_1"] = "STAGE_1";
895
- ProjectStage["STAGE_2"] = "STAGE_2";
896
- ProjectStage["STAGE_3"] = "STAGE_3";
897
- ProjectStage["STAGE_4"] = "STAGE_4";
898
- ProjectStage["STAGE_5"] = "STAGE_5";
899
- ProjectStage["EXPANSION"] = "EXPANSION";
900
- return ProjectStage;
854
+ let ClientSource = /* @__PURE__ */ function(ClientSource) {
855
+ ClientSource["WEBSITE"] = "WEBSITE";
856
+ ClientSource["FACEBOOK"] = "FACEBOOK";
857
+ ClientSource["REFERRAL"] = "REFERRAL";
858
+ ClientSource["PHONE_CALL"] = "PHONE_CALL";
859
+ ClientSource["EMAIL"] = "EMAIL";
860
+ ClientSource["WALK_IN"] = "WALK_IN";
861
+ ClientSource["ADVERTISEMENT"] = "ADVERTISEMENT";
862
+ ClientSource["EVENT"] = "EVENT";
863
+ ClientSource["OTHER"] = "OTHER";
864
+ return ClientSource;
901
865
  }({});
902
- let ProjectCurrentStatus = /* @__PURE__ */ function(ProjectCurrentStatus) {
903
- ProjectCurrentStatus["UPCOMING_FOR_SALE"] = "UPCOMING_FOR_SALE";
904
- ProjectCurrentStatus["FOR_SALE_OR_FOR_LEASE"] = "FOR_SALE_OR_FOR_LEASE";
905
- ProjectCurrentStatus["IN_OPERATION"] = "IN_OPERATION";
906
- ProjectCurrentStatus["INACTIVE"] = "INACTIVE";
907
- ProjectCurrentStatus["UNSPECIFIED"] = "UNSPECIFIED";
908
- return ProjectCurrentStatus;
866
+ let ClientType = /* @__PURE__ */ function(ClientType) {
867
+ ClientType["PERSONAL"] = "PERSONAL";
868
+ ClientType["ORGANIZATION"] = "ORGANIZATION";
869
+ return ClientType;
909
870
  }({});
910
871
  //#endregion
911
- //#region src/generated/register/exceptions.ts
912
- const RegisterExceptions = {
913
- INVALID_VERIFICATION_TYPE: "Verification type is invalid",
914
- OTP_ALREADY_SENT: "OTP is already sent",
915
- RESEND_REACH_LIMIT: "Resend OTP too fast or reached limit",
916
- VERIFY_REACH_LIMIT: "Verify reached limit",
917
- REGISTER_ACCOUNT_REQUEST_NOT_FOUND: "Register account request not found",
918
- REGISTER_ACCOUNT_NOT_VERIFIED: "Register account request is not verified",
919
- INVALID_OTP_CODE: "Invalid Otp code",
920
- REGISTER_ACCOUNT_VERIFICATION_NOT_FOUND: "Register account verification is not found"
872
+ //#region src/generated/deal/exceptions.ts
873
+ const DealExceptions = {
874
+ DEAL_NOT_FOUND: "Deal not found",
875
+ DEAL_STEP_NOT_FOUND: "Deal step not found"
921
876
  };
922
- //#endregion
923
- //#region src/generated/settings/exceptions.ts
924
- const RoleExceptions = { ROLE_NOT_FOUND: "Role not found" };
925
- const SettingExceptions = {
926
- EMAIL_IS_THE_SAME_AS_CURRENT_EMAIL: "Email is the same as the current email",
927
- INVALID_MAGIC_LINK: "Invalid magic link",
928
- PHONE_NUMBER_IS_THE_SAME_AS_CURRENT: "Phone number is the same as the current phone number"
877
+ const DealStepExceptions = {
878
+ DEAL_STEP_NOT_FOUND: "Deal step not found",
879
+ DEAL_STEP_PARTICIPANTS_NOT_FOUND: "Deal step participants not found"
929
880
  };
881
+ const PreDealExceptions = { PRE_DEAL_NOT_FOUND: "Pre-deal not found" };
930
882
  //#endregion
931
- //#region src/generated/ticket/exceptions.ts
932
- const TicketExceptions = {
933
- TICKETS_NOT_FOUND: "Tickets not found",
934
- FORBIDEN_PERMISSION: "You do not have permission to approve tickets"
935
- };
883
+ //#region src/generated/deal/deal.enum.ts
884
+ let DealStatus = /* @__PURE__ */ function(DealStatus) {
885
+ DealStatus["PENDING"] = "PENDING";
886
+ DealStatus["PROCESSING"] = "PROCESSING";
887
+ DealStatus["COMPLETED"] = "COMPLETED";
888
+ DealStatus["CANCELLED"] = "CANCELLED";
889
+ DealStatus["ON_HOLD"] = "ON_HOLD";
890
+ return DealStatus;
891
+ }({});
892
+ let DealFilterType = /* @__PURE__ */ function(DealFilterType) {
893
+ DealFilterType["ORDER_REQUEST_RENT"] = "ORDER_REQUEST_RENT";
894
+ DealFilterType["ORDER_REQUEST_SELL"] = "ORDER_REQUEST_SELL";
895
+ DealFilterType["CONSIGNMENT_REQUEST_RENT"] = "CONSIGNMENT_REQUEST_RENT";
896
+ DealFilterType["CONSIGNMENT_REQUEST_SELL"] = "CONSIGNMENT_REQUEST_SELL";
897
+ return DealFilterType;
898
+ }({});
899
+ let DealStepStatus = /* @__PURE__ */ function(DealStepStatus) {
900
+ DealStepStatus["PENDING"] = "PENDING";
901
+ DealStepStatus["PROCESSING"] = "PROCESSING";
902
+ DealStepStatus["COMPLETED"] = "COMPLETED";
903
+ DealStepStatus["CANCELLED"] = "CANCELLED";
904
+ DealStepStatus["ON_HOLD"] = "ON_HOLD";
905
+ return DealStepStatus;
906
+ }({});
907
+ let DealProgress = /* @__PURE__ */ function(DealProgress) {
908
+ DealProgress["INITIATED"] = "INITIATED";
909
+ DealProgress["CONSULTING"] = "CONSULTING";
910
+ DealProgress["SCHEDULE_SURVEY"] = "SCHEDULE_SURVEY";
911
+ DealProgress["NEGOTIATING"] = "NEGOTIATING";
912
+ DealProgress["DEPOSIT"] = "DEPOSIT";
913
+ DealProgress["PAYMENT"] = "PAYMENT";
914
+ DealProgress["HANDOVER"] = "HANDOVER";
915
+ DealProgress["COMPLETED"] = "COMPLETED";
916
+ DealProgress["CANCELLED"] = "CANCELLED";
917
+ return DealProgress;
918
+ }({});
919
+ let ParticipantRole = /* @__PURE__ */ function(ParticipantRole) {
920
+ ParticipantRole["CLIENT_BROKER"] = "CLIENT_BROKER";
921
+ ParticipantRole["INVESTOR_BROKER"] = "INVESTOR_BROKER";
922
+ ParticipantRole["OWNER"] = "OWNER";
923
+ ParticipantRole["INVESTOR"] = "INVESTOR";
924
+ ParticipantRole["CLIENT"] = "CLIENT";
925
+ ParticipantRole["INVESTOR_REPRESENTATIVE"] = "INVESTOR_REPRESENTATIVE";
926
+ return ParticipantRole;
927
+ }({});
928
+ let ParticipantStatus = /* @__PURE__ */ function(ParticipantStatus) {
929
+ ParticipantStatus["PENDING"] = "PENDING";
930
+ ParticipantStatus["APPROVED"] = "APPROVED";
931
+ ParticipantStatus["REJECTED"] = "REJECTED";
932
+ ParticipantStatus["ACKNOWLEDGED"] = "ACKNOWLEDGED";
933
+ ParticipantStatus["NO_RESPONSE"] = "NO_RESPONSE";
934
+ return ParticipantStatus;
935
+ }({});
936
936
  //#endregion
937
937
  export { AgreementExceptions, AgreementTemplateExceptions, AgreementTemplateType, AgreementTypeExceptions, AppointmentExceptions, AppointmentStatus, AppointmentType, BA_DINH_WARD_NO, BlackListEntityType, BlackListStatus, BlacklistExceptions, BrokerExceptions, ChatGroupMemberRole, ClientCategoryExceptions, ClientExceptions, ClientNeed, ClientRoles, ClientSource, ClientStatus, ClientType, ConsignmentRequestExceptions, ConsignmentRequestType, ConversationExceptions, ConvertBrokerClientType, DealExceptions, DealFilterType, DealProgress, DealStatus, DealStepExceptions, DealStepStatus, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentType, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleExceptions, ForSaleInfrastructureStatus, ForSalePostType, ForSalePropertyType, ForSaleRoadType, ForSaleStatus, ForSaleUtilities, IdentityExceptions, IdentityNationality, IdentityType, IdentityVerificationStatus, IndustrialParkExceptions, InvestorExceptions, JobStatus, JobType, LandCurrentStatus, LandType, MediaExceptions, MediaSortField, MediaType, MessageType, NotificationDetailStatus, NotificationEnv, NotificationScheduleStatus, NotificationType, OrderRequestExceptions, OrderRequestType, Orientation, OtpType, ParticipantRole, ParticipantStatus, PaymentInstallmentStatus, PaymentProcessExceptions, PaymentProcessStatus, PreDealExceptions, ProjectApprovalStatus, ProjectClassification, ProjectCurrentStatus, ProjectExceptions, ProjectStage, ProjectStandard, ProjectType, PropertyApprovalStatus, PropertyAuthorizationType, PropertyExceptions, PropertyIdentifierType, PropertyLandCurrentStatus, PropertyLegalStatus, PropertyOperationStatus, PropertyTransactionStatus, PropertyType, ProvinceExceptions, RegisterExceptions, RoleCodes, RoleExceptions, ScheduleType, SchedulerStatus, SettingExceptions, SortDirection, TicketExceptions, TicketStatus, TicketType, UserExceptions, UserGender, UserHistoryType, UserLanguage, UserStatus, VerificationType, VersionAction, WardExceptions };
938
938