@investtal/models 1.2.51

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 ADDED
@@ -0,0 +1,909 @@
1
+ //#region src/exceptions/agreement.exception.ts
2
+ const AgreementExceptions = {
3
+ AGREEMENT_NOT_FOUND: "Agreement not found",
4
+ AGREEMENT_IS_NOT_ALLOW: "Agreement is not allowed",
5
+ AGREEMENT_ALREADY_SIGNED: "Agreement already signed"
6
+ };
7
+
8
+ //#endregion
9
+ //#region src/exceptions/agreement-template.exception.ts
10
+ const AgreementTemplateExceptions = {
11
+ TEMPLATE_NOT_FOUND: "Agreement template not found",
12
+ FILE_NOT_FOUND: "Template file not found",
13
+ ACCESS_DENIED: "Access denied to this template",
14
+ PERMISSION_DENIED: "Permission denied",
15
+ TEMPLATE_IN_USE: "Template is in use and cannot be deleted",
16
+ CREATION_FAILED: "Failed to create agreement template",
17
+ INVALID_TEMPLATE_TYPE: "Invalid template type for user role",
18
+ TEMPLATE_ALREADY_EXISTS: "Agreement template already exists"
19
+ };
20
+
21
+ //#endregion
22
+ //#region src/exceptions/agreement-type.exception.ts
23
+ const AgreementTypeExceptions = {
24
+ AGREEMENT_TYPE_NOT_FOUND: "Agreement type not found",
25
+ AGREEMENT_TYPE_IS_NOT_ALLOW: "Agreement type is not allow"
26
+ };
27
+
28
+ //#endregion
29
+ //#region src/exceptions/appointment.exception.ts
30
+ const AppointmentExceptions = {
31
+ APPOINTMENT_NOT_FOUND: "Appointment not found or access denied",
32
+ ACCESS_DENIED: "Access denied to this appointment",
33
+ PERMISSION_DENIED: "Permission denied",
34
+ CREATION_FAILED: "Failed to create appointment",
35
+ UPDATE_FAILED: "Failed to update appointment",
36
+ DELETE_FAILED: "Failed to delete appointment",
37
+ INVALID_STATUS: "Invalid appointment status",
38
+ INVALID_DATE: "Invalid appointment date",
39
+ PARTICIPANT_NOT_FOUND: "Participant not found",
40
+ REMINDER_FAILED: "Failed to set appointment reminder"
41
+ };
42
+
43
+ //#endregion
44
+ //#region src/exceptions/blacklist.exeptions.ts
45
+ const BlacklistExceptions = {
46
+ FORBIDDEN: "You are not authorized to create a blacklist",
47
+ NOT_FOUND: "Blacklist not found"
48
+ };
49
+
50
+ //#endregion
51
+ //#region src/exceptions/broker.exceptions.ts
52
+ const BrokerExceptions = {
53
+ INVITED_USER_NOT_FOUND: "Invited user not found",
54
+ INPUT_DATA_IS_INVALID: "Input data is invalid"
55
+ };
56
+
57
+ //#endregion
58
+ //#region src/exceptions/client.exception.ts
59
+ const ClientExceptions = {
60
+ CLIENT_NOT_FOUND: "Client not found",
61
+ CLIENTS_NOT_FOUND: "One or more clients not found",
62
+ FORBIDDEN: "Forbidden",
63
+ CLIENTS_NOT_CREATED_BY_USER: "One or more clients are not created by the user"
64
+ };
65
+
66
+ //#endregion
67
+ //#region src/exceptions/client-category.exception.ts
68
+ const ClientCategoryExceptions = {
69
+ CLIENT_CATEGORY_NOT_FOUND: "Client category not found",
70
+ CLIENT_CATEGORY_ACCESS_DENIED: "Access denied to this client category",
71
+ CLIENT_CATEGORY_PERMISSION_DENIED: "Permission denied to client category",
72
+ CLIENT_CATEGORY_CREATION_FAILED: "Failed to create client category",
73
+ CLIENT_CATEGORY_UPDATE_FAILED: "Failed to update client category",
74
+ CLIENT_CATEGORY_DELETION_FAILED: "Failed to delete client category",
75
+ FORBIDDEN: "Forbidden"
76
+ };
77
+
78
+ //#endregion
79
+ //#region src/exceptions/consignment-request.exceptions.ts
80
+ const ConsignmentRequestExceptions = {
81
+ CONSIGNMENT_REQUEST_NOT_FOUND: "Consignment request not found",
82
+ CONSIGNMENT_REQUEST_NOT_ALLOWED: "Consignment request not allowed"
83
+ };
84
+
85
+ //#endregion
86
+ //#region src/exceptions/conversation.exception.ts
87
+ const ConversationExceptions = {
88
+ CHAT_GROUP_NOT_FOUND: "Chat group not found",
89
+ MEMBER_NOT_FOUND: "Member not found",
90
+ NOT_CHAT_GROUP_MEMBER: "User is not a member of this chat group",
91
+ ALREADY_MEMBER: "User is already a member of this chat group",
92
+ INSUFFICIENT_PERMISSIONS: "Insufficient permissions to perform this action",
93
+ MEMBER_ALREADY_EXISTS: "Member already exists in this chat group",
94
+ MEMBER_HAS_LEFT: "Member has left this chat group",
95
+ CANNOT_DELETE_DIRECT_MESSAGE: "Cannot delete direct message chat group",
96
+ CANNOT_DELETE_DEAL_LINKED_CHAT: "Cannot delete chat group linked to a deal",
97
+ CANNOT_DELETE_DEAL_STEP_LINKED_CHAT: "Cannot delete chat group linked to a deal step",
98
+ MESSAGE_NOT_FOUND: "Message not found",
99
+ MESSAGE_NOT_IN_CHAT_GROUP: "Message does not belong to this chat group"
100
+ };
101
+
102
+ //#endregion
103
+ //#region src/exceptions/deal.exceptions.ts
104
+ const DealExceptions = {
105
+ DEAL_NOT_FOUND: "Deal not found",
106
+ DEAL_STEP_NOT_FOUND: "Deal step not found"
107
+ };
108
+ const DealStepExceptions = {
109
+ DEAL_STEP_NOT_FOUND: "Deal step not found",
110
+ DEAL_STEP_PARTICIPANTS_NOT_FOUND: "Deal step participants not found"
111
+ };
112
+
113
+ //#endregion
114
+ //#region src/exceptions/district.exceptions.ts
115
+ const DistrictExceptions = { DISTRICT_NOT_FOUND: "District not found" };
116
+
117
+ //#endregion
118
+ //#region src/exceptions/document.exception.ts
119
+ const DocumentExceptions = { DOCUMENT_NOT_FOUND: "Document not found" };
120
+
121
+ //#endregion
122
+ //#region src/exceptions/for-sale.exceptions.ts
123
+ const ForSaleExceptions = { FOR_SALE_NOT_FOUND: "For sale not found" };
124
+
125
+ //#endregion
126
+ //#region src/exceptions/identity.exceptions.ts
127
+ const IdentityExceptions = { IDENTITY_NOT_FOUND: "Identity not found" };
128
+
129
+ //#endregion
130
+ //#region src/exceptions/industrial-park.exceptions.ts
131
+ const IndustrialParkExceptions = { INDUSTRIAL_PARK_NOT_FOUND: "Industrial Park not found" };
132
+
133
+ //#endregion
134
+ //#region src/exceptions/investor.exceptions.ts
135
+ const InvestorExceptions = {
136
+ INVESTOR_NOT_FOUND: "Investor not found",
137
+ MEMBER_NOT_FOUND: "Member not found",
138
+ MEMBER_ALREADY_DELETED: "Member already deleted",
139
+ MEMBER_ALREADY_REGISTERED: "Member already registered",
140
+ ORGANIZATION_NOT_FOUND: "Organization not found",
141
+ ROLE_NOT_FOUND: "Role not found"
142
+ };
143
+
144
+ //#endregion
145
+ //#region src/exceptions/media.exceptions.ts
146
+ const MediaExceptions = {
147
+ MEDIA_NOT_FOUND: "Media not found",
148
+ MEDIA_TOO_LARGE: "Media too large",
149
+ MEDIA_NOT_ALLOWED: "Media not allowed",
150
+ FILE_TYPE_NOT_ALLOWED: "File type not allowed",
151
+ FILE_FORMAT_NOT_ALLOWED: "File format not allowed",
152
+ MEDIA_SHOULD_BE_PUBLIC: "Media should be public"
153
+ };
154
+
155
+ //#endregion
156
+ //#region src/exceptions/order-request.exceptions.ts
157
+ const OrderRequestExceptions = {
158
+ ORDER_REQUEST_NOT_FOUND: "Order request not found",
159
+ ORDER_REQUEST_NOT_ALLOWED: "Order request not allowed"
160
+ };
161
+
162
+ //#endregion
163
+ //#region src/exceptions/payment-process.exception.ts
164
+ const PaymentProcessExceptions = {
165
+ PAYMENT_PROCESS_NOT_FOUND: "Payment process not found",
166
+ PAYMENT_PROCESS_NOT_IN_PROGRESS: "Payment process is not in progress",
167
+ PAYMENT_PROCESS_NOT_ALLOWED_TO_CONFIRM: "You are not allowed to confirm this payment process",
168
+ PAYMENT_PROCESS_NOT_ALLOWED_TO_UPDATE: "You are not allowed to update this payment process",
169
+ PAYMENT_INSTALLMENT_NOT_FOUND: "Payment installment not found",
170
+ PAYMENT_INSTALLMENT_NOT_PENDING: "Payment installment is not pending",
171
+ PAYMENT_INSTALLMENT_NOT_ALLOWED_TO_CONFIRM: "You are not allowed to confirm this payment installment",
172
+ PAYMENT_INSTALLMENT_NOT_ALLOWED_TO_UPDATE: "You are not allowed to update this payment installment"
173
+ };
174
+
175
+ //#endregion
176
+ //#region src/exceptions/pre-deal.exceptions.ts
177
+ const PreDealExceptions = { PRE_DEAL_NOT_FOUND: "Pre-deal not found" };
178
+
179
+ //#endregion
180
+ //#region src/exceptions/property.exception.ts
181
+ const PropertyExceptions = {
182
+ PROPERTY_NOT_FOUND: "Property not found",
183
+ PROPERTY_NOT_ALLOWED_TO_UPDATE: "Not allowed to update this property",
184
+ PROPERTY_NOT_ALLOWED_TO_DELETE: "Not allowed to delete this property",
185
+ PROPERTY_ALREADY_EXISTS: "Property already exists"
186
+ };
187
+
188
+ //#endregion
189
+ //#region src/exceptions/province.exceptions.ts
190
+ const ProvinceExceptions = { PROVINCE_NOT_FOUND: "Province not found" };
191
+
192
+ //#endregion
193
+ //#region src/exceptions/register.exceptions.ts
194
+ const RegisterExceptions = {
195
+ INVALID_VERIFICATION_TYPE: "Verification type is invalid",
196
+ OTP_ALREADY_SENT: "OTP is already sent",
197
+ RESEND_REACH_LIMIT: "Resend OTP too fast or reached limit",
198
+ VERIFY_REACH_LIMIT: "Verify reached limit",
199
+ REGISTER_ACCOUNT_REQUEST_NOT_FOUND: "Register account request not found",
200
+ REGISTER_ACCOUNT_NOT_VERIFIED: "Register account request is not verified",
201
+ INVALID_OTP_CODE: "Invalid Otp code",
202
+ REGISTER_ACCOUNT_VERIFICATION_NOT_FOUND: "Register account verification is not found"
203
+ };
204
+
205
+ //#endregion
206
+ //#region src/exceptions/role.exceptions.ts
207
+ const RoleExceptions = { ROLE_NOT_FOUND: "Role not found" };
208
+
209
+ //#endregion
210
+ //#region src/exceptions/setting.exceptions.ts
211
+ const SettingExceptions = {
212
+ EMAIL_IS_THE_SAME_AS_CURRENT_EMAIL: "Email is the same as the current email",
213
+ INVALID_MAGIC_LINK: "Invalid magic link",
214
+ PHONE_NUMBER_IS_THE_SAME_AS_CURRENT: "Phone number is the same as the current phone number"
215
+ };
216
+
217
+ //#endregion
218
+ //#region src/exceptions/ticket.exception.ts
219
+ const TicketExceptions = {
220
+ TICKETS_NOT_FOUND: "Tickets not found",
221
+ FORBIDEN_PERMISSION: "You do not have permission to approve tickets"
222
+ };
223
+
224
+ //#endregion
225
+ //#region src/exceptions/user.exceptions.ts
226
+ const UserExceptions = {
227
+ USER_NOT_FOUND: "User not found",
228
+ INVALID_CREDENTIALS: "Invalid credentials",
229
+ TOO_MANY_LOGIN_ATTEMPTS: "Too many login attempts",
230
+ USER_NOT_ACTIVE: "User is not active",
231
+ PASSWORD_INCORRECT: "Password is not correct",
232
+ USER_ALREADY_EXISTS: "User already exists",
233
+ OTP_EXPIRED: "OTP expired",
234
+ INVALID_OTP: "Invalid OTP"
235
+ };
236
+
237
+ //#endregion
238
+ //#region src/exceptions/ward.exceptions.ts
239
+ const WardExceptions = { WARD_NOT_FOUND: "Ward not found" };
240
+
241
+ //#endregion
242
+ //#region src/generated/mikro-orm/enums.ts
243
+ let UserLanguage = /* @__PURE__ */ function(UserLanguage) {
244
+ UserLanguage["AF"] = "AF";
245
+ UserLanguage["SQ"] = "SQ";
246
+ UserLanguage["AM"] = "AM";
247
+ UserLanguage["AR"] = "AR";
248
+ UserLanguage["HY"] = "HY";
249
+ UserLanguage["AZ"] = "AZ";
250
+ UserLanguage["EU"] = "EU";
251
+ UserLanguage["BE"] = "BE";
252
+ UserLanguage["BN"] = "BN";
253
+ UserLanguage["BS"] = "BS";
254
+ UserLanguage["BG"] = "BG";
255
+ UserLanguage["CA"] = "CA";
256
+ UserLanguage["CEB"] = "CEB";
257
+ UserLanguage["NY"] = "NY";
258
+ UserLanguage["ZH"] = "ZH";
259
+ UserLanguage["ZH_CN"] = "ZH_CN";
260
+ UserLanguage["ZH_TW"] = "ZH_TW";
261
+ UserLanguage["CO"] = "CO";
262
+ UserLanguage["HR"] = "HR";
263
+ UserLanguage["CS"] = "CS";
264
+ UserLanguage["DA"] = "DA";
265
+ UserLanguage["NL"] = "NL";
266
+ UserLanguage["EN"] = "EN";
267
+ UserLanguage["EO"] = "EO";
268
+ UserLanguage["ET"] = "ET";
269
+ UserLanguage["TL"] = "TL";
270
+ UserLanguage["FI"] = "FI";
271
+ UserLanguage["FR"] = "FR";
272
+ UserLanguage["FY"] = "FY";
273
+ UserLanguage["GL"] = "GL";
274
+ UserLanguage["KA"] = "KA";
275
+ UserLanguage["DE"] = "DE";
276
+ UserLanguage["EL"] = "EL";
277
+ UserLanguage["GU"] = "GU";
278
+ UserLanguage["HT"] = "HT";
279
+ UserLanguage["HA"] = "HA";
280
+ UserLanguage["HAW"] = "HAW";
281
+ UserLanguage["HE"] = "HE";
282
+ UserLanguage["HI"] = "HI";
283
+ UserLanguage["HMN"] = "HMN";
284
+ UserLanguage["HU"] = "HU";
285
+ UserLanguage["IS"] = "IS";
286
+ UserLanguage["IG"] = "IG";
287
+ UserLanguage["ID"] = "ID";
288
+ UserLanguage["GA"] = "GA";
289
+ UserLanguage["IT"] = "IT";
290
+ UserLanguage["JA"] = "JA";
291
+ UserLanguage["JV"] = "JV";
292
+ UserLanguage["KN"] = "KN";
293
+ UserLanguage["KK"] = "KK";
294
+ UserLanguage["KM"] = "KM";
295
+ UserLanguage["RW"] = "RW";
296
+ UserLanguage["KO"] = "KO";
297
+ UserLanguage["KU"] = "KU";
298
+ UserLanguage["KY"] = "KY";
299
+ UserLanguage["LO"] = "LO";
300
+ UserLanguage["LA"] = "LA";
301
+ UserLanguage["LV"] = "LV";
302
+ UserLanguage["LT"] = "LT";
303
+ UserLanguage["LB"] = "LB";
304
+ UserLanguage["MK"] = "MK";
305
+ UserLanguage["MG"] = "MG";
306
+ UserLanguage["MS"] = "MS";
307
+ UserLanguage["ML"] = "ML";
308
+ UserLanguage["MT"] = "MT";
309
+ UserLanguage["MI"] = "MI";
310
+ UserLanguage["MR"] = "MR";
311
+ UserLanguage["MN"] = "MN";
312
+ UserLanguage["MY"] = "MY";
313
+ UserLanguage["NE"] = "NE";
314
+ UserLanguage["NO"] = "NO";
315
+ UserLanguage["OR"] = "OR";
316
+ UserLanguage["PS"] = "PS";
317
+ UserLanguage["FA"] = "FA";
318
+ UserLanguage["PL"] = "PL";
319
+ UserLanguage["PT"] = "PT";
320
+ UserLanguage["PA"] = "PA";
321
+ UserLanguage["RO"] = "RO";
322
+ UserLanguage["RU"] = "RU";
323
+ UserLanguage["SM"] = "SM";
324
+ UserLanguage["GD"] = "GD";
325
+ UserLanguage["SR"] = "SR";
326
+ UserLanguage["ST"] = "ST";
327
+ UserLanguage["SN"] = "SN";
328
+ UserLanguage["SD"] = "SD";
329
+ UserLanguage["SI"] = "SI";
330
+ UserLanguage["SK"] = "SK";
331
+ UserLanguage["SL"] = "SL";
332
+ UserLanguage["SO"] = "SO";
333
+ UserLanguage["ES"] = "ES";
334
+ UserLanguage["SU"] = "SU";
335
+ UserLanguage["SW"] = "SW";
336
+ UserLanguage["SV"] = "SV";
337
+ UserLanguage["TG"] = "TG";
338
+ UserLanguage["TA"] = "TA";
339
+ UserLanguage["TT"] = "TT";
340
+ UserLanguage["TE"] = "TE";
341
+ UserLanguage["TH"] = "TH";
342
+ UserLanguage["TR"] = "TR";
343
+ UserLanguage["TK"] = "TK";
344
+ UserLanguage["UK"] = "UK";
345
+ UserLanguage["UR"] = "UR";
346
+ UserLanguage["UG"] = "UG";
347
+ UserLanguage["UZ"] = "UZ";
348
+ UserLanguage["VI"] = "VI";
349
+ UserLanguage["CY"] = "CY";
350
+ UserLanguage["XH"] = "XH";
351
+ UserLanguage["YI"] = "YI";
352
+ UserLanguage["YO"] = "YO";
353
+ UserLanguage["ZU"] = "ZU";
354
+ UserLanguage["VN"] = "VN";
355
+ return UserLanguage;
356
+ }({});
357
+ let UserGender = /* @__PURE__ */ function(UserGender) {
358
+ UserGender["MALE"] = "MALE";
359
+ UserGender["FEMALE"] = "FEMALE";
360
+ UserGender["OTHER"] = "OTHER";
361
+ return UserGender;
362
+ }({});
363
+ let UserStatus = /* @__PURE__ */ function(UserStatus) {
364
+ UserStatus["ACTIVE"] = "ACTIVE";
365
+ UserStatus["INACTIVE"] = "INACTIVE";
366
+ UserStatus["BLOCKED"] = "BLOCKED";
367
+ return UserStatus;
368
+ }({});
369
+ let NotificationEnv = /* @__PURE__ */ function(NotificationEnv) {
370
+ NotificationEnv["PRODUCTION"] = "production";
371
+ NotificationEnv["TESTING"] = "testing";
372
+ NotificationEnv["STAGING"] = "staging";
373
+ return NotificationEnv;
374
+ }({});
375
+ let IdentityType = /* @__PURE__ */ function(IdentityType) {
376
+ IdentityType["ID_CARD"] = "ID_CARD";
377
+ return IdentityType;
378
+ }({});
379
+ let IdentityVerificationStatus = /* @__PURE__ */ function(IdentityVerificationStatus) {
380
+ IdentityVerificationStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
381
+ IdentityVerificationStatus["APPROVED"] = "APPROVED";
382
+ return IdentityVerificationStatus;
383
+ }({});
384
+ let IdentityNationality = /* @__PURE__ */ function(IdentityNationality) {
385
+ IdentityNationality["VN"] = "VN";
386
+ return IdentityNationality;
387
+ }({});
388
+ let NotificationDetailStatus = /* @__PURE__ */ function(NotificationDetailStatus) {
389
+ NotificationDetailStatus["CREATED"] = "CREATED";
390
+ NotificationDetailStatus["SENT"] = "SENT";
391
+ NotificationDetailStatus["FAILED"] = "FAILED";
392
+ NotificationDetailStatus["READ"] = "READ";
393
+ return NotificationDetailStatus;
394
+ }({});
395
+ let ChatGroupMemberRole = /* @__PURE__ */ function(ChatGroupMemberRole) {
396
+ ChatGroupMemberRole["ADMIN"] = "ADMIN";
397
+ ChatGroupMemberRole["MEMBER"] = "MEMBER";
398
+ ChatGroupMemberRole["GUEST"] = "GUEST";
399
+ return ChatGroupMemberRole;
400
+ }({});
401
+ let ParticipantRole = /* @__PURE__ */ function(ParticipantRole) {
402
+ ParticipantRole["CLIENT_BROKER"] = "CLIENT_BROKER";
403
+ ParticipantRole["INVESTOR_BROKER"] = "INVESTOR_BROKER";
404
+ ParticipantRole["OWNER"] = "OWNER";
405
+ ParticipantRole["INVESTOR"] = "INVESTOR";
406
+ ParticipantRole["CLIENT"] = "CLIENT";
407
+ ParticipantRole["INVESTOR_REPRESENTATIVE"] = "INVESTOR_REPRESENTATIVE";
408
+ return ParticipantRole;
409
+ }({});
410
+ let AgreementTemplateType = /* @__PURE__ */ function(AgreementTemplateType) {
411
+ AgreementTemplateType["SYSTEM"] = "SYSTEM";
412
+ AgreementTemplateType["BROKER"] = "BROKER";
413
+ AgreementTemplateType["CLIENT"] = "CLIENT";
414
+ AgreementTemplateType["INVESTOR"] = "INVESTOR";
415
+ AgreementTemplateType["OWNER"] = "OWNER";
416
+ AgreementTemplateType["MOU"] = "MOU";
417
+ AgreementTemplateType["DEPOSIT"] = "DEPOSIT";
418
+ AgreementTemplateType["DISCLOSURE"] = "DISCLOSURE";
419
+ AgreementTemplateType["OTHER"] = "OTHER";
420
+ return AgreementTemplateType;
421
+ }({});
422
+ let UserHistoryType = /* @__PURE__ */ function(UserHistoryType) {
423
+ UserHistoryType["LOGIN"] = "LOGIN";
424
+ UserHistoryType["LOGOUT"] = "LOGOUT";
425
+ return UserHistoryType;
426
+ }({});
427
+ let PropertyType = /* @__PURE__ */ function(PropertyType) {
428
+ PropertyType["INDUSTRIAL_ZONE"] = "INDUSTRIAL_ZONE";
429
+ PropertyType["BUILDING"] = "BUILDING";
430
+ PropertyType["FLOOR"] = "FLOOR";
431
+ PropertyType["ROOM"] = "ROOM";
432
+ PropertyType["LAND"] = "LAND";
433
+ PropertyType["LAND_LOT"] = "LAND_LOT";
434
+ PropertyType["FACTORY"] = "FACTORY";
435
+ PropertyType["WAREHOUSE"] = "WAREHOUSE";
436
+ PropertyType["OFFICE"] = "OFFICE";
437
+ PropertyType["HOUSING"] = "HOUSING";
438
+ PropertyType["APARTMENT"] = "APARTMENT";
439
+ return PropertyType;
440
+ }({});
441
+ let PropertyLegalStatus = /* @__PURE__ */ function(PropertyLegalStatus) {
442
+ PropertyLegalStatus["MORE_THAN_FIFTY_YEARS_ANNUAL_PAYMENT"] = "MORE_THAN_FIFTY_YEARS_ANNUAL_PAYMENT";
443
+ PropertyLegalStatus["MORE_THAN_FIFTY_YEARS_ONE_TIME_PAYMENT"] = "MORE_THAN_FIFTY_YEARS_ONE_TIME_PAYMENT";
444
+ PropertyLegalStatus["FIFTY_YEARS_ANNUAL_PAYMENT"] = "FIFTY_YEARS_ANNUAL_PAYMENT";
445
+ PropertyLegalStatus["FIFTY_YEARS_ONE_TIME_PAYMENT"] = "FIFTY_YEARS_ONE_TIME_PAYMENT";
446
+ PropertyLegalStatus["FORTY_YEARS_ANNUAL_PAYMENT"] = "FORTY_YEARS_ANNUAL_PAYMENT";
447
+ PropertyLegalStatus["FORTY_YEARS_ONE_TIME_PAYMENT"] = "FORTY_YEARS_ONE_TIME_PAYMENT";
448
+ PropertyLegalStatus["THIRTY_YEARS_ONE_TIME_PAYMENT"] = "THIRTY_YEARS_ONE_TIME_PAYMENT";
449
+ PropertyLegalStatus["THIRTY_YEARS_ANNUAL_PAYMENT"] = "THIRTY_YEARS_ANNUAL_PAYMENT";
450
+ PropertyLegalStatus["TWENTY_YEARS_ANNUAL_PAYMENT"] = "TWENTY_YEARS_ANNUAL_PAYMENT";
451
+ PropertyLegalStatus["TWENTY_YEARS_ONE_TIME_PAYMENT"] = "TWENTY_YEARS_ONE_TIME_PAYMENT";
452
+ PropertyLegalStatus["TEN_YEARS_ANNUAL_PAYMENT"] = "TEN_YEARS_ANNUAL_PAYMENT";
453
+ PropertyLegalStatus["TEN_YEARS_ONE_TIME_PAYMENT"] = "TEN_YEARS_ONE_TIME_PAYMENT";
454
+ PropertyLegalStatus["LESS_THAN_TEN_YEARS_ANNUAL_PAYMENT"] = "LESS_THAN_TEN_YEARS_ANNUAL_PAYMENT";
455
+ PropertyLegalStatus["LESS_THAN_TEN_YEARS_ONE_TIME_PAYMENT"] = "LESS_THAN_TEN_YEARS_ONE_TIME_PAYMENT";
456
+ return PropertyLegalStatus;
457
+ }({});
458
+ let PropertyApprovalStatus = /* @__PURE__ */ function(PropertyApprovalStatus) {
459
+ PropertyApprovalStatus["PENDING"] = "PENDING";
460
+ PropertyApprovalStatus["APPROVED"] = "APPROVED";
461
+ PropertyApprovalStatus["REJECTED"] = "REJECTED";
462
+ PropertyApprovalStatus["ARCHIVED"] = "ARCHIVED";
463
+ return PropertyApprovalStatus;
464
+ }({});
465
+ let PropertyLandCurrentStatus = /* @__PURE__ */ function(PropertyLandCurrentStatus) {
466
+ PropertyLandCurrentStatus["PLANNED"] = "PLANNED";
467
+ PropertyLandCurrentStatus["DESIGNING"] = "DESIGNING";
468
+ PropertyLandCurrentStatus["UNDER_CONSTRUCTION"] = "UNDER_CONSTRUCTION";
469
+ PropertyLandCurrentStatus["TOPPING_OUT"] = "TOPPING_OUT";
470
+ PropertyLandCurrentStatus["NEAR_COMPLETION"] = "NEAR_COMPLETION";
471
+ PropertyLandCurrentStatus["COMPLETED"] = "COMPLETED";
472
+ PropertyLandCurrentStatus["READY_FOR_HANDOVER"] = "READY_FOR_HANDOVER";
473
+ PropertyLandCurrentStatus["HANDED_OVER"] = "HANDED_OVER";
474
+ PropertyLandCurrentStatus["ON_HOLD"] = "ON_HOLD";
475
+ PropertyLandCurrentStatus["CANCELLED"] = "CANCELLED";
476
+ return PropertyLandCurrentStatus;
477
+ }({});
478
+ let PropertyTransactionStatus = /* @__PURE__ */ function(PropertyTransactionStatus) {
479
+ PropertyTransactionStatus["AVAILABLE"] = "AVAILABLE";
480
+ PropertyTransactionStatus["DEPOSITED"] = "DEPOSITED";
481
+ PropertyTransactionStatus["LEASED"] = "LEASED";
482
+ PropertyTransactionStatus["SOLD"] = "SOLD";
483
+ PropertyTransactionStatus["UNDEFINED"] = "UNDEFINED";
484
+ return PropertyTransactionStatus;
485
+ }({});
486
+ let DealStatus = /* @__PURE__ */ function(DealStatus) {
487
+ DealStatus["PENDING"] = "PENDING";
488
+ DealStatus["PROCESSING"] = "PROCESSING";
489
+ DealStatus["COMPLETED"] = "COMPLETED";
490
+ DealStatus["CANCELLED"] = "CANCELLED";
491
+ DealStatus["ON_HOLD"] = "ON_HOLD";
492
+ return DealStatus;
493
+ }({});
494
+ let DealFilterType = /* @__PURE__ */ function(DealFilterType) {
495
+ DealFilterType["ORDER_REQUEST_RENT"] = "ORDER_REQUEST_RENT";
496
+ DealFilterType["ORDER_REQUEST_SELL"] = "ORDER_REQUEST_SELL";
497
+ DealFilterType["CONSIGNMENT_REQUEST_RENT"] = "CONSIGNMENT_REQUEST_RENT";
498
+ DealFilterType["CONSIGNMENT_REQUEST_SELL"] = "CONSIGNMENT_REQUEST_SELL";
499
+ return DealFilterType;
500
+ }({});
501
+ let JobType = /* @__PURE__ */ function(JobType) {
502
+ JobType["STANDARD"] = "STANDARD";
503
+ JobType["REMINDER"] = "REMINDER";
504
+ JobType["RECURRING_REMINDER"] = "RECURRING_REMINDER";
505
+ return JobType;
506
+ }({});
507
+ let JobStatus = /* @__PURE__ */ function(JobStatus) {
508
+ JobStatus["PENDING"] = "PENDING";
509
+ JobStatus["SCHEDULED"] = "SCHEDULED";
510
+ JobStatus["RUNNING"] = "RUNNING";
511
+ JobStatus["COMPLETED"] = "COMPLETED";
512
+ JobStatus["FAILED"] = "FAILED";
513
+ JobStatus["CANCELLED"] = "CANCELLED";
514
+ JobStatus["RETRYING"] = "RETRYING";
515
+ return JobStatus;
516
+ }({});
517
+ let ClientNeed = /* @__PURE__ */ function(ClientNeed) {
518
+ ClientNeed["FOR_SALE"] = "FOR_SALE";
519
+ ClientNeed["FOR_LEASE"] = "FOR_LEASE";
520
+ return ClientNeed;
521
+ }({});
522
+ let ClientRoles = /* @__PURE__ */ function(ClientRoles) {
523
+ ClientRoles["BROKER"] = "BROKER";
524
+ ClientRoles["OWNER"] = "OWNER";
525
+ ClientRoles["INVESTOR"] = "INVESTOR";
526
+ return ClientRoles;
527
+ }({});
528
+ let ClientStatus = /* @__PURE__ */ function(ClientStatus) {
529
+ ClientStatus["POTENTIAL"] = "POTENTIAL";
530
+ ClientStatus["INTERESTED"] = "INTERESTED";
531
+ ClientStatus["NEGOTIATING"] = "NEGOTIATING";
532
+ ClientStatus["PURCHASED"] = "PURCHASED";
533
+ ClientStatus["LOST"] = "LOST";
534
+ ClientStatus["RESEARCHING"] = "RESEARCHING";
535
+ ClientStatus["FOLLOW_UP_NEEDED"] = "FOLLOW_UP_NEEDED";
536
+ return ClientStatus;
537
+ }({});
538
+ let ClientSource = /* @__PURE__ */ function(ClientSource) {
539
+ ClientSource["WEBSITE"] = "WEBSITE";
540
+ ClientSource["FACEBOOK"] = "FACEBOOK";
541
+ ClientSource["REFERRAL"] = "REFERRAL";
542
+ ClientSource["PHONE_CALL"] = "PHONE_CALL";
543
+ ClientSource["EMAIL"] = "EMAIL";
544
+ ClientSource["WALK_IN"] = "WALK_IN";
545
+ ClientSource["ADVERTISEMENT"] = "ADVERTISEMENT";
546
+ ClientSource["EVENT"] = "EVENT";
547
+ ClientSource["OTHER"] = "OTHER";
548
+ return ClientSource;
549
+ }({});
550
+ let ClientType = /* @__PURE__ */ function(ClientType) {
551
+ ClientType["PERSONAL"] = "PERSONAL";
552
+ ClientType["ORGANIZATION"] = "ORGANIZATION";
553
+ return ClientType;
554
+ }({});
555
+ let OrderRequestType = /* @__PURE__ */ function(OrderRequestType) {
556
+ OrderRequestType["SELL"] = "SELL";
557
+ OrderRequestType["RENT"] = "RENT";
558
+ return OrderRequestType;
559
+ }({});
560
+ let NotificationScheduleStatus = /* @__PURE__ */ function(NotificationScheduleStatus) {
561
+ NotificationScheduleStatus["PENDING"] = "PENDING";
562
+ NotificationScheduleStatus["PROCESSING"] = "PROCESSING";
563
+ NotificationScheduleStatus["COMPLETED"] = "COMPLETED";
564
+ NotificationScheduleStatus["FAILED"] = "FAILED";
565
+ NotificationScheduleStatus["CANCELLED"] = "CANCELLED";
566
+ return NotificationScheduleStatus;
567
+ }({});
568
+ let VerificationType = /* @__PURE__ */ function(VerificationType) {
569
+ VerificationType["OTP"] = "OTP";
570
+ return VerificationType;
571
+ }({});
572
+ let PaymentProcessStatus = /* @__PURE__ */ function(PaymentProcessStatus) {
573
+ PaymentProcessStatus["IN_PROGRESS"] = "IN_PROGRESS";
574
+ PaymentProcessStatus["COMPLETED"] = "COMPLETED";
575
+ PaymentProcessStatus["CANCELLED"] = "CANCELLED";
576
+ return PaymentProcessStatus;
577
+ }({});
578
+ let PaymentInstallmentStatus = /* @__PURE__ */ function(PaymentInstallmentStatus) {
579
+ PaymentInstallmentStatus["PENDING"] = "PENDING";
580
+ PaymentInstallmentStatus["PAID"] = "PAID";
581
+ PaymentInstallmentStatus["CANCELLED"] = "CANCELLED";
582
+ return PaymentInstallmentStatus;
583
+ }({});
584
+ let ConsignmentRequestType = /* @__PURE__ */ function(ConsignmentRequestType) {
585
+ ConsignmentRequestType["SELL"] = "SELL";
586
+ ConsignmentRequestType["RENT"] = "RENT";
587
+ return ConsignmentRequestType;
588
+ }({});
589
+ let MediaType = /* @__PURE__ */ function(MediaType) {
590
+ MediaType["IMAGE"] = "IMAGE";
591
+ MediaType["VIDEO"] = "VIDEO";
592
+ MediaType["AUDIO"] = "AUDIO";
593
+ MediaType["DOCUMENT"] = "DOCUMENT";
594
+ MediaType["OTHER"] = "OTHER";
595
+ return MediaType;
596
+ }({});
597
+ let MediaSortField = /* @__PURE__ */ function(MediaSortField) {
598
+ MediaSortField["CREATED_BY"] = "createdBy";
599
+ MediaSortField["UPDATED_BY"] = "updatedBy";
600
+ MediaSortField["NAME"] = "name";
601
+ MediaSortField["FILE_SIZE"] = "fileSize";
602
+ return MediaSortField;
603
+ }({});
604
+ let RoleCodes = /* @__PURE__ */ function(RoleCodes) {
605
+ RoleCodes["SUPER_ADMIN"] = "SUPER_ADMIN";
606
+ RoleCodes["ADMIN"] = "ADMIN";
607
+ RoleCodes["BROKER"] = "BROKER";
608
+ RoleCodes["CLIENT"] = "CLIENT";
609
+ RoleCodes["BACK_OFFICE"] = "BACK_OFFICE";
610
+ RoleCodes["INVESTOR_REPRESENTATIVE"] = "INVESTOR_REPRESENTATIVE";
611
+ RoleCodes["OWNER_REPRESENTATIVE"] = "OWNER_REPRESENTATIVE";
612
+ return RoleCodes;
613
+ }({});
614
+ let MessageType = /* @__PURE__ */ function(MessageType) {
615
+ MessageType["TEXT"] = "TEXT";
616
+ MessageType["IMAGE"] = "IMAGE";
617
+ MessageType["VIDEO"] = "VIDEO";
618
+ MessageType["AUDIO"] = "AUDIO";
619
+ MessageType["DOCUMENT"] = "DOCUMENT";
620
+ MessageType["LINK"] = "LINK";
621
+ return MessageType;
622
+ }({});
623
+ let TicketType = /* @__PURE__ */ function(TicketType) {
624
+ TicketType["APPROVE_USER_TO_BROKER"] = "APPROVE_USER_TO_BROKER";
625
+ TicketType["APPROVE_USER_TO_INVESTOR_REPRESENTATIVE"] = "APPROVE_USER_TO_INVESTOR_REPRESENTATIVE";
626
+ return TicketType;
627
+ }({});
628
+ let TicketStatus = /* @__PURE__ */ function(TicketStatus) {
629
+ TicketStatus["PENDING"] = "PENDING";
630
+ TicketStatus["PROCESSING"] = "PROCESSING";
631
+ TicketStatus["APPROVED"] = "APPROVED";
632
+ TicketStatus["REJECTED"] = "REJECTED";
633
+ return TicketStatus;
634
+ }({});
635
+ let BlackListEntityType = /* @__PURE__ */ function(BlackListEntityType) {
636
+ BlackListEntityType["USER"] = "USER";
637
+ BlackListEntityType["ORGANIZATION"] = "ORGANIZATION";
638
+ return BlackListEntityType;
639
+ }({});
640
+ let BlackListStatus = /* @__PURE__ */ function(BlackListStatus) {
641
+ BlackListStatus["ACTIVE"] = "ACTIVE";
642
+ BlackListStatus["EXPIRED"] = "EXPIRED";
643
+ BlackListStatus["REMOVED"] = "REMOVED";
644
+ return BlackListStatus;
645
+ }({});
646
+ let DocumentCategory = /* @__PURE__ */ function(DocumentCategory) {
647
+ DocumentCategory["PROJECT_LEGAL"] = "PROJECT_LEGAL";
648
+ DocumentCategory["LAND_LEGAL"] = "LAND_LEGAL";
649
+ DocumentCategory["CONSTRUCTION_LEGAL"] = "CONSTRUCTION_LEGAL";
650
+ DocumentCategory["OTHER"] = "OTHER";
651
+ return DocumentCategory;
652
+ }({});
653
+ let DocumentType = /* @__PURE__ */ function(DocumentType) {
654
+ DocumentType["PROJECT_APPROVAL_DECISION"] = "PROJECT_APPROVAL_DECISION";
655
+ DocumentType["INVESTMENT_CERTIFICATE"] = "INVESTMENT_CERTIFICATE";
656
+ DocumentType["PLANNING_DECISION_1_500"] = "PLANNING_DECISION_1_500";
657
+ DocumentType["PLANNING_DECISION_1_2000"] = "PLANNING_DECISION_1_2000";
658
+ DocumentType["LAND_USE_RIGHT_CERTIFICATE_RED_BOOK"] = "LAND_USE_RIGHT_CERTIFICATE_RED_BOOK";
659
+ DocumentType["LAND_USE_RIGHT_CERTIFICATE_WHITE_LAND"] = "LAND_USE_RIGHT_CERTIFICATE_WHITE_LAND";
660
+ DocumentType["LAND_USE_RIGHT_CERTIFICATE_OTHER"] = "LAND_USE_RIGHT_CERTIFICATE_OTHER";
661
+ DocumentType["BUILDING_PERMIT"] = "BUILDING_PERMIT";
662
+ DocumentType["ENVIRONMENTAL_PERMIT"] = "ENVIRONMENTAL_PERMIT";
663
+ DocumentType["FIRE_SAFETY_CERTIFICATE"] = "FIRE_SAFETY_CERTIFICATE";
664
+ DocumentType["OTHER"] = "OTHER";
665
+ return DocumentType;
666
+ }({});
667
+ let ForSaleRoadType = /* @__PURE__ */ function(ForSaleRoadType) {
668
+ ForSaleRoadType["UNRECOGNIZED"] = "UNRECOGNIZED";
669
+ ForSaleRoadType["ASPHALT"] = "ASPHALT";
670
+ ForSaleRoadType["CONCRETE"] = "CONCRETE";
671
+ ForSaleRoadType["DIRT"] = "DIRT";
672
+ ForSaleRoadType["BRICK"] = "BRICK";
673
+ ForSaleRoadType["CRUSHED_ROCK"] = "CRUSHED_ROCK";
674
+ return ForSaleRoadType;
675
+ }({});
676
+ let ForSaleBuildingStandard = /* @__PURE__ */ function(ForSaleBuildingStandard) {
677
+ ForSaleBuildingStandard["UNRECOGNIZED"] = "UNRECOGNIZED";
678
+ ForSaleBuildingStandard["BASIC"] = "BASIC";
679
+ ForSaleBuildingStandard["MEDIUM"] = "MEDIUM";
680
+ ForSaleBuildingStandard["TEMPORARY"] = "TEMPORARY";
681
+ ForSaleBuildingStandard["HIGH_END"] = "HIGH_END";
682
+ ForSaleBuildingStandard["LUXURY"] = "LUXURY";
683
+ return ForSaleBuildingStandard;
684
+ }({});
685
+ let ForSaleInfrastructureStatus = /* @__PURE__ */ function(ForSaleInfrastructureStatus) {
686
+ ForSaleInfrastructureStatus["UNRECOGNIZED"] = "UNRECOGNIZED";
687
+ ForSaleInfrastructureStatus["BASIC_INFRASTRUCTURE"] = "BASIC_INFRASTRUCTURE";
688
+ ForSaleInfrastructureStatus["NO_INFRASTRUCTURE"] = "NO_INFRASTRUCTURE";
689
+ ForSaleInfrastructureStatus["OPERATING"] = "OPERATING";
690
+ ForSaleInfrastructureStatus["COMPLETED_INFRASTRUCTURE"] = "COMPLETED_INFRASTRUCTURE";
691
+ ForSaleInfrastructureStatus["STEEL_FRAME"] = "STEEL_FRAME";
692
+ ForSaleInfrastructureStatus["CONCRETE_FRAME"] = "CONCRETE_FRAME";
693
+ ForSaleInfrastructureStatus["TEMPORARY_INFRASTRUCTURE"] = "TEMPORARY_INFRASTRUCTURE";
694
+ ForSaleInfrastructureStatus["FOUNDATION_AND_BOUNDARY_WALLS_AVAILABLE"] = "FOUNDATION_AND_BOUNDARY_WALLS_AVAILABLE";
695
+ ForSaleInfrastructureStatus["INFRASTRUCTURE_AND_CONSTRUCTION_AVAILABLE"] = "INFRASTRUCTURE_AND_CONSTRUCTION_AVAILABLE";
696
+ ForSaleInfrastructureStatus["UNLEVELED"] = "UNLEVELED";
697
+ return ForSaleInfrastructureStatus;
698
+ }({});
699
+ let ForSalePropertyType = /* @__PURE__ */ function(ForSalePropertyType) {
700
+ ForSalePropertyType["UNRECOGNIZED"] = "UNRECOGNIZED";
701
+ ForSalePropertyType["INDUSTRIAL_LAND_AND_FACTORIES"] = "INDUSTRIAL_LAND_AND_FACTORIES";
702
+ ForSalePropertyType["FOREST_AGRICULTURAL_AND_AQUACULTURE_LAND"] = "FOREST_AGRICULTURAL_AND_AQUACULTURE_LAND";
703
+ ForSalePropertyType["RESIDENTIAL_AND_COMMERCIAL_SERVICE_LAND"] = "RESIDENTIAL_AND_COMMERCIAL_SERVICE_LAND";
704
+ ForSalePropertyType["AMUSEMENT_PARKS_AND_SPORTS_ZONES"] = "AMUSEMENT_PARKS_AND_SPORTS_ZONES";
705
+ ForSalePropertyType["TOWNHOUSES_AND_APARTMENTS"] = "TOWNHOUSES_AND_APARTMENTS";
706
+ ForSalePropertyType["HOSPITALS_AND_CLINICS"] = "HOSPITALS_AND_CLINICS";
707
+ ForSalePropertyType["SCHOOLS_AND_TRAINING_CENTERS"] = "SCHOOLS_AND_TRAINING_CENTERS";
708
+ ForSalePropertyType["ENERGY_PROJECT"] = "ENERGY_PROJECT";
709
+ ForSalePropertyType["SHOPPING_CENTERS_AND_OFFICE"] = "SHOPPING_CENTERS_AND_OFFICE";
710
+ ForSalePropertyType["INDUSTRIAL_PARKS"] = "INDUSTRIAL_PARKS";
711
+ ForSalePropertyType["RESORT_AND_HOTEL"] = "RESORT_AND_HOTEL";
712
+ ForSalePropertyType["MINES_AND_MINERALS"] = "MINES_AND_MINERALS";
713
+ ForSalePropertyType["GAS_STATIONS_AND_EV_CHARGING_STATIONS"] = "GAS_STATIONS_AND_EV_CHARGING_STATIONS";
714
+ ForSalePropertyType["DOCKS_AND_YARDS"] = "DOCKS_AND_YARDS";
715
+ ForSalePropertyType["ECOLOGICAL_AREAS_AND_FARMS"] = "ECOLOGICAL_AREAS_AND_FARMS";
716
+ return ForSalePropertyType;
717
+ }({});
718
+ let ForSalePostType = /* @__PURE__ */ function(ForSalePostType) {
719
+ ForSalePostType["NORMAL"] = "NORMAL";
720
+ ForSalePostType["URGENT_SALE"] = "URGENT_SALE";
721
+ ForSalePostType["PROMOTED"] = "PROMOTED";
722
+ ForSalePostType["UNDER_MARKET"] = "UNDER_MARKET";
723
+ ForSalePostType["SPECIAL"] = "SPECIAL";
724
+ ForSalePostType["PRE_SALE"] = "PRE_SALE";
725
+ return ForSalePostType;
726
+ }({});
727
+ let ForSaleStatus = /* @__PURE__ */ function(ForSaleStatus) {
728
+ ForSaleStatus["DRAFT"] = "DRAFT";
729
+ ForSaleStatus["UNPUBLISHED"] = "UNPUBLISHED";
730
+ ForSaleStatus["PUBLISHED"] = "PUBLISHED";
731
+ return ForSaleStatus;
732
+ }({});
733
+ let ForSaleApproveStatus = /* @__PURE__ */ function(ForSaleApproveStatus) {
734
+ ForSaleApproveStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
735
+ ForSaleApproveStatus["APPROVED"] = "APPROVED";
736
+ return ForSaleApproveStatus;
737
+ }({});
738
+ let ForSaleUtilities = /* @__PURE__ */ function(ForSaleUtilities) {
739
+ ForSaleUtilities["FULLY_FINISHED_WITH_HIGH_END_ITEMS"] = "FULLY_FINISHED_WITH_HIGH_END_ITEMS";
740
+ ForSaleUtilities["SEMI_FINISHED"] = "SEMI_FINISHED";
741
+ ForSaleUtilities["FULLY_FINISHED"] = "FULLY_FINISHED";
742
+ ForSaleUtilities["BASIC_CONSTRUCTION"] = "BASIC_CONSTRUCTION";
743
+ return ForSaleUtilities;
744
+ }({});
745
+ let ProjectType = /* @__PURE__ */ function(ProjectType) {
746
+ ProjectType["GREEN_CLEAN"] = "GREEN_CLEAN";
747
+ ProjectType["HIGH_TECH"] = "HIGH_TECH";
748
+ ProjectType["HEAVY_INDUSTRY"] = "HEAVY_INDUSTRY";
749
+ ProjectType["MIXED_USE"] = "MIXED_USE";
750
+ ProjectType["SPECIALIZED"] = "SPECIALIZED";
751
+ return ProjectType;
752
+ }({});
753
+ let ProjectClassification = /* @__PURE__ */ function(ProjectClassification) {
754
+ ProjectClassification["INDUSTRIAL_PARK"] = "INDUSTRIAL_PARK";
755
+ ProjectClassification["INDUSTRIAL_CLUSTER"] = "INDUSTRIAL_CLUSTER";
756
+ ProjectClassification["OFFICE_ZONE"] = "OFFICE_ZONE";
757
+ ProjectClassification["MIXED_COMPLEX"] = "MIXED_COMPLEX";
758
+ ProjectClassification["SHOPPING_CENTER"] = "SHOPPING_CENTER";
759
+ return ProjectClassification;
760
+ }({});
761
+ let ProjectApprovalStatus = /* @__PURE__ */ function(ProjectApprovalStatus) {
762
+ ProjectApprovalStatus["PENDING"] = "PENDING";
763
+ ProjectApprovalStatus["APPROVED"] = "APPROVED";
764
+ ProjectApprovalStatus["REJECTED"] = "REJECTED";
765
+ return ProjectApprovalStatus;
766
+ }({});
767
+ let LandCurrentStatus = /* @__PURE__ */ function(LandCurrentStatus) {
768
+ LandCurrentStatus["PLANNED"] = "PLANNED";
769
+ LandCurrentStatus["DESIGNING"] = "DESIGNING";
770
+ LandCurrentStatus["UNDER_CONSTRUCTION"] = "UNDER_CONSTRUCTION";
771
+ LandCurrentStatus["TOPPING_OUT"] = "TOPPING_OUT";
772
+ LandCurrentStatus["NEAR_COMPLETION"] = "NEAR_COMPLETION";
773
+ LandCurrentStatus["COMPLETED"] = "COMPLETED";
774
+ LandCurrentStatus["READY_FOR_HANDOVER"] = "READY_FOR_HANDOVER";
775
+ LandCurrentStatus["HANDED_OVER"] = "HANDED_OVER";
776
+ LandCurrentStatus["ON_HOLD"] = "ON_HOLD";
777
+ LandCurrentStatus["CANCELLED"] = "CANCELLED";
778
+ return LandCurrentStatus;
779
+ }({});
780
+ let Orientation = /* @__PURE__ */ function(Orientation) {
781
+ Orientation["North"] = "NORTH";
782
+ Orientation["South"] = "SOUTH";
783
+ Orientation["East"] = "EAST";
784
+ Orientation["West"] = "WEST";
785
+ Orientation["Northeast"] = "NORTHEAST";
786
+ Orientation["Northwest"] = "NORTHWEST";
787
+ Orientation["Southeast"] = "SOUTHEAST";
788
+ Orientation["Southwest"] = "SOUTHWEST";
789
+ Orientation["Unknown"] = "UNKNOWN";
790
+ return Orientation;
791
+ }({});
792
+ let ProjectStandard = /* @__PURE__ */ function(ProjectStandard) {
793
+ ProjectStandard["PREMIUM"] = "PREMIUM";
794
+ ProjectStandard["MEDIUM"] = "MEDIUM";
795
+ ProjectStandard["BASIC"] = "BASIC";
796
+ ProjectStandard["LUXURY"] = "LUXURY";
797
+ return ProjectStandard;
798
+ }({});
799
+ let LandType = /* @__PURE__ */ function(LandType) {
800
+ LandType["LONG_TERM_OWNERSHIP"] = "LONG_TERM_OWNERSHIP";
801
+ LandType["ANNUAL_RENT"] = "ANNUAL_RENT";
802
+ LandType["ONE_TIME_RENTAL_PAYMENT"] = "ONE_TIME_RENTAL_PAYMENT";
803
+ return LandType;
804
+ }({});
805
+ let ProjectStage = /* @__PURE__ */ function(ProjectStage) {
806
+ ProjectStage["OVERALL_PROJECT_DEVELOPMENT"] = "OVERALL_PROJECT_DEVELOPMENT";
807
+ ProjectStage["STAGE_1"] = "STAGE_1";
808
+ ProjectStage["STAGE_2"] = "STAGE_2";
809
+ ProjectStage["STAGE_3"] = "STAGE_3";
810
+ ProjectStage["STAGE_4"] = "STAGE_4";
811
+ ProjectStage["STAGE_5"] = "STAGE_5";
812
+ ProjectStage["EXPANSION"] = "EXPANSION";
813
+ return ProjectStage;
814
+ }({});
815
+ let ProjectCurrentStatus = /* @__PURE__ */ function(ProjectCurrentStatus) {
816
+ ProjectCurrentStatus["UPCOMING_FOR_SALE"] = "UPCOMING_FOR_SALE";
817
+ ProjectCurrentStatus["FOR_SALE_OR_FOR_LEASE"] = "FOR_SALE_OR_FOR_LEASE";
818
+ ProjectCurrentStatus["IN_OPERATION"] = "IN_OPERATION";
819
+ ProjectCurrentStatus["INACTIVE"] = "INACTIVE";
820
+ ProjectCurrentStatus["UNSPECIFIED"] = "UNSPECIFIED";
821
+ return ProjectCurrentStatus;
822
+ }({});
823
+ let AppointmentStatus = /* @__PURE__ */ function(AppointmentStatus) {
824
+ AppointmentStatus["PENDING_APPROVAL"] = "PENDING_APPROVAL";
825
+ AppointmentStatus["SCHEDULED"] = "SCHEDULED";
826
+ AppointmentStatus["COMPLETED"] = "COMPLETED";
827
+ AppointmentStatus["CANCELLED"] = "CANCELLED";
828
+ return AppointmentStatus;
829
+ }({});
830
+ let ParticipantStatus = /* @__PURE__ */ function(ParticipantStatus) {
831
+ ParticipantStatus["PENDING"] = "PENDING";
832
+ ParticipantStatus["APPROVED"] = "APPROVED";
833
+ ParticipantStatus["REJECTED"] = "REJECTED";
834
+ ParticipantStatus["ACKNOWLEDGED"] = "ACKNOWLEDGED";
835
+ ParticipantStatus["NO_RESPONSE"] = "NO_RESPONSE";
836
+ return ParticipantStatus;
837
+ }({});
838
+ let ScheduleType = /* @__PURE__ */ function(ScheduleType) {
839
+ ScheduleType["SCHEDULE_CREATED"] = "SCHEDULE_CREATED";
840
+ ScheduleType["DAILY_ACKNOWLEDGMENT"] = "DAILY_ACKNOWLEDGMENT";
841
+ ScheduleType["PRE_MEETING"] = "PRE_MEETING";
842
+ return ScheduleType;
843
+ }({});
844
+ let SchedulerStatus = /* @__PURE__ */ function(SchedulerStatus) {
845
+ SchedulerStatus["PENDING"] = "PENDING";
846
+ SchedulerStatus["SENT"] = "SENT";
847
+ SchedulerStatus["DELIVERED"] = "DELIVERED";
848
+ SchedulerStatus["FAILED"] = "FAILED";
849
+ SchedulerStatus["ACKNOWLEDGED"] = "ACKNOWLEDGED";
850
+ SchedulerStatus["CANCELLED"] = "CANCELLED";
851
+ return SchedulerStatus;
852
+ }({});
853
+ let AppointmentType = /* @__PURE__ */ function(AppointmentType) {
854
+ AppointmentType["SURVEY_SCHEDULING"] = "SURVEY_SCHEDULING";
855
+ AppointmentType["NEGOTIATION"] = "NEGOTIATION";
856
+ AppointmentType["LEASE_DEPOSIT"] = "LEASE_DEPOSIT";
857
+ AppointmentType["LEGAL_LICENSING"] = "LEGAL_LICENSING";
858
+ AppointmentType["FINAL_CONTRACT_PAYMENT"] = "FINAL_CONTRACT_PAYMENT";
859
+ AppointmentType["PROPERTY_HANDOVER"] = "PROPERTY_HANDOVER";
860
+ AppointmentType["TRANSACTION_COMPLETED"] = "TRANSACTION_COMPLETED";
861
+ return AppointmentType;
862
+ }({});
863
+ let SortDirection = /* @__PURE__ */ function(SortDirection) {
864
+ SortDirection["ASC"] = "ASC";
865
+ SortDirection["DESC"] = "DESC";
866
+ return SortDirection;
867
+ }({});
868
+ let OtpType = /* @__PURE__ */ function(OtpType) {
869
+ OtpType["ACCOUNT_OTP"] = "ACCOUNT_OTP";
870
+ OtpType["TRANSACTION_OTP"] = "TRANSACTION_OTP";
871
+ return OtpType;
872
+ }({});
873
+ let DealStepStatus = /* @__PURE__ */ function(DealStepStatus) {
874
+ DealStepStatus["PENDING"] = "PENDING";
875
+ DealStepStatus["PROCESSING"] = "PROCESSING";
876
+ DealStepStatus["COMPLETED"] = "COMPLETED";
877
+ DealStepStatus["CANCELLED"] = "CANCELLED";
878
+ DealStepStatus["ON_HOLD"] = "ON_HOLD";
879
+ return DealStepStatus;
880
+ }({});
881
+ let DealProgress = /* @__PURE__ */ function(DealProgress) {
882
+ DealProgress["INITIATED"] = "INITIATED";
883
+ DealProgress["CONSULTING"] = "CONSULTING";
884
+ DealProgress["SCHEDULE_SURVEY"] = "SCHEDULE_SURVEY";
885
+ DealProgress["NEGOTIATING"] = "NEGOTIATING";
886
+ DealProgress["DEPOSIT"] = "DEPOSIT";
887
+ DealProgress["PAYMENT"] = "PAYMENT";
888
+ DealProgress["HANDOVER"] = "HANDOVER";
889
+ DealProgress["COMPLETED"] = "COMPLETED";
890
+ DealProgress["CANCELLED"] = "CANCELLED";
891
+ return DealProgress;
892
+ }({});
893
+ let VersionAction = /* @__PURE__ */ function(VersionAction) {
894
+ VersionAction["CREATE"] = "CREATE";
895
+ VersionAction["UPDATE"] = "UPDATE";
896
+ return VersionAction;
897
+ }({});
898
+ let PropertyOperationStatus = /* @__PURE__ */ function(PropertyOperationStatus) {
899
+ PropertyOperationStatus["UNDETERMINED"] = "UNDETERMINED";
900
+ PropertyOperationStatus["COMING_SOON"] = "COMING_SOON";
901
+ PropertyOperationStatus["FOR_SALE_RENT"] = "FOR_SALE_RENT";
902
+ PropertyOperationStatus["ACTIVE"] = "ACTIVE";
903
+ PropertyOperationStatus["DEACTIVATED"] = "DEACTIVATED";
904
+ return PropertyOperationStatus;
905
+ }({});
906
+
907
+ //#endregion
908
+ export { AgreementExceptions, AgreementTemplateExceptions, AgreementTemplateType, AgreementTypeExceptions, AppointmentExceptions, AppointmentStatus, AppointmentType, BlackListEntityType, BlackListStatus, BlacklistExceptions, BrokerExceptions, ChatGroupMemberRole, ClientCategoryExceptions, ClientExceptions, ClientNeed, ClientRoles, ClientSource, ClientStatus, ClientType, ConsignmentRequestExceptions, ConsignmentRequestType, ConversationExceptions, 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, OrderRequestExceptions, OrderRequestType, Orientation, OtpType, ParticipantRole, ParticipantStatus, PaymentInstallmentStatus, PaymentProcessExceptions, PaymentProcessStatus, PreDealExceptions, ProjectApprovalStatus, ProjectClassification, ProjectCurrentStatus, ProjectStage, ProjectStandard, ProjectType, PropertyApprovalStatus, PropertyExceptions, PropertyLandCurrentStatus, PropertyLegalStatus, PropertyOperationStatus, PropertyTransactionStatus, PropertyType, ProvinceExceptions, RegisterExceptions, RoleCodes, RoleExceptions, ScheduleType, SchedulerStatus, SettingExceptions, SortDirection, TicketExceptions, TicketStatus, TicketType, UserExceptions, UserGender, UserHistoryType, UserLanguage, UserStatus, VerificationType, VersionAction, WardExceptions };
909
+ //# sourceMappingURL=index.mjs.map