@investtal/models 1.4.0 → 1.4.2

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.mts CHANGED
@@ -1,4 +1,5 @@
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";
2
3
 
3
4
  //#region src/common/constant.d.ts
4
5
  declare const BA_DINH_WARD_NO = "00004";
@@ -1442,6 +1443,11 @@ type UploadDocumentByAdministratorInput = {
1442
1443
  investorId: string;
1443
1444
  };
1444
1445
  //#endregion
1446
+ //#region src/generated/administrator/ports/approve-for-sale.request.d.ts
1447
+ type ApproveForSaleAdminInput = {
1448
+ id: string;
1449
+ };
1450
+ //#endregion
1445
1451
  //#region src/generated/administrator/ports/approve-tickets.request.d.ts
1446
1452
  type ApproveTicketsInput = {
1447
1453
  ticketIds: string[];
@@ -2263,6 +2269,18 @@ interface NotificationScheduleResponse extends BaseRes {
2263
2269
  updatedAt: Date;
2264
2270
  }
2265
2271
  //#endregion
2272
+ //#region src/generated/notification/ports/read-notification.request.d.ts
2273
+ type ReadNotificationInput = {
2274
+ channelCode: string;
2275
+ };
2276
+ //#endregion
2277
+ //#region src/generated/notification/ports/update-notification-settings.request.d.ts
2278
+ type UpdateNotificationSettingsInput = {
2279
+ channelCode: string;
2280
+ isEnable: boolean;
2281
+ isMutedAll?: boolean | null | undefined;
2282
+ };
2283
+ //#endregion
2266
2284
  //#region src/generated/notification/ports/schedule-notification.request.d.ts
2267
2285
  type ScheduleNotificationInput = {
2268
2286
  templateId: string;
@@ -2329,11 +2347,11 @@ declare enum ProjectCurrentStatus {
2329
2347
  UNSPECIFIED = "UNSPECIFIED"
2330
2348
  }
2331
2349
  //#endregion
2332
- //#region src/generated/project/ports/find-management-broker-for-project.response.d.ts
2350
+ //#region src/generated/project/ports/get-management-broker-for-project.response.d.ts
2333
2351
  interface ManagementBrokerItem {
2334
2352
  id: string;
2335
2353
  }
2336
- interface FindManagementBrokerForProjectResponse extends BaseRes {
2354
+ interface GetManagementBrokerForProjectResponse extends BaseRes {
2337
2355
  data: ManagementBrokerItem[];
2338
2356
  }
2339
2357
  //#endregion
@@ -2342,9 +2360,6 @@ interface OwnerAuthorizeForSystemResponse extends BaseRes {
2342
2360
  message: string;
2343
2361
  }
2344
2362
  //#endregion
2345
- //#region src/generated/project/ports/find-management-brokers.response.d.ts
2346
- type ManagementBrokersResponse = ManagementBrokerItem[];
2347
- //#endregion
2348
2363
  //#region src/generated/project/ports/project-data.port.d.ts
2349
2364
  interface ProjectModel {
2350
2365
  id: string;
@@ -2839,7 +2854,7 @@ interface ProjectResponse extends BaseRes {
2839
2854
  }
2840
2855
  //#endregion
2841
2856
  //#region src/generated/project/ports/search-projects.response.d.ts
2842
- interface ProjectListItem {
2857
+ interface ProjectItem {
2843
2858
  id: string;
2844
2859
  name: string;
2845
2860
  slug?: string | null;
@@ -2874,7 +2889,7 @@ interface ProjectListItem {
2874
2889
  medias: ProjectMedia[];
2875
2890
  }
2876
2891
  interface ProjectsResponse extends BaseRes {
2877
- data: ProjectListItem[];
2892
+ data: ProjectItem[];
2878
2893
  total: number;
2879
2894
  page: number;
2880
2895
  limit: number;
@@ -2893,6 +2908,9 @@ interface UpdateProjectResponse extends BaseRes {
2893
2908
  message: string;
2894
2909
  }
2895
2910
  //#endregion
2911
+ //#region src/generated/project/ports/get-management-brokers.response.d.ts
2912
+ type ManagementBrokersResponse = ManagementBrokerItem[];
2913
+ //#endregion
2896
2914
  //#region src/generated/industrial-property/industrial-property.enum.d.ts
2897
2915
  declare enum PropertyType {
2898
2916
  INDUSTRIAL_ZONE = "INDUSTRIAL_ZONE",
@@ -4348,6 +4366,33 @@ type CreateBrokerFromRegisterLinkInput = {
4348
4366
  utmSource: string;
4349
4367
  };
4350
4368
  //#endregion
4369
+ //#region src/generated/register/ports/create-representative-investor.request.d.ts
4370
+ type CreateRepresentativeInvestorInput = {
4371
+ username: string;
4372
+ password: string;
4373
+ idCardFrontImageId: string;
4374
+ idCardBackImageId: string;
4375
+ idCard: string;
4376
+ fullname: string;
4377
+ birthday: string;
4378
+ nationality: IdentityNationality.VN;
4379
+ gender: UserGender;
4380
+ organizationTitle: string;
4381
+ address: string;
4382
+ openPlatform: string;
4383
+ utmCampaign: string;
4384
+ utmMedium: string;
4385
+ utmSource: string;
4386
+ businessLicenseImageId: string;
4387
+ businessName: string;
4388
+ taxCode: string;
4389
+ headOfficeAddress: string;
4390
+ presentativeBusinessPhoneNumber: string;
4391
+ presentativeBusinessEmail: string;
4392
+ email?: string | undefined;
4393
+ phoneNumber?: string | undefined;
4394
+ };
4395
+ //#endregion
4351
4396
  //#region src/generated/register/ports/generate-investor-register-link.request.d.ts
4352
4397
  type GenerateInvestorRegisterLinkInput = {
4353
4398
  username: string;
@@ -4544,7 +4589,7 @@ interface DeleteAppointmentResponse extends BaseRes {
4544
4589
  }
4545
4590
  //#endregion
4546
4591
  //#region src/generated/appointment/ports/search-appointments.response.d.ts
4547
- interface AppointmentListItem {
4592
+ interface AppointmentItem {
4548
4593
  id: string;
4549
4594
  title: string;
4550
4595
  type: string;
@@ -4562,7 +4607,7 @@ interface AppointmentListItem {
4562
4607
  confidentialityAgreements: unknown[];
4563
4608
  }
4564
4609
  interface AppointmentsResponse extends BaseRes {
4565
- data: AppointmentListItem[];
4610
+ data: AppointmentItem[];
4566
4611
  total: number;
4567
4612
  page: number;
4568
4613
  limit: number;
@@ -4675,7 +4720,7 @@ interface AppointmentParticipantInsertData {
4675
4720
  isRequired: boolean;
4676
4721
  createdById: string;
4677
4722
  }
4678
- interface MediaInsertData$1 {
4723
+ interface AppointmentMediaInsertData {
4679
4724
  id: string;
4680
4725
  name: string;
4681
4726
  originalName: string;
@@ -4733,12 +4778,58 @@ interface AppointmentDataPort {
4733
4778
  findParticipantsByAppointment(appointmentId: string, trx?: Transaction<Database>): Promise<AppointmentParticipantWithUserModel[]>;
4734
4779
  updateParticipantsByAppointment(appointmentId: string, data: Record<string, unknown>, trx?: Transaction<Database>): Promise<number>;
4735
4780
  softDeleteParticipants(ids: string[], deletedById: string, trx?: Transaction<Database>): Promise<void>;
4736
- insertMedia(data: MediaInsertData$1, trx?: Transaction<Database>): Promise<void>;
4781
+ insertMedia(data: AppointmentMediaInsertData, trx?: Transaction<Database>): Promise<void>;
4737
4782
  insertConfidentialityAgreements(data: ConfidentialityAgreementInsertData[], trx?: Transaction<Database>): Promise<void>;
4738
4783
  findConfidentialityAgreementsByAppointment(appointmentId: string, trx?: Transaction<Database>): Promise<ConfidentialityAgreementModel[]>;
4739
4784
  softDeleteConfidentialityAgreements(ids: string[], deletedById: string, trx?: Transaction<Database>): Promise<void>;
4740
4785
  }
4741
4786
  //#endregion
4787
+ //#region src/generated/appointment/ports/cancel-appointment.request.d.ts
4788
+ type CancelAppointmentInput = {
4789
+ id: string;
4790
+ reason?: string | undefined;
4791
+ };
4792
+ //#endregion
4793
+ //#region src/generated/appointment/ports/create-appointment.request.d.ts
4794
+ type CreateAppointmentInput = {
4795
+ title: string;
4796
+ type: AppointmentType;
4797
+ startAt: Date;
4798
+ endAt: Date;
4799
+ participantIds: string[];
4800
+ lat: number;
4801
+ lng: number;
4802
+ ward: string;
4803
+ description?: string | undefined;
4804
+ address?: string | undefined;
4805
+ dealId?: string | undefined;
4806
+ mediaIds?: string[] | undefined;
4807
+ };
4808
+ //#endregion
4809
+ //#region src/generated/appointment/ports/update-appointment.request.d.ts
4810
+ type UpdateAppointmentInput = {
4811
+ id: string;
4812
+ title?: string | undefined;
4813
+ description?: string | undefined;
4814
+ status?: AppointmentStatus | undefined;
4815
+ startAt?: Date | undefined;
4816
+ endAt?: Date | undefined;
4817
+ address?: string | undefined;
4818
+ mediaIds?: string[] | undefined;
4819
+ participantIds?: string[] | undefined;
4820
+ lat?: number | undefined;
4821
+ lng?: number | undefined;
4822
+ ward?: string | undefined;
4823
+ };
4824
+ //#endregion
4825
+ //#region src/generated/appointment/ports/upload-confidentiality-agreement.request.d.ts
4826
+ type UploadConfidentialityAgreementInput = {
4827
+ appointmentId: string;
4828
+ file: File;
4829
+ documentOrder: number;
4830
+ documentName?: string | undefined;
4831
+ };
4832
+ //#endregion
4742
4833
  //#region src/generated/deal/deal.enum.d.ts
4743
4834
  declare enum DealStatus {
4744
4835
  PENDING = "PENDING",
@@ -4787,6 +4878,35 @@ declare enum ParticipantStatus {
4787
4878
  NO_RESPONSE = "NO_RESPONSE"
4788
4879
  }
4789
4880
  //#endregion
4881
+ //#region src/generated/appointment/ports/acknowledge-appointment.request.d.ts
4882
+ type AcknowledgeAppointmentInput = {
4883
+ appointmentId: string;
4884
+ status: ParticipantStatus;
4885
+ responseComment?: string | undefined;
4886
+ };
4887
+ //#endregion
4888
+ //#region src/generated/appointment/ports/complete-appointment.request.d.ts
4889
+ type CompleteAppointmentInput = {
4890
+ id: string;
4891
+ };
4892
+ //#endregion
4893
+ //#region src/generated/appointment/ports/delete-appointment.request.d.ts
4894
+ type DeleteAppointmentInput = {
4895
+ id: string;
4896
+ };
4897
+ //#endregion
4898
+ //#region src/generated/appointment/ports/search-appointments.request.d.ts
4899
+ type AppointmentsFilter = {
4900
+ page: number;
4901
+ limit: number;
4902
+ status?: AppointmentStatus[] | undefined;
4903
+ type?: AppointmentType[] | undefined;
4904
+ dealId?: string | undefined;
4905
+ participantUserId?: string | undefined;
4906
+ startDate?: Date | undefined;
4907
+ endDate?: Date | undefined;
4908
+ };
4909
+ //#endregion
4790
4910
  //#region src/generated/payment-process/exceptions.d.ts
4791
4911
  declare const PaymentProcessExceptions: {
4792
4912
  PAYMENT_PROCESS_NOT_FOUND: string;
@@ -4924,29 +5044,6 @@ interface PaymentDataPort {
4924
5044
  updateInstallment(id: string, data: PaymentInstallmentUpdateData, trx?: Transaction<Database>): Promise<void>;
4925
5045
  }
4926
5046
  //#endregion
4927
- //#region src/generated/payment-process/ports/find-payment-installment.response.d.ts
4928
- interface PaymentInstallmentResponse extends BaseRes {
4929
- id: string;
4930
- paymentProcessId: string;
4931
- dealId?: string;
4932
- userConfirmedIds: string[];
4933
- paymentAmount: string;
4934
- paymentDate?: Date;
4935
- dueDate?: Date;
4936
- status: string;
4937
- note?: string;
4938
- metadata: Record<string, unknown>;
4939
- }
4940
- //#endregion
4941
- //#region src/generated/payment-process/ports/find-payment-installments.response.d.ts
4942
- interface PaymentInstallmentsResponse extends BaseRes {
4943
- paymentInstallments: PaymentInstallmentResponse[];
4944
- total: number;
4945
- totalPages: number;
4946
- page: number;
4947
- limit: number;
4948
- }
4949
- //#endregion
4950
5047
  //#region src/generated/payment-process/ports/create-payment-process.response.d.ts
4951
5048
  interface CreatePaymentProcessResponse extends BaseRes {
4952
5049
  paymentProcessId: string;
@@ -4963,12 +5060,7 @@ interface CreatePaymentInstallmentResponse extends BaseRes {
4963
5060
  message: string;
4964
5061
  }
4965
5062
  //#endregion
4966
- //#region src/generated/payment-process/ports/confirm-payment-process.response.d.ts
4967
- interface ConfirmPaymentProcessResponse extends BaseRes {
4968
- message: string;
4969
- }
4970
- //#endregion
4971
- //#region src/generated/payment-process/ports/find-payment-process.response.d.ts
5063
+ //#region src/generated/payment-process/ports/get-payment-process.response.d.ts
4972
5064
  interface PaymentProcessResponse extends BaseRes {
4973
5065
  id: string;
4974
5066
  agreementId: string;
@@ -4982,7 +5074,7 @@ interface PaymentProcessResponse extends BaseRes {
4982
5074
  metadata: Record<string, unknown>;
4983
5075
  }
4984
5076
  //#endregion
4985
- //#region src/generated/payment-process/ports/find-payment-processes.response.d.ts
5077
+ //#region src/generated/payment-process/ports/get-payment-processes.response.d.ts
4986
5078
  interface PaymentProcessesResponse extends BaseRes {
4987
5079
  paymentProcesses: PaymentProcessResponse[];
4988
5080
  total: number;
@@ -4991,11 +5083,39 @@ interface PaymentProcessesResponse extends BaseRes {
4991
5083
  limit: number;
4992
5084
  }
4993
5085
  //#endregion
5086
+ //#region src/generated/payment-process/ports/confirm-payment-process.response.d.ts
5087
+ interface ConfirmPaymentProcessResponse extends BaseRes {
5088
+ message: string;
5089
+ }
5090
+ //#endregion
4994
5091
  //#region src/generated/payment-process/ports/confirm-payment-installment.response.d.ts
4995
5092
  interface ConfirmPaymentInstallmentResponse extends BaseRes {
4996
5093
  message: string;
4997
5094
  }
4998
5095
  //#endregion
5096
+ //#region src/generated/payment-process/ports/get-payment-installment.response.d.ts
5097
+ interface PaymentInstallmentResponse extends BaseRes {
5098
+ id: string;
5099
+ paymentProcessId: string;
5100
+ dealId?: string;
5101
+ userConfirmedIds: string[];
5102
+ paymentAmount: string;
5103
+ paymentDate?: Date;
5104
+ dueDate?: Date;
5105
+ status: string;
5106
+ note?: string;
5107
+ metadata: Record<string, unknown>;
5108
+ }
5109
+ //#endregion
5110
+ //#region src/generated/payment-process/ports/get-payment-installments.response.d.ts
5111
+ interface PaymentInstallmentsResponse extends BaseRes {
5112
+ paymentInstallments: PaymentInstallmentResponse[];
5113
+ total: number;
5114
+ totalPages: number;
5115
+ page: number;
5116
+ limit: number;
5117
+ }
5118
+ //#endregion
4999
5119
  //#region src/generated/payment-process/ports/update-payment-installment.response.d.ts
5000
5120
  interface UpdatePaymentInstallmentResponse extends BaseRes {
5001
5121
  message: string;
@@ -5014,12 +5134,12 @@ type CreatePaymentInstallmentInput = {
5014
5134
  }[];
5015
5135
  };
5016
5136
  //#endregion
5017
- //#region src/generated/payment-process/ports/find-payment-process.request.d.ts
5018
- type PaymentProcessFilter = {
5137
+ //#region src/generated/payment-process/ports/get-payment-installment.request.d.ts
5138
+ type PaymentInstallmentFilter = {
5019
5139
  id: string;
5020
5140
  };
5021
5141
  //#endregion
5022
- //#region src/generated/payment-process/ports/find-payment-installments.request.d.ts
5142
+ //#region src/generated/payment-process/ports/get-payment-installments.request.d.ts
5023
5143
  type PaymentInstallmentsFilter = {
5024
5144
  page: number;
5025
5145
  limit: number;
@@ -5037,11 +5157,6 @@ type CreatePaymentProcessInput = {
5037
5157
  metadata: any;
5038
5158
  };
5039
5159
  //#endregion
5040
- //#region src/generated/payment-process/ports/find-payment-installment.request.d.ts
5041
- type PaymentInstallmentFilter = {
5042
- id: string;
5043
- };
5044
- //#endregion
5045
5160
  //#region src/generated/payment-process/ports/confirm-payment-installment.request.d.ts
5046
5161
  type ConfirmPaymentInstallmentInput = {
5047
5162
  paymentInstallmentId: string;
@@ -5056,7 +5171,7 @@ type UpdatePaymentProcessInput = {
5056
5171
  metadata: any;
5057
5172
  };
5058
5173
  //#endregion
5059
- //#region src/generated/payment-process/ports/find-payment-processes.request.d.ts
5174
+ //#region src/generated/payment-process/ports/get-payment-processes.request.d.ts
5060
5175
  type PaymentProcessesFilter = {
5061
5176
  page: number;
5062
5177
  limit: number;
@@ -5064,6 +5179,11 @@ type PaymentProcessesFilter = {
5064
5179
  status?: PaymentProcessStatus | undefined;
5065
5180
  };
5066
5181
  //#endregion
5182
+ //#region src/generated/payment-process/ports/get-payment-process.request.d.ts
5183
+ type PaymentProcessFilter = {
5184
+ id: string;
5185
+ };
5186
+ //#endregion
5067
5187
  //#region src/generated/payment-process/ports/confirm-payment-process.request.d.ts
5068
5188
  type ConfirmPaymentProcessInput = {
5069
5189
  paymentProcessId: string;
@@ -5322,6 +5442,16 @@ interface ImportBrokerClientFromJsonResponse extends BaseRes {
5322
5442
  }[];
5323
5443
  }
5324
5444
  //#endregion
5445
+ //#region src/generated/broker/ports/import-broker-client-from-json.request.d.ts
5446
+ type ImportBrokerClientFromJsonInput = {
5447
+ data: Record<string, unknown>[];
5448
+ };
5449
+ //#endregion
5450
+ //#region src/generated/broker/ports/import-broker-client-file.request.d.ts
5451
+ type ImportBrokerClientFileInput = {
5452
+ type: string;
5453
+ };
5454
+ //#endregion
5325
5455
  //#region src/generated/consignment-request/exceptions.d.ts
5326
5456
  declare const ConsignmentRequestExceptions: {
5327
5457
  CONSIGNMENT_REQUEST_NOT_FOUND: string;
@@ -5772,7 +5902,12 @@ interface OrderRequestDataPort {
5772
5902
  softDelete(id: string, deletedById: string, trx?: Transaction<Database>): Promise<void>;
5773
5903
  }
5774
5904
  //#endregion
5775
- //#region src/generated/order-request/ports/find-order-request.response.d.ts
5905
+ //#region src/generated/order-request/ports/assign-order-request-to-broker.response.d.ts
5906
+ interface AssignOrderRequestToBrokerResponse extends BaseRes {
5907
+ message: string;
5908
+ }
5909
+ //#endregion
5910
+ //#region src/generated/order-request/ports/get-order-request.response.d.ts
5776
5911
  interface OrderRequestResponse extends BaseRes {
5777
5912
  id: string;
5778
5913
  name: string;
@@ -5786,7 +5921,7 @@ interface OrderRequestResponse extends BaseRes {
5786
5921
  updatedAt?: Date;
5787
5922
  }
5788
5923
  //#endregion
5789
- //#region src/generated/order-request/ports/find-order-requests.response.d.ts
5924
+ //#region src/generated/order-request/ports/get-order-requests.response.d.ts
5790
5925
  interface OrderRequestsResponse extends BaseRes {
5791
5926
  data: OrderRequestResponse[];
5792
5927
  total: number;
@@ -5795,11 +5930,6 @@ interface OrderRequestsResponse extends BaseRes {
5795
5930
  limit: number;
5796
5931
  }
5797
5932
  //#endregion
5798
- //#region src/generated/order-request/ports/assign-order-request-to-broker.response.d.ts
5799
- interface AssignOrderRequestToBrokerResponse extends BaseRes {
5800
- message: string;
5801
- }
5802
- //#endregion
5803
5933
  //#region src/generated/order-request/ports/create-order-request.response.d.ts
5804
5934
  interface CreateOrderRequestResponse extends BaseRes {
5805
5935
  message: string;
@@ -5824,7 +5954,7 @@ type CreateOrderRequestInput = {
5824
5954
  type: OrderRequestType;
5825
5955
  };
5826
5956
  //#endregion
5827
- //#region src/generated/order-request/ports/find-order-requests.request.d.ts
5957
+ //#region src/generated/order-request/ports/get-order-requests.request.d.ts
5828
5958
  type OrderRequestsFilter = {
5829
5959
  page: number;
5830
5960
  limit: number;
@@ -6742,6 +6872,11 @@ interface ConfirmUpdateEmailResponse extends BaseRes {
6742
6872
  message: string;
6743
6873
  }
6744
6874
  //#endregion
6875
+ //#region src/generated/settings/ports/request-update-phone-number.request.d.ts
6876
+ type RequestUpdatePhoneNumberInput = {
6877
+ phoneNumber: string;
6878
+ };
6879
+ //#endregion
6745
6880
  //#region src/generated/settings/ports/update-profile.request.d.ts
6746
6881
  type UpdateProfileInput = {
6747
6882
  fullname?: string | undefined;
@@ -6751,6 +6886,33 @@ type UpdateProfileInput = {
6751
6886
  idCard?: string | undefined;
6752
6887
  };
6753
6888
  //#endregion
6889
+ //#region src/generated/settings/ports/confirm-update-phone-number.request.d.ts
6890
+ type ConfirmUpdatePhoneNumberInput = {
6891
+ genId: string;
6892
+ token: string;
6893
+ };
6894
+ //#endregion
6895
+ //#region src/generated/settings/ports/change-nickname.request.d.ts
6896
+ type ChangeNicknameInput = {
6897
+ nickname: string;
6898
+ };
6899
+ //#endregion
6900
+ //#region src/generated/settings/ports/check-nickname-availability.request.d.ts
6901
+ type CheckNicknameAvailabilityInput = {
6902
+ nickname: string;
6903
+ };
6904
+ //#endregion
6905
+ //#region src/generated/settings/ports/confirm-update-email.request.d.ts
6906
+ type ConfirmUpdateEmailInput = {
6907
+ genId: string;
6908
+ token: string;
6909
+ };
6910
+ //#endregion
6911
+ //#region src/generated/settings/ports/request-update-email.request.d.ts
6912
+ type RequestUpdateEmailInput = {
6913
+ email: string;
6914
+ };
6915
+ //#endregion
6754
6916
  //#region src/generated/client/exceptions.d.ts
6755
6917
  declare const ClientExceptions: {
6756
6918
  CLIENT_NOT_FOUND: string;
@@ -6810,23 +6972,6 @@ type ForSalePropertyTypeValue = string;
6810
6972
  type ClientTypeValue = string;
6811
6973
  type ClientRolesValue = string;
6812
6974
  type ClientNeedValue = string;
6813
- interface ClientReadFilter {
6814
- id: string;
6815
- }
6816
- interface ClientsReadFilter {
6817
- page: number;
6818
- limit: number;
6819
- search?: string;
6820
- status?: ClientStatusValue;
6821
- source?: ClientSourceValue;
6822
- budgetMin?: string | bigint;
6823
- budgetMax?: string | bigint;
6824
- clientCategoryId?: string;
6825
- propertyTypes?: ForSalePropertyTypeValue[];
6826
- clientType?: ClientTypeValue;
6827
- roles?: ClientRolesValue[];
6828
- needs?: ClientNeedValue[];
6829
- }
6830
6975
  interface ClientModel {
6831
6976
  id?: string;
6832
6977
  code?: string;
@@ -6859,14 +7004,6 @@ interface ClientsReadResult {
6859
7004
  total?: number;
6860
7005
  totalPages?: number;
6861
7006
  }
6862
- interface ClientCategoryReadFilter {
6863
- id: string;
6864
- }
6865
- interface ClientCategoriesReadFilter {
6866
- page: number;
6867
- limit: number;
6868
- search?: string;
6869
- }
6870
7007
  interface ClientCategoryModel {
6871
7008
  id?: string;
6872
7009
  name?: string;
@@ -6884,10 +7021,10 @@ interface ClientCategoriesReadResult {
6884
7021
  total?: number;
6885
7022
  }
6886
7023
  interface ClientReadPort {
6887
- getClient(filter: ClientReadFilter): Promise<ClientModel>;
6888
- getClients(filter: ClientsReadFilter): Promise<ClientsReadResult>;
6889
- getClientCategory(filter: ClientCategoryReadFilter): Promise<ClientCategoryModel>;
6890
- getClientCategories(filter: ClientCategoriesReadFilter): Promise<ClientCategoriesReadResult>;
7024
+ getClient(filter: ClientFilter$1): Promise<ClientModel>;
7025
+ getClients(filter: ClientsFilter$1): Promise<ClientsReadResult>;
7026
+ getClientCategory(filter: ClientCategoryFilter): Promise<ClientCategoryModel>;
7027
+ getClientCategories(filter: ClientCategoriesFilter$1): Promise<ClientCategoriesReadResult>;
6891
7028
  }
6892
7029
  //#endregion
6893
7030
  //#region src/generated/client/ports/create-client.response.d.ts
@@ -7018,6 +7155,11 @@ type ClientFilter = {
7018
7155
  id: string;
7019
7156
  };
7020
7157
  //#endregion
7158
+ //#region src/generated/client/ports/delete-client-category.request.d.ts
7159
+ type DeleteClientCategoryInput = {
7160
+ id: string;
7161
+ };
7162
+ //#endregion
7021
7163
  //#region src/generated/client/ports/update-client.request.d.ts
7022
7164
  type UpdateClientInput = {
7023
7165
  id: string;
@@ -7041,6 +7183,13 @@ type UpdateClientInput = {
7041
7183
  needs?: ClientNeed[] | undefined;
7042
7184
  };
7043
7185
  //#endregion
7186
+ //#region src/generated/client/ports/get-client-categories.request.d.ts
7187
+ type ClientCategoriesFilter = {
7188
+ page: number;
7189
+ limit: number;
7190
+ search?: string | undefined;
7191
+ };
7192
+ //#endregion
7044
7193
  //#region src/generated/client/ports/get-clients.request.d.ts
7045
7194
  type ClientsFilter = {
7046
7195
  page: number;
@@ -7048,6 +7197,8 @@ type ClientsFilter = {
7048
7197
  budgetMin: bigint | undefined;
7049
7198
  budgetMax: bigint | undefined;
7050
7199
  needs: ClientNeed[];
7200
+ createdById?: string | undefined;
7201
+ clientIds?: string[] | undefined;
7051
7202
  status?: ClientStatus | undefined;
7052
7203
  source?: ClientSource | undefined;
7053
7204
  propertyTypes?: ForSalePropertyType[] | undefined;
@@ -7062,6 +7213,19 @@ type DeleteClientInput = {
7062
7213
  id: string;
7063
7214
  };
7064
7215
  //#endregion
7216
+ //#region src/generated/client/ports/update-client-category.request.d.ts
7217
+ type UpdateClientCategoryInput = {
7218
+ id: string;
7219
+ name: string;
7220
+ clientIds?: string[] | undefined;
7221
+ };
7222
+ //#endregion
7223
+ //#region src/generated/client/ports/create-client-category.request.d.ts
7224
+ type CreateClientCategoryInput = {
7225
+ name: string;
7226
+ clientIds: string[];
7227
+ };
7228
+ //#endregion
7065
7229
  //#region src/generated/deal/exceptions.d.ts
7066
7230
  declare const DealExceptions: {
7067
7231
  DEAL_NOT_FOUND: string;
@@ -7151,7 +7315,7 @@ interface CreatePreDealResponse extends BaseRes {
7151
7315
  }
7152
7316
  //#endregion
7153
7317
  //#region src/generated/deal/ports/search-deals.response.d.ts
7154
- interface DealListItem {
7318
+ interface DealItem {
7155
7319
  id: string;
7156
7320
  currentStepName: string;
7157
7321
  participants: unknown[];
@@ -7162,7 +7326,7 @@ interface DealListItem {
7162
7326
  updatedAt: Date;
7163
7327
  }
7164
7328
  interface DealsResponse extends BaseRes {
7165
- data: DealListItem[];
7329
+ data: DealItem[];
7166
7330
  total: number;
7167
7331
  page: number;
7168
7332
  limit: number;
@@ -7398,6 +7562,19 @@ interface UpdateDealStepStatusResponse extends BaseRes {
7398
7562
  message: string;
7399
7563
  }
7400
7564
  //#endregion
7565
+ //#region src/generated/deal/ports/link-chat-group-to-deal.request.d.ts
7566
+ type LinkChatGroupToDealInput = {
7567
+ chatGroupId: string;
7568
+ };
7569
+ //#endregion
7570
+ //#region src/generated/deal/ports/progress-to-next-step.request.d.ts
7571
+ type ProgressToNextStepInput = {
7572
+ dealId: string;
7573
+ nextStepType: DealProgress;
7574
+ nextStepDescription: string;
7575
+ attachmentFileIds: string[];
7576
+ };
7577
+ //#endregion
7401
7578
  //#region src/generated/deal/ports/create-deal.request.d.ts
7402
7579
  type CreateDealInput = {
7403
7580
  brokerId: string;
@@ -7419,6 +7596,40 @@ type CreateDealInput = {
7419
7596
  consignmentRequestId?: string | undefined;
7420
7597
  };
7421
7598
  //#endregion
7599
+ //#region src/generated/deal/ports/remove-deal-step-participants.request.d.ts
7600
+ type RemoveDealStepParticipantsInput = {
7601
+ dealStepId: string;
7602
+ participantIds: string[];
7603
+ };
7604
+ //#endregion
7605
+ //#region src/generated/deal/ports/add-deal-step-participants.request.d.ts
7606
+ type AddDealStepParticipantsInput = {
7607
+ dealStepId: string;
7608
+ participants: {
7609
+ userId: string;
7610
+ participantRole: ParticipantRole;
7611
+ }[];
7612
+ };
7613
+ //#endregion
7614
+ //#region src/generated/deal/ports/create-pre-deal.request.d.ts
7615
+ type CreatePreDealInput = {
7616
+ name: string;
7617
+ agreementId: string;
7618
+ involvedBrokerIds: string[];
7619
+ description?: string | undefined;
7620
+ };
7621
+ //#endregion
7622
+ //#region src/generated/deal/ports/link-chat-group-to-deal-step.request.d.ts
7623
+ type LinkChatGroupToDealStepInput = {
7624
+ chatGroupId: string;
7625
+ };
7626
+ //#endregion
7627
+ //#region src/generated/deal/ports/update-deal-step-status.request.d.ts
7628
+ type UpdateDealStepStatusInput = {
7629
+ dealStepId: string;
7630
+ status: DealStepStatus;
7631
+ };
7632
+ //#endregion
7422
7633
  //#region src/generated/deal/ports/deal-summary.request.d.ts
7423
7634
  type DealFilter = {
7424
7635
  id: string;
@@ -7436,5 +7647,5 @@ type DealsFilter = {
7436
7647
  dealType?: DealFilterType[] | undefined;
7437
7648
  };
7438
7649
  //#endregion
7439
- export { type AcknowledgeAppointmentResponse, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, AddDealStepParticipantsResponse, AdministratorDataPort, AgreementDataPort, AgreementExceptions, AgreementInsertData, AgreementModel, AgreementTemplateDataListFilter, AgreementTemplateDataPort, AgreementTemplateExceptions, AgreementTemplateInsertData, AgreementTemplateModel, AgreementTemplateResponse, AgreementTemplateType, AgreementTemplateUpdateData, AgreementTemplatesFilter, AgreementTemplatesResponse, AgreementTemplatesTable, AgreementTypeDataPort, AgreementTypeExceptions, AgreementTypeModel, AgreementTypesTable, AgreementUpdateData, AgreementsTable, type AppointmentConfidentialityAgreement, AppointmentConfidentialityAgreementsTable, type AppointmentDataPort, AppointmentExceptions, type AppointmentInsertData, type AppointmentListFilter, type AppointmentListItem, type AppointmentModel, type AppointmentParticipant, type AppointmentParticipantInsertData, type AppointmentParticipantModel, type AppointmentParticipantWithUserModel, AppointmentParticipantsTable, type AppointmentResponse, AppointmentStatus, AppointmentType, type AppointmentUpdateData, type AppointmentWithParticipantsModel, type AppointmentsResponse, AppointmentsTable, ApproveAccountResponse, ApproveConsignmentRequestInput, ApproveConsignmentRequestResponse, ApproveDocumentResponse, 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, type CancelAppointmentResponse, ChangeAvatarResponse, 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, CheckNicknameAvailabilityResponse, ClientCategoriesReadFilter, ClientCategoriesReadResult, ClientCategoriesResponse, ClientCategoriesTable, ClientCategoryClientsTable, ClientCategoryExceptions, ClientCategoryItem, ClientCategoryModel, ClientCategoryReadFilter, ClientCategoryResponse, ClientExceptions, ClientFilter, ClientModel, ClientNeed, ClientNeedValue, ClientReadFilter, ClientReadPort, ClientResponse, ClientRoles, ClientRolesValue, ClientSource, ClientSourceValue, ClientStatus, ClientStatusValue, ClientType, ClientTypeValue, ClientsFilter, ClientsReadFilter, ClientsReadResult, ClientsResponse, ClientsTable, type CompleteAppointmentResponse, type ConfidentialityAgreementInsertData, type ConfidentialityAgreementModel, ConfirmCreateAccountClientInput, ConfirmCreateAccountClientResponse, ConfirmCreateAccountInput, ConfirmCreateAccountResponse, ConfirmPaymentInstallmentInput, ConfirmPaymentInstallmentResponse, ConfirmPaymentProcessInput, ConfirmPaymentProcessResponse, ConfirmUpdateEmailResponse, ConfirmUpdatePhoneNumberResponse, ConsignmentRequestDataPort, ConsignmentRequestExceptions, ConsignmentRequestFilter, ConsignmentRequestInsertData, ConsignmentRequestListFilter, ConsignmentRequestModel, ConsignmentRequestResponse, ConsignmentRequestType, ConsignmentRequestUpdateData, ConsignmentRequestsFilter, ConsignmentRequestsResponse, ConsignmentRequestsTable, ConversationExceptions, ConversationPagination, ConvertBrokerClientToJsonInput, ConvertBrokerClientToJsonResponse, ConvertBrokerClientType, CreateAgreementTemplateInput, CreateAgreementTemplateResponse, type CreateAppointmentResponse, CreateBlacklistInput, CreateBlacklistResponse, CreateBrokerFromRegisterLinkInput, CreateBrokerFromRegisterLinkResponse, CreateBrokerInput, CreateBrokerResponse, CreateChatGroupInput, CreateChatGroupResponse, CreateChatMessageInput, CreateChatMessageResponse, CreateClientCategoryResponse, CreateClientInput, CreateClientResponse, CreateConsignmentRequestInput, CreateConsignmentRequestResponse, CreateDealInput, CreateDealResponse, CreateForSaleInput, CreateForSaleResponse, CreateOrderRequestInput, CreateOrderRequestResponse, CreatePaymentInstallmentInput, CreatePaymentInstallmentResponse, CreatePaymentProcessInput, CreatePaymentProcessResponse, CreatePreDealResponse, CreateProjectInput, CreateProjectResponse, CreatePropertyInput, CreatePropertyMapInput, type CreatePropertyMapResponse, type CreatePropertyResponse, CreateRepresentativeInvestorResponse, CreateUtilityInput, CreateUtilityResponse, Database, DealDataPort, DealExceptions, DealFilter, DealFilterType, DealInsertData, DealListItem, 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, type DeleteAppointmentResponse, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteClientCategoryResponse, DeleteClientInput, DeleteClientResponse, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteForSaleInput, DeleteForSaleResponse, DeleteInvestorRepresentativeResponse, DigitalSignatureDataPort, DigitalSignatureInsertData, DigitalSignatureModel, DigitalSignaturesTable, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentInsertData, DocumentToProjectTable, DocumentType, DocumentUpdateData, DocumentsTable, FindManagementBrokerForProjectResponse, 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, IdentitiesTable, IdentityCardDataPort, IdentityCardEncryptedModel, IdentityCardInsertData, IdentityCardModel, IdentityCardUpdateData, IdentityCardsTable, IdentityExceptions, IdentityInsertData, IdentityModel, IdentityNationality, IdentityType, IdentityUpdateData, IdentityVerificationProcessInsertData, IdentityVerificationProcessModel, IdentityVerificationProcessesTable, IdentityVerificationStatus, ImportBrokerClientFileResponse, ImportBrokerClientFromJsonResponse, IndustrialParkExceptions, InvestorExceptions, InvestorRepresentativeItem, InvestorRepresentativeResponse, InvestorRepresentativesResponse, InviteInvestorRepresentativeResponse, InviteMemberChatGroupInput, InviteMemberChatGroupResponse, JobStatus, JobType, JobsTable, LandCurrentStatus, LandType, LinkChatGroupToDealResponse, 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, ProgressToNextStepResponse, ProjectApprovalStatus, ProjectBoApprover, ProjectClassification, ProjectCurrentStatus, ProjectDataPort, ProjectDetailModel, ProjectDocumentModel, ProjectExceptions, ProjectFilter, ProjectInsertData, ProjectListItem, 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, ReadNotificationResponse, RefreshTokenInput, RefreshTokenResponse, RegisterAccountRequestInsertData, RegisterAccountRequestModel, RegisterAccountRequestUpdateData, RegisterAccountRequestsTable, RegisterAccountVerificationInsertData, RegisterAccountVerificationModel, RegisterAccountVerificationUpdateData, RegisterAccountVerificationsTable, RegisterDataPort, RegisterExceptions, RegisterInvestorRepresentativeResponse, RegisterRequestFilter, RejectTicketsInput, RejectTicketsResponse, RemoveDealStepParticipantsResponse, RemoveMemberChatGroupInput, RemoveMemberChatGroupResponse, RequestCreateAccountClientInput, RequestCreateAccountClientResponse, RequestCreateAccountInput, RequestCreateAccountResponse, RequestUpdateEmailResponse, 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, type UpdateAppointmentResponse, UpdateBlacklistInput, UpdateBlacklistResponse, UpdateBrokerPropertyPermissionData, UpdateChatGroupInput, UpdateChatGroupMemberInput, UpdateChatGroupMemberResponse, UpdateChatGroupResponse, UpdateClientCategoryResponse, UpdateClientInput, UpdateClientResponse, UpdateConsignmentRequestInput, UpdateConsignmentRequestResponse, UpdateDealStepStatusResponse, UpdateForSaleInput, UpdateForSaleResponse, 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, type 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 };
7650
+ 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, 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 };
7440
7651
  //# sourceMappingURL=index.d.mts.map