@investtal/models 1.4.1 → 1.4.3
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.cjs +570 -570
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5292 -5143
- package/dist/index.d.mts +5292 -5143
- package/dist/index.mjs +570 -570
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8,12 +8,58 @@ let SortDirection = /* @__PURE__ */ function(SortDirection) {
|
|
|
8
8
|
return SortDirection;
|
|
9
9
|
}({});
|
|
10
10
|
//#endregion
|
|
11
|
-
//#region src/generated/
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
//#region src/generated/administrator/exceptions.ts
|
|
12
|
+
const DocumentExceptions = { DOCUMENT_NOT_FOUND: "Document not found" };
|
|
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;
|
|
19
|
+
}({});
|
|
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
|
+
}({});
|
|
27
|
+
//#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
|
+
};
|
|
34
|
+
const AgreementTypeExceptions = {
|
|
35
|
+
AGREEMENT_TYPE_NOT_FOUND: "Agreement type not found",
|
|
36
|
+
AGREEMENT_TYPE_IS_NOT_ALLOW: "Agreement type is not allow"
|
|
37
|
+
};
|
|
38
|
+
//#endregion
|
|
39
|
+
//#region src/generated/agreement-template/agreement-template.enum.ts
|
|
40
|
+
let AgreementTemplateType = /* @__PURE__ */ function(AgreementTemplateType) {
|
|
41
|
+
AgreementTemplateType["SYSTEM"] = "SYSTEM";
|
|
42
|
+
AgreementTemplateType["BROKER"] = "BROKER";
|
|
43
|
+
AgreementTemplateType["CLIENT"] = "CLIENT";
|
|
44
|
+
AgreementTemplateType["INVESTOR"] = "INVESTOR";
|
|
45
|
+
AgreementTemplateType["OWNER"] = "OWNER";
|
|
46
|
+
AgreementTemplateType["MOU"] = "MOU";
|
|
47
|
+
AgreementTemplateType["DEPOSIT"] = "DEPOSIT";
|
|
48
|
+
AgreementTemplateType["DISCLOSURE"] = "DISCLOSURE";
|
|
49
|
+
AgreementTemplateType["OTHER"] = "OTHER";
|
|
50
|
+
return AgreementTemplateType;
|
|
51
|
+
}({});
|
|
52
|
+
//#endregion
|
|
53
|
+
//#region src/generated/agreement-template/exceptions.ts
|
|
54
|
+
const AgreementTemplateExceptions = {
|
|
55
|
+
TEMPLATE_NOT_FOUND: "Agreement template not found",
|
|
56
|
+
FILE_NOT_FOUND: "Template file not found",
|
|
57
|
+
ACCESS_DENIED: "Access denied to this template",
|
|
58
|
+
PERMISSION_DENIED: "Permission denied",
|
|
59
|
+
TEMPLATE_IN_USE: "Template is in use and cannot be deleted",
|
|
60
|
+
CREATION_FAILED: "Failed to create agreement template",
|
|
61
|
+
INVALID_TEMPLATE_TYPE: "Invalid template type for user role",
|
|
62
|
+
TEMPLATE_ALREADY_EXISTS: "Agreement template already exists"
|
|
17
63
|
};
|
|
18
64
|
//#endregion
|
|
19
65
|
//#region src/generated/auth/auth.enum.ts
|
|
@@ -168,16 +214,53 @@ let OtpType = /* @__PURE__ */ function(OtpType) {
|
|
|
168
214
|
return OtpType;
|
|
169
215
|
}({});
|
|
170
216
|
//#endregion
|
|
171
|
-
//#region src/generated/
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
217
|
+
//#region src/generated/appointment/appointment.enum.ts
|
|
218
|
+
let AppointmentStatus = /* @__PURE__ */ function(AppointmentStatus) {
|
|
219
|
+
AppointmentStatus["PENDING_APPROVAL"] = "PENDING_APPROVAL";
|
|
220
|
+
AppointmentStatus["SCHEDULED"] = "SCHEDULED";
|
|
221
|
+
AppointmentStatus["COMPLETED"] = "COMPLETED";
|
|
222
|
+
AppointmentStatus["CANCELLED"] = "CANCELLED";
|
|
223
|
+
return AppointmentStatus;
|
|
224
|
+
}({});
|
|
225
|
+
let AppointmentType = /* @__PURE__ */ function(AppointmentType) {
|
|
226
|
+
AppointmentType["SURVEY_SCHEDULING"] = "SURVEY_SCHEDULING";
|
|
227
|
+
AppointmentType["NEGOTIATION"] = "NEGOTIATION";
|
|
228
|
+
AppointmentType["LEASE_DEPOSIT"] = "LEASE_DEPOSIT";
|
|
229
|
+
AppointmentType["LEGAL_LICENSING"] = "LEGAL_LICENSING";
|
|
230
|
+
AppointmentType["FINAL_CONTRACT_PAYMENT"] = "FINAL_CONTRACT_PAYMENT";
|
|
231
|
+
AppointmentType["PROPERTY_HANDOVER"] = "PROPERTY_HANDOVER";
|
|
232
|
+
AppointmentType["TRANSACTION_COMPLETED"] = "TRANSACTION_COMPLETED";
|
|
233
|
+
return AppointmentType;
|
|
234
|
+
}({});
|
|
235
|
+
let ScheduleType = /* @__PURE__ */ function(ScheduleType) {
|
|
236
|
+
ScheduleType["SCHEDULE_CREATED"] = "SCHEDULE_CREATED";
|
|
237
|
+
ScheduleType["DAILY_ACKNOWLEDGMENT"] = "DAILY_ACKNOWLEDGMENT";
|
|
238
|
+
ScheduleType["PRE_MEETING"] = "PRE_MEETING";
|
|
239
|
+
return ScheduleType;
|
|
240
|
+
}({});
|
|
241
|
+
let SchedulerStatus = /* @__PURE__ */ function(SchedulerStatus) {
|
|
242
|
+
SchedulerStatus["PENDING"] = "PENDING";
|
|
243
|
+
SchedulerStatus["SENT"] = "SENT";
|
|
244
|
+
SchedulerStatus["DELIVERED"] = "DELIVERED";
|
|
245
|
+
SchedulerStatus["FAILED"] = "FAILED";
|
|
246
|
+
SchedulerStatus["ACKNOWLEDGED"] = "ACKNOWLEDGED";
|
|
247
|
+
SchedulerStatus["CANCELLED"] = "CANCELLED";
|
|
248
|
+
return SchedulerStatus;
|
|
249
|
+
}({});
|
|
250
|
+
//#endregion
|
|
251
|
+
//#region src/generated/appointment/exceptions.ts
|
|
252
|
+
const AppointmentExceptions = {
|
|
253
|
+
APPOINTMENT_NOT_FOUND: "Appointment not found or access denied",
|
|
254
|
+
ACCESS_DENIED: "Access denied to this appointment",
|
|
255
|
+
PERMISSION_DENIED: "Permission denied",
|
|
256
|
+
CREATION_FAILED: "Failed to create appointment",
|
|
257
|
+
UPDATE_FAILED: "Failed to update appointment",
|
|
258
|
+
DELETE_FAILED: "Failed to delete appointment",
|
|
259
|
+
INVALID_STATUS: "Invalid appointment status",
|
|
260
|
+
INVALID_DATE: "Invalid appointment date",
|
|
261
|
+
PARTICIPANT_NOT_FOUND: "Participant not found",
|
|
262
|
+
REMINDER_FAILED: "Failed to set appointment reminder"
|
|
179
263
|
};
|
|
180
|
-
const PreDealExceptions = { PRE_DEAL_NOT_FOUND: "Pre-deal not found" };
|
|
181
264
|
//#endregion
|
|
182
265
|
//#region src/generated/deal/deal.enum.ts
|
|
183
266
|
let DealStatus = /* @__PURE__ */ function(DealStatus) {
|
|
@@ -233,58 +316,35 @@ let ParticipantStatus = /* @__PURE__ */ function(ParticipantStatus) {
|
|
|
233
316
|
return ParticipantStatus;
|
|
234
317
|
}({});
|
|
235
318
|
//#endregion
|
|
236
|
-
//#region src/generated/
|
|
237
|
-
const
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
PARTICIPANT_NOT_FOUND: "Participant not found",
|
|
247
|
-
REMINDER_FAILED: "Failed to set appointment reminder"
|
|
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"
|
|
248
329
|
};
|
|
249
330
|
//#endregion
|
|
250
|
-
//#region src/generated/
|
|
251
|
-
let
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
AppointmentStatus["CANCELLED"] = "CANCELLED";
|
|
256
|
-
return AppointmentStatus;
|
|
257
|
-
}({});
|
|
258
|
-
let AppointmentType = /* @__PURE__ */ function(AppointmentType) {
|
|
259
|
-
AppointmentType["SURVEY_SCHEDULING"] = "SURVEY_SCHEDULING";
|
|
260
|
-
AppointmentType["NEGOTIATION"] = "NEGOTIATION";
|
|
261
|
-
AppointmentType["LEASE_DEPOSIT"] = "LEASE_DEPOSIT";
|
|
262
|
-
AppointmentType["LEGAL_LICENSING"] = "LEGAL_LICENSING";
|
|
263
|
-
AppointmentType["FINAL_CONTRACT_PAYMENT"] = "FINAL_CONTRACT_PAYMENT";
|
|
264
|
-
AppointmentType["PROPERTY_HANDOVER"] = "PROPERTY_HANDOVER";
|
|
265
|
-
AppointmentType["TRANSACTION_COMPLETED"] = "TRANSACTION_COMPLETED";
|
|
266
|
-
return AppointmentType;
|
|
267
|
-
}({});
|
|
268
|
-
let ScheduleType = /* @__PURE__ */ function(ScheduleType) {
|
|
269
|
-
ScheduleType["SCHEDULE_CREATED"] = "SCHEDULE_CREATED";
|
|
270
|
-
ScheduleType["DAILY_ACKNOWLEDGMENT"] = "DAILY_ACKNOWLEDGMENT";
|
|
271
|
-
ScheduleType["PRE_MEETING"] = "PRE_MEETING";
|
|
272
|
-
return ScheduleType;
|
|
331
|
+
//#region src/generated/blacklist/blacklist.enum.ts
|
|
332
|
+
let BlackListEntityType = /* @__PURE__ */ function(BlackListEntityType) {
|
|
333
|
+
BlackListEntityType["USER"] = "USER";
|
|
334
|
+
BlackListEntityType["ORGANIZATION"] = "ORGANIZATION";
|
|
335
|
+
return BlackListEntityType;
|
|
273
336
|
}({});
|
|
274
|
-
let
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
SchedulerStatus["ACKNOWLEDGED"] = "ACKNOWLEDGED";
|
|
280
|
-
SchedulerStatus["CANCELLED"] = "CANCELLED";
|
|
281
|
-
return SchedulerStatus;
|
|
337
|
+
let BlackListStatus = /* @__PURE__ */ function(BlackListStatus) {
|
|
338
|
+
BlackListStatus["ACTIVE"] = "ACTIVE";
|
|
339
|
+
BlackListStatus["EXPIRED"] = "EXPIRED";
|
|
340
|
+
BlackListStatus["REMOVED"] = "REMOVED";
|
|
341
|
+
return BlackListStatus;
|
|
282
342
|
}({});
|
|
283
343
|
//#endregion
|
|
284
|
-
//#region src/generated/
|
|
285
|
-
const
|
|
286
|
-
|
|
287
|
-
|
|
344
|
+
//#region src/generated/blacklist/exceptions.ts
|
|
345
|
+
const BlacklistExceptions = {
|
|
346
|
+
FORBIDDEN: "You are not authorized to create a blacklist",
|
|
347
|
+
NOT_FOUND: "Blacklist not found"
|
|
288
348
|
};
|
|
289
349
|
//#endregion
|
|
290
350
|
//#region src/generated/broker/broker.enum.ts
|
|
@@ -295,323 +355,69 @@ let ConvertBrokerClientType = /* @__PURE__ */ function(ConvertBrokerClientType)
|
|
|
295
355
|
return ConvertBrokerClientType;
|
|
296
356
|
}({});
|
|
297
357
|
//#endregion
|
|
298
|
-
//#region src/generated/
|
|
299
|
-
const
|
|
358
|
+
//#region src/generated/broker/exceptions.ts
|
|
359
|
+
const BrokerExceptions = {
|
|
360
|
+
INVITED_USER_NOT_FOUND: "Invited user not found",
|
|
361
|
+
INPUT_DATA_IS_INVALID: "Input data is invalid"
|
|
362
|
+
};
|
|
300
363
|
//#endregion
|
|
301
|
-
//#region src/generated/
|
|
302
|
-
let
|
|
303
|
-
|
|
304
|
-
|
|
364
|
+
//#region src/generated/client/client.enum.ts
|
|
365
|
+
let ClientNeed = /* @__PURE__ */ function(ClientNeed) {
|
|
366
|
+
ClientNeed["FOR_SALE"] = "FOR_SALE";
|
|
367
|
+
ClientNeed["FOR_LEASE"] = "FOR_LEASE";
|
|
368
|
+
return ClientNeed;
|
|
305
369
|
}({});
|
|
306
|
-
let
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
370
|
+
let ClientRoles = /* @__PURE__ */ function(ClientRoles) {
|
|
371
|
+
ClientRoles["BROKER"] = "BROKER";
|
|
372
|
+
ClientRoles["OWNER"] = "OWNER";
|
|
373
|
+
ClientRoles["INVESTOR"] = "INVESTOR";
|
|
374
|
+
return ClientRoles;
|
|
310
375
|
}({});
|
|
311
|
-
let
|
|
312
|
-
|
|
313
|
-
|
|
376
|
+
let ClientStatus = /* @__PURE__ */ function(ClientStatus) {
|
|
377
|
+
ClientStatus["POTENTIAL"] = "POTENTIAL";
|
|
378
|
+
ClientStatus["INTERESTED"] = "INTERESTED";
|
|
379
|
+
ClientStatus["NEGOTIATING"] = "NEGOTIATING";
|
|
380
|
+
ClientStatus["PURCHASED"] = "PURCHASED";
|
|
381
|
+
ClientStatus["LOST"] = "LOST";
|
|
382
|
+
ClientStatus["RESEARCHING"] = "RESEARCHING";
|
|
383
|
+
ClientStatus["FOLLOW_UP_NEEDED"] = "FOLLOW_UP_NEEDED";
|
|
384
|
+
return ClientStatus;
|
|
385
|
+
}({});
|
|
386
|
+
let ClientSource = /* @__PURE__ */ function(ClientSource) {
|
|
387
|
+
ClientSource["WEBSITE"] = "WEBSITE";
|
|
388
|
+
ClientSource["FACEBOOK"] = "FACEBOOK";
|
|
389
|
+
ClientSource["REFERRAL"] = "REFERRAL";
|
|
390
|
+
ClientSource["PHONE_CALL"] = "PHONE_CALL";
|
|
391
|
+
ClientSource["EMAIL"] = "EMAIL";
|
|
392
|
+
ClientSource["WALK_IN"] = "WALK_IN";
|
|
393
|
+
ClientSource["ADVERTISEMENT"] = "ADVERTISEMENT";
|
|
394
|
+
ClientSource["EVENT"] = "EVENT";
|
|
395
|
+
ClientSource["OTHER"] = "OTHER";
|
|
396
|
+
return ClientSource;
|
|
397
|
+
}({});
|
|
398
|
+
let ClientType = /* @__PURE__ */ function(ClientType) {
|
|
399
|
+
ClientType["PERSONAL"] = "PERSONAL";
|
|
400
|
+
ClientType["ORGANIZATION"] = "ORGANIZATION";
|
|
401
|
+
return ClientType;
|
|
314
402
|
}({});
|
|
315
403
|
//#endregion
|
|
316
|
-
//#region src/generated/
|
|
317
|
-
const
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
PASSWORD_INCORRECT: "Password is not correct",
|
|
323
|
-
USER_ALREADY_EXISTS: "User already exists",
|
|
324
|
-
OTP_EXPIRED: "OTP expired",
|
|
325
|
-
INVALID_OTP: "Invalid OTP"
|
|
404
|
+
//#region src/generated/client/exceptions.ts
|
|
405
|
+
const ClientExceptions = {
|
|
406
|
+
CLIENT_NOT_FOUND: "Client not found",
|
|
407
|
+
CLIENTS_NOT_FOUND: "One or more clients not found",
|
|
408
|
+
FORBIDDEN: "Forbidden",
|
|
409
|
+
CLIENTS_NOT_CREATED_BY_USER: "One or more clients are not created by the user"
|
|
326
410
|
};
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
let NotificationType = /* @__PURE__ */ function(NotificationType) {
|
|
336
|
-
NotificationType["EMAIL"] = "EMAIL";
|
|
337
|
-
NotificationType["SMS"] = "SMS";
|
|
338
|
-
NotificationType["PUSH"] = "PUSH";
|
|
339
|
-
return NotificationType;
|
|
340
|
-
}({});
|
|
341
|
-
let NotificationDetailStatus = /* @__PURE__ */ function(NotificationDetailStatus) {
|
|
342
|
-
NotificationDetailStatus["CREATED"] = "CREATED";
|
|
343
|
-
NotificationDetailStatus["SENT"] = "SENT";
|
|
344
|
-
NotificationDetailStatus["FAILED"] = "FAILED";
|
|
345
|
-
NotificationDetailStatus["READ"] = "READ";
|
|
346
|
-
return NotificationDetailStatus;
|
|
347
|
-
}({});
|
|
348
|
-
let NotificationScheduleStatus = /* @__PURE__ */ function(NotificationScheduleStatus) {
|
|
349
|
-
NotificationScheduleStatus["PENDING"] = "PENDING";
|
|
350
|
-
NotificationScheduleStatus["PROCESSING"] = "PROCESSING";
|
|
351
|
-
NotificationScheduleStatus["COMPLETED"] = "COMPLETED";
|
|
352
|
-
NotificationScheduleStatus["FAILED"] = "FAILED";
|
|
353
|
-
NotificationScheduleStatus["CANCELLED"] = "CANCELLED";
|
|
354
|
-
return NotificationScheduleStatus;
|
|
355
|
-
}({});
|
|
356
|
-
let JobType = /* @__PURE__ */ function(JobType) {
|
|
357
|
-
JobType["STANDARD"] = "STANDARD";
|
|
358
|
-
JobType["REMINDER"] = "REMINDER";
|
|
359
|
-
JobType["RECURRING_REMINDER"] = "RECURRING_REMINDER";
|
|
360
|
-
return JobType;
|
|
361
|
-
}({});
|
|
362
|
-
let JobStatus = /* @__PURE__ */ function(JobStatus) {
|
|
363
|
-
JobStatus["PENDING"] = "PENDING";
|
|
364
|
-
JobStatus["SCHEDULED"] = "SCHEDULED";
|
|
365
|
-
JobStatus["RUNNING"] = "RUNNING";
|
|
366
|
-
JobStatus["COMPLETED"] = "COMPLETED";
|
|
367
|
-
JobStatus["FAILED"] = "FAILED";
|
|
368
|
-
JobStatus["CANCELLED"] = "CANCELLED";
|
|
369
|
-
JobStatus["RETRYING"] = "RETRYING";
|
|
370
|
-
return JobStatus;
|
|
371
|
-
}({});
|
|
372
|
-
//#endregion
|
|
373
|
-
//#region src/generated/location/exceptions.ts
|
|
374
|
-
const ProvinceExceptions = { PROVINCE_NOT_FOUND: "Province not found" };
|
|
375
|
-
const DistrictExceptions = { DISTRICT_NOT_FOUND: "District not found" };
|
|
376
|
-
const WardExceptions = { WARD_NOT_FOUND: "Ward not found" };
|
|
377
|
-
//#endregion
|
|
378
|
-
//#region src/generated/agreement/exceptions.ts
|
|
379
|
-
const AgreementExceptions = {
|
|
380
|
-
AGREEMENT_NOT_FOUND: "Agreement not found",
|
|
381
|
-
AGREEMENT_IS_NOT_ALLOW: "Agreement is not allowed",
|
|
382
|
-
AGREEMENT_ALREADY_SIGNED: "Agreement already signed"
|
|
383
|
-
};
|
|
384
|
-
const AgreementTypeExceptions = {
|
|
385
|
-
AGREEMENT_TYPE_NOT_FOUND: "Agreement type not found",
|
|
386
|
-
AGREEMENT_TYPE_IS_NOT_ALLOW: "Agreement type is not allow"
|
|
387
|
-
};
|
|
388
|
-
//#endregion
|
|
389
|
-
//#region src/generated/payment-process/exceptions.ts
|
|
390
|
-
const PaymentProcessExceptions = {
|
|
391
|
-
PAYMENT_PROCESS_NOT_FOUND: "Payment process not found",
|
|
392
|
-
PAYMENT_PROCESS_NOT_IN_PROGRESS: "Payment process is not in progress",
|
|
393
|
-
PAYMENT_PROCESS_NOT_ALLOWED_TO_CONFIRM: "You are not allowed to confirm this payment process",
|
|
394
|
-
PAYMENT_PROCESS_NOT_ALLOWED_TO_UPDATE: "You are not allowed to update this payment process",
|
|
395
|
-
PAYMENT_INSTALLMENT_NOT_FOUND: "Payment installment not found",
|
|
396
|
-
PAYMENT_INSTALLMENT_NOT_PENDING: "Payment installment is not pending",
|
|
397
|
-
PAYMENT_INSTALLMENT_NOT_ALLOWED_TO_CONFIRM: "You are not allowed to confirm this payment installment",
|
|
398
|
-
PAYMENT_INSTALLMENT_NOT_ALLOWED_TO_UPDATE: "You are not allowed to update this payment installment"
|
|
399
|
-
};
|
|
400
|
-
//#endregion
|
|
401
|
-
//#region src/generated/payment-process/payment-process.enum.ts
|
|
402
|
-
let PaymentProcessStatus = /* @__PURE__ */ function(PaymentProcessStatus) {
|
|
403
|
-
PaymentProcessStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
404
|
-
PaymentProcessStatus["COMPLETED"] = "COMPLETED";
|
|
405
|
-
PaymentProcessStatus["CANCELLED"] = "CANCELLED";
|
|
406
|
-
return PaymentProcessStatus;
|
|
407
|
-
}({});
|
|
408
|
-
let PaymentInstallmentStatus = /* @__PURE__ */ function(PaymentInstallmentStatus) {
|
|
409
|
-
PaymentInstallmentStatus["PENDING"] = "PENDING";
|
|
410
|
-
PaymentInstallmentStatus["PAID"] = "PAID";
|
|
411
|
-
PaymentInstallmentStatus["CANCELLED"] = "CANCELLED";
|
|
412
|
-
return PaymentInstallmentStatus;
|
|
413
|
-
}({});
|
|
414
|
-
//#endregion
|
|
415
|
-
//#region src/generated/project/exceptions.ts
|
|
416
|
-
const ProjectExceptions = {
|
|
417
|
-
PROJECT_NOT_FOUND: "Project not found",
|
|
418
|
-
PROJECT_NOT_ALLOWED_TO_UPDATE: "Not allowed to update this project",
|
|
419
|
-
PROJECT_NOT_ALLOWED_TO_DELETE: "Not allowed to delete this project",
|
|
420
|
-
PROJECT_ALREADY_EXISTS: "Project already exists"
|
|
411
|
+
const ClientCategoryExceptions = {
|
|
412
|
+
CLIENT_CATEGORY_NOT_FOUND: "Client category not found",
|
|
413
|
+
CLIENT_CATEGORY_ACCESS_DENIED: "Access denied to this client category",
|
|
414
|
+
CLIENT_CATEGORY_PERMISSION_DENIED: "Permission denied to client category",
|
|
415
|
+
CLIENT_CATEGORY_CREATION_FAILED: "Failed to create client category",
|
|
416
|
+
CLIENT_CATEGORY_UPDATE_FAILED: "Failed to update client category",
|
|
417
|
+
CLIENT_CATEGORY_DELETION_FAILED: "Failed to delete client category",
|
|
418
|
+
FORBIDDEN: "Forbidden"
|
|
421
419
|
};
|
|
422
420
|
//#endregion
|
|
423
|
-
//#region src/generated/project/project.enum.ts
|
|
424
|
-
let ProjectType = /* @__PURE__ */ function(ProjectType) {
|
|
425
|
-
ProjectType["GREEN_CLEAN"] = "GREEN_CLEAN";
|
|
426
|
-
ProjectType["HIGH_TECH"] = "HIGH_TECH";
|
|
427
|
-
ProjectType["HEAVY_INDUSTRY"] = "HEAVY_INDUSTRY";
|
|
428
|
-
ProjectType["MIXED_USE"] = "MIXED_USE";
|
|
429
|
-
ProjectType["SPECIALIZED"] = "SPECIALIZED";
|
|
430
|
-
return ProjectType;
|
|
431
|
-
}({});
|
|
432
|
-
let ProjectClassification = /* @__PURE__ */ function(ProjectClassification) {
|
|
433
|
-
ProjectClassification["INDUSTRIAL_PARK"] = "INDUSTRIAL_PARK";
|
|
434
|
-
ProjectClassification["INDUSTRIAL_CLUSTER"] = "INDUSTRIAL_CLUSTER";
|
|
435
|
-
ProjectClassification["OFFICE_ZONE"] = "OFFICE_ZONE";
|
|
436
|
-
ProjectClassification["MIXED_COMPLEX"] = "MIXED_COMPLEX";
|
|
437
|
-
ProjectClassification["SHOPPING_CENTER"] = "SHOPPING_CENTER";
|
|
438
|
-
return ProjectClassification;
|
|
439
|
-
}({});
|
|
440
|
-
let ProjectApprovalStatus = /* @__PURE__ */ function(ProjectApprovalStatus) {
|
|
441
|
-
ProjectApprovalStatus["PENDING"] = "PENDING";
|
|
442
|
-
ProjectApprovalStatus["APPROVED"] = "APPROVED";
|
|
443
|
-
ProjectApprovalStatus["REJECTED"] = "REJECTED";
|
|
444
|
-
return ProjectApprovalStatus;
|
|
445
|
-
}({});
|
|
446
|
-
let ProjectStandard = /* @__PURE__ */ function(ProjectStandard) {
|
|
447
|
-
ProjectStandard["PREMIUM"] = "PREMIUM";
|
|
448
|
-
ProjectStandard["MEDIUM"] = "MEDIUM";
|
|
449
|
-
ProjectStandard["BASIC"] = "BASIC";
|
|
450
|
-
ProjectStandard["LUXURY"] = "LUXURY";
|
|
451
|
-
return ProjectStandard;
|
|
452
|
-
}({});
|
|
453
|
-
let ProjectStage = /* @__PURE__ */ function(ProjectStage) {
|
|
454
|
-
ProjectStage["OVERALL_PROJECT_DEVELOPMENT"] = "OVERALL_PROJECT_DEVELOPMENT";
|
|
455
|
-
ProjectStage["STAGE_1"] = "STAGE_1";
|
|
456
|
-
ProjectStage["STAGE_2"] = "STAGE_2";
|
|
457
|
-
ProjectStage["STAGE_3"] = "STAGE_3";
|
|
458
|
-
ProjectStage["STAGE_4"] = "STAGE_4";
|
|
459
|
-
ProjectStage["STAGE_5"] = "STAGE_5";
|
|
460
|
-
ProjectStage["EXPANSION"] = "EXPANSION";
|
|
461
|
-
return ProjectStage;
|
|
462
|
-
}({});
|
|
463
|
-
let ProjectCurrentStatus = /* @__PURE__ */ function(ProjectCurrentStatus) {
|
|
464
|
-
ProjectCurrentStatus["UPCOMING_FOR_SALE"] = "UPCOMING_FOR_SALE";
|
|
465
|
-
ProjectCurrentStatus["FOR_SALE_OR_FOR_LEASE"] = "FOR_SALE_OR_FOR_LEASE";
|
|
466
|
-
ProjectCurrentStatus["IN_OPERATION"] = "IN_OPERATION";
|
|
467
|
-
ProjectCurrentStatus["INACTIVE"] = "INACTIVE";
|
|
468
|
-
ProjectCurrentStatus["UNSPECIFIED"] = "UNSPECIFIED";
|
|
469
|
-
return ProjectCurrentStatus;
|
|
470
|
-
}({});
|
|
471
|
-
//#endregion
|
|
472
|
-
//#region src/generated/industrial-property/industrial-property.enum.ts
|
|
473
|
-
let PropertyType = /* @__PURE__ */ function(PropertyType) {
|
|
474
|
-
PropertyType["INDUSTRIAL_ZONE"] = "INDUSTRIAL_ZONE";
|
|
475
|
-
PropertyType["BUILDING"] = "BUILDING";
|
|
476
|
-
PropertyType["FLOOR"] = "FLOOR";
|
|
477
|
-
PropertyType["ROOM"] = "ROOM";
|
|
478
|
-
PropertyType["LAND_LOT"] = "LAND_LOT";
|
|
479
|
-
PropertyType["FACTORY"] = "FACTORY";
|
|
480
|
-
PropertyType["WAREHOUSE"] = "WAREHOUSE";
|
|
481
|
-
PropertyType["OFFICE"] = "OFFICE";
|
|
482
|
-
PropertyType["HOUSING"] = "HOUSING";
|
|
483
|
-
PropertyType["APARTMENT"] = "APARTMENT";
|
|
484
|
-
return PropertyType;
|
|
485
|
-
}({});
|
|
486
|
-
let PropertyLegalStatus = /* @__PURE__ */ function(PropertyLegalStatus) {
|
|
487
|
-
PropertyLegalStatus["MORE_THAN_FIFTY_YEARS_ANNUAL_PAYMENT"] = "MORE_THAN_FIFTY_YEARS_ANNUAL_PAYMENT";
|
|
488
|
-
PropertyLegalStatus["MORE_THAN_FIFTY_YEARS_ONE_TIME_PAYMENT"] = "MORE_THAN_FIFTY_YEARS_ONE_TIME_PAYMENT";
|
|
489
|
-
PropertyLegalStatus["FIFTY_YEARS_ANNUAL_PAYMENT"] = "FIFTY_YEARS_ANNUAL_PAYMENT";
|
|
490
|
-
PropertyLegalStatus["FIFTY_YEARS_ONE_TIME_PAYMENT"] = "FIFTY_YEARS_ONE_TIME_PAYMENT";
|
|
491
|
-
PropertyLegalStatus["FORTY_YEARS_ANNUAL_PAYMENT"] = "FORTY_YEARS_ANNUAL_PAYMENT";
|
|
492
|
-
PropertyLegalStatus["FORTY_YEARS_ONE_TIME_PAYMENT"] = "FORTY_YEARS_ONE_TIME_PAYMENT";
|
|
493
|
-
PropertyLegalStatus["THIRTY_YEARS_ONE_TIME_PAYMENT"] = "THIRTY_YEARS_ONE_TIME_PAYMENT";
|
|
494
|
-
PropertyLegalStatus["THIRTY_YEARS_ANNUAL_PAYMENT"] = "THIRTY_YEARS_ANNUAL_PAYMENT";
|
|
495
|
-
PropertyLegalStatus["TWENTY_YEARS_ANNUAL_PAYMENT"] = "TWENTY_YEARS_ANNUAL_PAYMENT";
|
|
496
|
-
PropertyLegalStatus["TWENTY_YEARS_ONE_TIME_PAYMENT"] = "TWENTY_YEARS_ONE_TIME_PAYMENT";
|
|
497
|
-
PropertyLegalStatus["TEN_YEARS_ANNUAL_PAYMENT"] = "TEN_YEARS_ANNUAL_PAYMENT";
|
|
498
|
-
PropertyLegalStatus["TEN_YEARS_ONE_TIME_PAYMENT"] = "TEN_YEARS_ONE_TIME_PAYMENT";
|
|
499
|
-
PropertyLegalStatus["LESS_THAN_TEN_YEARS_ANNUAL_PAYMENT"] = "LESS_THAN_TEN_YEARS_ANNUAL_PAYMENT";
|
|
500
|
-
PropertyLegalStatus["LESS_THAN_TEN_YEARS_ONE_TIME_PAYMENT"] = "LESS_THAN_TEN_YEARS_ONE_TIME_PAYMENT";
|
|
501
|
-
return PropertyLegalStatus;
|
|
502
|
-
}({});
|
|
503
|
-
let PropertyApprovalStatus = /* @__PURE__ */ function(PropertyApprovalStatus) {
|
|
504
|
-
PropertyApprovalStatus["PENDING"] = "PENDING";
|
|
505
|
-
PropertyApprovalStatus["APPROVED"] = "APPROVED";
|
|
506
|
-
PropertyApprovalStatus["REJECTED"] = "REJECTED";
|
|
507
|
-
PropertyApprovalStatus["ARCHIVED"] = "ARCHIVED";
|
|
508
|
-
return PropertyApprovalStatus;
|
|
509
|
-
}({});
|
|
510
|
-
let PropertyLandCurrentStatus = /* @__PURE__ */ function(PropertyLandCurrentStatus) {
|
|
511
|
-
PropertyLandCurrentStatus["PLANNED"] = "PLANNED";
|
|
512
|
-
PropertyLandCurrentStatus["DESIGNING"] = "DESIGNING";
|
|
513
|
-
PropertyLandCurrentStatus["UNDER_CONSTRUCTION"] = "UNDER_CONSTRUCTION";
|
|
514
|
-
PropertyLandCurrentStatus["TOPPING_OUT"] = "TOPPING_OUT";
|
|
515
|
-
PropertyLandCurrentStatus["NEAR_COMPLETION"] = "NEAR_COMPLETION";
|
|
516
|
-
PropertyLandCurrentStatus["COMPLETED"] = "COMPLETED";
|
|
517
|
-
PropertyLandCurrentStatus["READY_FOR_HANDOVER"] = "READY_FOR_HANDOVER";
|
|
518
|
-
PropertyLandCurrentStatus["HANDED_OVER"] = "HANDED_OVER";
|
|
519
|
-
PropertyLandCurrentStatus["ON_HOLD"] = "ON_HOLD";
|
|
520
|
-
PropertyLandCurrentStatus["CANCELLED"] = "CANCELLED";
|
|
521
|
-
return PropertyLandCurrentStatus;
|
|
522
|
-
}({});
|
|
523
|
-
let PropertyTransactionStatus = /* @__PURE__ */ function(PropertyTransactionStatus) {
|
|
524
|
-
PropertyTransactionStatus["AVAILABLE"] = "AVAILABLE";
|
|
525
|
-
PropertyTransactionStatus["DEPOSITED"] = "DEPOSITED";
|
|
526
|
-
PropertyTransactionStatus["LEASED"] = "LEASED";
|
|
527
|
-
PropertyTransactionStatus["SOLD"] = "SOLD";
|
|
528
|
-
PropertyTransactionStatus["UNDEFINED"] = "UNDEFINED";
|
|
529
|
-
return PropertyTransactionStatus;
|
|
530
|
-
}({});
|
|
531
|
-
let PropertyOperationStatus = /* @__PURE__ */ function(PropertyOperationStatus) {
|
|
532
|
-
PropertyOperationStatus["UNDETERMINED"] = "UNDETERMINED";
|
|
533
|
-
PropertyOperationStatus["COMING_SOON"] = "COMING_SOON";
|
|
534
|
-
PropertyOperationStatus["FOR_SALE_RENT"] = "FOR_SALE_RENT";
|
|
535
|
-
PropertyOperationStatus["ACTIVE"] = "ACTIVE";
|
|
536
|
-
PropertyOperationStatus["DEACTIVATED"] = "DEACTIVATED";
|
|
537
|
-
return PropertyOperationStatus;
|
|
538
|
-
}({});
|
|
539
|
-
let PropertyAuthorizationType = /* @__PURE__ */ function(PropertyAuthorizationType) {
|
|
540
|
-
PropertyAuthorizationType["FOR_RENT_A_PART"] = "FOR_RENT_A_PART";
|
|
541
|
-
PropertyAuthorizationType["FOR_SALE_A_PART"] = "FOR_SALE_A_PART";
|
|
542
|
-
PropertyAuthorizationType["FOR_RENT_ALL"] = "FOR_RENT_ALL";
|
|
543
|
-
PropertyAuthorizationType["FOR_SALE_ALL"] = "FOR_SALE_ALL";
|
|
544
|
-
return PropertyAuthorizationType;
|
|
545
|
-
}({});
|
|
546
|
-
let PropertyIdentifierType = /* @__PURE__ */ function(PropertyIdentifierType) {
|
|
547
|
-
PropertyIdentifierType["LAND_CERTIFICATE"] = "LAND_CERTIFICATE";
|
|
548
|
-
PropertyIdentifierType["PARCEL_NUMBER"] = "PARCEL_NUMBER";
|
|
549
|
-
PropertyIdentifierType["MAP_SHEET"] = "MAP_SHEET";
|
|
550
|
-
PropertyIdentifierType["GOVERNMENT_CODE"] = "GOVERNMENT_CODE";
|
|
551
|
-
PropertyIdentifierType["INTERNAL_CODE"] = "INTERNAL_CODE";
|
|
552
|
-
return PropertyIdentifierType;
|
|
553
|
-
}({});
|
|
554
|
-
let DocumentCategory = /* @__PURE__ */ function(DocumentCategory) {
|
|
555
|
-
DocumentCategory["PROJECT_LEGAL"] = "PROJECT_LEGAL";
|
|
556
|
-
DocumentCategory["LAND_LEGAL"] = "LAND_LEGAL";
|
|
557
|
-
DocumentCategory["CONSTRUCTION_LEGAL"] = "CONSTRUCTION_LEGAL";
|
|
558
|
-
DocumentCategory["OTHER"] = "OTHER";
|
|
559
|
-
return DocumentCategory;
|
|
560
|
-
}({});
|
|
561
|
-
let DocumentType = /* @__PURE__ */ function(DocumentType) {
|
|
562
|
-
DocumentType["PROJECT_APPROVAL_DECISION"] = "PROJECT_APPROVAL_DECISION";
|
|
563
|
-
DocumentType["INVESTMENT_CERTIFICATE"] = "INVESTMENT_CERTIFICATE";
|
|
564
|
-
DocumentType["PLANNING_DECISION_1_500"] = "PLANNING_DECISION_1_500";
|
|
565
|
-
DocumentType["PLANNING_DECISION_1_2000"] = "PLANNING_DECISION_1_2000";
|
|
566
|
-
DocumentType["LAND_USE_RIGHT_CERTIFICATE_RED_BOOK"] = "LAND_USE_RIGHT_CERTIFICATE_RED_BOOK";
|
|
567
|
-
DocumentType["LAND_USE_RIGHT_CERTIFICATE_WHITE_LAND"] = "LAND_USE_RIGHT_CERTIFICATE_WHITE_LAND";
|
|
568
|
-
DocumentType["LAND_USE_RIGHT_CERTIFICATE_OTHER"] = "LAND_USE_RIGHT_CERTIFICATE_OTHER";
|
|
569
|
-
DocumentType["BUILDING_PERMIT"] = "BUILDING_PERMIT";
|
|
570
|
-
DocumentType["ENVIRONMENTAL_PERMIT"] = "ENVIRONMENTAL_PERMIT";
|
|
571
|
-
DocumentType["FIRE_SAFETY_CERTIFICATE"] = "FIRE_SAFETY_CERTIFICATE";
|
|
572
|
-
DocumentType["OTHER"] = "OTHER";
|
|
573
|
-
return DocumentType;
|
|
574
|
-
}({});
|
|
575
|
-
let LandCurrentStatus = /* @__PURE__ */ function(LandCurrentStatus) {
|
|
576
|
-
LandCurrentStatus["PLANNED"] = "PLANNED";
|
|
577
|
-
LandCurrentStatus["DESIGNING"] = "DESIGNING";
|
|
578
|
-
LandCurrentStatus["UNDER_CONSTRUCTION"] = "UNDER_CONSTRUCTION";
|
|
579
|
-
LandCurrentStatus["TOPPING_OUT"] = "TOPPING_OUT";
|
|
580
|
-
LandCurrentStatus["NEAR_COMPLETION"] = "NEAR_COMPLETION";
|
|
581
|
-
LandCurrentStatus["COMPLETED"] = "COMPLETED";
|
|
582
|
-
LandCurrentStatus["READY_FOR_HANDOVER"] = "READY_FOR_HANDOVER";
|
|
583
|
-
LandCurrentStatus["HANDED_OVER"] = "HANDED_OVER";
|
|
584
|
-
LandCurrentStatus["ON_HOLD"] = "ON_HOLD";
|
|
585
|
-
LandCurrentStatus["CANCELLED"] = "CANCELLED";
|
|
586
|
-
return LandCurrentStatus;
|
|
587
|
-
}({});
|
|
588
|
-
let LandType = /* @__PURE__ */ function(LandType) {
|
|
589
|
-
LandType["LONG_TERM_OWNERSHIP"] = "LONG_TERM_OWNERSHIP";
|
|
590
|
-
LandType["ANNUAL_RENT"] = "ANNUAL_RENT";
|
|
591
|
-
LandType["ONE_TIME_RENTAL_PAYMENT"] = "ONE_TIME_RENTAL_PAYMENT";
|
|
592
|
-
return LandType;
|
|
593
|
-
}({});
|
|
594
|
-
let Orientation = /* @__PURE__ */ function(Orientation) {
|
|
595
|
-
Orientation["North"] = "NORTH";
|
|
596
|
-
Orientation["South"] = "SOUTH";
|
|
597
|
-
Orientation["East"] = "EAST";
|
|
598
|
-
Orientation["West"] = "WEST";
|
|
599
|
-
Orientation["Northeast"] = "NORTHEAST";
|
|
600
|
-
Orientation["Northwest"] = "NORTHWEST";
|
|
601
|
-
Orientation["Southeast"] = "SOUTHEAST";
|
|
602
|
-
Orientation["Southwest"] = "SOUTHWEST";
|
|
603
|
-
Orientation["Unknown"] = "UNKNOWN";
|
|
604
|
-
return Orientation;
|
|
605
|
-
}({});
|
|
606
|
-
let VersionAction = /* @__PURE__ */ function(VersionAction) {
|
|
607
|
-
VersionAction["CREATE"] = "CREATE";
|
|
608
|
-
VersionAction["UPDATE"] = "UPDATE";
|
|
609
|
-
return VersionAction;
|
|
610
|
-
}({});
|
|
611
|
-
//#endregion
|
|
612
|
-
//#region src/generated/for-sale/exceptions.ts
|
|
613
|
-
const ForSaleExceptions = { FOR_SALE_NOT_FOUND: "For sale not found" };
|
|
614
|
-
//#endregion
|
|
615
421
|
//#region src/generated/for-sale/for-sale.enum.ts
|
|
616
422
|
let ForSaleRoadType = /* @__PURE__ */ function(ForSaleRoadType) {
|
|
617
423
|
ForSaleRoadType["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
@@ -679,31 +485,97 @@ let ForSaleStatus = /* @__PURE__ */ function(ForSaleStatus) {
|
|
|
679
485
|
ForSaleStatus["PUBLISHED"] = "PUBLISHED";
|
|
680
486
|
return ForSaleStatus;
|
|
681
487
|
}({});
|
|
682
|
-
let ForSaleApproveStatus = /* @__PURE__ */ function(ForSaleApproveStatus) {
|
|
683
|
-
ForSaleApproveStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
|
|
684
|
-
ForSaleApproveStatus["APPROVED"] = "APPROVED";
|
|
685
|
-
return ForSaleApproveStatus;
|
|
488
|
+
let ForSaleApproveStatus = /* @__PURE__ */ function(ForSaleApproveStatus) {
|
|
489
|
+
ForSaleApproveStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
|
|
490
|
+
ForSaleApproveStatus["APPROVED"] = "APPROVED";
|
|
491
|
+
return ForSaleApproveStatus;
|
|
492
|
+
}({});
|
|
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;
|
|
499
|
+
}({});
|
|
500
|
+
//#endregion
|
|
501
|
+
//#region src/generated/consignment-request/consignment-request.enum.ts
|
|
502
|
+
let ConsignmentRequestType = /* @__PURE__ */ function(ConsignmentRequestType) {
|
|
503
|
+
ConsignmentRequestType["SELL"] = "SELL";
|
|
504
|
+
ConsignmentRequestType["RENT"] = "RENT";
|
|
505
|
+
return ConsignmentRequestType;
|
|
506
|
+
}({});
|
|
507
|
+
//#endregion
|
|
508
|
+
//#region src/generated/consignment-request/exceptions.ts
|
|
509
|
+
const ConsignmentRequestExceptions = {
|
|
510
|
+
CONSIGNMENT_REQUEST_NOT_FOUND: "Consignment request not found",
|
|
511
|
+
CONSIGNMENT_REQUEST_NOT_ALLOWED: "Consignment request not allowed"
|
|
512
|
+
};
|
|
513
|
+
//#endregion
|
|
514
|
+
//#region src/generated/conversation/conversation.enum.ts
|
|
515
|
+
let ChatGroupMemberRole = /* @__PURE__ */ function(ChatGroupMemberRole) {
|
|
516
|
+
ChatGroupMemberRole["ADMIN"] = "ADMIN";
|
|
517
|
+
ChatGroupMemberRole["MEMBER"] = "MEMBER";
|
|
518
|
+
ChatGroupMemberRole["GUEST"] = "GUEST";
|
|
519
|
+
return ChatGroupMemberRole;
|
|
520
|
+
}({});
|
|
521
|
+
let MessageType = /* @__PURE__ */ function(MessageType) {
|
|
522
|
+
MessageType["TEXT"] = "TEXT";
|
|
523
|
+
MessageType["IMAGE"] = "IMAGE";
|
|
524
|
+
MessageType["VIDEO"] = "VIDEO";
|
|
525
|
+
MessageType["AUDIO"] = "AUDIO";
|
|
526
|
+
MessageType["DOCUMENT"] = "DOCUMENT";
|
|
527
|
+
MessageType["LINK"] = "LINK";
|
|
528
|
+
return MessageType;
|
|
529
|
+
}({});
|
|
530
|
+
//#endregion
|
|
531
|
+
//#region src/generated/conversation/exceptions.ts
|
|
532
|
+
const ConversationExceptions = {
|
|
533
|
+
CHAT_GROUP_NOT_FOUND: "Chat group not found",
|
|
534
|
+
MEMBER_NOT_FOUND: "Member not found",
|
|
535
|
+
NOT_CHAT_GROUP_MEMBER: "User is not a member of this chat group",
|
|
536
|
+
ALREADY_MEMBER: "User is already a member of this chat group",
|
|
537
|
+
INSUFFICIENT_PERMISSIONS: "Insufficient permissions to perform this action",
|
|
538
|
+
MEMBER_ALREADY_EXISTS: "Member already exists in this chat group",
|
|
539
|
+
MEMBER_HAS_LEFT: "Member has left this chat group",
|
|
540
|
+
CANNOT_DELETE_DIRECT_MESSAGE: "Cannot delete direct message chat group",
|
|
541
|
+
CANNOT_DELETE_DEAL_LINKED_CHAT: "Cannot delete chat group linked to a deal",
|
|
542
|
+
CANNOT_DELETE_DEAL_STEP_LINKED_CHAT: "Cannot delete chat group linked to a deal step",
|
|
543
|
+
MESSAGE_NOT_FOUND: "Message not found",
|
|
544
|
+
MESSAGE_NOT_IN_CHAT_GROUP: "Message does not belong to this chat group"
|
|
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" };
|
|
560
|
+
//#endregion
|
|
561
|
+
//#region src/generated/identity/exceptions.ts
|
|
562
|
+
const IdentityExceptions = { IDENTITY_NOT_FOUND: "Identity not found" };
|
|
563
|
+
//#endregion
|
|
564
|
+
//#region src/generated/identity/identity.enum.ts
|
|
565
|
+
let IdentityType = /* @__PURE__ */ function(IdentityType) {
|
|
566
|
+
IdentityType["ID_CARD"] = "ID_CARD";
|
|
567
|
+
return IdentityType;
|
|
568
|
+
}({});
|
|
569
|
+
let IdentityVerificationStatus = /* @__PURE__ */ function(IdentityVerificationStatus) {
|
|
570
|
+
IdentityVerificationStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
|
|
571
|
+
IdentityVerificationStatus["APPROVED"] = "APPROVED";
|
|
572
|
+
return IdentityVerificationStatus;
|
|
686
573
|
}({});
|
|
687
|
-
let
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
ForSaleUtilities["FULLY_FINISHED"] = "FULLY_FINISHED";
|
|
691
|
-
ForSaleUtilities["BASIC_CONSTRUCTION"] = "BASIC_CONSTRUCTION";
|
|
692
|
-
return ForSaleUtilities;
|
|
574
|
+
let IdentityNationality = /* @__PURE__ */ function(IdentityNationality) {
|
|
575
|
+
IdentityNationality["VN"] = "VN";
|
|
576
|
+
return IdentityNationality;
|
|
693
577
|
}({});
|
|
694
578
|
//#endregion
|
|
695
|
-
//#region src/generated/register/exceptions.ts
|
|
696
|
-
const RegisterExceptions = {
|
|
697
|
-
INVALID_VERIFICATION_TYPE: "Verification type is invalid",
|
|
698
|
-
OTP_ALREADY_SENT: "OTP is already sent",
|
|
699
|
-
RESEND_REACH_LIMIT: "Resend OTP too fast or reached limit",
|
|
700
|
-
VERIFY_REACH_LIMIT: "Verify reached limit",
|
|
701
|
-
REGISTER_ACCOUNT_REQUEST_NOT_FOUND: "Register account request not found",
|
|
702
|
-
REGISTER_ACCOUNT_NOT_VERIFIED: "Register account request is not verified",
|
|
703
|
-
INVALID_OTP_CODE: "Invalid Otp code",
|
|
704
|
-
REGISTER_ACCOUNT_VERIFICATION_NOT_FOUND: "Register account verification is not found"
|
|
705
|
-
};
|
|
706
|
-
//#endregion
|
|
707
579
|
//#region src/generated/industrial-property/exceptions.ts
|
|
708
580
|
const IndustrialParkExceptions = { INDUSTRIAL_PARK_NOT_FOUND: "Industrial Park not found" };
|
|
709
581
|
const PropertyExceptions = {
|
|
@@ -713,199 +585,160 @@ const PropertyExceptions = {
|
|
|
713
585
|
PROPERTY_ALREADY_EXISTS: "Property already exists"
|
|
714
586
|
};
|
|
715
587
|
//#endregion
|
|
716
|
-
//#region src/generated/
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
588
|
+
//#region src/generated/industrial-property/industrial-property.enum.ts
|
|
589
|
+
let PropertyType = /* @__PURE__ */ function(PropertyType) {
|
|
590
|
+
PropertyType["INDUSTRIAL_ZONE"] = "INDUSTRIAL_ZONE";
|
|
591
|
+
PropertyType["BUILDING"] = "BUILDING";
|
|
592
|
+
PropertyType["FLOOR"] = "FLOOR";
|
|
593
|
+
PropertyType["ROOM"] = "ROOM";
|
|
594
|
+
PropertyType["LAND_LOT"] = "LAND_LOT";
|
|
595
|
+
PropertyType["FACTORY"] = "FACTORY";
|
|
596
|
+
PropertyType["WAREHOUSE"] = "WAREHOUSE";
|
|
597
|
+
PropertyType["OFFICE"] = "OFFICE";
|
|
598
|
+
PropertyType["HOUSING"] = "HOUSING";
|
|
599
|
+
PropertyType["APARTMENT"] = "APARTMENT";
|
|
600
|
+
return PropertyType;
|
|
727
601
|
}({});
|
|
728
|
-
let
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
602
|
+
let PropertyLegalStatus = /* @__PURE__ */ function(PropertyLegalStatus) {
|
|
603
|
+
PropertyLegalStatus["MORE_THAN_FIFTY_YEARS_ANNUAL_PAYMENT"] = "MORE_THAN_FIFTY_YEARS_ANNUAL_PAYMENT";
|
|
604
|
+
PropertyLegalStatus["MORE_THAN_FIFTY_YEARS_ONE_TIME_PAYMENT"] = "MORE_THAN_FIFTY_YEARS_ONE_TIME_PAYMENT";
|
|
605
|
+
PropertyLegalStatus["FIFTY_YEARS_ANNUAL_PAYMENT"] = "FIFTY_YEARS_ANNUAL_PAYMENT";
|
|
606
|
+
PropertyLegalStatus["FIFTY_YEARS_ONE_TIME_PAYMENT"] = "FIFTY_YEARS_ONE_TIME_PAYMENT";
|
|
607
|
+
PropertyLegalStatus["FORTY_YEARS_ANNUAL_PAYMENT"] = "FORTY_YEARS_ANNUAL_PAYMENT";
|
|
608
|
+
PropertyLegalStatus["FORTY_YEARS_ONE_TIME_PAYMENT"] = "FORTY_YEARS_ONE_TIME_PAYMENT";
|
|
609
|
+
PropertyLegalStatus["THIRTY_YEARS_ONE_TIME_PAYMENT"] = "THIRTY_YEARS_ONE_TIME_PAYMENT";
|
|
610
|
+
PropertyLegalStatus["THIRTY_YEARS_ANNUAL_PAYMENT"] = "THIRTY_YEARS_ANNUAL_PAYMENT";
|
|
611
|
+
PropertyLegalStatus["TWENTY_YEARS_ANNUAL_PAYMENT"] = "TWENTY_YEARS_ANNUAL_PAYMENT";
|
|
612
|
+
PropertyLegalStatus["TWENTY_YEARS_ONE_TIME_PAYMENT"] = "TWENTY_YEARS_ONE_TIME_PAYMENT";
|
|
613
|
+
PropertyLegalStatus["TEN_YEARS_ANNUAL_PAYMENT"] = "TEN_YEARS_ANNUAL_PAYMENT";
|
|
614
|
+
PropertyLegalStatus["TEN_YEARS_ONE_TIME_PAYMENT"] = "TEN_YEARS_ONE_TIME_PAYMENT";
|
|
615
|
+
PropertyLegalStatus["LESS_THAN_TEN_YEARS_ANNUAL_PAYMENT"] = "LESS_THAN_TEN_YEARS_ANNUAL_PAYMENT";
|
|
616
|
+
PropertyLegalStatus["LESS_THAN_TEN_YEARS_ONE_TIME_PAYMENT"] = "LESS_THAN_TEN_YEARS_ONE_TIME_PAYMENT";
|
|
617
|
+
return PropertyLegalStatus;
|
|
733
618
|
}({});
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
TicketType["APPROVE_USER_TO_BROKER"] = "APPROVE_USER_TO_BROKER";
|
|
741
|
-
TicketType["APPROVE_USER_TO_INVESTOR_REPRESENTATIVE"] = "APPROVE_USER_TO_INVESTOR_REPRESENTATIVE";
|
|
742
|
-
return TicketType;
|
|
619
|
+
let PropertyApprovalStatus = /* @__PURE__ */ function(PropertyApprovalStatus) {
|
|
620
|
+
PropertyApprovalStatus["PENDING"] = "PENDING";
|
|
621
|
+
PropertyApprovalStatus["APPROVED"] = "APPROVED";
|
|
622
|
+
PropertyApprovalStatus["REJECTED"] = "REJECTED";
|
|
623
|
+
PropertyApprovalStatus["ARCHIVED"] = "ARCHIVED";
|
|
624
|
+
return PropertyApprovalStatus;
|
|
743
625
|
}({});
|
|
744
|
-
let
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
626
|
+
let PropertyLandCurrentStatus = /* @__PURE__ */ function(PropertyLandCurrentStatus) {
|
|
627
|
+
PropertyLandCurrentStatus["PLANNED"] = "PLANNED";
|
|
628
|
+
PropertyLandCurrentStatus["DESIGNING"] = "DESIGNING";
|
|
629
|
+
PropertyLandCurrentStatus["UNDER_CONSTRUCTION"] = "UNDER_CONSTRUCTION";
|
|
630
|
+
PropertyLandCurrentStatus["TOPPING_OUT"] = "TOPPING_OUT";
|
|
631
|
+
PropertyLandCurrentStatus["NEAR_COMPLETION"] = "NEAR_COMPLETION";
|
|
632
|
+
PropertyLandCurrentStatus["COMPLETED"] = "COMPLETED";
|
|
633
|
+
PropertyLandCurrentStatus["READY_FOR_HANDOVER"] = "READY_FOR_HANDOVER";
|
|
634
|
+
PropertyLandCurrentStatus["HANDED_OVER"] = "HANDED_OVER";
|
|
635
|
+
PropertyLandCurrentStatus["ON_HOLD"] = "ON_HOLD";
|
|
636
|
+
PropertyLandCurrentStatus["CANCELLED"] = "CANCELLED";
|
|
637
|
+
return PropertyLandCurrentStatus;
|
|
750
638
|
}({});
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
//#region src/generated/investor/exceptions.ts
|
|
759
|
-
const InvestorExceptions = {
|
|
760
|
-
INVESTOR_NOT_FOUND: "Investor not found",
|
|
761
|
-
MEMBER_NOT_FOUND: "Member not found",
|
|
762
|
-
MEMBER_ALREADY_DELETED: "Member already deleted",
|
|
763
|
-
MEMBER_ALREADY_REGISTERED: "Member already registered",
|
|
764
|
-
ORGANIZATION_NOT_FOUND: "Organization not found",
|
|
765
|
-
ROLE_NOT_FOUND: "Role not found"
|
|
766
|
-
};
|
|
767
|
-
//#endregion
|
|
768
|
-
//#region src/generated/consignment-request/exceptions.ts
|
|
769
|
-
const ConsignmentRequestExceptions = {
|
|
770
|
-
CONSIGNMENT_REQUEST_NOT_FOUND: "Consignment request not found",
|
|
771
|
-
CONSIGNMENT_REQUEST_NOT_ALLOWED: "Consignment request not allowed"
|
|
772
|
-
};
|
|
773
|
-
//#endregion
|
|
774
|
-
//#region src/generated/consignment-request/consignment-request.enum.ts
|
|
775
|
-
let ConsignmentRequestType = /* @__PURE__ */ function(ConsignmentRequestType) {
|
|
776
|
-
ConsignmentRequestType["SELL"] = "SELL";
|
|
777
|
-
ConsignmentRequestType["RENT"] = "RENT";
|
|
778
|
-
return ConsignmentRequestType;
|
|
639
|
+
let PropertyTransactionStatus = /* @__PURE__ */ function(PropertyTransactionStatus) {
|
|
640
|
+
PropertyTransactionStatus["AVAILABLE"] = "AVAILABLE";
|
|
641
|
+
PropertyTransactionStatus["DEPOSITED"] = "DEPOSITED";
|
|
642
|
+
PropertyTransactionStatus["LEASED"] = "LEASED";
|
|
643
|
+
PropertyTransactionStatus["SOLD"] = "SOLD";
|
|
644
|
+
PropertyTransactionStatus["UNDEFINED"] = "UNDEFINED";
|
|
645
|
+
return PropertyTransactionStatus;
|
|
779
646
|
}({});
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
TEMPLATE_IN_USE: "Template is in use and cannot be deleted",
|
|
788
|
-
CREATION_FAILED: "Failed to create agreement template",
|
|
789
|
-
INVALID_TEMPLATE_TYPE: "Invalid template type for user role",
|
|
790
|
-
TEMPLATE_ALREADY_EXISTS: "Agreement template already exists"
|
|
791
|
-
};
|
|
792
|
-
//#endregion
|
|
793
|
-
//#region src/generated/agreement-template/agreement-template.enum.ts
|
|
794
|
-
let AgreementTemplateType = /* @__PURE__ */ function(AgreementTemplateType) {
|
|
795
|
-
AgreementTemplateType["SYSTEM"] = "SYSTEM";
|
|
796
|
-
AgreementTemplateType["BROKER"] = "BROKER";
|
|
797
|
-
AgreementTemplateType["CLIENT"] = "CLIENT";
|
|
798
|
-
AgreementTemplateType["INVESTOR"] = "INVESTOR";
|
|
799
|
-
AgreementTemplateType["OWNER"] = "OWNER";
|
|
800
|
-
AgreementTemplateType["MOU"] = "MOU";
|
|
801
|
-
AgreementTemplateType["DEPOSIT"] = "DEPOSIT";
|
|
802
|
-
AgreementTemplateType["DISCLOSURE"] = "DISCLOSURE";
|
|
803
|
-
AgreementTemplateType["OTHER"] = "OTHER";
|
|
804
|
-
return AgreementTemplateType;
|
|
647
|
+
let PropertyOperationStatus = /* @__PURE__ */ function(PropertyOperationStatus) {
|
|
648
|
+
PropertyOperationStatus["UNDETERMINED"] = "UNDETERMINED";
|
|
649
|
+
PropertyOperationStatus["COMING_SOON"] = "COMING_SOON";
|
|
650
|
+
PropertyOperationStatus["FOR_SALE_RENT"] = "FOR_SALE_RENT";
|
|
651
|
+
PropertyOperationStatus["ACTIVE"] = "ACTIVE";
|
|
652
|
+
PropertyOperationStatus["DEACTIVATED"] = "DEACTIVATED";
|
|
653
|
+
return PropertyOperationStatus;
|
|
805
654
|
}({});
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
//#endregion
|
|
813
|
-
//#region src/generated/order-request/order-request.enum.ts
|
|
814
|
-
let OrderRequestType = /* @__PURE__ */ function(OrderRequestType) {
|
|
815
|
-
OrderRequestType["SELL"] = "SELL";
|
|
816
|
-
OrderRequestType["RENT"] = "RENT";
|
|
817
|
-
return OrderRequestType;
|
|
655
|
+
let PropertyAuthorizationType = /* @__PURE__ */ function(PropertyAuthorizationType) {
|
|
656
|
+
PropertyAuthorizationType["FOR_RENT_A_PART"] = "FOR_RENT_A_PART";
|
|
657
|
+
PropertyAuthorizationType["FOR_SALE_A_PART"] = "FOR_SALE_A_PART";
|
|
658
|
+
PropertyAuthorizationType["FOR_RENT_ALL"] = "FOR_RENT_ALL";
|
|
659
|
+
PropertyAuthorizationType["FOR_SALE_ALL"] = "FOR_SALE_ALL";
|
|
660
|
+
return PropertyAuthorizationType;
|
|
818
661
|
}({});
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
};
|
|
827
|
-
const ClientCategoryExceptions = {
|
|
828
|
-
CLIENT_CATEGORY_NOT_FOUND: "Client category not found",
|
|
829
|
-
CLIENT_CATEGORY_ACCESS_DENIED: "Access denied to this client category",
|
|
830
|
-
CLIENT_CATEGORY_PERMISSION_DENIED: "Permission denied to client category",
|
|
831
|
-
CLIENT_CATEGORY_CREATION_FAILED: "Failed to create client category",
|
|
832
|
-
CLIENT_CATEGORY_UPDATE_FAILED: "Failed to update client category",
|
|
833
|
-
CLIENT_CATEGORY_DELETION_FAILED: "Failed to delete client category",
|
|
834
|
-
FORBIDDEN: "Forbidden"
|
|
835
|
-
};
|
|
836
|
-
//#endregion
|
|
837
|
-
//#region src/generated/client/client.enum.ts
|
|
838
|
-
let ClientNeed = /* @__PURE__ */ function(ClientNeed) {
|
|
839
|
-
ClientNeed["FOR_SALE"] = "FOR_SALE";
|
|
840
|
-
ClientNeed["FOR_LEASE"] = "FOR_LEASE";
|
|
841
|
-
return ClientNeed;
|
|
662
|
+
let PropertyIdentifierType = /* @__PURE__ */ function(PropertyIdentifierType) {
|
|
663
|
+
PropertyIdentifierType["LAND_CERTIFICATE"] = "LAND_CERTIFICATE";
|
|
664
|
+
PropertyIdentifierType["PARCEL_NUMBER"] = "PARCEL_NUMBER";
|
|
665
|
+
PropertyIdentifierType["MAP_SHEET"] = "MAP_SHEET";
|
|
666
|
+
PropertyIdentifierType["GOVERNMENT_CODE"] = "GOVERNMENT_CODE";
|
|
667
|
+
PropertyIdentifierType["INTERNAL_CODE"] = "INTERNAL_CODE";
|
|
668
|
+
return PropertyIdentifierType;
|
|
842
669
|
}({});
|
|
843
|
-
let
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
670
|
+
let DocumentCategory = /* @__PURE__ */ function(DocumentCategory) {
|
|
671
|
+
DocumentCategory["PROJECT_LEGAL"] = "PROJECT_LEGAL";
|
|
672
|
+
DocumentCategory["LAND_LEGAL"] = "LAND_LEGAL";
|
|
673
|
+
DocumentCategory["CONSTRUCTION_LEGAL"] = "CONSTRUCTION_LEGAL";
|
|
674
|
+
DocumentCategory["OTHER"] = "OTHER";
|
|
675
|
+
return DocumentCategory;
|
|
676
|
+
}({});
|
|
677
|
+
let DocumentType = /* @__PURE__ */ function(DocumentType) {
|
|
678
|
+
DocumentType["PROJECT_APPROVAL_DECISION"] = "PROJECT_APPROVAL_DECISION";
|
|
679
|
+
DocumentType["INVESTMENT_CERTIFICATE"] = "INVESTMENT_CERTIFICATE";
|
|
680
|
+
DocumentType["PLANNING_DECISION_1_500"] = "PLANNING_DECISION_1_500";
|
|
681
|
+
DocumentType["PLANNING_DECISION_1_2000"] = "PLANNING_DECISION_1_2000";
|
|
682
|
+
DocumentType["LAND_USE_RIGHT_CERTIFICATE_RED_BOOK"] = "LAND_USE_RIGHT_CERTIFICATE_RED_BOOK";
|
|
683
|
+
DocumentType["LAND_USE_RIGHT_CERTIFICATE_WHITE_LAND"] = "LAND_USE_RIGHT_CERTIFICATE_WHITE_LAND";
|
|
684
|
+
DocumentType["LAND_USE_RIGHT_CERTIFICATE_OTHER"] = "LAND_USE_RIGHT_CERTIFICATE_OTHER";
|
|
685
|
+
DocumentType["BUILDING_PERMIT"] = "BUILDING_PERMIT";
|
|
686
|
+
DocumentType["ENVIRONMENTAL_PERMIT"] = "ENVIRONMENTAL_PERMIT";
|
|
687
|
+
DocumentType["FIRE_SAFETY_CERTIFICATE"] = "FIRE_SAFETY_CERTIFICATE";
|
|
688
|
+
DocumentType["OTHER"] = "OTHER";
|
|
689
|
+
return DocumentType;
|
|
690
|
+
}({});
|
|
691
|
+
let LandCurrentStatus = /* @__PURE__ */ function(LandCurrentStatus) {
|
|
692
|
+
LandCurrentStatus["PLANNED"] = "PLANNED";
|
|
693
|
+
LandCurrentStatus["DESIGNING"] = "DESIGNING";
|
|
694
|
+
LandCurrentStatus["UNDER_CONSTRUCTION"] = "UNDER_CONSTRUCTION";
|
|
695
|
+
LandCurrentStatus["TOPPING_OUT"] = "TOPPING_OUT";
|
|
696
|
+
LandCurrentStatus["NEAR_COMPLETION"] = "NEAR_COMPLETION";
|
|
697
|
+
LandCurrentStatus["COMPLETED"] = "COMPLETED";
|
|
698
|
+
LandCurrentStatus["READY_FOR_HANDOVER"] = "READY_FOR_HANDOVER";
|
|
699
|
+
LandCurrentStatus["HANDED_OVER"] = "HANDED_OVER";
|
|
700
|
+
LandCurrentStatus["ON_HOLD"] = "ON_HOLD";
|
|
701
|
+
LandCurrentStatus["CANCELLED"] = "CANCELLED";
|
|
702
|
+
return LandCurrentStatus;
|
|
848
703
|
}({});
|
|
849
|
-
let
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
ClientStatus["LOST"] = "LOST";
|
|
855
|
-
ClientStatus["RESEARCHING"] = "RESEARCHING";
|
|
856
|
-
ClientStatus["FOLLOW_UP_NEEDED"] = "FOLLOW_UP_NEEDED";
|
|
857
|
-
return ClientStatus;
|
|
704
|
+
let LandType = /* @__PURE__ */ function(LandType) {
|
|
705
|
+
LandType["LONG_TERM_OWNERSHIP"] = "LONG_TERM_OWNERSHIP";
|
|
706
|
+
LandType["ANNUAL_RENT"] = "ANNUAL_RENT";
|
|
707
|
+
LandType["ONE_TIME_RENTAL_PAYMENT"] = "ONE_TIME_RENTAL_PAYMENT";
|
|
708
|
+
return LandType;
|
|
858
709
|
}({});
|
|
859
|
-
let
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
return
|
|
710
|
+
let Orientation = /* @__PURE__ */ function(Orientation) {
|
|
711
|
+
Orientation["North"] = "NORTH";
|
|
712
|
+
Orientation["South"] = "SOUTH";
|
|
713
|
+
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;
|
|
870
721
|
}({});
|
|
871
|
-
let
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
return
|
|
722
|
+
let VersionAction = /* @__PURE__ */ function(VersionAction) {
|
|
723
|
+
VersionAction["CREATE"] = "CREATE";
|
|
724
|
+
VersionAction["UPDATE"] = "UPDATE";
|
|
725
|
+
return VersionAction;
|
|
875
726
|
}({});
|
|
876
727
|
//#endregion
|
|
877
|
-
//#region src/generated/
|
|
878
|
-
const
|
|
879
|
-
|
|
728
|
+
//#region src/generated/investor/exceptions.ts
|
|
729
|
+
const InvestorExceptions = {
|
|
730
|
+
INVESTOR_NOT_FOUND: "Investor not found",
|
|
880
731
|
MEMBER_NOT_FOUND: "Member not found",
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
MEMBER_HAS_LEFT: "Member has left this chat group",
|
|
886
|
-
CANNOT_DELETE_DIRECT_MESSAGE: "Cannot delete direct message chat group",
|
|
887
|
-
CANNOT_DELETE_DEAL_LINKED_CHAT: "Cannot delete chat group linked to a deal",
|
|
888
|
-
CANNOT_DELETE_DEAL_STEP_LINKED_CHAT: "Cannot delete chat group linked to a deal step",
|
|
889
|
-
MESSAGE_NOT_FOUND: "Message not found",
|
|
890
|
-
MESSAGE_NOT_IN_CHAT_GROUP: "Message does not belong to this chat group"
|
|
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"
|
|
891
736
|
};
|
|
892
737
|
//#endregion
|
|
893
|
-
//#region src/generated/
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
ChatGroupMemberRole["GUEST"] = "GUEST";
|
|
898
|
-
return ChatGroupMemberRole;
|
|
899
|
-
}({});
|
|
900
|
-
let MessageType = /* @__PURE__ */ function(MessageType) {
|
|
901
|
-
MessageType["TEXT"] = "TEXT";
|
|
902
|
-
MessageType["IMAGE"] = "IMAGE";
|
|
903
|
-
MessageType["VIDEO"] = "VIDEO";
|
|
904
|
-
MessageType["AUDIO"] = "AUDIO";
|
|
905
|
-
MessageType["DOCUMENT"] = "DOCUMENT";
|
|
906
|
-
MessageType["LINK"] = "LINK";
|
|
907
|
-
return MessageType;
|
|
908
|
-
}({});
|
|
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" };
|
|
909
742
|
//#endregion
|
|
910
743
|
//#region src/generated/media/exceptions.ts
|
|
911
744
|
const MediaExceptions = {
|
|
@@ -934,6 +767,173 @@ let MediaSortField = /* @__PURE__ */ function(MediaSortField) {
|
|
|
934
767
|
return MediaSortField;
|
|
935
768
|
}({});
|
|
936
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;
|
|
803
|
+
}({});
|
|
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;
|
|
813
|
+
}({});
|
|
814
|
+
//#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"
|
|
819
|
+
};
|
|
820
|
+
//#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;
|
|
826
|
+
}({});
|
|
827
|
+
//#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"
|
|
838
|
+
};
|
|
839
|
+
//#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"
|
|
860
|
+
};
|
|
861
|
+
//#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;
|
|
878
|
+
}({});
|
|
879
|
+
let ProjectApprovalStatus = /* @__PURE__ */ function(ProjectApprovalStatus) {
|
|
880
|
+
ProjectApprovalStatus["PENDING"] = "PENDING";
|
|
881
|
+
ProjectApprovalStatus["APPROVED"] = "APPROVED";
|
|
882
|
+
ProjectApprovalStatus["REJECTED"] = "REJECTED";
|
|
883
|
+
return ProjectApprovalStatus;
|
|
884
|
+
}({});
|
|
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;
|
|
891
|
+
}({});
|
|
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;
|
|
901
|
+
}({});
|
|
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;
|
|
909
|
+
}({});
|
|
910
|
+
//#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"
|
|
921
|
+
};
|
|
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"
|
|
929
|
+
};
|
|
930
|
+
//#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
|
+
};
|
|
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
|
|
|
939
939
|
//# sourceMappingURL=index.mjs.map
|