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