@investtal/models 1.2.61 → 1.4.0
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 +10 -0
- package/dist/index.cjs +722 -722
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5292 -4742
- package/dist/index.d.mts +5292 -4742
- package/dist/index.mjs +722 -722
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -26,399 +26,313 @@ let TicketStatus = /* @__PURE__ */ function(TicketStatus) {
|
|
|
26
26
|
return TicketStatus;
|
|
27
27
|
}({});
|
|
28
28
|
//#endregion
|
|
29
|
-
//#region src/generated/
|
|
30
|
-
const
|
|
31
|
-
|
|
32
|
-
|
|
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"
|
|
29
|
+
//#region src/generated/blacklist/exceptions.ts
|
|
30
|
+
const BlacklistExceptions = {
|
|
31
|
+
FORBIDDEN: "You are not authorized to create a blacklist",
|
|
32
|
+
NOT_FOUND: "Blacklist not found"
|
|
38
33
|
};
|
|
39
34
|
//#endregion
|
|
40
|
-
//#region src/generated/
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
35
|
+
//#region src/generated/blacklist/blacklist.enum.ts
|
|
36
|
+
let BlackListEntityType = /* @__PURE__ */ function(BlackListEntityType) {
|
|
37
|
+
BlackListEntityType["USER"] = "USER";
|
|
38
|
+
BlackListEntityType["ORGANIZATION"] = "ORGANIZATION";
|
|
39
|
+
return BlackListEntityType;
|
|
40
|
+
}({});
|
|
41
|
+
let BlackListStatus = /* @__PURE__ */ function(BlackListStatus) {
|
|
42
|
+
BlackListStatus["ACTIVE"] = "ACTIVE";
|
|
43
|
+
BlackListStatus["EXPIRED"] = "EXPIRED";
|
|
44
|
+
BlackListStatus["REMOVED"] = "REMOVED";
|
|
45
|
+
return BlackListStatus;
|
|
46
|
+
}({});
|
|
47
|
+
//#endregion
|
|
48
|
+
//#region src/generated/conversation/exceptions.ts
|
|
49
|
+
const ConversationExceptions = {
|
|
50
|
+
CHAT_GROUP_NOT_FOUND: "Chat group not found",
|
|
51
|
+
MEMBER_NOT_FOUND: "Member not found",
|
|
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"
|
|
50
62
|
};
|
|
51
63
|
//#endregion
|
|
52
|
-
//#region src/generated/
|
|
53
|
-
let
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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;
|
|
64
79
|
}({});
|
|
65
80
|
//#endregion
|
|
66
|
-
//#region src/generated/
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
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;
|
|
76
97
|
}({});
|
|
77
|
-
let
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
UserLanguage["HY"] = "HY";
|
|
83
|
-
UserLanguage["AZ"] = "AZ";
|
|
84
|
-
UserLanguage["EU"] = "EU";
|
|
85
|
-
UserLanguage["BE"] = "BE";
|
|
86
|
-
UserLanguage["BN"] = "BN";
|
|
87
|
-
UserLanguage["BS"] = "BS";
|
|
88
|
-
UserLanguage["BG"] = "BG";
|
|
89
|
-
UserLanguage["CA"] = "CA";
|
|
90
|
-
UserLanguage["CEB"] = "CEB";
|
|
91
|
-
UserLanguage["NY"] = "NY";
|
|
92
|
-
UserLanguage["ZH"] = "ZH";
|
|
93
|
-
UserLanguage["ZH_CN"] = "ZH_CN";
|
|
94
|
-
UserLanguage["ZH_TW"] = "ZH_TW";
|
|
95
|
-
UserLanguage["CO"] = "CO";
|
|
96
|
-
UserLanguage["HR"] = "HR";
|
|
97
|
-
UserLanguage["CS"] = "CS";
|
|
98
|
-
UserLanguage["DA"] = "DA";
|
|
99
|
-
UserLanguage["NL"] = "NL";
|
|
100
|
-
UserLanguage["EN"] = "EN";
|
|
101
|
-
UserLanguage["EO"] = "EO";
|
|
102
|
-
UserLanguage["ET"] = "ET";
|
|
103
|
-
UserLanguage["TL"] = "TL";
|
|
104
|
-
UserLanguage["FI"] = "FI";
|
|
105
|
-
UserLanguage["FR"] = "FR";
|
|
106
|
-
UserLanguage["FY"] = "FY";
|
|
107
|
-
UserLanguage["GL"] = "GL";
|
|
108
|
-
UserLanguage["KA"] = "KA";
|
|
109
|
-
UserLanguage["DE"] = "DE";
|
|
110
|
-
UserLanguage["EL"] = "EL";
|
|
111
|
-
UserLanguage["GU"] = "GU";
|
|
112
|
-
UserLanguage["HT"] = "HT";
|
|
113
|
-
UserLanguage["HA"] = "HA";
|
|
114
|
-
UserLanguage["HAW"] = "HAW";
|
|
115
|
-
UserLanguage["HE"] = "HE";
|
|
116
|
-
UserLanguage["HI"] = "HI";
|
|
117
|
-
UserLanguage["HMN"] = "HMN";
|
|
118
|
-
UserLanguage["HU"] = "HU";
|
|
119
|
-
UserLanguage["IS"] = "IS";
|
|
120
|
-
UserLanguage["IG"] = "IG";
|
|
121
|
-
UserLanguage["ID"] = "ID";
|
|
122
|
-
UserLanguage["GA"] = "GA";
|
|
123
|
-
UserLanguage["IT"] = "IT";
|
|
124
|
-
UserLanguage["JA"] = "JA";
|
|
125
|
-
UserLanguage["JV"] = "JV";
|
|
126
|
-
UserLanguage["KN"] = "KN";
|
|
127
|
-
UserLanguage["KK"] = "KK";
|
|
128
|
-
UserLanguage["KM"] = "KM";
|
|
129
|
-
UserLanguage["RW"] = "RW";
|
|
130
|
-
UserLanguage["KO"] = "KO";
|
|
131
|
-
UserLanguage["KU"] = "KU";
|
|
132
|
-
UserLanguage["KY"] = "KY";
|
|
133
|
-
UserLanguage["LO"] = "LO";
|
|
134
|
-
UserLanguage["LA"] = "LA";
|
|
135
|
-
UserLanguage["LV"] = "LV";
|
|
136
|
-
UserLanguage["LT"] = "LT";
|
|
137
|
-
UserLanguage["LB"] = "LB";
|
|
138
|
-
UserLanguage["MK"] = "MK";
|
|
139
|
-
UserLanguage["MG"] = "MG";
|
|
140
|
-
UserLanguage["MS"] = "MS";
|
|
141
|
-
UserLanguage["ML"] = "ML";
|
|
142
|
-
UserLanguage["MT"] = "MT";
|
|
143
|
-
UserLanguage["MI"] = "MI";
|
|
144
|
-
UserLanguage["MR"] = "MR";
|
|
145
|
-
UserLanguage["MN"] = "MN";
|
|
146
|
-
UserLanguage["MY"] = "MY";
|
|
147
|
-
UserLanguage["NE"] = "NE";
|
|
148
|
-
UserLanguage["NO"] = "NO";
|
|
149
|
-
UserLanguage["OR"] = "OR";
|
|
150
|
-
UserLanguage["PS"] = "PS";
|
|
151
|
-
UserLanguage["FA"] = "FA";
|
|
152
|
-
UserLanguage["PL"] = "PL";
|
|
153
|
-
UserLanguage["PT"] = "PT";
|
|
154
|
-
UserLanguage["PA"] = "PA";
|
|
155
|
-
UserLanguage["RO"] = "RO";
|
|
156
|
-
UserLanguage["RU"] = "RU";
|
|
157
|
-
UserLanguage["SM"] = "SM";
|
|
158
|
-
UserLanguage["GD"] = "GD";
|
|
159
|
-
UserLanguage["SR"] = "SR";
|
|
160
|
-
UserLanguage["ST"] = "ST";
|
|
161
|
-
UserLanguage["SN"] = "SN";
|
|
162
|
-
UserLanguage["SD"] = "SD";
|
|
163
|
-
UserLanguage["SI"] = "SI";
|
|
164
|
-
UserLanguage["SK"] = "SK";
|
|
165
|
-
UserLanguage["SL"] = "SL";
|
|
166
|
-
UserLanguage["SO"] = "SO";
|
|
167
|
-
UserLanguage["ES"] = "ES";
|
|
168
|
-
UserLanguage["SU"] = "SU";
|
|
169
|
-
UserLanguage["SW"] = "SW";
|
|
170
|
-
UserLanguage["SV"] = "SV";
|
|
171
|
-
UserLanguage["TG"] = "TG";
|
|
172
|
-
UserLanguage["TA"] = "TA";
|
|
173
|
-
UserLanguage["TT"] = "TT";
|
|
174
|
-
UserLanguage["TE"] = "TE";
|
|
175
|
-
UserLanguage["TH"] = "TH";
|
|
176
|
-
UserLanguage["TR"] = "TR";
|
|
177
|
-
UserLanguage["TK"] = "TK";
|
|
178
|
-
UserLanguage["UK"] = "UK";
|
|
179
|
-
UserLanguage["UR"] = "UR";
|
|
180
|
-
UserLanguage["UG"] = "UG";
|
|
181
|
-
UserLanguage["UZ"] = "UZ";
|
|
182
|
-
UserLanguage["VI"] = "VI";
|
|
183
|
-
UserLanguage["CY"] = "CY";
|
|
184
|
-
UserLanguage["XH"] = "XH";
|
|
185
|
-
UserLanguage["YI"] = "YI";
|
|
186
|
-
UserLanguage["YO"] = "YO";
|
|
187
|
-
UserLanguage["ZU"] = "ZU";
|
|
188
|
-
UserLanguage["VN"] = "VN";
|
|
189
|
-
return UserLanguage;
|
|
98
|
+
let NotificationType = /* @__PURE__ */ function(NotificationType) {
|
|
99
|
+
NotificationType["EMAIL"] = "EMAIL";
|
|
100
|
+
NotificationType["SMS"] = "SMS";
|
|
101
|
+
NotificationType["PUSH"] = "PUSH";
|
|
102
|
+
return NotificationType;
|
|
190
103
|
}({});
|
|
191
|
-
let
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
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;
|
|
196
110
|
}({});
|
|
197
|
-
let
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
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;
|
|
202
118
|
}({});
|
|
203
|
-
let
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
119
|
+
let JobType = /* @__PURE__ */ function(JobType) {
|
|
120
|
+
JobType["STANDARD"] = "STANDARD";
|
|
121
|
+
JobType["REMINDER"] = "REMINDER";
|
|
122
|
+
JobType["RECURRING_REMINDER"] = "RECURRING_REMINDER";
|
|
123
|
+
return JobType;
|
|
207
124
|
}({});
|
|
208
|
-
let
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
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;
|
|
216
134
|
}({});
|
|
217
135
|
//#endregion
|
|
218
|
-
//#region src/generated/
|
|
219
|
-
const
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
UPDATE_FAILED: "Failed to update appointment",
|
|
225
|
-
DELETE_FAILED: "Failed to delete appointment",
|
|
226
|
-
INVALID_STATUS: "Invalid appointment status",
|
|
227
|
-
INVALID_DATE: "Invalid appointment date",
|
|
228
|
-
PARTICIPANT_NOT_FOUND: "Participant not found",
|
|
229
|
-
REMINDER_FAILED: "Failed to set appointment reminder"
|
|
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"
|
|
230
142
|
};
|
|
231
143
|
//#endregion
|
|
232
|
-
//#region src/generated/
|
|
233
|
-
let
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
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;
|
|
239
152
|
}({});
|
|
240
|
-
let
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
AppointmentType["TRANSACTION_COMPLETED"] = "TRANSACTION_COMPLETED";
|
|
248
|
-
return AppointmentType;
|
|
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;
|
|
249
160
|
}({});
|
|
250
|
-
let
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
return
|
|
161
|
+
let ProjectApprovalStatus = /* @__PURE__ */ function(ProjectApprovalStatus) {
|
|
162
|
+
ProjectApprovalStatus["PENDING"] = "PENDING";
|
|
163
|
+
ProjectApprovalStatus["APPROVED"] = "APPROVED";
|
|
164
|
+
ProjectApprovalStatus["REJECTED"] = "REJECTED";
|
|
165
|
+
return ProjectApprovalStatus;
|
|
255
166
|
}({});
|
|
256
|
-
let
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
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;
|
|
264
191
|
}({});
|
|
265
192
|
//#endregion
|
|
266
|
-
//#region src/generated/
|
|
267
|
-
let
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
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;
|
|
274
206
|
}({});
|
|
275
|
-
let
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
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;
|
|
281
223
|
}({});
|
|
282
|
-
let
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
return DealStepStatus;
|
|
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;
|
|
289
230
|
}({});
|
|
290
|
-
let
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
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;
|
|
301
243
|
}({});
|
|
302
|
-
let
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
return ParticipantRole;
|
|
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;
|
|
310
251
|
}({});
|
|
311
|
-
let
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
return
|
|
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;
|
|
318
259
|
}({});
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
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/exceptions.ts
|
|
333
|
-
const BlacklistExceptions = {
|
|
334
|
-
FORBIDDEN: "You are not authorized to create a blacklist",
|
|
335
|
-
NOT_FOUND: "Blacklist not found"
|
|
336
|
-
};
|
|
337
|
-
//#endregion
|
|
338
|
-
//#region src/generated/blacklist/blacklist.enum.ts
|
|
339
|
-
let BlackListEntityType = /* @__PURE__ */ function(BlackListEntityType) {
|
|
340
|
-
BlackListEntityType["USER"] = "USER";
|
|
341
|
-
BlackListEntityType["ORGANIZATION"] = "ORGANIZATION";
|
|
342
|
-
return BlackListEntityType;
|
|
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;
|
|
343
266
|
}({});
|
|
344
|
-
let
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
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;
|
|
349
274
|
}({});
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
//#endregion
|
|
357
|
-
//#region src/generated/broker/broker.enum.ts
|
|
358
|
-
let ConvertBrokerClientType = /* @__PURE__ */ function(ConvertBrokerClientType) {
|
|
359
|
-
ConvertBrokerClientType["VOICE"] = "VOICE";
|
|
360
|
-
ConvertBrokerClientType["CSV"] = "CSV";
|
|
361
|
-
ConvertBrokerClientType["EXCEL"] = "EXCEL";
|
|
362
|
-
return ConvertBrokerClientType;
|
|
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;
|
|
363
281
|
}({});
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
CLIENT_CATEGORY_UPDATE_FAILED: "Failed to update client category",
|
|
378
|
-
CLIENT_CATEGORY_DELETION_FAILED: "Failed to delete client category",
|
|
379
|
-
FORBIDDEN: "Forbidden"
|
|
380
|
-
};
|
|
381
|
-
//#endregion
|
|
382
|
-
//#region src/generated/client/client.enum.ts
|
|
383
|
-
let ClientNeed = /* @__PURE__ */ function(ClientNeed) {
|
|
384
|
-
ClientNeed["FOR_SALE"] = "FOR_SALE";
|
|
385
|
-
ClientNeed["FOR_LEASE"] = "FOR_LEASE";
|
|
386
|
-
return ClientNeed;
|
|
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;
|
|
387
295
|
}({});
|
|
388
|
-
let
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
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;
|
|
393
308
|
}({});
|
|
394
|
-
let
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
ClientStatus["LOST"] = "LOST";
|
|
400
|
-
ClientStatus["RESEARCHING"] = "RESEARCHING";
|
|
401
|
-
ClientStatus["FOLLOW_UP_NEEDED"] = "FOLLOW_UP_NEEDED";
|
|
402
|
-
return ClientStatus;
|
|
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;
|
|
403
314
|
}({});
|
|
404
|
-
let
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
return
|
|
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;
|
|
415
326
|
}({});
|
|
416
|
-
let
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
return
|
|
327
|
+
let VersionAction = /* @__PURE__ */ function(VersionAction) {
|
|
328
|
+
VersionAction["CREATE"] = "CREATE";
|
|
329
|
+
VersionAction["UPDATE"] = "UPDATE";
|
|
330
|
+
return VersionAction;
|
|
420
331
|
}({});
|
|
421
332
|
//#endregion
|
|
333
|
+
//#region src/generated/for-sale/exceptions.ts
|
|
334
|
+
const ForSaleExceptions = { FOR_SALE_NOT_FOUND: "For sale not found" };
|
|
335
|
+
//#endregion
|
|
422
336
|
//#region src/generated/for-sale/for-sale.enum.ts
|
|
423
337
|
let ForSaleRoadType = /* @__PURE__ */ function(ForSaleRoadType) {
|
|
424
338
|
ForSaleRoadType["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
@@ -499,331 +413,297 @@ let ForSaleUtilities = /* @__PURE__ */ function(ForSaleUtilities) {
|
|
|
499
413
|
return ForSaleUtilities;
|
|
500
414
|
}({});
|
|
501
415
|
//#endregion
|
|
502
|
-
//#region src/generated/
|
|
503
|
-
const
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
return ConsignmentRequestType;
|
|
513
|
-
}({});
|
|
514
|
-
//#endregion
|
|
515
|
-
//#region src/generated/conversation/exceptions.ts
|
|
516
|
-
const ConversationExceptions = {
|
|
517
|
-
CHAT_GROUP_NOT_FOUND: "Chat group not found",
|
|
518
|
-
MEMBER_NOT_FOUND: "Member not found",
|
|
519
|
-
NOT_CHAT_GROUP_MEMBER: "User is not a member of this chat group",
|
|
520
|
-
ALREADY_MEMBER: "User is already a member of this chat group",
|
|
521
|
-
INSUFFICIENT_PERMISSIONS: "Insufficient permissions to perform this action",
|
|
522
|
-
MEMBER_ALREADY_EXISTS: "Member already exists in this chat group",
|
|
523
|
-
MEMBER_HAS_LEFT: "Member has left this chat group",
|
|
524
|
-
CANNOT_DELETE_DIRECT_MESSAGE: "Cannot delete direct message chat group",
|
|
525
|
-
CANNOT_DELETE_DEAL_LINKED_CHAT: "Cannot delete chat group linked to a deal",
|
|
526
|
-
CANNOT_DELETE_DEAL_STEP_LINKED_CHAT: "Cannot delete chat group linked to a deal step",
|
|
527
|
-
MESSAGE_NOT_FOUND: "Message not found",
|
|
528
|
-
MESSAGE_NOT_IN_CHAT_GROUP: "Message does not belong to this chat group"
|
|
529
|
-
};
|
|
530
|
-
//#endregion
|
|
531
|
-
//#region src/generated/conversation/conversation.enum.ts
|
|
532
|
-
let ChatGroupMemberRole = /* @__PURE__ */ function(ChatGroupMemberRole) {
|
|
533
|
-
ChatGroupMemberRole["ADMIN"] = "ADMIN";
|
|
534
|
-
ChatGroupMemberRole["MEMBER"] = "MEMBER";
|
|
535
|
-
ChatGroupMemberRole["GUEST"] = "GUEST";
|
|
536
|
-
return ChatGroupMemberRole;
|
|
537
|
-
}({});
|
|
538
|
-
let MessageType = /* @__PURE__ */ function(MessageType) {
|
|
539
|
-
MessageType["TEXT"] = "TEXT";
|
|
540
|
-
MessageType["IMAGE"] = "IMAGE";
|
|
541
|
-
MessageType["VIDEO"] = "VIDEO";
|
|
542
|
-
MessageType["AUDIO"] = "AUDIO";
|
|
543
|
-
MessageType["DOCUMENT"] = "DOCUMENT";
|
|
544
|
-
MessageType["LINK"] = "LINK";
|
|
545
|
-
return MessageType;
|
|
546
|
-
}({});
|
|
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
|
|
565
|
-
//#region src/generated/identity/identity.enum.ts
|
|
566
|
-
let IdentityType = /* @__PURE__ */ function(IdentityType) {
|
|
567
|
-
IdentityType["ID_CARD"] = "ID_CARD";
|
|
568
|
-
return IdentityType;
|
|
569
|
-
}({});
|
|
570
|
-
let IdentityVerificationStatus = /* @__PURE__ */ function(IdentityVerificationStatus) {
|
|
571
|
-
IdentityVerificationStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
|
|
572
|
-
IdentityVerificationStatus["APPROVED"] = "APPROVED";
|
|
573
|
-
return IdentityVerificationStatus;
|
|
574
|
-
}({});
|
|
575
|
-
let IdentityNationality = /* @__PURE__ */ function(IdentityNationality) {
|
|
576
|
-
IdentityNationality["VN"] = "VN";
|
|
577
|
-
return IdentityNationality;
|
|
578
|
-
}({});
|
|
579
|
-
//#endregion
|
|
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"
|
|
416
|
+
//#region src/generated/auth/exceptions.ts
|
|
417
|
+
const UserExceptions = {
|
|
418
|
+
USER_NOT_FOUND: "User not found",
|
|
419
|
+
INVALID_CREDENTIALS: "Invalid credentials",
|
|
420
|
+
TOO_MANY_LOGIN_ATTEMPTS: "Too many login attempts",
|
|
421
|
+
USER_NOT_ACTIVE: "User is not active",
|
|
422
|
+
PASSWORD_INCORRECT: "Password is not correct",
|
|
423
|
+
USER_ALREADY_EXISTS: "User already exists",
|
|
424
|
+
OTP_EXPIRED: "OTP expired",
|
|
425
|
+
INVALID_OTP: "Invalid OTP"
|
|
587
426
|
};
|
|
588
427
|
//#endregion
|
|
589
|
-
//#region src/generated/
|
|
590
|
-
let
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
PropertyType["HOUSING"] = "HOUSING";
|
|
600
|
-
PropertyType["APARTMENT"] = "APARTMENT";
|
|
601
|
-
return PropertyType;
|
|
602
|
-
}({});
|
|
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;
|
|
619
|
-
}({});
|
|
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;
|
|
626
|
-
}({});
|
|
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;
|
|
639
|
-
}({});
|
|
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;
|
|
647
|
-
}({});
|
|
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;
|
|
655
|
-
}({});
|
|
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;
|
|
662
|
-
}({});
|
|
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;
|
|
428
|
+
//#region src/generated/auth/auth.enum.ts
|
|
429
|
+
let RoleCodes = /* @__PURE__ */ function(RoleCodes) {
|
|
430
|
+
RoleCodes["SUPER_ADMIN"] = "SUPER_ADMIN";
|
|
431
|
+
RoleCodes["ADMIN"] = "ADMIN";
|
|
432
|
+
RoleCodes["BROKER"] = "BROKER";
|
|
433
|
+
RoleCodes["CLIENT"] = "CLIENT";
|
|
434
|
+
RoleCodes["BACK_OFFICE"] = "BACK_OFFICE";
|
|
435
|
+
RoleCodes["INVESTOR_REPRESENTATIVE"] = "INVESTOR_REPRESENTATIVE";
|
|
436
|
+
RoleCodes["OWNER_REPRESENTATIVE"] = "OWNER_REPRESENTATIVE";
|
|
437
|
+
return RoleCodes;
|
|
670
438
|
}({});
|
|
671
|
-
let
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
439
|
+
let UserLanguage = /* @__PURE__ */ function(UserLanguage) {
|
|
440
|
+
UserLanguage["AF"] = "AF";
|
|
441
|
+
UserLanguage["SQ"] = "SQ";
|
|
442
|
+
UserLanguage["AM"] = "AM";
|
|
443
|
+
UserLanguage["AR"] = "AR";
|
|
444
|
+
UserLanguage["HY"] = "HY";
|
|
445
|
+
UserLanguage["AZ"] = "AZ";
|
|
446
|
+
UserLanguage["EU"] = "EU";
|
|
447
|
+
UserLanguage["BE"] = "BE";
|
|
448
|
+
UserLanguage["BN"] = "BN";
|
|
449
|
+
UserLanguage["BS"] = "BS";
|
|
450
|
+
UserLanguage["BG"] = "BG";
|
|
451
|
+
UserLanguage["CA"] = "CA";
|
|
452
|
+
UserLanguage["CEB"] = "CEB";
|
|
453
|
+
UserLanguage["NY"] = "NY";
|
|
454
|
+
UserLanguage["ZH"] = "ZH";
|
|
455
|
+
UserLanguage["ZH_CN"] = "ZH_CN";
|
|
456
|
+
UserLanguage["ZH_TW"] = "ZH_TW";
|
|
457
|
+
UserLanguage["CO"] = "CO";
|
|
458
|
+
UserLanguage["HR"] = "HR";
|
|
459
|
+
UserLanguage["CS"] = "CS";
|
|
460
|
+
UserLanguage["DA"] = "DA";
|
|
461
|
+
UserLanguage["NL"] = "NL";
|
|
462
|
+
UserLanguage["EN"] = "EN";
|
|
463
|
+
UserLanguage["EO"] = "EO";
|
|
464
|
+
UserLanguage["ET"] = "ET";
|
|
465
|
+
UserLanguage["TL"] = "TL";
|
|
466
|
+
UserLanguage["FI"] = "FI";
|
|
467
|
+
UserLanguage["FR"] = "FR";
|
|
468
|
+
UserLanguage["FY"] = "FY";
|
|
469
|
+
UserLanguage["GL"] = "GL";
|
|
470
|
+
UserLanguage["KA"] = "KA";
|
|
471
|
+
UserLanguage["DE"] = "DE";
|
|
472
|
+
UserLanguage["EL"] = "EL";
|
|
473
|
+
UserLanguage["GU"] = "GU";
|
|
474
|
+
UserLanguage["HT"] = "HT";
|
|
475
|
+
UserLanguage["HA"] = "HA";
|
|
476
|
+
UserLanguage["HAW"] = "HAW";
|
|
477
|
+
UserLanguage["HE"] = "HE";
|
|
478
|
+
UserLanguage["HI"] = "HI";
|
|
479
|
+
UserLanguage["HMN"] = "HMN";
|
|
480
|
+
UserLanguage["HU"] = "HU";
|
|
481
|
+
UserLanguage["IS"] = "IS";
|
|
482
|
+
UserLanguage["IG"] = "IG";
|
|
483
|
+
UserLanguage["ID"] = "ID";
|
|
484
|
+
UserLanguage["GA"] = "GA";
|
|
485
|
+
UserLanguage["IT"] = "IT";
|
|
486
|
+
UserLanguage["JA"] = "JA";
|
|
487
|
+
UserLanguage["JV"] = "JV";
|
|
488
|
+
UserLanguage["KN"] = "KN";
|
|
489
|
+
UserLanguage["KK"] = "KK";
|
|
490
|
+
UserLanguage["KM"] = "KM";
|
|
491
|
+
UserLanguage["RW"] = "RW";
|
|
492
|
+
UserLanguage["KO"] = "KO";
|
|
493
|
+
UserLanguage["KU"] = "KU";
|
|
494
|
+
UserLanguage["KY"] = "KY";
|
|
495
|
+
UserLanguage["LO"] = "LO";
|
|
496
|
+
UserLanguage["LA"] = "LA";
|
|
497
|
+
UserLanguage["LV"] = "LV";
|
|
498
|
+
UserLanguage["LT"] = "LT";
|
|
499
|
+
UserLanguage["LB"] = "LB";
|
|
500
|
+
UserLanguage["MK"] = "MK";
|
|
501
|
+
UserLanguage["MG"] = "MG";
|
|
502
|
+
UserLanguage["MS"] = "MS";
|
|
503
|
+
UserLanguage["ML"] = "ML";
|
|
504
|
+
UserLanguage["MT"] = "MT";
|
|
505
|
+
UserLanguage["MI"] = "MI";
|
|
506
|
+
UserLanguage["MR"] = "MR";
|
|
507
|
+
UserLanguage["MN"] = "MN";
|
|
508
|
+
UserLanguage["MY"] = "MY";
|
|
509
|
+
UserLanguage["NE"] = "NE";
|
|
510
|
+
UserLanguage["NO"] = "NO";
|
|
511
|
+
UserLanguage["OR"] = "OR";
|
|
512
|
+
UserLanguage["PS"] = "PS";
|
|
513
|
+
UserLanguage["FA"] = "FA";
|
|
514
|
+
UserLanguage["PL"] = "PL";
|
|
515
|
+
UserLanguage["PT"] = "PT";
|
|
516
|
+
UserLanguage["PA"] = "PA";
|
|
517
|
+
UserLanguage["RO"] = "RO";
|
|
518
|
+
UserLanguage["RU"] = "RU";
|
|
519
|
+
UserLanguage["SM"] = "SM";
|
|
520
|
+
UserLanguage["GD"] = "GD";
|
|
521
|
+
UserLanguage["SR"] = "SR";
|
|
522
|
+
UserLanguage["ST"] = "ST";
|
|
523
|
+
UserLanguage["SN"] = "SN";
|
|
524
|
+
UserLanguage["SD"] = "SD";
|
|
525
|
+
UserLanguage["SI"] = "SI";
|
|
526
|
+
UserLanguage["SK"] = "SK";
|
|
527
|
+
UserLanguage["SL"] = "SL";
|
|
528
|
+
UserLanguage["SO"] = "SO";
|
|
529
|
+
UserLanguage["ES"] = "ES";
|
|
530
|
+
UserLanguage["SU"] = "SU";
|
|
531
|
+
UserLanguage["SW"] = "SW";
|
|
532
|
+
UserLanguage["SV"] = "SV";
|
|
533
|
+
UserLanguage["TG"] = "TG";
|
|
534
|
+
UserLanguage["TA"] = "TA";
|
|
535
|
+
UserLanguage["TT"] = "TT";
|
|
536
|
+
UserLanguage["TE"] = "TE";
|
|
537
|
+
UserLanguage["TH"] = "TH";
|
|
538
|
+
UserLanguage["TR"] = "TR";
|
|
539
|
+
UserLanguage["TK"] = "TK";
|
|
540
|
+
UserLanguage["UK"] = "UK";
|
|
541
|
+
UserLanguage["UR"] = "UR";
|
|
542
|
+
UserLanguage["UG"] = "UG";
|
|
543
|
+
UserLanguage["UZ"] = "UZ";
|
|
544
|
+
UserLanguage["VI"] = "VI";
|
|
545
|
+
UserLanguage["CY"] = "CY";
|
|
546
|
+
UserLanguage["XH"] = "XH";
|
|
547
|
+
UserLanguage["YI"] = "YI";
|
|
548
|
+
UserLanguage["YO"] = "YO";
|
|
549
|
+
UserLanguage["ZU"] = "ZU";
|
|
550
|
+
UserLanguage["VN"] = "VN";
|
|
551
|
+
return UserLanguage;
|
|
677
552
|
}({});
|
|
678
|
-
let
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
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;
|
|
553
|
+
let UserGender = /* @__PURE__ */ function(UserGender) {
|
|
554
|
+
UserGender["MALE"] = "MALE";
|
|
555
|
+
UserGender["FEMALE"] = "FEMALE";
|
|
556
|
+
UserGender["OTHER"] = "OTHER";
|
|
557
|
+
return UserGender;
|
|
691
558
|
}({});
|
|
692
|
-
let
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
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;
|
|
559
|
+
let UserStatus = /* @__PURE__ */ function(UserStatus) {
|
|
560
|
+
UserStatus["ACTIVE"] = "ACTIVE";
|
|
561
|
+
UserStatus["INACTIVE"] = "INACTIVE";
|
|
562
|
+
UserStatus["BLOCKED"] = "BLOCKED";
|
|
563
|
+
return UserStatus;
|
|
704
564
|
}({});
|
|
705
|
-
let
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
return LandType;
|
|
565
|
+
let UserHistoryType = /* @__PURE__ */ function(UserHistoryType) {
|
|
566
|
+
UserHistoryType["LOGIN"] = "LOGIN";
|
|
567
|
+
UserHistoryType["LOGOUT"] = "LOGOUT";
|
|
568
|
+
return UserHistoryType;
|
|
710
569
|
}({});
|
|
711
|
-
let
|
|
712
|
-
|
|
713
|
-
|
|
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;
|
|
570
|
+
let VerificationType = /* @__PURE__ */ function(VerificationType) {
|
|
571
|
+
VerificationType["OTP"] = "OTP";
|
|
572
|
+
return VerificationType;
|
|
722
573
|
}({});
|
|
723
|
-
let
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
return
|
|
574
|
+
let OtpType = /* @__PURE__ */ function(OtpType) {
|
|
575
|
+
OtpType["ACCOUNT_OTP"] = "ACCOUNT_OTP";
|
|
576
|
+
OtpType["TRANSACTION_OTP"] = "TRANSACTION_OTP";
|
|
577
|
+
return OtpType;
|
|
727
578
|
}({});
|
|
728
579
|
//#endregion
|
|
729
|
-
//#region src/generated/
|
|
730
|
-
const
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
580
|
+
//#region src/generated/register/exceptions.ts
|
|
581
|
+
const RegisterExceptions = {
|
|
582
|
+
INVALID_VERIFICATION_TYPE: "Verification type is invalid",
|
|
583
|
+
OTP_ALREADY_SENT: "OTP is already sent",
|
|
584
|
+
RESEND_REACH_LIMIT: "Resend OTP too fast or reached limit",
|
|
585
|
+
VERIFY_REACH_LIMIT: "Verify reached limit",
|
|
586
|
+
REGISTER_ACCOUNT_REQUEST_NOT_FOUND: "Register account request not found",
|
|
587
|
+
REGISTER_ACCOUNT_NOT_VERIFIED: "Register account request is not verified",
|
|
588
|
+
INVALID_OTP_CODE: "Invalid Otp code",
|
|
589
|
+
REGISTER_ACCOUNT_VERIFICATION_NOT_FOUND: "Register account verification is not found"
|
|
737
590
|
};
|
|
738
591
|
//#endregion
|
|
739
|
-
//#region src/generated/
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
592
|
+
//#region src/generated/identity/identity.enum.ts
|
|
593
|
+
let IdentityType = /* @__PURE__ */ function(IdentityType) {
|
|
594
|
+
IdentityType["ID_CARD"] = "ID_CARD";
|
|
595
|
+
return IdentityType;
|
|
596
|
+
}({});
|
|
597
|
+
let IdentityVerificationStatus = /* @__PURE__ */ function(IdentityVerificationStatus) {
|
|
598
|
+
IdentityVerificationStatus["WAITING_APPROVAL"] = "WAITING_APPROVAL";
|
|
599
|
+
IdentityVerificationStatus["APPROVED"] = "APPROVED";
|
|
600
|
+
return IdentityVerificationStatus;
|
|
601
|
+
}({});
|
|
602
|
+
let IdentityNationality = /* @__PURE__ */ function(IdentityNationality) {
|
|
603
|
+
IdentityNationality["VN"] = "VN";
|
|
604
|
+
return IdentityNationality;
|
|
605
|
+
}({});
|
|
743
606
|
//#endregion
|
|
744
|
-
//#region src/generated/
|
|
745
|
-
const
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
607
|
+
//#region src/generated/appointment/exceptions.ts
|
|
608
|
+
const AppointmentExceptions = {
|
|
609
|
+
APPOINTMENT_NOT_FOUND: "Appointment not found or access denied",
|
|
610
|
+
ACCESS_DENIED: "Access denied to this appointment",
|
|
611
|
+
PERMISSION_DENIED: "Permission denied",
|
|
612
|
+
CREATION_FAILED: "Failed to create appointment",
|
|
613
|
+
UPDATE_FAILED: "Failed to update appointment",
|
|
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"
|
|
752
619
|
};
|
|
753
620
|
//#endregion
|
|
754
|
-
//#region src/generated/
|
|
755
|
-
let
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
return MediaType;
|
|
621
|
+
//#region src/generated/appointment/appointment.enum.ts
|
|
622
|
+
let AppointmentStatus = /* @__PURE__ */ function(AppointmentStatus) {
|
|
623
|
+
AppointmentStatus["PENDING_APPROVAL"] = "PENDING_APPROVAL";
|
|
624
|
+
AppointmentStatus["SCHEDULED"] = "SCHEDULED";
|
|
625
|
+
AppointmentStatus["COMPLETED"] = "COMPLETED";
|
|
626
|
+
AppointmentStatus["CANCELLED"] = "CANCELLED";
|
|
627
|
+
return AppointmentStatus;
|
|
762
628
|
}({});
|
|
763
|
-
let
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
629
|
+
let AppointmentType = /* @__PURE__ */ function(AppointmentType) {
|
|
630
|
+
AppointmentType["SURVEY_SCHEDULING"] = "SURVEY_SCHEDULING";
|
|
631
|
+
AppointmentType["NEGOTIATION"] = "NEGOTIATION";
|
|
632
|
+
AppointmentType["LEASE_DEPOSIT"] = "LEASE_DEPOSIT";
|
|
633
|
+
AppointmentType["LEGAL_LICENSING"] = "LEGAL_LICENSING";
|
|
634
|
+
AppointmentType["FINAL_CONTRACT_PAYMENT"] = "FINAL_CONTRACT_PAYMENT";
|
|
635
|
+
AppointmentType["PROPERTY_HANDOVER"] = "PROPERTY_HANDOVER";
|
|
636
|
+
AppointmentType["TRANSACTION_COMPLETED"] = "TRANSACTION_COMPLETED";
|
|
637
|
+
return AppointmentType;
|
|
769
638
|
}({});
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
NotificationEnv["STAGING"] = "staging";
|
|
776
|
-
return NotificationEnv;
|
|
639
|
+
let ScheduleType = /* @__PURE__ */ function(ScheduleType) {
|
|
640
|
+
ScheduleType["SCHEDULE_CREATED"] = "SCHEDULE_CREATED";
|
|
641
|
+
ScheduleType["DAILY_ACKNOWLEDGMENT"] = "DAILY_ACKNOWLEDGMENT";
|
|
642
|
+
ScheduleType["PRE_MEETING"] = "PRE_MEETING";
|
|
643
|
+
return ScheduleType;
|
|
777
644
|
}({});
|
|
778
|
-
let
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
645
|
+
let SchedulerStatus = /* @__PURE__ */ function(SchedulerStatus) {
|
|
646
|
+
SchedulerStatus["PENDING"] = "PENDING";
|
|
647
|
+
SchedulerStatus["SENT"] = "SENT";
|
|
648
|
+
SchedulerStatus["DELIVERED"] = "DELIVERED";
|
|
649
|
+
SchedulerStatus["FAILED"] = "FAILED";
|
|
650
|
+
SchedulerStatus["ACKNOWLEDGED"] = "ACKNOWLEDGED";
|
|
651
|
+
SchedulerStatus["CANCELLED"] = "CANCELLED";
|
|
652
|
+
return SchedulerStatus;
|
|
783
653
|
}({});
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
654
|
+
//#endregion
|
|
655
|
+
//#region src/generated/deal/deal.enum.ts
|
|
656
|
+
let DealStatus = /* @__PURE__ */ function(DealStatus) {
|
|
657
|
+
DealStatus["PENDING"] = "PENDING";
|
|
658
|
+
DealStatus["PROCESSING"] = "PROCESSING";
|
|
659
|
+
DealStatus["COMPLETED"] = "COMPLETED";
|
|
660
|
+
DealStatus["CANCELLED"] = "CANCELLED";
|
|
661
|
+
DealStatus["ON_HOLD"] = "ON_HOLD";
|
|
662
|
+
return DealStatus;
|
|
790
663
|
}({});
|
|
791
|
-
let
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
return NotificationScheduleStatus;
|
|
664
|
+
let DealFilterType = /* @__PURE__ */ function(DealFilterType) {
|
|
665
|
+
DealFilterType["ORDER_REQUEST_RENT"] = "ORDER_REQUEST_RENT";
|
|
666
|
+
DealFilterType["ORDER_REQUEST_SELL"] = "ORDER_REQUEST_SELL";
|
|
667
|
+
DealFilterType["CONSIGNMENT_REQUEST_RENT"] = "CONSIGNMENT_REQUEST_RENT";
|
|
668
|
+
DealFilterType["CONSIGNMENT_REQUEST_SELL"] = "CONSIGNMENT_REQUEST_SELL";
|
|
669
|
+
return DealFilterType;
|
|
798
670
|
}({});
|
|
799
|
-
let
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
671
|
+
let DealStepStatus = /* @__PURE__ */ function(DealStepStatus) {
|
|
672
|
+
DealStepStatus["PENDING"] = "PENDING";
|
|
673
|
+
DealStepStatus["PROCESSING"] = "PROCESSING";
|
|
674
|
+
DealStepStatus["COMPLETED"] = "COMPLETED";
|
|
675
|
+
DealStepStatus["CANCELLED"] = "CANCELLED";
|
|
676
|
+
DealStepStatus["ON_HOLD"] = "ON_HOLD";
|
|
677
|
+
return DealStepStatus;
|
|
804
678
|
}({});
|
|
805
|
-
let
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
679
|
+
let DealProgress = /* @__PURE__ */ function(DealProgress) {
|
|
680
|
+
DealProgress["INITIATED"] = "INITIATED";
|
|
681
|
+
DealProgress["CONSULTING"] = "CONSULTING";
|
|
682
|
+
DealProgress["SCHEDULE_SURVEY"] = "SCHEDULE_SURVEY";
|
|
683
|
+
DealProgress["NEGOTIATING"] = "NEGOTIATING";
|
|
684
|
+
DealProgress["DEPOSIT"] = "DEPOSIT";
|
|
685
|
+
DealProgress["PAYMENT"] = "PAYMENT";
|
|
686
|
+
DealProgress["HANDOVER"] = "HANDOVER";
|
|
687
|
+
DealProgress["COMPLETED"] = "COMPLETED";
|
|
688
|
+
DealProgress["CANCELLED"] = "CANCELLED";
|
|
689
|
+
return DealProgress;
|
|
814
690
|
}({});
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
691
|
+
let ParticipantRole = /* @__PURE__ */ function(ParticipantRole) {
|
|
692
|
+
ParticipantRole["CLIENT_BROKER"] = "CLIENT_BROKER";
|
|
693
|
+
ParticipantRole["INVESTOR_BROKER"] = "INVESTOR_BROKER";
|
|
694
|
+
ParticipantRole["OWNER"] = "OWNER";
|
|
695
|
+
ParticipantRole["INVESTOR"] = "INVESTOR";
|
|
696
|
+
ParticipantRole["CLIENT"] = "CLIENT";
|
|
697
|
+
ParticipantRole["INVESTOR_REPRESENTATIVE"] = "INVESTOR_REPRESENTATIVE";
|
|
698
|
+
return ParticipantRole;
|
|
699
|
+
}({});
|
|
700
|
+
let ParticipantStatus = /* @__PURE__ */ function(ParticipantStatus) {
|
|
701
|
+
ParticipantStatus["PENDING"] = "PENDING";
|
|
702
|
+
ParticipantStatus["APPROVED"] = "APPROVED";
|
|
703
|
+
ParticipantStatus["REJECTED"] = "REJECTED";
|
|
704
|
+
ParticipantStatus["ACKNOWLEDGED"] = "ACKNOWLEDGED";
|
|
705
|
+
ParticipantStatus["NO_RESPONSE"] = "NO_RESPONSE";
|
|
706
|
+
return ParticipantStatus;
|
|
827
707
|
}({});
|
|
828
708
|
//#endregion
|
|
829
709
|
//#region src/generated/payment-process/exceptions.ts
|
|
@@ -852,73 +732,131 @@ let PaymentInstallmentStatus = /* @__PURE__ */ function(PaymentInstallmentStatus
|
|
|
852
732
|
return PaymentInstallmentStatus;
|
|
853
733
|
}({});
|
|
854
734
|
//#endregion
|
|
855
|
-
//#region src/generated/
|
|
856
|
-
const
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
735
|
+
//#region src/generated/agreement-template/exceptions.ts
|
|
736
|
+
const AgreementTemplateExceptions = {
|
|
737
|
+
TEMPLATE_NOT_FOUND: "Agreement template not found",
|
|
738
|
+
FILE_NOT_FOUND: "Template file not found",
|
|
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"
|
|
861
745
|
};
|
|
862
746
|
//#endregion
|
|
863
|
-
//#region src/generated/
|
|
864
|
-
let
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
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;
|
|
871
759
|
}({});
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
760
|
+
//#endregion
|
|
761
|
+
//#region src/generated/broker/exceptions.ts
|
|
762
|
+
const BrokerExceptions = {
|
|
763
|
+
INVITED_USER_NOT_FOUND: "Invited user not found",
|
|
764
|
+
INPUT_DATA_IS_INVALID: "Input data is invalid"
|
|
765
|
+
};
|
|
766
|
+
//#endregion
|
|
767
|
+
//#region src/generated/broker/broker.enum.ts
|
|
768
|
+
let ConvertBrokerClientType = /* @__PURE__ */ function(ConvertBrokerClientType) {
|
|
769
|
+
ConvertBrokerClientType["VOICE"] = "VOICE";
|
|
770
|
+
ConvertBrokerClientType["CSV"] = "CSV";
|
|
771
|
+
ConvertBrokerClientType["EXCEL"] = "EXCEL";
|
|
772
|
+
return ConvertBrokerClientType;
|
|
879
773
|
}({});
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
774
|
+
//#endregion
|
|
775
|
+
//#region src/generated/consignment-request/exceptions.ts
|
|
776
|
+
const ConsignmentRequestExceptions = {
|
|
777
|
+
CONSIGNMENT_REQUEST_NOT_FOUND: "Consignment request not found",
|
|
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;
|
|
885
786
|
}({});
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
787
|
+
//#endregion
|
|
788
|
+
//#region src/generated/location/exceptions.ts
|
|
789
|
+
const ProvinceExceptions = { PROVINCE_NOT_FOUND: "Province not found" };
|
|
790
|
+
const DistrictExceptions = { DISTRICT_NOT_FOUND: "District not found" };
|
|
791
|
+
const WardExceptions = { WARD_NOT_FOUND: "Ward not found" };
|
|
792
|
+
//#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;
|
|
892
807
|
}({});
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
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
|
+
//#region src/generated/media/exceptions.ts
|
|
821
|
+
const MediaExceptions = {
|
|
822
|
+
MEDIA_NOT_FOUND: "Media not found",
|
|
823
|
+
MEDIA_TOO_LARGE: "Media too large",
|
|
824
|
+
MEDIA_NOT_ALLOWED: "Media not allowed",
|
|
825
|
+
FILE_TYPE_NOT_ALLOWED: "File type not allowed",
|
|
826
|
+
FILE_FORMAT_NOT_ALLOWED: "File format not allowed",
|
|
827
|
+
MEDIA_SHOULD_BE_PUBLIC: "Media should be public"
|
|
828
|
+
};
|
|
829
|
+
//#endregion
|
|
830
|
+
//#region src/generated/media/media.enum.ts
|
|
831
|
+
let MediaType = /* @__PURE__ */ function(MediaType) {
|
|
832
|
+
MediaType["IMAGE"] = "IMAGE";
|
|
833
|
+
MediaType["VIDEO"] = "VIDEO";
|
|
834
|
+
MediaType["AUDIO"] = "AUDIO";
|
|
835
|
+
MediaType["DOCUMENT"] = "DOCUMENT";
|
|
836
|
+
MediaType["OTHER"] = "OTHER";
|
|
837
|
+
return MediaType;
|
|
902
838
|
}({});
|
|
903
|
-
let
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
return ProjectCurrentStatus;
|
|
839
|
+
let MediaSortField = /* @__PURE__ */ function(MediaSortField) {
|
|
840
|
+
MediaSortField["CREATED_BY"] = "createdBy";
|
|
841
|
+
MediaSortField["UPDATED_BY"] = "updatedBy";
|
|
842
|
+
MediaSortField["NAME"] = "name";
|
|
843
|
+
MediaSortField["FILE_SIZE"] = "fileSize";
|
|
844
|
+
return MediaSortField;
|
|
910
845
|
}({});
|
|
911
846
|
//#endregion
|
|
912
|
-
//#region src/generated/
|
|
913
|
-
const
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
847
|
+
//#region src/generated/industrial-property/exceptions.ts
|
|
848
|
+
const IndustrialParkExceptions = { INDUSTRIAL_PARK_NOT_FOUND: "Industrial Park not found" };
|
|
849
|
+
const PropertyExceptions = {
|
|
850
|
+
PROPERTY_NOT_FOUND: "Property not found",
|
|
851
|
+
PROPERTY_NOT_ALLOWED_TO_UPDATE: "Not allowed to update this property",
|
|
852
|
+
PROPERTY_NOT_ALLOWED_TO_DELETE: "Not allowed to delete this property",
|
|
853
|
+
PROPERTY_ALREADY_EXISTS: "Property already exists"
|
|
854
|
+
};
|
|
855
|
+
//#endregion
|
|
856
|
+
//#region src/generated/ticket/exceptions.ts
|
|
857
|
+
const TicketExceptions = {
|
|
858
|
+
TICKETS_NOT_FOUND: "Tickets not found",
|
|
859
|
+
FORBIDEN_PERMISSION: "You do not have permission to approve tickets"
|
|
922
860
|
};
|
|
923
861
|
//#endregion
|
|
924
862
|
//#region src/generated/settings/exceptions.ts
|
|
@@ -929,11 +867,73 @@ const SettingExceptions = {
|
|
|
929
867
|
PHONE_NUMBER_IS_THE_SAME_AS_CURRENT: "Phone number is the same as the current phone number"
|
|
930
868
|
};
|
|
931
869
|
//#endregion
|
|
932
|
-
//#region src/generated/
|
|
933
|
-
const
|
|
934
|
-
|
|
935
|
-
|
|
870
|
+
//#region src/generated/client/exceptions.ts
|
|
871
|
+
const ClientExceptions = {
|
|
872
|
+
CLIENT_NOT_FOUND: "Client not found",
|
|
873
|
+
CLIENTS_NOT_FOUND: "One or more clients not found",
|
|
874
|
+
FORBIDDEN: "Forbidden",
|
|
875
|
+
CLIENTS_NOT_CREATED_BY_USER: "One or more clients are not created by the user"
|
|
876
|
+
};
|
|
877
|
+
const ClientCategoryExceptions = {
|
|
878
|
+
CLIENT_CATEGORY_NOT_FOUND: "Client category not found",
|
|
879
|
+
CLIENT_CATEGORY_ACCESS_DENIED: "Access denied to this client category",
|
|
880
|
+
CLIENT_CATEGORY_PERMISSION_DENIED: "Permission denied to client category",
|
|
881
|
+
CLIENT_CATEGORY_CREATION_FAILED: "Failed to create client category",
|
|
882
|
+
CLIENT_CATEGORY_UPDATE_FAILED: "Failed to update client category",
|
|
883
|
+
CLIENT_CATEGORY_DELETION_FAILED: "Failed to delete client category",
|
|
884
|
+
FORBIDDEN: "Forbidden"
|
|
885
|
+
};
|
|
886
|
+
//#endregion
|
|
887
|
+
//#region src/generated/client/client.enum.ts
|
|
888
|
+
let ClientNeed = /* @__PURE__ */ function(ClientNeed) {
|
|
889
|
+
ClientNeed["FOR_SALE"] = "FOR_SALE";
|
|
890
|
+
ClientNeed["FOR_LEASE"] = "FOR_LEASE";
|
|
891
|
+
return ClientNeed;
|
|
892
|
+
}({});
|
|
893
|
+
let ClientRoles = /* @__PURE__ */ function(ClientRoles) {
|
|
894
|
+
ClientRoles["BROKER"] = "BROKER";
|
|
895
|
+
ClientRoles["OWNER"] = "OWNER";
|
|
896
|
+
ClientRoles["INVESTOR"] = "INVESTOR";
|
|
897
|
+
return ClientRoles;
|
|
898
|
+
}({});
|
|
899
|
+
let ClientStatus = /* @__PURE__ */ function(ClientStatus) {
|
|
900
|
+
ClientStatus["POTENTIAL"] = "POTENTIAL";
|
|
901
|
+
ClientStatus["INTERESTED"] = "INTERESTED";
|
|
902
|
+
ClientStatus["NEGOTIATING"] = "NEGOTIATING";
|
|
903
|
+
ClientStatus["PURCHASED"] = "PURCHASED";
|
|
904
|
+
ClientStatus["LOST"] = "LOST";
|
|
905
|
+
ClientStatus["RESEARCHING"] = "RESEARCHING";
|
|
906
|
+
ClientStatus["FOLLOW_UP_NEEDED"] = "FOLLOW_UP_NEEDED";
|
|
907
|
+
return ClientStatus;
|
|
908
|
+
}({});
|
|
909
|
+
let ClientSource = /* @__PURE__ */ function(ClientSource) {
|
|
910
|
+
ClientSource["WEBSITE"] = "WEBSITE";
|
|
911
|
+
ClientSource["FACEBOOK"] = "FACEBOOK";
|
|
912
|
+
ClientSource["REFERRAL"] = "REFERRAL";
|
|
913
|
+
ClientSource["PHONE_CALL"] = "PHONE_CALL";
|
|
914
|
+
ClientSource["EMAIL"] = "EMAIL";
|
|
915
|
+
ClientSource["WALK_IN"] = "WALK_IN";
|
|
916
|
+
ClientSource["ADVERTISEMENT"] = "ADVERTISEMENT";
|
|
917
|
+
ClientSource["EVENT"] = "EVENT";
|
|
918
|
+
ClientSource["OTHER"] = "OTHER";
|
|
919
|
+
return ClientSource;
|
|
920
|
+
}({});
|
|
921
|
+
let ClientType = /* @__PURE__ */ function(ClientType) {
|
|
922
|
+
ClientType["PERSONAL"] = "PERSONAL";
|
|
923
|
+
ClientType["ORGANIZATION"] = "ORGANIZATION";
|
|
924
|
+
return ClientType;
|
|
925
|
+
}({});
|
|
926
|
+
//#endregion
|
|
927
|
+
//#region src/generated/deal/exceptions.ts
|
|
928
|
+
const DealExceptions = {
|
|
929
|
+
DEAL_NOT_FOUND: "Deal not found",
|
|
930
|
+
DEAL_STEP_NOT_FOUND: "Deal step not found"
|
|
931
|
+
};
|
|
932
|
+
const DealStepExceptions = {
|
|
933
|
+
DEAL_STEP_NOT_FOUND: "Deal step not found",
|
|
934
|
+
DEAL_STEP_PARTICIPANTS_NOT_FOUND: "Deal step participants not found"
|
|
936
935
|
};
|
|
936
|
+
const PreDealExceptions = { PRE_DEAL_NOT_FOUND: "Pre-deal not found" };
|
|
937
937
|
//#endregion
|
|
938
938
|
exports.AgreementExceptions = AgreementExceptions;
|
|
939
939
|
exports.AgreementTemplateExceptions = AgreementTemplateExceptions;
|