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