@investtal/models 1.4.3 → 1.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,24 +1,8 @@
1
1
  import { Insertable, Selectable, Transaction } from "kysely";
2
- import { ClientCategoriesFilter as ClientCategoriesFilter$1, ClientCategoryFilter, ClientFilter as ClientFilter$1, ClientsFilter as ClientsFilter$1 } from "@investtal/models";
3
2
 
4
3
  //#region src/common/constant.d.ts
5
4
  declare const BA_DINH_WARD_NO = "00004";
6
5
  //#endregion
7
- //#region src/common/types.d.ts
8
- type BaseResponse<T = any> = {
9
- data: T | undefined;
10
- code: number;
11
- message: string;
12
- requestId: string;
13
- metadata: Record<string, string> | undefined;
14
- };
15
- type BaseErrorResponse = {
16
- code: number;
17
- message: string;
18
- requestId: string;
19
- metadata: Record<string, string> | undefined;
20
- };
21
- //#endregion
22
6
  //#region src/generated/shared.d.ts
23
7
  type BaseRes = {};
24
8
  declare enum SortDirection {
@@ -40,51 +24,18 @@ type PolygonCoordinate = {
40
24
  z?: number;
41
25
  };
42
26
  //#endregion
43
- //#region src/generated/database.d.ts
44
- interface ProvincesTable {
45
- id: string;
46
- code: string;
47
- name: string;
48
- nameEn?: string;
49
- fullName: string;
50
- fullNameEn?: string;
51
- codeName: string;
52
- administrativeUnitId?: string;
53
- administrativeRegionId?: string;
54
- deletedAt?: Date;
55
- }
56
- interface WardsTable {
27
+ //#region src/generated/tables/agreement-templates.table.d.ts
28
+ interface AgreementTemplatesTable {
57
29
  id: string;
58
- code: string;
59
30
  name: string;
60
- nameEn?: string;
61
- fullName: string;
62
- fullNameEn?: string;
63
- codeName: string;
64
- provinceId: string;
65
- deletedAt?: Date;
66
- }
67
- interface ClientsTable {
68
- id: string;
69
- fullname: string;
70
- phoneNumber?: string;
71
- email?: string;
72
- address?: string;
73
- gender?: string;
74
- birthday?: Date;
75
- status: string;
76
- source?: string;
77
- budgetMin?: string;
78
- budgetMax?: string;
79
- budgetCurrency?: string;
80
- propertyTypes?: string[];
81
- lastContactDate?: Date;
82
- notes?: string;
31
+ description?: string;
32
+ version: number;
33
+ diff?: Record<string, unknown>;
34
+ type: string;
35
+ fileId: string;
83
36
  metadata?: Record<string, unknown>;
84
- code: string;
85
- clientType: string;
86
- needs?: string[];
87
- roles?: string[];
37
+ creatorRole: string;
38
+ parentTemplateId?: string;
88
39
  createdAt?: Date;
89
40
  updatedAt?: Date;
90
41
  deletedAt?: Date;
@@ -92,11 +43,13 @@ interface ClientsTable {
92
43
  updatedById?: string;
93
44
  deletedById?: string;
94
45
  }
95
- interface ClientCategoriesTable {
46
+ //#endregion
47
+ //#region src/generated/tables/agreement-types.table.d.ts
48
+ interface AgreementTypesTable {
96
49
  id: string;
97
50
  name: string;
98
- description?: string;
99
- createdForId?: string;
51
+ code: string;
52
+ roleCodes?: string[];
100
53
  createdAt?: Date;
101
54
  updatedAt?: Date;
102
55
  deletedAt?: Date;
@@ -104,18 +57,20 @@ interface ClientCategoriesTable {
104
57
  updatedById?: string;
105
58
  deletedById?: string;
106
59
  }
107
- interface PaymentProcessesTable {
60
+ //#endregion
61
+ //#region src/generated/tables/agreements.table.d.ts
62
+ interface AgreementsTable {
108
63
  id: string;
109
- agreementId: string;
110
- dealId: string;
111
- userConfirmedIds?: string[];
112
- totalPaid?: string;
113
- remainingAmount?: string;
114
- totalInstallments?: number;
115
- paidInstallments?: number;
116
- status: string;
117
- lastPaymentDate?: Date;
64
+ name: string;
65
+ version: number;
66
+ isApproved?: boolean;
118
67
  metadata?: Record<string, unknown>;
68
+ mediaIds?: string[];
69
+ approverId?: string;
70
+ relatedUserIds?: string[];
71
+ templateId?: string;
72
+ userToSignIds?: string[];
73
+ agreementTypeId: string;
119
74
  createdAt?: Date;
120
75
  updatedAt?: Date;
121
76
  deletedAt?: Date;
@@ -123,11 +78,15 @@ interface PaymentProcessesTable {
123
78
  updatedById?: string;
124
79
  deletedById?: string;
125
80
  }
126
- interface PaymentConfirmationsTable {
81
+ //#endregion
82
+ //#region src/generated/tables/appointment-confidentiality-agreements.table.d.ts
83
+ interface AppointmentConfidentialityAgreementsTable {
127
84
  id: string;
128
- paymentProcessId?: string;
129
- paymentInstallmentId?: string;
130
- userConfirmedId: string;
85
+ appointmentId: string;
86
+ mediaId: string;
87
+ uploadedAt: Date;
88
+ documentName?: string;
89
+ documentOrder: number;
131
90
  createdAt?: Date;
132
91
  updatedAt?: Date;
133
92
  deletedAt?: Date;
@@ -135,62 +94,17 @@ interface PaymentConfirmationsTable {
135
94
  updatedById?: string;
136
95
  deletedById?: string;
137
96
  }
138
- interface ClientCategoryClientsTable {
139
- a: string;
140
- b: string;
141
- }
142
- interface MediasTable {
143
- id: string;
144
- name: string;
145
- isPrivate?: boolean;
146
- etag: string;
147
- bucket: string;
148
- versionId?: string;
149
- contentType?: string;
150
- originalName: string;
151
- metadata?: Record<string, unknown>;
152
- fileSize?: number;
153
- type: string;
154
- createdAt?: Date;
155
- updatedAt?: Date;
156
- deletedAt?: Date;
157
- createdById: string;
158
- updatedById?: string;
159
- }
160
- interface ForSalesTable {
97
+ //#endregion
98
+ //#region src/generated/tables/appointment-participants.table.d.ts
99
+ interface AppointmentParticipantsTable {
161
100
  id: string;
162
- title: string;
163
- content: string;
164
- address: string;
165
- latitude: number;
166
- longitude: number;
167
- landArea: number;
168
- constructionArea: number;
169
- roadWidth: number;
170
- roadType: string;
171
- floorCount: number;
172
- buildingStandard: string;
173
- depreciationPercent: number;
174
- infrastructureStatus: string;
175
- utilities?: string[];
176
- totalPrice: number;
177
- pricePerSqm: number;
178
- negotiable?: boolean;
179
- propertyType: string;
180
- postType: string;
181
- note?: Record<string, unknown>;
182
- seoTitle?: string;
183
- seoDescription?: string;
184
- seoThumbnail?: string;
101
+ appointmentId: string;
102
+ dealStepParticipantId: string;
185
103
  status: string;
186
- approveStatus: string;
187
- attachmentIds?: string[];
188
- imageIds?: string[];
189
- code: string;
190
- slug: string;
191
- propertyId?: string;
192
- projectId?: string;
193
- version?: number;
104
+ isRequired: boolean;
105
+ respondedAt?: Date;
106
+ responseComment?: string;
107
+ acknowledgedAt?: Date;
194
108
  createdAt?: Date;
195
109
  updatedAt?: Date;
196
110
  deletedAt?: Date;
@@ -198,32 +112,30 @@ interface ForSalesTable {
198
112
  updatedById?: string;
199
113
  deletedById?: string;
200
114
  }
201
- interface UserHistoriesTable {
115
+ //#endregion
116
+ //#region src/generated/tables/appointments.table.d.ts
117
+ interface AppointmentsTable {
202
118
  id: string;
203
- createdAt?: Date;
204
- updatedAt?: Date;
205
- deletedAt?: Date;
206
- createdById: string;
207
- updatedById?: string;
208
- deletedById?: string;
209
- userId: string;
119
+ title: string;
120
+ description?: string;
210
121
  type: string;
211
- }
212
- interface SessionsTable {
213
- id: string;
122
+ status: string;
123
+ startAt: Date;
124
+ endAt: Date;
125
+ address?: string;
126
+ lat: number;
127
+ lng: number;
128
+ dealId?: string;
129
+ wardId: string;
214
130
  createdAt?: Date;
215
131
  updatedAt?: Date;
216
132
  deletedAt?: Date;
217
133
  createdById: string;
218
134
  updatedById?: string;
219
135
  deletedById?: string;
220
- userId: string;
221
- token: string;
222
- ipAddress: string;
223
- userAgent: string;
224
- expiresAt: Date;
225
- isRevoked?: boolean;
226
136
  }
137
+ //#endregion
138
+ //#region src/generated/tables/black-lists.table.d.ts
227
139
  interface BlackListsTable {
228
140
  id: string;
229
141
  entityType: string;
@@ -241,17 +153,16 @@ interface BlackListsTable {
241
153
  updatedById?: string;
242
154
  deletedById?: string;
243
155
  }
244
- interface OrganizationsTable {
156
+ //#endregion
157
+ //#region src/generated/tables/chat-group-members.table.d.ts
158
+ interface ChatGroupMembersTable {
245
159
  id: string;
246
- name: string;
247
- presentativeEmail: string;
248
- domainEmail?: string;
249
- phoneNumber: string;
250
- taxCode: string;
251
- slug?: string;
252
- headOfficeAddress?: string;
253
- businessLicenseImageId?: string;
254
- representativeInvestorId: string;
160
+ chatGroupId: string;
161
+ userId: string;
162
+ chatGroupRole: string;
163
+ joinedAt: Date;
164
+ leftAt?: Date;
165
+ isNotified: boolean;
255
166
  createdAt?: Date;
256
167
  updatedAt?: Date;
257
168
  deletedAt?: Date;
@@ -259,19 +170,13 @@ interface OrganizationsTable {
259
170
  updatedById?: string;
260
171
  deletedById?: string;
261
172
  }
262
- interface TicketsTable {
173
+ //#endregion
174
+ //#region src/generated/tables/chat-groups.table.d.ts
175
+ interface ChatGroupsTable {
263
176
  id: string;
264
177
  name: string;
265
- description: string;
266
- type: string;
267
- status: string;
268
- metadata?: Record<string, unknown>;
269
- requestUserId: string;
270
- nextApproverUserId: string;
271
- supervisorId?: string;
272
- approvedAt?: Date;
273
- rejectReason?: string;
274
- rejectedAt?: Date;
178
+ isDirectMessage: boolean;
179
+ pinnedMessageId?: string;
275
180
  createdAt?: Date;
276
181
  updatedAt?: Date;
277
182
  deletedAt?: Date;
@@ -279,18 +184,18 @@ interface TicketsTable {
279
184
  updatedById?: string;
280
185
  deletedById?: string;
281
186
  }
282
- interface AgreementsTable {
187
+ //#endregion
188
+ //#region src/generated/tables/chat-messages.table.d.ts
189
+ interface ChatMessagesTable {
283
190
  id: string;
284
- name: string;
285
- version: number;
286
- isApproved?: boolean;
287
- metadata?: Record<string, unknown>;
191
+ chatGroupId: string;
288
192
  mediaIds?: string[];
289
- approverId?: string;
290
- relatedUserIds?: string[];
291
- templateId?: string;
292
- userToSignIds?: string[];
293
- agreementTypeId: string;
193
+ content: string;
194
+ sentAt: Date;
195
+ metadata?: Record<string, unknown>;
196
+ isPinned: boolean;
197
+ messageType: string;
198
+ replyMessageId?: string;
294
199
  createdAt?: Date;
295
200
  updatedAt?: Date;
296
201
  deletedAt?: Date;
@@ -298,17 +203,13 @@ interface AgreementsTable {
298
203
  updatedById?: string;
299
204
  deletedById?: string;
300
205
  }
301
- interface AgreementTemplatesTable {
206
+ //#endregion
207
+ //#region src/generated/tables/client-categories.table.d.ts
208
+ interface ClientCategoriesTable {
302
209
  id: string;
303
210
  name: string;
304
211
  description?: string;
305
- version: number;
306
- diff?: Record<string, unknown>;
307
- type: string;
308
- fileId: string;
309
- metadata?: Record<string, unknown>;
310
- creatorRole: string;
311
- parentTemplateId?: string;
212
+ createdForId?: string;
312
213
  createdAt?: Date;
313
214
  updatedAt?: Date;
314
215
  deletedAt?: Date;
@@ -316,57 +217,35 @@ interface AgreementTemplatesTable {
316
217
  updatedById?: string;
317
218
  deletedById?: string;
318
219
  }
319
- interface AgreementTypesTable {
320
- id: string;
321
- name: string;
322
- code: string;
323
- roleCodes?: string[];
324
- createdAt?: Date;
325
- updatedAt?: Date;
326
- deletedAt?: Date;
327
- createdById: string;
328
- updatedById?: string;
329
- deletedById?: string;
330
- }
331
- interface DigitalSignaturesTable {
332
- id: string;
333
- signedAt: Date;
334
- signature?: Record<string, unknown>;
335
- agreementId: string;
336
- signerId: string;
337
- createdAt?: Date;
338
- updatedAt?: Date;
339
- deletedAt?: Date;
340
- createdById: string;
341
- updatedById?: string;
342
- deletedById?: string;
220
+ //#endregion
221
+ //#region src/generated/tables/client-category-clients.table.d.ts
222
+ interface ClientCategoryClientsTable {
223
+ a: string;
224
+ b: string;
343
225
  }
344
- interface UsersTable {
226
+ //#endregion
227
+ //#region src/generated/tables/clients.table.d.ts
228
+ interface ClientsTable {
345
229
  id: string;
230
+ fullname: string;
231
+ phoneNumber?: string;
346
232
  email?: string;
347
- phoneNumber: string;
348
- username: string;
349
- passwordHash: string;
350
- openPlatform: string;
351
- utmCampaign: string;
352
- utmMedium: string;
353
- utmSource: string;
354
- metadata?: Record<string, unknown>;
355
- ipAddress: string;
356
233
  address?: string;
357
- birthday?: Date;
358
- fullname?: string;
359
- languages?: string[];
360
234
  gender?: string;
235
+ birthday?: Date;
361
236
  status: string;
362
- avatarImageId?: string;
363
- nickname?: string;
364
- isVerifiedBroker?: boolean;
365
- isVerifiedInvestorRepresentative?: boolean;
366
- organizationId?: string;
367
- provinceId?: string;
368
- wardId?: string;
369
- workAreas?: Record<string, unknown>[];
237
+ source?: string;
238
+ budgetMin?: string;
239
+ budgetMax?: string;
240
+ budgetCurrency?: string;
241
+ propertyTypes?: string[];
242
+ lastContactDate?: Date;
243
+ notes?: string;
244
+ metadata?: Record<string, unknown>;
245
+ code: string;
246
+ clientType: string;
247
+ needs?: string[];
248
+ roles?: string[];
370
249
  createdAt?: Date;
371
250
  updatedAt?: Date;
372
251
  deletedAt?: Date;
@@ -374,11 +253,20 @@ interface UsersTable {
374
253
  updatedById?: string;
375
254
  deletedById?: string;
376
255
  }
377
- interface RolesTable {
256
+ //#endregion
257
+ //#region src/generated/tables/consignment-requests.table.d.ts
258
+ interface ConsignmentRequestsTable {
378
259
  id: string;
379
260
  name: string;
380
- code: string;
381
- description?: string;
261
+ phoneNumber: string;
262
+ address?: string;
263
+ message?: string;
264
+ type: string;
265
+ brokerId?: string;
266
+ investorId?: string;
267
+ isApproved?: boolean;
268
+ metadata?: Record<string, unknown>;
269
+ ownerId?: string;
382
270
  createdAt?: Date;
383
271
  updatedAt?: Date;
384
272
  deletedAt?: Date;
@@ -386,14 +274,13 @@ interface RolesTable {
386
274
  updatedById?: string;
387
275
  deletedById?: string;
388
276
  }
389
- interface PermissionsTable {
277
+ //#endregion
278
+ //#region src/generated/tables/deal-step-participants.table.d.ts
279
+ interface DealStepParticipantsTable {
390
280
  id: string;
391
- name?: string;
392
- description?: string;
393
- obj: string;
394
- act: string;
395
- tag?: string;
396
- code: string;
281
+ stepId: string;
282
+ userId: string;
283
+ participantRole: string;
397
284
  createdAt?: Date;
398
285
  updatedAt?: Date;
399
286
  deletedAt?: Date;
@@ -401,14 +288,18 @@ interface PermissionsTable {
401
288
  updatedById?: string;
402
289
  deletedById?: string;
403
290
  }
404
- interface RolePermissionsTable {
405
- roleId: string;
406
- permissionId: string;
407
- }
408
- interface UserToRoleTable {
291
+ //#endregion
292
+ //#region src/generated/tables/deal-steps.table.d.ts
293
+ interface DealStepsTable {
409
294
  id: string;
410
- userId: string;
411
- roleId: string;
295
+ times?: number;
296
+ stepType: string;
297
+ description: string;
298
+ status: string;
299
+ completedAt?: Date;
300
+ metadata?: Record<string, unknown>;
301
+ dealId: string;
302
+ chatGroupId?: string;
412
303
  createdAt?: Date;
413
304
  updatedAt?: Date;
414
305
  deletedAt?: Date;
@@ -416,14 +307,18 @@ interface UserToRoleTable {
416
307
  updatedById?: string;
417
308
  deletedById?: string;
418
309
  }
419
- interface OtpsTable {
310
+ //#endregion
311
+ //#region src/generated/tables/deals.table.d.ts
312
+ interface DealsTable {
420
313
  id: string;
421
- token: string;
422
- type: string;
423
- userId?: string;
424
- expiresAt: Date;
314
+ brokerId: string;
315
+ clientId: string;
316
+ investorId: string;
317
+ orderRequestId?: string;
318
+ consignmentRequestId?: string;
425
319
  metadata?: Record<string, unknown>;
426
- purpose: string;
320
+ status: string;
321
+ chatGroupId?: string;
427
322
  createdAt?: Date;
428
323
  updatedAt?: Date;
429
324
  deletedAt?: Date;
@@ -431,11 +326,14 @@ interface OtpsTable {
431
326
  updatedById?: string;
432
327
  deletedById?: string;
433
328
  }
434
- interface ChatGroupsTable {
329
+ //#endregion
330
+ //#region src/generated/tables/digital-signatures.table.d.ts
331
+ interface DigitalSignaturesTable {
435
332
  id: string;
436
- name: string;
437
- isDirectMessage: boolean;
438
- pinnedMessageId?: string;
333
+ signedAt: Date;
334
+ signature?: Record<string, unknown>;
335
+ agreementId: string;
336
+ signerId: string;
439
337
  createdAt?: Date;
440
338
  updatedAt?: Date;
441
339
  deletedAt?: Date;
@@ -443,14 +341,12 @@ interface ChatGroupsTable {
443
341
  updatedById?: string;
444
342
  deletedById?: string;
445
343
  }
446
- interface ChatGroupMembersTable {
344
+ //#endregion
345
+ //#region src/generated/tables/document-to-project.table.d.ts
346
+ interface DocumentToProjectTable {
447
347
  id: string;
448
- chatGroupId: string;
449
- userId: string;
450
- chatGroupRole: string;
451
- joinedAt: Date;
452
- leftAt?: Date;
453
- isNotified: boolean;
348
+ documentId: string;
349
+ projectId: string;
454
350
  createdAt?: Date;
455
351
  updatedAt?: Date;
456
352
  deletedAt?: Date;
@@ -458,16 +354,20 @@ interface ChatGroupMembersTable {
458
354
  updatedById?: string;
459
355
  deletedById?: string;
460
356
  }
461
- interface ChatMessagesTable {
357
+ //#endregion
358
+ //#region src/generated/tables/documents.table.d.ts
359
+ interface DocumentsTable {
462
360
  id: string;
463
- chatGroupId: string;
464
- mediaIds?: string[];
465
- content: string;
466
- sentAt: Date;
361
+ name: string;
362
+ version: number;
363
+ isApproved?: boolean;
467
364
  metadata?: Record<string, unknown>;
468
- isPinned: boolean;
469
- messageType: string;
470
- replyMessageId?: string;
365
+ mediaIds?: string[];
366
+ approverId?: string;
367
+ relatedUserIds?: string[];
368
+ category: string;
369
+ type: string;
370
+ notes?: string;
471
371
  createdAt?: Date;
472
372
  updatedAt?: Date;
473
373
  deletedAt?: Date;
@@ -475,19 +375,42 @@ interface ChatMessagesTable {
475
375
  updatedById?: string;
476
376
  deletedById?: string;
477
377
  }
478
- interface AppointmentsTable {
378
+ //#endregion
379
+ //#region src/generated/tables/for-sales.table.d.ts
380
+ interface ForSalesTable {
479
381
  id: string;
480
382
  title: string;
481
- description?: string;
482
- type: string;
383
+ content: string;
384
+ address: string;
385
+ latitude: number;
386
+ longitude: number;
387
+ landArea: number;
388
+ constructionArea: number;
389
+ roadWidth: number;
390
+ roadType: string;
391
+ floorCount: number;
392
+ buildingStandard: string;
393
+ depreciationPercent: number;
394
+ infrastructureStatus: string;
395
+ utilities?: string[];
396
+ totalPrice: number;
397
+ pricePerSqm: number;
398
+ negotiable?: boolean;
399
+ propertyType: string;
400
+ postType: string;
401
+ note?: Record<string, unknown>;
402
+ seoTitle?: string;
403
+ seoDescription?: string;
404
+ seoThumbnail?: string;
483
405
  status: string;
484
- startAt: Date;
485
- endAt: Date;
486
- address?: string;
487
- lat: number;
488
- lng: number;
489
- dealId?: string;
490
- wardId: string;
406
+ approveStatus: string;
407
+ attachmentIds?: string[];
408
+ imageIds?: string[];
409
+ code: string;
410
+ slug: string;
411
+ propertyId?: string;
412
+ projectId?: string;
413
+ version?: number;
491
414
  createdAt?: Date;
492
415
  updatedAt?: Date;
493
416
  deletedAt?: Date;
@@ -495,15 +418,14 @@ interface AppointmentsTable {
495
418
  updatedById?: string;
496
419
  deletedById?: string;
497
420
  }
498
- interface AppointmentParticipantsTable {
421
+ //#endregion
422
+ //#region src/generated/tables/identities.table.d.ts
423
+ interface IdentitiesTable {
499
424
  id: string;
500
- appointmentId: string;
501
- dealStepParticipantId: string;
502
- status: string;
503
- isRequired: boolean;
504
- respondedAt?: Date;
505
- responseComment?: string;
506
- acknowledgedAt?: Date;
425
+ type: string;
426
+ verificationStatus: string;
427
+ nationality: string;
428
+ userId: string;
507
429
  createdAt?: Date;
508
430
  updatedAt?: Date;
509
431
  deletedAt?: Date;
@@ -511,13 +433,15 @@ interface AppointmentParticipantsTable {
511
433
  updatedById?: string;
512
434
  deletedById?: string;
513
435
  }
514
- interface AppointmentConfidentialityAgreementsTable {
436
+ //#endregion
437
+ //#region src/generated/tables/identity-cards.table.d.ts
438
+ interface IdentityCardsTable {
515
439
  id: string;
516
- appointmentId: string;
517
- mediaId: string;
518
- uploadedAt: Date;
519
- documentName?: string;
520
- documentOrder: number;
440
+ idCardEncrypted: string;
441
+ metadata?: Record<string, unknown>;
442
+ idCardFrontImageId?: string;
443
+ idCardBackImageId?: string;
444
+ identityId: string;
521
445
  createdAt?: Date;
522
446
  updatedAt?: Date;
523
447
  deletedAt?: Date;
@@ -525,11 +449,14 @@ interface AppointmentConfidentialityAgreementsTable {
525
449
  updatedById?: string;
526
450
  deletedById?: string;
527
451
  }
528
- interface DealStepParticipantsTable {
452
+ //#endregion
453
+ //#region src/generated/tables/identity-verification-processes.table.d.ts
454
+ interface IdentityVerificationProcessesTable {
529
455
  id: string;
530
- stepId: string;
531
- userId: string;
532
- participantRole: string;
456
+ name: string;
457
+ details?: Record<string, unknown>;
458
+ note?: Record<string, unknown>;
459
+ identityId: string;
533
460
  createdAt?: Date;
534
461
  updatedAt?: Date;
535
462
  deletedAt?: Date;
@@ -537,47 +464,63 @@ interface DealStepParticipantsTable {
537
464
  updatedById?: string;
538
465
  deletedById?: string;
539
466
  }
540
- interface ConsignmentRequestsTable {
467
+ //#endregion
468
+ //#region src/generated/tables/jobs.table.d.ts
469
+ interface JobsTable {
541
470
  id: string;
542
471
  name: string;
543
- phoneNumber: string;
544
- address?: string;
545
- message?: string;
546
- type: string;
547
- brokerId?: string;
548
- investorId?: string;
549
- isApproved?: boolean;
472
+ jobType: string;
473
+ status: string;
474
+ entityType?: string;
475
+ entityId?: string;
550
476
  metadata?: Record<string, unknown>;
551
- ownerId?: string;
477
+ reminderConfig?: Record<string, unknown>;
478
+ scheduledAt?: Date;
479
+ startedAt?: Date;
480
+ completedAt?: Date;
481
+ failedAt?: Date;
482
+ retryCount: number;
483
+ maxRetries: number;
484
+ lastError?: string;
485
+ payload?: Record<string, unknown>;
486
+ result?: Record<string, unknown>;
487
+ priority: number;
488
+ tags?: string[];
552
489
  createdAt?: Date;
553
490
  updatedAt?: Date;
554
491
  deletedAt?: Date;
555
- createdById: string;
492
+ createdById?: string;
556
493
  updatedById?: string;
557
494
  deletedById?: string;
558
495
  }
559
- interface OrderRequestsTable {
496
+ //#endregion
497
+ //#region src/generated/tables/medias.table.d.ts
498
+ interface MediasTable {
560
499
  id: string;
561
500
  name: string;
562
- phoneNumber: string;
563
- address: string;
564
- type: string;
565
- isApproved?: boolean;
501
+ isPrivate?: boolean;
502
+ etag: string;
503
+ bucket: string;
504
+ versionId?: string;
505
+ contentType?: string;
506
+ originalName: string;
566
507
  metadata?: Record<string, unknown>;
567
- clientId?: string;
568
- brokerId?: string;
508
+ fileSize?: number;
509
+ type: string;
569
510
  createdAt?: Date;
570
511
  updatedAt?: Date;
571
512
  deletedAt?: Date;
572
513
  createdById: string;
573
514
  updatedById?: string;
574
- deletedById?: string;
575
515
  }
576
- interface NotificationEventsTable {
516
+ //#endregion
517
+ //#region src/generated/tables/notification-channel-translations.table.d.ts
518
+ interface NotificationChannelTranslationsTable {
577
519
  id: string;
578
- code: string;
520
+ lang: string;
521
+ name: string;
579
522
  description?: string;
580
- metadata?: Record<string, unknown>;
523
+ channelId: string;
581
524
  createdAt?: Date;
582
525
  updatedAt?: Date;
583
526
  deletedAt?: Date;
@@ -585,6 +528,8 @@ interface NotificationEventsTable {
585
528
  updatedById?: string;
586
529
  deletedById?: string;
587
530
  }
531
+ //#endregion
532
+ //#region src/generated/tables/notification-channels.table.d.ts
588
533
  interface NotificationChannelsTable {
589
534
  id: string;
590
535
  code: string;
@@ -599,12 +544,13 @@ interface NotificationChannelsTable {
599
544
  updatedById?: string;
600
545
  deletedById?: string;
601
546
  }
602
- interface NotificationChannelTranslationsTable {
547
+ //#endregion
548
+ //#region src/generated/tables/notification-events.table.d.ts
549
+ interface NotificationEventsTable {
603
550
  id: string;
604
- lang: string;
605
- name: string;
551
+ code: string;
606
552
  description?: string;
607
- channelId: string;
553
+ metadata?: Record<string, unknown>;
608
554
  createdAt?: Date;
609
555
  updatedAt?: Date;
610
556
  deletedAt?: Date;
@@ -612,6 +558,8 @@ interface NotificationChannelTranslationsTable {
612
558
  updatedById?: string;
613
559
  deletedById?: string;
614
560
  }
561
+ //#endregion
562
+ //#region src/generated/tables/notification-messages.table.d.ts
615
563
  interface NotificationMessagesTable {
616
564
  id: string;
617
565
  userId: string;
@@ -634,6 +582,8 @@ interface NotificationMessagesTable {
634
582
  updatedById?: string;
635
583
  deletedById?: string;
636
584
  }
585
+ //#endregion
586
+ //#region src/generated/tables/notification-schedules.table.d.ts
637
587
  interface NotificationSchedulesTable {
638
588
  id: string;
639
589
  templateId: string;
@@ -663,12 +613,18 @@ interface NotificationSchedulesTable {
663
613
  updatedById?: string;
664
614
  deletedById?: string;
665
615
  }
666
- interface UserNotificationSettingsTable {
616
+ //#endregion
617
+ //#region src/generated/tables/order-requests.table.d.ts
618
+ interface OrderRequestsTable {
667
619
  id: string;
668
- userId: string;
669
- channelId: string;
670
- isEnabled: boolean;
620
+ name: string;
621
+ phoneNumber: string;
622
+ address: string;
623
+ type: string;
624
+ isApproved?: boolean;
671
625
  metadata?: Record<string, unknown>;
626
+ clientId?: string;
627
+ brokerId?: string;
672
628
  createdAt?: Date;
673
629
  updatedAt?: Date;
674
630
  deletedAt?: Date;
@@ -676,12 +632,19 @@ interface UserNotificationSettingsTable {
676
632
  updatedById?: string;
677
633
  deletedById?: string;
678
634
  }
679
- interface IdentitiesTable {
635
+ //#endregion
636
+ //#region src/generated/tables/organizations.table.d.ts
637
+ interface OrganizationsTable {
680
638
  id: string;
681
- type: string;
682
- verificationStatus: string;
683
- nationality: string;
684
- userId: string;
639
+ name: string;
640
+ presentativeEmail: string;
641
+ domainEmail?: string;
642
+ phoneNumber: string;
643
+ taxCode: string;
644
+ slug?: string;
645
+ headOfficeAddress?: string;
646
+ businessLicenseImageId?: string;
647
+ representativeInvestorId: string;
685
648
  createdAt?: Date;
686
649
  updatedAt?: Date;
687
650
  deletedAt?: Date;
@@ -689,13 +652,16 @@ interface IdentitiesTable {
689
652
  updatedById?: string;
690
653
  deletedById?: string;
691
654
  }
692
- interface IdentityCardsTable {
655
+ //#endregion
656
+ //#region src/generated/tables/otps.table.d.ts
657
+ interface OtpsTable {
693
658
  id: string;
694
- idCardEncrypted: string;
659
+ token: string;
660
+ type: string;
661
+ userId?: string;
662
+ expiresAt: Date;
695
663
  metadata?: Record<string, unknown>;
696
- idCardFrontImageId?: string;
697
- idCardBackImageId?: string;
698
- identityId: string;
664
+ purpose: string;
699
665
  createdAt?: Date;
700
666
  updatedAt?: Date;
701
667
  deletedAt?: Date;
@@ -703,28 +669,40 @@ interface IdentityCardsTable {
703
669
  updatedById?: string;
704
670
  deletedById?: string;
705
671
  }
706
- interface IdentityVerificationProcessesTable {
672
+ //#endregion
673
+ //#region src/generated/tables/outbox-consumer-cursors.table.d.ts
674
+ interface OutboxConsumerCursorsTable {
675
+ consumerId: string;
676
+ eventId: string;
677
+ status: string;
678
+ processedAt: Date;
679
+ }
680
+ //#endregion
681
+ //#region src/generated/tables/outbox-events.table.d.ts
682
+ interface OutboxEventsTable {
707
683
  id: string;
708
- name: string;
709
- details?: Record<string, unknown>;
710
- note?: Record<string, unknown>;
711
- identityId: string;
712
- createdAt?: Date;
713
- updatedAt?: Date;
714
- deletedAt?: Date;
715
- createdById: string;
716
- updatedById?: string;
717
- deletedById?: string;
684
+ aggregateType: string;
685
+ aggregateId: string;
686
+ eventType: string;
687
+ eventVersion: number;
688
+ payload: Record<string, unknown>;
689
+ metadata: Record<string, unknown>;
690
+ status: string;
691
+ attempts: number;
692
+ maxAttempts: number;
693
+ lastError?: string;
694
+ scheduledAt?: Date;
695
+ publishedAt?: Date;
696
+ createdAt: Date;
697
+ updatedAt: Date;
718
698
  }
719
- interface RegisterAccountRequestsTable {
699
+ //#endregion
700
+ //#region src/generated/tables/payment-confirmations.table.d.ts
701
+ interface PaymentConfirmationsTable {
720
702
  id: string;
721
- invitationCode: string;
722
- roleId: string;
723
- requiresVerification?: string[];
724
- isVerified: boolean;
725
- rejectionReason?: string;
726
- expiresAt: Date;
727
- userId?: string;
703
+ paymentProcessId?: string;
704
+ paymentInstallmentId?: string;
705
+ userConfirmedId: string;
728
706
  createdAt?: Date;
729
707
  updatedAt?: Date;
730
708
  deletedAt?: Date;
@@ -732,34 +710,41 @@ interface RegisterAccountRequestsTable {
732
710
  updatedById?: string;
733
711
  deletedById?: string;
734
712
  }
735
- interface RegisterAccountVerificationsTable {
713
+ //#endregion
714
+ //#region src/generated/tables/payment-installments.table.d.ts
715
+ interface PaymentInstallmentsTable {
736
716
  id: string;
737
- invitationCode: string;
738
- identifier: string;
739
- otpCode: string;
740
- registerAccountRequestId: string;
741
- expiresAt: Date;
742
- isVerified: boolean;
743
- resendOtpAttempts: number;
744
- verifyOtpAttempts: number;
745
- verificationType: string;
717
+ paymentProcessId: string;
718
+ dealId: string;
719
+ userConfirmedIds?: string[];
720
+ installmentNo: number;
721
+ paymentAmount: string;
722
+ paymentDate?: Date;
723
+ dueDate?: Date;
724
+ status: string;
725
+ note?: string;
726
+ metadata?: Record<string, unknown>;
746
727
  createdAt?: Date;
747
728
  updatedAt?: Date;
748
729
  deletedAt?: Date;
749
- createdById?: string;
730
+ createdById: string;
750
731
  updatedById?: string;
751
732
  deletedById?: string;
752
733
  }
753
- interface DealsTable {
734
+ //#endregion
735
+ //#region src/generated/tables/payment-processes.table.d.ts
736
+ interface PaymentProcessesTable {
754
737
  id: string;
755
- brokerId: string;
756
- clientId: string;
757
- investorId: string;
758
- orderRequestId?: string;
759
- consignmentRequestId?: string;
760
- metadata?: Record<string, unknown>;
738
+ agreementId: string;
739
+ dealId: string;
740
+ userConfirmedIds?: string[];
741
+ totalPaid?: string;
742
+ remainingAmount?: string;
743
+ totalInstallments?: number;
744
+ paidInstallments?: number;
761
745
  status: string;
762
- chatGroupId?: string;
746
+ lastPaymentDate?: Date;
747
+ metadata?: Record<string, unknown>;
763
748
  createdAt?: Date;
764
749
  updatedAt?: Date;
765
750
  deletedAt?: Date;
@@ -767,16 +752,16 @@ interface DealsTable {
767
752
  updatedById?: string;
768
753
  deletedById?: string;
769
754
  }
770
- interface DealStepsTable {
755
+ //#endregion
756
+ //#region src/generated/tables/permissions.table.d.ts
757
+ interface PermissionsTable {
771
758
  id: string;
772
- times?: number;
773
- stepType: string;
774
- description: string;
775
- status: string;
776
- completedAt?: Date;
777
- metadata?: Record<string, unknown>;
778
- dealId: string;
779
- chatGroupId?: string;
759
+ name?: string;
760
+ description?: string;
761
+ obj: string;
762
+ act: string;
763
+ tag?: string;
764
+ code: string;
780
765
  createdAt?: Date;
781
766
  updatedAt?: Date;
782
767
  deletedAt?: Date;
@@ -784,6 +769,8 @@ interface DealStepsTable {
784
769
  updatedById?: string;
785
770
  deletedById?: string;
786
771
  }
772
+ //#endregion
773
+ //#region src/generated/tables/pre-deals.table.d.ts
787
774
  interface PreDealsTable {
788
775
  id: string;
789
776
  dealId?: string;
@@ -798,6 +785,34 @@ interface PreDealsTable {
798
785
  updatedById?: string;
799
786
  deletedById?: string;
800
787
  }
788
+ //#endregion
789
+ //#region src/generated/tables/project-to-brokers.table.d.ts
790
+ interface ProjectToBrokersTable {
791
+ projectId: string;
792
+ userId: string;
793
+ }
794
+ //#endregion
795
+ //#region src/generated/tables/project-to-medias.table.d.ts
796
+ interface ProjectToMediasTable {
797
+ a: string;
798
+ b: string;
799
+ }
800
+ //#endregion
801
+ //#region src/generated/tables/project-utilities.table.d.ts
802
+ interface ProjectUtilitiesTable {
803
+ id: string;
804
+ projectId: string;
805
+ utilityId: string;
806
+ description?: string;
807
+ createdAt?: Date;
808
+ updatedAt?: Date;
809
+ deletedAt?: Date;
810
+ createdById: string;
811
+ updatedById?: string;
812
+ deletedById?: string;
813
+ }
814
+ //#endregion
815
+ //#region src/generated/tables/projects.table.d.ts
801
816
  interface ProjectsTable {
802
817
  id: string;
803
818
  name: string;
@@ -861,119 +876,26 @@ interface ProjectsTable {
861
876
  corporateTaxIncentives?: string;
862
877
  importExportTaxIncentives?: string;
863
878
  investmentConditions?: string;
864
- policyDescription?: string;
865
- investmentIncentives?: string;
866
- firePreventionSystem?: string;
867
- telecomInfrastructure?: string;
868
- wasteManagementSystem?: string;
869
- greenParkArea?: number;
870
- infrastructureOtherDescription?: string;
871
- landCurrentStatus?: string;
872
- description?: string;
873
- sourceUrl?: string;
874
- crawlerUpdatedAt?: Date;
875
- status: string;
876
- boApproverId?: string;
877
- metadata?: Record<string, unknown>;
878
- projectCurrentStatus: string;
879
- isAuthorizedForSystem?: boolean;
880
- authorizationStarttime?: Date;
881
- authorizationEndtime?: Date;
882
- serviceFees?: Record<string, unknown>[];
883
- brokerIds?: string[];
884
- createdAt?: Date;
885
- updatedAt?: Date;
886
- deletedAt?: Date;
887
- createdById: string;
888
- updatedById?: string;
889
- deletedById?: string;
890
- }
891
- interface ProjectToMediasTable {
892
- a: string;
893
- b: string;
894
- }
895
- interface ProjectToBrokersTable {
896
- projectId: string;
897
- userId: string;
898
- }
899
- interface UtilitiesTable {
900
- id: string;
901
- name: string;
902
- description?: string;
903
- icon: string;
904
- ownerProjectId?: string;
905
- createdAt?: Date;
906
- updatedAt?: Date;
907
- deletedAt?: Date;
908
- createdById?: string;
909
- updatedById?: string;
910
- deletedById?: string;
911
- }
912
- interface ProjectUtilitiesTable {
913
- id: string;
914
- projectId: string;
915
- utilityId: string;
916
- description?: string;
917
- createdAt?: Date;
918
- updatedAt?: Date;
919
- deletedAt?: Date;
920
- createdById: string;
921
- updatedById?: string;
922
- deletedById?: string;
923
- }
924
- interface PropertyBranchUtilitiesTable {
925
- id: string;
926
- propertyBranchId: string;
927
- projectUtilityId: string;
928
- createdAt?: Date;
929
- updatedAt?: Date;
930
- deletedAt?: Date;
931
- createdById: string;
932
- updatedById?: string;
933
- deletedById?: string;
934
- }
935
- interface DocumentsTable {
936
- id: string;
937
- name: string;
938
- version: number;
939
- isApproved?: boolean;
940
- metadata?: Record<string, unknown>;
941
- mediaIds?: string[];
942
- approverId?: string;
943
- relatedUserIds?: string[];
944
- category: string;
945
- type: string;
946
- notes?: string;
947
- createdAt?: Date;
948
- updatedAt?: Date;
949
- deletedAt?: Date;
950
- createdById: string;
951
- updatedById?: string;
952
- deletedById?: string;
953
- }
954
- interface DocumentToProjectTable {
955
- id: string;
956
- documentId: string;
957
- projectId: string;
958
- createdAt?: Date;
959
- updatedAt?: Date;
960
- deletedAt?: Date;
961
- createdById: string;
962
- updatedById?: string;
963
- deletedById?: string;
964
- }
965
- interface PaymentInstallmentsTable {
966
- id: string;
967
- paymentProcessId: string;
968
- dealId: string;
969
- userConfirmedIds?: string[];
970
- installmentNo: number;
971
- paymentAmount: string;
972
- paymentDate?: Date;
973
- dueDate?: Date;
879
+ policyDescription?: string;
880
+ investmentIncentives?: string;
881
+ firePreventionSystem?: string;
882
+ telecomInfrastructure?: string;
883
+ wasteManagementSystem?: string;
884
+ greenParkArea?: number;
885
+ infrastructureOtherDescription?: string;
886
+ landCurrentStatus?: string;
887
+ description?: string;
888
+ sourceUrl?: string;
889
+ crawlerUpdatedAt?: Date;
974
890
  status: string;
975
- note?: string;
891
+ boApproverId?: string;
976
892
  metadata?: Record<string, unknown>;
893
+ projectCurrentStatus: string;
894
+ isAuthorizedForSystem?: boolean;
895
+ authorizationStarttime?: Date;
896
+ authorizationEndtime?: Date;
897
+ serviceFees?: Record<string, unknown>[];
898
+ brokerIds?: string[];
977
899
  createdAt?: Date;
978
900
  updatedAt?: Date;
979
901
  deletedAt?: Date;
@@ -981,6 +903,8 @@ interface PaymentInstallmentsTable {
981
903
  updatedById?: string;
982
904
  deletedById?: string;
983
905
  }
906
+ //#endregion
907
+ //#region src/generated/tables/properties.table.d.ts
984
908
  interface PropertiesTable {
985
909
  id: string;
986
910
  title: string;
@@ -1029,6 +953,29 @@ interface PropertiesTable {
1029
953
  updatedById?: string;
1030
954
  deletedById?: string;
1031
955
  }
956
+ //#endregion
957
+ //#region src/generated/tables/property-branch-user-permissions.table.d.ts
958
+ interface PropertyBranchUserPermissionsTable {
959
+ propertyBranchId: string;
960
+ userId: string;
961
+ canView: boolean;
962
+ canEdit: boolean;
963
+ }
964
+ //#endregion
965
+ //#region src/generated/tables/property-branch-utilities.table.d.ts
966
+ interface PropertyBranchUtilitiesTable {
967
+ id: string;
968
+ propertyBranchId: string;
969
+ projectUtilityId: string;
970
+ createdAt?: Date;
971
+ updatedAt?: Date;
972
+ deletedAt?: Date;
973
+ createdById: string;
974
+ updatedById?: string;
975
+ deletedById?: string;
976
+ }
977
+ //#endregion
978
+ //#region src/generated/tables/property-branches.table.d.ts
1032
979
  interface PropertyBranchesTable {
1033
980
  id: string;
1034
981
  title: string;
@@ -1081,6 +1028,8 @@ interface PropertyBranchesTable {
1081
1028
  updatedById?: string;
1082
1029
  deletedById?: string;
1083
1030
  }
1031
+ //#endregion
1032
+ //#region src/generated/tables/property-details.table.d.ts
1084
1033
  interface PropertyDetailsTable {
1085
1034
  id: string;
1086
1035
  propertyId?: string;
@@ -1103,6 +1052,59 @@ interface PropertyDetailsTable {
1103
1052
  updatedById?: string;
1104
1053
  deletedById?: string;
1105
1054
  }
1055
+ //#endregion
1056
+ //#region src/generated/tables/property-identifiers.table.d.ts
1057
+ interface PropertyIdentifiersTable {
1058
+ id: string;
1059
+ type: string;
1060
+ issuedBy?: string;
1061
+ issuedDate?: Date;
1062
+ expiredDate?: Date;
1063
+ metadata?: Record<string, unknown>;
1064
+ createdAt?: Date;
1065
+ updatedAt?: Date;
1066
+ deletedAt?: Date;
1067
+ createdById?: string;
1068
+ updatedById?: string;
1069
+ deletedById?: string;
1070
+ }
1071
+ //#endregion
1072
+ //#region src/generated/tables/property-maps.table.d.ts
1073
+ interface PropertyMapsTable {
1074
+ id: string;
1075
+ floorNumber?: number;
1076
+ name: string;
1077
+ mediaId: string;
1078
+ projectId?: string;
1079
+ propertyId?: string;
1080
+ propertyBranchId?: string;
1081
+ createdAt?: Date;
1082
+ updatedAt?: Date;
1083
+ deletedAt?: Date;
1084
+ createdById: string;
1085
+ updatedById?: string;
1086
+ deletedById?: string;
1087
+ }
1088
+ //#endregion
1089
+ //#region src/generated/tables/property-versions.table.d.ts
1090
+ interface PropertyVersionsTable {
1091
+ id: string;
1092
+ version: string;
1093
+ action: string;
1094
+ dataSnapshot: Record<string, unknown>;
1095
+ detailSnapshot: Record<string, unknown>;
1096
+ note?: string;
1097
+ propertyId?: string;
1098
+ propertyBranchId?: string;
1099
+ createdAt?: Date;
1100
+ updatedAt?: Date;
1101
+ deletedAt?: Date;
1102
+ createdById: string;
1103
+ updatedById?: string;
1104
+ deletedById?: string;
1105
+ }
1106
+ //#endregion
1107
+ //#region src/generated/tables/property-visualizations.table.d.ts
1106
1108
  interface PropertyVisualizationsTable {
1107
1109
  id: string;
1108
1110
  name: string;
@@ -1117,14 +1119,31 @@ interface PropertyVisualizationsTable {
1117
1119
  updatedById?: string;
1118
1120
  deletedById?: string;
1119
1121
  }
1120
- interface PropertyMapsTable {
1122
+ //#endregion
1123
+ //#region src/generated/tables/provinces.table.d.ts
1124
+ interface ProvincesTable {
1121
1125
  id: string;
1122
- floorNumber?: number;
1126
+ code: string;
1123
1127
  name: string;
1124
- mediaId: string;
1125
- projectId?: string;
1126
- propertyId?: string;
1127
- propertyBranchId?: string;
1128
+ nameEn?: string;
1129
+ fullName: string;
1130
+ fullNameEn?: string;
1131
+ codeName: string;
1132
+ administrativeUnitId?: string;
1133
+ administrativeRegionId?: string;
1134
+ deletedAt?: Date;
1135
+ }
1136
+ //#endregion
1137
+ //#region src/generated/tables/register-account-requests.table.d.ts
1138
+ interface RegisterAccountRequestsTable {
1139
+ id: string;
1140
+ invitationCode: string;
1141
+ roleId: string;
1142
+ requiresVerification?: string[];
1143
+ isVerified: boolean;
1144
+ rejectionReason?: string;
1145
+ expiresAt: Date;
1146
+ userId?: string;
1128
1147
  createdAt?: Date;
1129
1148
  updatedAt?: Date;
1130
1149
  deletedAt?: Date;
@@ -1132,62 +1151,169 @@ interface PropertyMapsTable {
1132
1151
  updatedById?: string;
1133
1152
  deletedById?: string;
1134
1153
  }
1135
- interface PropertyIdentifiersTable {
1154
+ //#endregion
1155
+ //#region src/generated/tables/register-account-verifications.table.d.ts
1156
+ interface RegisterAccountVerificationsTable {
1157
+ id: string;
1158
+ invitationCode: string;
1159
+ identifier: string;
1160
+ otpCode: string;
1161
+ registerAccountRequestId: string;
1162
+ expiresAt: Date;
1163
+ isVerified: boolean;
1164
+ resendOtpAttempts: number;
1165
+ verifyOtpAttempts: number;
1166
+ verificationType: string;
1167
+ createdAt?: Date;
1168
+ updatedAt?: Date;
1169
+ deletedAt?: Date;
1170
+ createdById?: string;
1171
+ updatedById?: string;
1172
+ deletedById?: string;
1173
+ }
1174
+ //#endregion
1175
+ //#region src/generated/tables/role-permissions.table.d.ts
1176
+ interface RolePermissionsTable {
1177
+ roleId: string;
1178
+ permissionId: string;
1179
+ }
1180
+ //#endregion
1181
+ //#region src/generated/tables/roles.table.d.ts
1182
+ interface RolesTable {
1183
+ id: string;
1184
+ name: string;
1185
+ code: string;
1186
+ description?: string;
1187
+ createdAt?: Date;
1188
+ updatedAt?: Date;
1189
+ deletedAt?: Date;
1190
+ createdById: string;
1191
+ updatedById?: string;
1192
+ deletedById?: string;
1193
+ }
1194
+ //#endregion
1195
+ //#region src/generated/tables/sessions.table.d.ts
1196
+ interface SessionsTable {
1197
+ id: string;
1198
+ createdAt?: Date;
1199
+ updatedAt?: Date;
1200
+ deletedAt?: Date;
1201
+ createdById: string;
1202
+ updatedById?: string;
1203
+ deletedById?: string;
1204
+ userId: string;
1205
+ token: string;
1206
+ ipAddress: string;
1207
+ userAgent: string;
1208
+ expiresAt: Date;
1209
+ isRevoked?: boolean;
1210
+ }
1211
+ //#endregion
1212
+ //#region src/generated/tables/tickets.table.d.ts
1213
+ interface TicketsTable {
1136
1214
  id: string;
1215
+ name: string;
1216
+ description: string;
1137
1217
  type: string;
1138
- issuedBy?: string;
1139
- issuedDate?: Date;
1140
- expiredDate?: Date;
1218
+ status: string;
1141
1219
  metadata?: Record<string, unknown>;
1220
+ requestUserId: string;
1221
+ nextApproverUserId: string;
1222
+ supervisorId?: string;
1223
+ approvedAt?: Date;
1224
+ rejectReason?: string;
1225
+ rejectedAt?: Date;
1142
1226
  createdAt?: Date;
1143
1227
  updatedAt?: Date;
1144
1228
  deletedAt?: Date;
1145
- createdById?: string;
1229
+ createdById: string;
1146
1230
  updatedById?: string;
1147
1231
  deletedById?: string;
1148
1232
  }
1149
- interface PropertyVersionsTable {
1233
+ //#endregion
1234
+ //#region src/generated/tables/user-histories.table.d.ts
1235
+ interface UserHistoriesTable {
1150
1236
  id: string;
1151
- version: string;
1152
- action: string;
1153
- dataSnapshot: Record<string, unknown>;
1154
- detailSnapshot: Record<string, unknown>;
1155
- note?: string;
1156
- propertyId?: string;
1157
- propertyBranchId?: string;
1158
1237
  createdAt?: Date;
1159
1238
  updatedAt?: Date;
1160
1239
  deletedAt?: Date;
1161
1240
  createdById: string;
1162
1241
  updatedById?: string;
1163
1242
  deletedById?: string;
1243
+ userId: string;
1244
+ type: string;
1164
1245
  }
1165
- interface PropertyBranchUserPermissionsTable {
1166
- propertyBranchId: string;
1246
+ //#endregion
1247
+ //#region src/generated/tables/user-notification-settings.table.d.ts
1248
+ interface UserNotificationSettingsTable {
1249
+ id: string;
1167
1250
  userId: string;
1168
- canView: boolean;
1169
- canEdit: boolean;
1251
+ channelId: string;
1252
+ isEnabled: boolean;
1253
+ metadata?: Record<string, unknown>;
1254
+ createdAt?: Date;
1255
+ updatedAt?: Date;
1256
+ deletedAt?: Date;
1257
+ createdById: string;
1258
+ updatedById?: string;
1259
+ deletedById?: string;
1260
+ }
1261
+ //#endregion
1262
+ //#region src/generated/tables/user-to-role.table.d.ts
1263
+ interface UserToRoleTable {
1264
+ id: string;
1265
+ userId: string;
1266
+ roleId: string;
1267
+ createdAt?: Date;
1268
+ updatedAt?: Date;
1269
+ deletedAt?: Date;
1270
+ createdById: string;
1271
+ updatedById?: string;
1272
+ deletedById?: string;
1273
+ }
1274
+ //#endregion
1275
+ //#region src/generated/tables/users.table.d.ts
1276
+ interface UsersTable {
1277
+ id: string;
1278
+ email?: string;
1279
+ phoneNumber: string;
1280
+ username: string;
1281
+ passwordHash: string;
1282
+ openPlatform: string;
1283
+ utmCampaign: string;
1284
+ utmMedium: string;
1285
+ utmSource: string;
1286
+ metadata?: Record<string, unknown>;
1287
+ ipAddress: string;
1288
+ address?: string;
1289
+ birthday?: Date;
1290
+ fullname?: string;
1291
+ languages?: string[];
1292
+ gender?: string;
1293
+ status: string;
1294
+ avatarImageId?: string;
1295
+ nickname?: string;
1296
+ isVerifiedBroker?: boolean;
1297
+ isVerifiedInvestorRepresentative?: boolean;
1298
+ organizationId?: string;
1299
+ provinceId?: string;
1300
+ wardId?: string;
1301
+ workAreas?: Record<string, unknown>[];
1302
+ createdAt?: Date;
1303
+ updatedAt?: Date;
1304
+ deletedAt?: Date;
1305
+ createdById: string;
1306
+ updatedById?: string;
1307
+ deletedById?: string;
1170
1308
  }
1171
- interface JobsTable {
1309
+ //#endregion
1310
+ //#region src/generated/tables/utilities.table.d.ts
1311
+ interface UtilitiesTable {
1172
1312
  id: string;
1173
1313
  name: string;
1174
- jobType: string;
1175
- status: string;
1176
- entityType?: string;
1177
- entityId?: string;
1178
- metadata?: Record<string, unknown>;
1179
- reminderConfig?: Record<string, unknown>;
1180
- scheduledAt?: Date;
1181
- startedAt?: Date;
1182
- completedAt?: Date;
1183
- failedAt?: Date;
1184
- retryCount: number;
1185
- maxRetries: number;
1186
- lastError?: string;
1187
- payload?: Record<string, unknown>;
1188
- result?: Record<string, unknown>;
1189
- priority: number;
1190
- tags?: string[];
1314
+ description?: string;
1315
+ icon: string;
1316
+ ownerProjectId?: string;
1191
1317
  createdAt?: Date;
1192
1318
  updatedAt?: Date;
1193
1319
  deletedAt?: Date;
@@ -1195,29 +1321,21 @@ interface JobsTable {
1195
1321
  updatedById?: string;
1196
1322
  deletedById?: string;
1197
1323
  }
1198
- interface OutboxEventsTable {
1324
+ //#endregion
1325
+ //#region src/generated/tables/wards.table.d.ts
1326
+ interface WardsTable {
1199
1327
  id: string;
1200
- aggregateType: string;
1201
- aggregateId: string;
1202
- eventType: string;
1203
- eventVersion: number;
1204
- payload: Record<string, unknown>;
1205
- metadata: Record<string, unknown>;
1206
- status: string;
1207
- attempts: number;
1208
- maxAttempts: number;
1209
- lastError?: string;
1210
- scheduledAt?: Date;
1211
- publishedAt?: Date;
1212
- createdAt: Date;
1213
- updatedAt: Date;
1214
- }
1215
- interface OutboxConsumerCursorsTable {
1216
- consumerId: string;
1217
- eventId: string;
1218
- status: string;
1219
- processedAt: Date;
1328
+ code: string;
1329
+ name: string;
1330
+ nameEn?: string;
1331
+ fullName: string;
1332
+ fullNameEn?: string;
1333
+ codeName: string;
1334
+ provinceId: string;
1335
+ deletedAt?: Date;
1220
1336
  }
1337
+ //#endregion
1338
+ //#region src/generated/database.d.ts
1221
1339
  interface Database {
1222
1340
  provinces: ProvincesTable;
1223
1341
  wards: WardsTable;
@@ -2906,79 +3024,22 @@ declare const ClientCategoryExceptions: {
2906
3024
  FORBIDDEN: string;
2907
3025
  };
2908
3026
  //#endregion
2909
- //#region src/generated/client/ports/client-read.port.d.ts
2910
- type ClientStatusValue = string;
2911
- type ClientSourceValue = string;
2912
- type ForSalePropertyTypeValue = string;
2913
- type ClientTypeValue = string;
2914
- type ClientRolesValue = string;
2915
- type ClientNeedValue = string;
2916
- interface ClientModel {
2917
- id?: string;
2918
- code?: string;
2919
- fullname?: string;
2920
- phoneNumber?: string;
2921
- email?: string;
2922
- address?: string;
2923
- gender?: string;
2924
- birthday?: Date | string;
2925
- status?: string;
2926
- source?: string;
2927
- budgetMin?: string;
2928
- budgetMax?: string;
2929
- budgetCurrency?: string;
2930
- propertyTypes?: string[];
2931
- lastContactDate?: Date | string;
2932
- notes?: string;
2933
- metadata?: Record<string, unknown>;
2934
- clientType?: string;
2935
- roles?: string[];
2936
- needs?: string[];
2937
- createdAt?: Date | string;
2938
- updatedAt?: Date | string;
2939
- createdBy?: string;
2940
- }
2941
- interface ClientsReadResult {
2942
- data: ClientModel[];
2943
- page?: number;
2944
- limit?: number;
2945
- total?: number;
2946
- totalPages?: number;
2947
- }
2948
- interface ClientCategoryModel {
2949
- id?: string;
2950
- name?: string;
2951
- createdById?: string;
2952
- clients?: Array<{
2953
- id?: string;
2954
- fullname?: string;
2955
- phoneNumber?: string;
2956
- email?: string;
2957
- address?: string;
2958
- }>;
2959
- }
2960
- interface ClientCategoriesReadResult {
2961
- data: ClientCategoryModel[];
2962
- total?: number;
2963
- }
2964
- interface ClientReadPort {
2965
- getClient(filter: ClientFilter$1): Promise<ClientModel>;
2966
- getClients(filter: ClientsFilter$1): Promise<ClientsReadResult>;
2967
- getClientCategory(filter: ClientCategoryFilter): Promise<ClientCategoryModel>;
2968
- getClientCategories(filter: ClientCategoriesFilter$1): Promise<ClientCategoriesReadResult>;
2969
- }
3027
+ //#region src/generated/client/ports/get-client.request.d.ts
3028
+ type ClientFilter = {
3029
+ id: string;
3030
+ };
2970
3031
  //#endregion
2971
- //#region src/generated/client/ports/create-client-category.request.d.ts
2972
- type CreateClientCategoryInput = {
2973
- name: string;
2974
- clientIds: string[];
3032
+ //#region src/generated/client/ports/get-client-categories.request.d.ts
3033
+ type ClientCategoriesFilter = {
3034
+ page: number;
3035
+ limit: number;
3036
+ search?: string | undefined;
2975
3037
  };
2976
3038
  //#endregion
2977
- //#region src/generated/client/ports/create-client-category.response.d.ts
2978
- interface CreateClientCategoryResponse extends BaseRes {
2979
- categoryId: string;
2980
- message: string;
2981
- }
3039
+ //#region src/generated/client/ports/get-client-category.request.d.ts
3040
+ type ClientCategoryFilter = {
3041
+ id: string;
3042
+ };
2982
3043
  //#endregion
2983
3044
  //#region src/generated/for-sale/for-sale.enum.d.ts
2984
3045
  declare enum ForSaleRoadType {
@@ -3052,6 +3113,92 @@ declare enum ForSaleUtilities {
3052
3113
  BASIC_CONSTRUCTION = "BASIC_CONSTRUCTION"
3053
3114
  }
3054
3115
  //#endregion
3116
+ //#region src/generated/client/ports/get-clients.request.d.ts
3117
+ type ClientsFilter = {
3118
+ page: number;
3119
+ limit: number;
3120
+ budgetMin: bigint | undefined;
3121
+ budgetMax: bigint | undefined;
3122
+ needs: ClientNeed[];
3123
+ createdById?: string | undefined;
3124
+ clientIds?: string[] | undefined;
3125
+ status?: ClientStatus | undefined;
3126
+ source?: ClientSource | undefined;
3127
+ propertyTypes?: ForSalePropertyType[] | undefined;
3128
+ search?: string | undefined;
3129
+ clientType?: ClientType | undefined;
3130
+ roles?: ClientRoles[] | undefined;
3131
+ clientCategoryId?: string | undefined;
3132
+ };
3133
+ //#endregion
3134
+ //#region src/generated/client/ports/client-read.port.d.ts
3135
+ interface ClientModel {
3136
+ id?: string;
3137
+ code?: string;
3138
+ fullname?: string;
3139
+ phoneNumber?: string;
3140
+ email?: string;
3141
+ address?: string;
3142
+ gender?: string;
3143
+ birthday?: Date | string;
3144
+ status?: string;
3145
+ source?: string;
3146
+ budgetMin?: string;
3147
+ budgetMax?: string;
3148
+ budgetCurrency?: string;
3149
+ propertyTypes?: string[];
3150
+ lastContactDate?: Date | string;
3151
+ notes?: string;
3152
+ metadata?: Record<string, unknown>;
3153
+ clientType?: string;
3154
+ roles?: string[];
3155
+ needs?: string[];
3156
+ createdAt?: Date | string;
3157
+ updatedAt?: Date | string;
3158
+ createdBy?: string;
3159
+ }
3160
+ interface ClientsReadResult {
3161
+ data: ClientModel[];
3162
+ page?: number;
3163
+ limit?: number;
3164
+ total?: number;
3165
+ totalPages?: number;
3166
+ }
3167
+ interface ClientCategoryModel {
3168
+ id?: string;
3169
+ name?: string;
3170
+ createdById?: string;
3171
+ clients?: Array<{
3172
+ id?: string;
3173
+ fullname?: string;
3174
+ phoneNumber?: string;
3175
+ email?: string;
3176
+ address?: string;
3177
+ }>;
3178
+ }
3179
+ interface ClientCategoriesReadResult {
3180
+ data: ClientCategoryModel[];
3181
+ total?: number;
3182
+ }
3183
+ interface ClientReadPort {
3184
+ getClient(filter: ClientFilter): Promise<ClientModel>;
3185
+ getClients(filter: ClientsFilter): Promise<ClientsReadResult>;
3186
+ getClientCategory(filter: ClientCategoryFilter): Promise<ClientCategoryModel>;
3187
+ getClientCategories(filter: ClientCategoriesFilter): Promise<ClientCategoriesReadResult>;
3188
+ }
3189
+ //#endregion
3190
+ //#region src/generated/client/ports/create-client-category.request.d.ts
3191
+ type CreateClientCategoryInput = {
3192
+ name: string;
3193
+ clientIds: string[];
3194
+ };
3195
+ //#endregion
3196
+ //#region src/generated/client/ports/create-client-category.response.d.ts
3197
+ interface CreateClientCategoryResponse extends BaseRes {
3198
+ categoryId: string;
3199
+ message: string;
3200
+ }
3201
+ //#endregion
3055
3202
  //#region src/generated/client/ports/create-client.request.d.ts
3056
3203
  type CreateClientInput = {
3057
3204
  fullname: string;
@@ -3101,13 +3248,6 @@ interface DeleteClientResponse extends BaseRes {
3101
3248
  message: string;
3102
3249
  }
3103
3250
  //#endregion
3104
- //#region src/generated/client/ports/get-client-categories.request.d.ts
3105
- type ClientCategoriesFilter = {
3106
- page: number;
3107
- limit: number;
3108
- search?: string | undefined;
3109
- };
3110
- //#endregion
3111
3251
  //#region src/generated/client/ports/get-client-categories.response.d.ts
3112
3252
  interface ClientCategoryItem {
3113
3253
  id?: string;
@@ -3140,11 +3280,6 @@ interface ClientCategoryResponse extends BaseRes {
3140
3280
  }>;
3141
3281
  }
3142
3282
  //#endregion
3143
- //#region src/generated/client/ports/get-client.request.d.ts
3144
- type ClientFilter = {
3145
- id: string;
3146
- };
3147
- //#endregion
3148
3283
  //#region src/generated/client/ports/get-client.response.d.ts
3149
3284
  interface ClientResponse extends BaseRes {
3150
3285
  id: string;
@@ -3172,24 +3307,6 @@ interface ClientResponse extends BaseRes {
3172
3307
  createdBy?: string;
3173
3308
  }
3174
3309
  //#endregion
3175
- //#region src/generated/client/ports/get-clients.request.d.ts
3176
- type ClientsFilter = {
3177
- page: number;
3178
- limit: number;
3179
- budgetMin: bigint | undefined;
3180
- budgetMax: bigint | undefined;
3181
- needs: ClientNeed[];
3182
- createdById?: string | undefined;
3183
- clientIds?: string[] | undefined;
3184
- status?: ClientStatus | undefined;
3185
- source?: ClientSource | undefined;
3186
- propertyTypes?: ForSalePropertyType[] | undefined;
3187
- search?: string | undefined;
3188
- clientType?: ClientType | undefined;
3189
- roles?: ClientRoles[] | undefined;
3190
- clientCategoryId?: string | undefined;
3191
- };
3192
- //#endregion
3193
3310
  //#region src/generated/client/ports/get-clients.response.d.ts
3194
3311
  interface ClientsResponse extends BaseRes {
3195
3312
  data: ClientResponse[];
@@ -4718,8 +4835,8 @@ type PropertiesFilter = {
4718
4835
  landCurrentStatus?: PropertyLandCurrentStatus | undefined;
4719
4836
  type?: PropertyType[] | undefined;
4720
4837
  approvalStatus?: PropertyApprovalStatus | undefined;
4721
- operationStatus?: PropertyOperationStatus | undefined;
4722
- authorizationType?: PropertyAuthorizationType | undefined;
4838
+ operationStatus?: PropertyOperationStatus[] | undefined;
4839
+ authorizationType?: PropertyAuthorizationType[] | undefined;
4723
4840
  search?: string | undefined;
4724
4841
  minLandArea?: number | undefined;
4725
4842
  maxLandArea?: number | undefined;
@@ -4753,6 +4870,17 @@ interface AssignedBrokerItem {
4753
4870
  phoneNumber: string;
4754
4871
  description: string;
4755
4872
  }
4873
+ interface OwnerItem {
4874
+ ownerId: string;
4875
+ ownerName: string;
4876
+ avatar: string;
4877
+ phoneNumber: string;
4878
+ companyName: string;
4879
+ }
4880
+ interface ProjectSummaryItem {
4881
+ projectId: string;
4882
+ projectName: string;
4883
+ }
4756
4884
  interface PropertyItem {
4757
4885
  id: string;
4758
4886
  title: string;
@@ -4797,6 +4925,8 @@ interface PropertyItem {
4797
4925
  polygon?: PolygonCoordinate[];
4798
4926
  detail?: PropertyDetailItem;
4799
4927
  assignedBroker?: AssignedBrokerItem;
4928
+ owner?: OwnerItem;
4929
+ project?: ProjectSummaryItem;
4800
4930
  propertyVersion?: number;
4801
4931
  parentMainId?: string;
4802
4932
  propertyId?: string;
@@ -5006,7 +5136,8 @@ interface PropertyVersionModel {
5006
5136
  propertyBranchId?: string;
5007
5137
  createdAt?: Date;
5008
5138
  }
5009
- interface BrokerSummaryModel {
5139
+ type BrokerSummaryModel = UserSummaryModel;
5140
+ interface UserSummaryModel {
5010
5141
  id: string;
5011
5142
  fullname?: string;
5012
5143
  phoneNumber: string;
@@ -5014,6 +5145,10 @@ interface BrokerSummaryModel {
5014
5145
  avatarBucket?: string;
5015
5146
  organizationName?: string;
5016
5147
  }
5148
+ interface ProjectSummaryModel {
5149
+ id: string;
5150
+ name: string;
5151
+ }
5017
5152
  interface PropertyIdentifierModel {
5018
5153
  id: string;
5019
5154
  type: string;
@@ -5060,7 +5195,9 @@ interface VisualizationsByBrokerResult {
5060
5195
  }
5061
5196
  interface PropertyDataPort {
5062
5197
  findPropertyListing(filter: PropertyListingFilter, userId: string, isBroker: boolean): Promise<PropertyListingResult>;
5063
- findBrokerSummariesByIds(ids: string[]): Promise<BrokerSummaryModel[]>;
5198
+ findBrokerSummariesByIds(ids: string[]): Promise<UserSummaryModel[]>;
5199
+ findOwnerSummariesByIds(ids: string[]): Promise<UserSummaryModel[]>;
5200
+ findProjectsByIds(ids: string[]): Promise<Selectable<ProjectsTable>[]>;
5064
5201
  findPropertyById(id: string, trx?: Transaction<Database>): Promise<Selectable<PropertiesTable> | undefined>;
5065
5202
  findPropertiesByIds(ids: string[], trx?: Transaction<Database>): Promise<PropertyItem[]>;
5066
5203
  insertProperty(data: Insertable<PropertiesTable>, trx?: Transaction<Database>): Promise<void>;
@@ -7649,5 +7786,5 @@ interface UtilityDataPort {
7649
7786
  } | undefined>;
7650
7787
  }
7651
7788
  //#endregion
7652
- export { AcknowledgeAppointmentInput, AcknowledgeAppointmentResponse, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, AddDealStepParticipantsInput, AddDealStepParticipantsResponse, AdministratorDataPort, AgreementDataPort, AgreementExceptions, AgreementInsertData, AgreementModel, AgreementTemplateDataListFilter, AgreementTemplateDataPort, AgreementTemplateExceptions, AgreementTemplateInsertData, AgreementTemplateModel, AgreementTemplateResponse, AgreementTemplateType, AgreementTemplateUpdateData, AgreementTemplatesFilter, AgreementTemplatesResponse, AgreementTemplatesTable, AgreementTypeDataPort, AgreementTypeExceptions, AgreementTypeModel, AgreementTypesTable, AgreementUpdateData, AgreementsTable, AppointmentConfidentialityAgreement, AppointmentConfidentialityAgreementsTable, AppointmentDataPort, AppointmentExceptions, AppointmentInsertData, AppointmentItem, AppointmentListFilter, AppointmentMediaInsertData, AppointmentModel, AppointmentParticipant, AppointmentParticipantInsertData, AppointmentParticipantModel, AppointmentParticipantWithUserModel, AppointmentParticipantsTable, AppointmentResponse, AppointmentStatus, AppointmentType, AppointmentUpdateData, AppointmentWithParticipantsModel, AppointmentsFilter, AppointmentsResponse, AppointmentsTable, ApproveAccountResponse, ApproveConsignmentRequestInput, ApproveConsignmentRequestResponse, ApproveDocumentResponse, ApproveForSaleAdminInput, ApproveForSaleAdminResponse, ApproveForSaleInput, ApproveForSaleResponse, ApproveOrderRequestResponse, ApproveTicketsInput, ApproveTicketsResponse, AssignConsignmentRequestToBrokerInput, AssignConsignmentRequestToBrokerResponse, AssignOrderRequestToBrokerInput, AssignOrderRequestToBrokerResponse, type AssignPropertyToBrokerInput, type AssignPropertyToBrokerResponse, type AssignedBrokerItem, BA_DINH_WARD_NO, BaseErrorResponse, BaseRes, BaseResponse, BlackListEntityType, BlackListStatus, BlackListsTable, BlacklistExceptions, BlacklistFilter, BlacklistInsertData, BlacklistListFilter, BlacklistModel, BlacklistPort, BlacklistResponse, BlacklistUpdateData, BlacklistsFilter, BlacklistsResponse, BrokerCommandPort, BrokerConvertClientToJsonResponse, BrokerExceptions, BrokerImportClientFailedItem, BrokerImportClientFileInput, BrokerImportClientFromJsonInput, BrokerImportClientResponse, BrokerImportClientSuccessItem, BrokerSummaryModel, CancelAppointmentInput, CancelAppointmentResponse, ChangeAvatarResponse, ChangeNicknameInput, ChangeNicknameResponse, ChangePasswordInput, ChangePasswordResponse, ChatGroupDataPort, ChatGroupFilter, ChatGroupInsertData, ChatGroupMemberFilter, ChatGroupMemberInsertData, ChatGroupMemberItem, ChatGroupMemberModel, ChatGroupMemberRole, ChatGroupMemberUpdateData, ChatGroupMembersFilter, ChatGroupMembersResponse, ChatGroupMembersTable, ChatGroupModel, ChatGroupResponse, ChatGroupStatsModel, ChatGroupUpdateData, ChatGroupsFilter, ChatGroupsResponse, ChatGroupsTable, ChatMessageFilter, ChatMessageInsertData, ChatMessageItem, ChatMessageModel, ChatMessagesFilter, ChatMessagesResponse, ChatMessagesTable, CheckNicknameAvailabilityInput, CheckNicknameAvailabilityResponse, ClientCategoriesFilter, ClientCategoriesReadResult, ClientCategoriesResponse, ClientCategoriesTable, ClientCategoryClientsTable, ClientCategoryExceptions, ClientCategoryItem, ClientCategoryModel, ClientCategoryResponse, ClientExceptions, ClientFilter, ClientModel, ClientNeed, ClientNeedValue, ClientReadPort, ClientResponse, ClientRoles, ClientRolesValue, ClientSource, ClientSourceValue, ClientStatus, ClientStatusValue, ClientType, ClientTypeValue, ClientsFilter, ClientsReadResult, ClientsResponse, ClientsTable, CompleteAppointmentInput, CompleteAppointmentResponse, ConfidentialityAgreementInsertData, ConfidentialityAgreementModel, ConfirmCreateAccountClientInput, ConfirmCreateAccountClientResponse, ConfirmCreateAccountInput, ConfirmCreateAccountResponse, ConfirmPaymentInstallmentInput, ConfirmPaymentInstallmentResponse, ConfirmPaymentProcessInput, ConfirmPaymentProcessResponse, ConfirmUpdateEmailInput, ConfirmUpdateEmailResponse, ConfirmUpdatePhoneNumberInput, ConfirmUpdatePhoneNumberResponse, ConsignmentRequestDataPort, ConsignmentRequestExceptions, ConsignmentRequestFilter, ConsignmentRequestInsertData, ConsignmentRequestListFilter, ConsignmentRequestModel, ConsignmentRequestResponse, ConsignmentRequestType, ConsignmentRequestUpdateData, ConsignmentRequestsFilter, ConsignmentRequestsResponse, ConsignmentRequestsTable, ConversationExceptions, ConversationPagination, ConvertBrokerClientToJsonInput, ConvertBrokerClientToJsonResponse, ConvertBrokerClientType, CreateAgreementTemplateInput, CreateAgreementTemplateResponse, CreateAppointmentInput, CreateAppointmentResponse, CreateBlacklistInput, CreateBlacklistResponse, CreateBrokerFromRegisterLinkInput, CreateBrokerFromRegisterLinkResponse, CreateBrokerInput, CreateBrokerResponse, CreateChatGroupInput, CreateChatGroupResponse, CreateChatMessageInput, CreateChatMessageResponse, CreateClientCategoryInput, CreateClientCategoryResponse, CreateClientInput, CreateClientResponse, CreateConsignmentRequestInput, CreateConsignmentRequestResponse, CreateDealInput, CreateDealResponse, CreateForSaleInput, CreateForSaleResponse, CreateOrderRequestInput, CreateOrderRequestResponse, CreatePaymentInstallmentInput, CreatePaymentInstallmentResponse, CreatePaymentProcessInput, CreatePaymentProcessResponse, CreatePreDealInput, CreatePreDealResponse, CreateProjectInput, CreateProjectResponse, CreatePropertyInput, CreatePropertyMapInput, type CreatePropertyMapResponse, type CreatePropertyResponse, CreateRepresentativeInvestorInput, CreateRepresentativeInvestorResponse, CreateUtilityInput, CreateUtilityResponse, Database, DealDataPort, DealExceptions, DealFilter, DealFilterType, DealInsertData, DealItem, DealModel, DealParticipantModel, DealParticipantProfile, DealPaymentInstallment, DealProgress, DealStatus, DealStepAttachment, DealStepCreator, DealStepExceptions, DealStepHistoryItem, DealStepInsertData, DealStepModel, DealStepParticipantInsertData, DealStepParticipantsTable, DealStepStatus, DealStepUpdateData, DealStepWithCreatorModel, DealStepsResponse, DealStepsTable, DealSummaryResponse, DealUpdateData, DealWithSummaryModel, DealsFilter, DealsForUserFilter, DealsResponse, DealsTable, DeleteAgreementTemplateResponse, DeleteAppointmentInput, DeleteAppointmentResponse, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteClientCategoryInput, DeleteClientCategoryResponse, DeleteClientInput, DeleteClientResponse, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteForSaleInput, DeleteForSaleResponse, DeleteInvestorRepresentativeResponse, DigitalSignatureDataPort, DigitalSignatureInsertData, DigitalSignatureModel, DigitalSignaturesTable, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentInsertData, DocumentToProjectTable, DocumentType, DocumentUpdateData, DocumentsTable, ForSaleApproveData, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleDataPort, ForSaleExceptions, ForSaleFilter, ForSaleInfrastructureStatus, ForSaleInsertData, ForSaleListFilter, ForSaleModel, ForSalePostType, ForSalePropertyType, ForSalePropertyTypeValue, ForSaleResponse, ForSaleRoadType, ForSaleStatus, ForSaleUpdateData, ForSaleUtilities, ForSalesFilter, ForSalesResponse, ForSalesTable, ForgotPasswordInput, ForgotPasswordResponse, GenerateInvestorRegisterLinkInput, GenerateInvestorRegisterLinkResponse, GetManagementBrokerForProjectResponse, IdentitiesTable, IdentityCardDataPort, IdentityCardEncryptedModel, IdentityCardInsertData, IdentityCardModel, IdentityCardUpdateData, IdentityCardsTable, IdentityExceptions, IdentityInsertData, IdentityModel, IdentityNationality, IdentityType, IdentityUpdateData, IdentityVerificationProcessInsertData, IdentityVerificationProcessModel, IdentityVerificationProcessesTable, IdentityVerificationStatus, ImportBrokerClientFileInput, ImportBrokerClientFileResponse, ImportBrokerClientFromJsonInput, ImportBrokerClientFromJsonResponse, IndustrialParkExceptions, InvestorExceptions, InvestorRepresentativeItem, InvestorRepresentativeResponse, InvestorRepresentativesResponse, InviteInvestorRepresentativeResponse, InviteMemberChatGroupInput, InviteMemberChatGroupResponse, JobStatus, JobType, JobsTable, LandCurrentStatus, LandType, LinkChatGroupToDealInput, LinkChatGroupToDealResponse, LinkChatGroupToDealStepInput, LinkChatGroupToDealStepResponse, LocationFilter, LocationReadPort, ManagementBrokerItem, ManagementBrokersResponse, MediaAttachmentModel, MediaExceptions, MediaInsertData, MediaItem, MediaListFilter, MediaPort, MediaReadData, MediaResponse, MediaSortField, MediaType, MediasFilter, MediasResponse, MediasTable, MessageType, NotificationChannelModel, NotificationChannelTranslationModel, NotificationChannelTranslationsTable, NotificationChannelsTable, NotificationCommandPort, NotificationDataPort, NotificationDetailStatus, NotificationEnv, NotificationEventsTable, NotificationMessageInsertData, NotificationMessageModel, NotificationMessagesTable, NotificationScheduleInsertData, NotificationScheduleListFilter, NotificationScheduleModel, NotificationScheduleResponse, NotificationScheduleStatus, NotificationScheduleUpdateData, NotificationSchedulesTable, NotificationSettingFilter, NotificationType, NotificationsResponse, OrderRequestDataPort, OrderRequestExceptions, OrderRequestInsertData, OrderRequestListFilter, OrderRequestModel, OrderRequestResponse, OrderRequestType, OrderRequestUpdateData, OrderRequestsFilter, OrderRequestsResponse, OrderRequestsTable, OrganizationInsertData, OrganizationListFilter, OrganizationModel, OrganizationPort, OrganizationUpdateData, OrganizationsTable, Orientation, OtpDataPort, OtpInsertData, OtpModel, OtpType, OtpUpdateData, OtpsTable, OutboxConsumerCursorsTable, OutboxEventsTable, OwnerAuthorizeForSystemInput, OwnerAuthorizeForSystemResponse, Paginated, ParticipantRole, ParticipantStatus, PaymentConfirmationInsertData, PaymentConfirmationsTable, PaymentDataPort, PaymentInstallmentFilter, PaymentInstallmentInsertData, PaymentInstallmentModel, PaymentInstallmentQueryFilter, PaymentInstallmentResponse, PaymentInstallmentStatus, PaymentInstallmentSummaryModel, PaymentInstallmentUpdateData, PaymentInstallmentsFilter, PaymentInstallmentsResponse, PaymentInstallmentsTable, PaymentPagination, PaymentProcessExceptions, PaymentProcessFilter, PaymentProcessInsertData, PaymentProcessModel, PaymentProcessQueryFilter, PaymentProcessResponse, PaymentProcessStatus, PaymentProcessUpdateData, PaymentProcessesFilter, PaymentProcessesResponse, PaymentProcessesTable, PermissionsTable, PolygonCoordinate, PreDealExceptions, PreDealInsertData, PreDealItem, PreDealModel, PreDealResponse, PreDealsFilter, PreDealsPagination, PreDealsResponse, PreDealsTable, PreviewAgreementResponse, ProgressToNextStepInput, ProgressToNextStepResponse, ProjectApprovalStatus, ProjectBoApprover, ProjectClassification, ProjectCurrentStatus, ProjectDataPort, ProjectDetailModel, ProjectDocumentModel, ProjectExceptions, ProjectFilter, ProjectInsertData, ProjectItem, ProjectMedia, ProjectMediaModel, ProjectModel, ProjectOwner, ProjectPagination, ProjectProvince, ProjectResponse, ProjectSearchFilter, ProjectSearchModel, ProjectServiceFee, ProjectStage, ProjectStandard, ProjectToBrokersTable, ProjectToMediasTable, ProjectType, ProjectUpdateData, ProjectUtilitiesTable, ProjectUtilityInsertData, ProjectUtilityModel, ProjectWard, ProjectsFilter, ProjectsResponse, ProjectsTable, PropertiesFilter, PropertiesResponse, PropertiesTable, PropertyApprovalStatus, PropertyAuthorizationType, type PropertyBranchItem, PropertyBranchUserPermissionsTable, PropertyBranchUtilitiesTable, PropertyBranchUtilityInsertData, PropertyBranchesTable, PropertyDataPort, type PropertyDetailItem, PropertyDetailModel, PropertyDetailsTable, PropertyExceptions, type PropertyFilter, PropertyIdentifierModel, PropertyIdentifierType, PropertyIdentifiersTable, type PropertyItem, PropertyLandCurrentStatus, PropertyLegalStatus, PropertyListingFilter, PropertyListingResult, type PropertyMapItem, PropertyMapModel, PropertyMapWithMediaModel, PropertyMapsFilter, PropertyMapsResponse, PropertyMapsTable, PropertyOperationStatus, PropertyResponse, PropertyTransactionStatus, PropertyType, PropertyVersionModel, PropertyVersionsTable, PropertyVisualizationInsertData, type PropertyVisualizationItem, PropertyVisualizationModel, PropertyVisualizationUpdateData, type PropertyVisualizationsFilter, PropertyVisualizationsResponse, PropertyVisualizationsTable, ProvinceExceptions, ProvinceListFilter, ProvinceModel, ProvincesTable, ReadNotificationInput, ReadNotificationResponse, RefreshTokenInput, RefreshTokenResponse, RegisterAccountRequestInsertData, RegisterAccountRequestModel, RegisterAccountRequestUpdateData, RegisterAccountRequestsTable, RegisterAccountVerificationInsertData, RegisterAccountVerificationModel, RegisterAccountVerificationUpdateData, RegisterAccountVerificationsTable, RegisterDataPort, RegisterExceptions, RegisterInvestorRepresentativeResponse, RegisterRequestFilter, RejectTicketsInput, RejectTicketsResponse, RemoveDealStepParticipantsInput, RemoveDealStepParticipantsResponse, RemoveMemberChatGroupInput, RemoveMemberChatGroupResponse, RequestCreateAccountClientInput, RequestCreateAccountClientResponse, RequestCreateAccountInput, RequestCreateAccountResponse, RequestUpdateEmailInput, RequestUpdateEmailResponse, RequestUpdatePhoneNumberInput, RequestUpdatePhoneNumberResponse, RestoreAgreementTemplateResponse, RestoredAgreementTemplate, RoleCodes, RoleExceptions, RoleModel, RolePermissionsTable, RolesTable, ScheduleNotificationInput, ScheduleNotificationResponse, ScheduleType, SchedulerStatus, SearchDealModel, SessionsTable, SetNewPasswordWhenForgotInput, SetNewPasswordWhenForgotResponse, SetPinnedMessageInput, SetPinnedMessageResponse, SettingExceptions, SignAgreementResponse, SignInInput, SignInResponse, SignOutInput, SignOutResponse, SortDirection, TicketExceptions, TicketInsertData, TicketItem, TicketListFilter, TicketModel, TicketPort, TicketStatus, TicketType, TicketUpdateData, TicketsFilter, TicketsResponse, TicketsTable, UnreadCountByChannel, UpdateAgreementTemplateInput, UpdateAgreementTemplateResponse, UpdateAppointmentInput, UpdateAppointmentResponse, UpdateBlacklistInput, UpdateBlacklistResponse, UpdateBrokerPropertyPermissionData, UpdateChatGroupInput, UpdateChatGroupMemberInput, UpdateChatGroupMemberResponse, UpdateChatGroupResponse, UpdateClientCategoryInput, UpdateClientCategoryResponse, UpdateClientInput, UpdateClientResponse, UpdateConsignmentRequestInput, UpdateConsignmentRequestResponse, UpdateDealStepStatusInput, UpdateDealStepStatusResponse, UpdateForSaleInput, UpdateForSaleResponse, UpdateNotificationSettingsInput, UpdateNotificationSettingsResponse, UpdateOrderRequestInput, UpdateOrderRequestResponse, UpdatePaymentInstallmentInput, UpdatePaymentInstallmentResponse, UpdatePaymentProcessInput, UpdatePaymentProcessResponse, UpdateProfileInput, UpdateProfileResponse, UpdateProjectInput, UpdateProjectResponse, UpdatePropertyInput, type UpdatePropertyMapInput, type UpdatePropertyMapResponse, type UpdatePropertyResponse, type UpdatePropertyVisualizationResponse, UpdateUtilityInput, UpdateUtilityResponse, UpgradeToBrokerFromClientInput, UpgradeToBrokerFromClientResponse, UpgradeToInvestorRepresentativeFromClientInput, UpgradeToInvestorRepresentativeFromClientResponse, UploadAgreementInput, UploadAgreementResponse, UploadConfidentialityAgreementInput, UploadConfidentialityAgreementResponse, UploadDocumentByAdministratorInput, UploadDocumentByAdministratorResponse, UploadMediaInput, UploadMediaResponse, UserDataPort, UserExceptions, UserFilter, UserGender, UserHistoriesTable, UserHistoryType, UserInsertData, UserLanguage, UserListFilter, UserModel, UserNotificationSettingInsertData, UserNotificationSettingModel, UserNotificationSettingsTable, UserPermissionsResponse, UserProfileResponse, UserStatus, UserToRoleInsertData, UserToRoleModel, UserToRoleTable, UserUpdateData, UserWithAuthModel, UserWithAvatarModel, UserWithRoleModel, UsersTable, UtilitiesFilter, UtilitiesResponse, UtilitiesTable, UtilityDataPort, UtilityInsertData, UtilityItem, UtilityModel, UtilityReadFilter, UtilityReadItem, UtilityReadPort, UtilityReadResult, UtilityUpdateData, VerificationType, VerifyOtpForgotPasswordInput, VerifyOtpForgotPasswordResponse, VersionAction, type VisualizationPropertyItem, VisualizationsByBrokerResult, VisualizationsByOwnerResult, WardExceptions, WardListFilter, WardModel, WardsTable };
7789
+ export { AcknowledgeAppointmentInput, AcknowledgeAppointmentResponse, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, AddDealStepParticipantsInput, AddDealStepParticipantsResponse, AdministratorDataPort, AgreementDataPort, AgreementExceptions, AgreementInsertData, AgreementModel, AgreementTemplateDataListFilter, AgreementTemplateDataPort, AgreementTemplateExceptions, AgreementTemplateInsertData, AgreementTemplateModel, AgreementTemplateResponse, AgreementTemplateType, AgreementTemplateUpdateData, AgreementTemplatesFilter, AgreementTemplatesResponse, type AgreementTemplatesTable, AgreementTypeDataPort, AgreementTypeExceptions, AgreementTypeModel, type AgreementTypesTable, AgreementUpdateData, type AgreementsTable, AppointmentConfidentialityAgreement, type AppointmentConfidentialityAgreementsTable, AppointmentDataPort, AppointmentExceptions, AppointmentInsertData, AppointmentItem, AppointmentListFilter, AppointmentMediaInsertData, AppointmentModel, AppointmentParticipant, AppointmentParticipantInsertData, AppointmentParticipantModel, AppointmentParticipantWithUserModel, type AppointmentParticipantsTable, AppointmentResponse, AppointmentStatus, AppointmentType, AppointmentUpdateData, AppointmentWithParticipantsModel, AppointmentsFilter, AppointmentsResponse, type AppointmentsTable, ApproveAccountResponse, ApproveConsignmentRequestInput, ApproveConsignmentRequestResponse, ApproveDocumentResponse, ApproveForSaleAdminInput, ApproveForSaleAdminResponse, ApproveForSaleInput, ApproveForSaleResponse, ApproveOrderRequestResponse, ApproveTicketsInput, ApproveTicketsResponse, AssignConsignmentRequestToBrokerInput, AssignConsignmentRequestToBrokerResponse, AssignOrderRequestToBrokerInput, AssignOrderRequestToBrokerResponse, type AssignPropertyToBrokerInput, type AssignPropertyToBrokerResponse, type AssignedBrokerItem, BA_DINH_WARD_NO, BaseRes, BlackListEntityType, BlackListStatus, type BlackListsTable, BlacklistExceptions, BlacklistFilter, BlacklistInsertData, BlacklistListFilter, BlacklistModel, BlacklistPort, BlacklistResponse, BlacklistUpdateData, BlacklistsFilter, BlacklistsResponse, BrokerCommandPort, BrokerConvertClientToJsonResponse, BrokerExceptions, BrokerImportClientFailedItem, BrokerImportClientFileInput, BrokerImportClientFromJsonInput, BrokerImportClientResponse, BrokerImportClientSuccessItem, BrokerSummaryModel, CancelAppointmentInput, CancelAppointmentResponse, ChangeAvatarResponse, ChangeNicknameInput, ChangeNicknameResponse, ChangePasswordInput, ChangePasswordResponse, ChatGroupDataPort, ChatGroupFilter, ChatGroupInsertData, ChatGroupMemberFilter, ChatGroupMemberInsertData, ChatGroupMemberItem, ChatGroupMemberModel, ChatGroupMemberRole, ChatGroupMemberUpdateData, ChatGroupMembersFilter, ChatGroupMembersResponse, type ChatGroupMembersTable, ChatGroupModel, ChatGroupResponse, ChatGroupStatsModel, ChatGroupUpdateData, ChatGroupsFilter, ChatGroupsResponse, type ChatGroupsTable, ChatMessageFilter, ChatMessageInsertData, ChatMessageItem, ChatMessageModel, ChatMessagesFilter, ChatMessagesResponse, type ChatMessagesTable, CheckNicknameAvailabilityInput, CheckNicknameAvailabilityResponse, ClientCategoriesFilter, ClientCategoriesReadResult, ClientCategoriesResponse, type ClientCategoriesTable, type ClientCategoryClientsTable, ClientCategoryExceptions, ClientCategoryFilter, ClientCategoryItem, ClientCategoryModel, ClientCategoryResponse, ClientExceptions, ClientFilter, ClientModel, ClientNeed, ClientReadPort, ClientResponse, ClientRoles, ClientSource, ClientStatus, ClientType, ClientsFilter, ClientsReadResult, ClientsResponse, type ClientsTable, CompleteAppointmentInput, CompleteAppointmentResponse, ConfidentialityAgreementInsertData, ConfidentialityAgreementModel, ConfirmCreateAccountClientInput, ConfirmCreateAccountClientResponse, ConfirmCreateAccountInput, ConfirmCreateAccountResponse, ConfirmPaymentInstallmentInput, ConfirmPaymentInstallmentResponse, ConfirmPaymentProcessInput, ConfirmPaymentProcessResponse, ConfirmUpdateEmailInput, ConfirmUpdateEmailResponse, ConfirmUpdatePhoneNumberInput, ConfirmUpdatePhoneNumberResponse, ConsignmentRequestDataPort, ConsignmentRequestExceptions, ConsignmentRequestFilter, ConsignmentRequestInsertData, ConsignmentRequestListFilter, ConsignmentRequestModel, ConsignmentRequestResponse, ConsignmentRequestType, ConsignmentRequestUpdateData, ConsignmentRequestsFilter, ConsignmentRequestsResponse, type ConsignmentRequestsTable, ConversationExceptions, ConversationPagination, ConvertBrokerClientToJsonInput, ConvertBrokerClientToJsonResponse, ConvertBrokerClientType, CreateAgreementTemplateInput, CreateAgreementTemplateResponse, CreateAppointmentInput, CreateAppointmentResponse, CreateBlacklistInput, CreateBlacklistResponse, CreateBrokerFromRegisterLinkInput, CreateBrokerFromRegisterLinkResponse, CreateBrokerInput, CreateBrokerResponse, CreateChatGroupInput, CreateChatGroupResponse, CreateChatMessageInput, CreateChatMessageResponse, CreateClientCategoryInput, CreateClientCategoryResponse, CreateClientInput, CreateClientResponse, CreateConsignmentRequestInput, CreateConsignmentRequestResponse, CreateDealInput, CreateDealResponse, CreateForSaleInput, CreateForSaleResponse, CreateOrderRequestInput, CreateOrderRequestResponse, CreatePaymentInstallmentInput, CreatePaymentInstallmentResponse, CreatePaymentProcessInput, CreatePaymentProcessResponse, CreatePreDealInput, CreatePreDealResponse, CreateProjectInput, CreateProjectResponse, CreatePropertyInput, CreatePropertyMapInput, type CreatePropertyMapResponse, type CreatePropertyResponse, CreateRepresentativeInvestorInput, CreateRepresentativeInvestorResponse, CreateUtilityInput, CreateUtilityResponse, Database, DealDataPort, DealExceptions, DealFilter, DealFilterType, DealInsertData, DealItem, DealModel, DealParticipantModel, DealParticipantProfile, DealPaymentInstallment, DealProgress, DealStatus, DealStepAttachment, DealStepCreator, DealStepExceptions, DealStepHistoryItem, DealStepInsertData, DealStepModel, DealStepParticipantInsertData, type DealStepParticipantsTable, DealStepStatus, DealStepUpdateData, DealStepWithCreatorModel, DealStepsResponse, type DealStepsTable, DealSummaryResponse, DealUpdateData, DealWithSummaryModel, DealsFilter, DealsForUserFilter, DealsResponse, type DealsTable, DeleteAgreementTemplateResponse, DeleteAppointmentInput, DeleteAppointmentResponse, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteClientCategoryInput, DeleteClientCategoryResponse, DeleteClientInput, DeleteClientResponse, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteForSaleInput, DeleteForSaleResponse, DeleteInvestorRepresentativeResponse, DigitalSignatureDataPort, DigitalSignatureInsertData, DigitalSignatureModel, type DigitalSignaturesTable, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentInsertData, type DocumentToProjectTable, DocumentType, DocumentUpdateData, type DocumentsTable, ForSaleApproveData, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleDataPort, ForSaleExceptions, ForSaleFilter, ForSaleInfrastructureStatus, ForSaleInsertData, ForSaleListFilter, ForSaleModel, ForSalePostType, ForSalePropertyType, ForSaleResponse, ForSaleRoadType, ForSaleStatus, ForSaleUpdateData, ForSaleUtilities, ForSalesFilter, ForSalesResponse, type ForSalesTable, ForgotPasswordInput, ForgotPasswordResponse, GenerateInvestorRegisterLinkInput, GenerateInvestorRegisterLinkResponse, GetManagementBrokerForProjectResponse, type IdentitiesTable, IdentityCardDataPort, IdentityCardEncryptedModel, IdentityCardInsertData, IdentityCardModel, IdentityCardUpdateData, type IdentityCardsTable, IdentityExceptions, IdentityInsertData, IdentityModel, IdentityNationality, IdentityType, IdentityUpdateData, IdentityVerificationProcessInsertData, IdentityVerificationProcessModel, type IdentityVerificationProcessesTable, IdentityVerificationStatus, ImportBrokerClientFileInput, ImportBrokerClientFileResponse, ImportBrokerClientFromJsonInput, ImportBrokerClientFromJsonResponse, IndustrialParkExceptions, InvestorExceptions, InvestorRepresentativeItem, InvestorRepresentativeResponse, InvestorRepresentativesResponse, InviteInvestorRepresentativeResponse, InviteMemberChatGroupInput, InviteMemberChatGroupResponse, JobStatus, JobType, type JobsTable, LandCurrentStatus, LandType, LinkChatGroupToDealInput, LinkChatGroupToDealResponse, LinkChatGroupToDealStepInput, LinkChatGroupToDealStepResponse, LocationFilter, LocationReadPort, ManagementBrokerItem, ManagementBrokersResponse, MediaAttachmentModel, MediaExceptions, MediaInsertData, MediaItem, MediaListFilter, MediaPort, MediaReadData, MediaResponse, MediaSortField, MediaType, MediasFilter, MediasResponse, type MediasTable, MessageType, NotificationChannelModel, NotificationChannelTranslationModel, type NotificationChannelTranslationsTable, type NotificationChannelsTable, NotificationCommandPort, NotificationDataPort, NotificationDetailStatus, NotificationEnv, type NotificationEventsTable, NotificationMessageInsertData, NotificationMessageModel, type NotificationMessagesTable, NotificationScheduleInsertData, NotificationScheduleListFilter, NotificationScheduleModel, NotificationScheduleResponse, NotificationScheduleStatus, NotificationScheduleUpdateData, type NotificationSchedulesTable, NotificationSettingFilter, NotificationType, NotificationsResponse, OrderRequestDataPort, OrderRequestExceptions, OrderRequestInsertData, OrderRequestListFilter, OrderRequestModel, OrderRequestResponse, OrderRequestType, OrderRequestUpdateData, OrderRequestsFilter, OrderRequestsResponse, type OrderRequestsTable, OrganizationInsertData, OrganizationListFilter, OrganizationModel, OrganizationPort, OrganizationUpdateData, type OrganizationsTable, Orientation, OtpDataPort, OtpInsertData, OtpModel, OtpType, OtpUpdateData, type OtpsTable, type OutboxConsumerCursorsTable, type OutboxEventsTable, OwnerAuthorizeForSystemInput, OwnerAuthorizeForSystemResponse, type OwnerItem, Paginated, ParticipantRole, ParticipantStatus, PaymentConfirmationInsertData, type PaymentConfirmationsTable, PaymentDataPort, PaymentInstallmentFilter, PaymentInstallmentInsertData, PaymentInstallmentModel, PaymentInstallmentQueryFilter, PaymentInstallmentResponse, PaymentInstallmentStatus, PaymentInstallmentSummaryModel, PaymentInstallmentUpdateData, PaymentInstallmentsFilter, PaymentInstallmentsResponse, type PaymentInstallmentsTable, PaymentPagination, PaymentProcessExceptions, PaymentProcessFilter, PaymentProcessInsertData, PaymentProcessModel, PaymentProcessQueryFilter, PaymentProcessResponse, PaymentProcessStatus, PaymentProcessUpdateData, PaymentProcessesFilter, PaymentProcessesResponse, type PaymentProcessesTable, type PermissionsTable, PolygonCoordinate, PreDealExceptions, PreDealInsertData, PreDealItem, PreDealModel, PreDealResponse, PreDealsFilter, PreDealsPagination, PreDealsResponse, type PreDealsTable, PreviewAgreementResponse, ProgressToNextStepInput, ProgressToNextStepResponse, ProjectApprovalStatus, ProjectBoApprover, ProjectClassification, ProjectCurrentStatus, ProjectDataPort, ProjectDetailModel, ProjectDocumentModel, ProjectExceptions, ProjectFilter, ProjectInsertData, ProjectItem, ProjectMedia, ProjectMediaModel, ProjectModel, ProjectOwner, ProjectPagination, ProjectProvince, ProjectResponse, ProjectSearchFilter, ProjectSearchModel, ProjectServiceFee, ProjectStage, ProjectStandard, type ProjectSummaryItem, ProjectSummaryModel, type ProjectToBrokersTable, type ProjectToMediasTable, ProjectType, ProjectUpdateData, type ProjectUtilitiesTable, ProjectUtilityInsertData, ProjectUtilityModel, ProjectWard, ProjectsFilter, ProjectsResponse, type ProjectsTable, PropertiesFilter, PropertiesResponse, type PropertiesTable, PropertyApprovalStatus, PropertyAuthorizationType, type PropertyBranchItem, type PropertyBranchUserPermissionsTable, type PropertyBranchUtilitiesTable, PropertyBranchUtilityInsertData, type PropertyBranchesTable, PropertyDataPort, type PropertyDetailItem, PropertyDetailModel, type PropertyDetailsTable, PropertyExceptions, type PropertyFilter, PropertyIdentifierModel, PropertyIdentifierType, type PropertyIdentifiersTable, type PropertyItem, PropertyLandCurrentStatus, PropertyLegalStatus, PropertyListingFilter, PropertyListingResult, type PropertyMapItem, PropertyMapModel, PropertyMapWithMediaModel, PropertyMapsFilter, PropertyMapsResponse, type PropertyMapsTable, PropertyOperationStatus, PropertyResponse, PropertyTransactionStatus, PropertyType, PropertyVersionModel, type PropertyVersionsTable, PropertyVisualizationInsertData, type PropertyVisualizationItem, PropertyVisualizationModel, PropertyVisualizationUpdateData, type PropertyVisualizationsFilter, PropertyVisualizationsResponse, type PropertyVisualizationsTable, ProvinceExceptions, ProvinceListFilter, ProvinceModel, type ProvincesTable, ReadNotificationInput, ReadNotificationResponse, RefreshTokenInput, RefreshTokenResponse, RegisterAccountRequestInsertData, RegisterAccountRequestModel, RegisterAccountRequestUpdateData, type RegisterAccountRequestsTable, RegisterAccountVerificationInsertData, RegisterAccountVerificationModel, RegisterAccountVerificationUpdateData, type RegisterAccountVerificationsTable, RegisterDataPort, RegisterExceptions, RegisterInvestorRepresentativeResponse, RegisterRequestFilter, RejectTicketsInput, RejectTicketsResponse, RemoveDealStepParticipantsInput, RemoveDealStepParticipantsResponse, RemoveMemberChatGroupInput, RemoveMemberChatGroupResponse, RequestCreateAccountClientInput, RequestCreateAccountClientResponse, RequestCreateAccountInput, RequestCreateAccountResponse, RequestUpdateEmailInput, RequestUpdateEmailResponse, RequestUpdatePhoneNumberInput, RequestUpdatePhoneNumberResponse, RestoreAgreementTemplateResponse, RestoredAgreementTemplate, RoleCodes, RoleExceptions, RoleModel, type RolePermissionsTable, type RolesTable, ScheduleNotificationInput, ScheduleNotificationResponse, ScheduleType, SchedulerStatus, SearchDealModel, type SessionsTable, SetNewPasswordWhenForgotInput, SetNewPasswordWhenForgotResponse, SetPinnedMessageInput, SetPinnedMessageResponse, SettingExceptions, SignAgreementResponse, SignInInput, SignInResponse, SignOutInput, SignOutResponse, SortDirection, TicketExceptions, TicketInsertData, TicketItem, TicketListFilter, TicketModel, TicketPort, TicketStatus, TicketType, TicketUpdateData, TicketsFilter, TicketsResponse, type TicketsTable, UnreadCountByChannel, UpdateAgreementTemplateInput, UpdateAgreementTemplateResponse, UpdateAppointmentInput, UpdateAppointmentResponse, UpdateBlacklistInput, UpdateBlacklistResponse, UpdateBrokerPropertyPermissionData, UpdateChatGroupInput, UpdateChatGroupMemberInput, UpdateChatGroupMemberResponse, UpdateChatGroupResponse, UpdateClientCategoryInput, UpdateClientCategoryResponse, UpdateClientInput, UpdateClientResponse, UpdateConsignmentRequestInput, UpdateConsignmentRequestResponse, UpdateDealStepStatusInput, UpdateDealStepStatusResponse, UpdateForSaleInput, UpdateForSaleResponse, UpdateNotificationSettingsInput, UpdateNotificationSettingsResponse, UpdateOrderRequestInput, UpdateOrderRequestResponse, UpdatePaymentInstallmentInput, UpdatePaymentInstallmentResponse, UpdatePaymentProcessInput, UpdatePaymentProcessResponse, UpdateProfileInput, UpdateProfileResponse, UpdateProjectInput, UpdateProjectResponse, UpdatePropertyInput, type UpdatePropertyMapInput, type UpdatePropertyMapResponse, type UpdatePropertyResponse, type UpdatePropertyVisualizationResponse, UpdateUtilityInput, UpdateUtilityResponse, UpgradeToBrokerFromClientInput, UpgradeToBrokerFromClientResponse, UpgradeToInvestorRepresentativeFromClientInput, UpgradeToInvestorRepresentativeFromClientResponse, UploadAgreementInput, UploadAgreementResponse, UploadConfidentialityAgreementInput, UploadConfidentialityAgreementResponse, UploadDocumentByAdministratorInput, UploadDocumentByAdministratorResponse, UploadMediaInput, UploadMediaResponse, UserDataPort, UserExceptions, UserFilter, UserGender, type UserHistoriesTable, UserHistoryType, UserInsertData, UserLanguage, UserListFilter, UserModel, UserNotificationSettingInsertData, UserNotificationSettingModel, type UserNotificationSettingsTable, UserPermissionsResponse, UserProfileResponse, UserStatus, UserSummaryModel, UserToRoleInsertData, UserToRoleModel, type UserToRoleTable, UserUpdateData, UserWithAuthModel, UserWithAvatarModel, UserWithRoleModel, type UsersTable, UtilitiesFilter, UtilitiesResponse, type UtilitiesTable, UtilityDataPort, UtilityInsertData, UtilityItem, UtilityModel, UtilityReadFilter, UtilityReadItem, UtilityReadPort, UtilityReadResult, UtilityUpdateData, VerificationType, VerifyOtpForgotPasswordInput, VerifyOtpForgotPasswordResponse, VersionAction, type VisualizationPropertyItem, VisualizationsByBrokerResult, VisualizationsByOwnerResult, WardExceptions, WardListFilter, WardModel, type WardsTable };
7653
7790
  //# sourceMappingURL=index.d.cts.map