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