@investtal/models 1.5.3 → 1.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1754,6 +1754,20 @@ interface UploadAgreementResponse extends BaseRes {
1754
1754
  createdAt: Date;
1755
1755
  }
1756
1756
  //#endregion
1757
+ //#region src/generated/agreement/ports/agreement-command.port.d.ts
1758
+ type UploadAgreementInput$1 = {
1759
+ name: string;
1760
+ agreementFile: File;
1761
+ relatedUserIds: string[];
1762
+ userToSignIds: string[];
1763
+ agreementTypeCode: string;
1764
+ };
1765
+ interface AgreementCommandPort {
1766
+ previewAgreement(id: string): Promise<PreviewAgreementResponse>;
1767
+ uploadAgreement(input: UploadAgreementInput$1): Promise<UploadAgreementResponse>;
1768
+ signAgreement(id: string): Promise<SignAgreementResponse>;
1769
+ }
1770
+ //#endregion
1757
1771
  //#region src/generated/agreement-template/agreement-template.enum.d.ts
1758
1772
  declare enum AgreementTemplateType {
1759
1773
  SYSTEM = "SYSTEM",
@@ -2072,6 +2086,51 @@ interface UpdateAgreementTemplateResponse extends BaseRes {
2072
2086
  agreementTemplateId: string;
2073
2087
  }
2074
2088
  //#endregion
2089
+ //#region src/generated/agreement-template/ports/agreement-template.port.d.ts
2090
+ type AgreementTemplateFiltersInput = {
2091
+ page: number;
2092
+ limit: number;
2093
+ types?: AgreementTemplateType[] | undefined;
2094
+ search?: string | undefined;
2095
+ creatorRole?: RoleCodes | undefined;
2096
+ };
2097
+ type CreateAgreementTemplateInput$1 = {
2098
+ name: string;
2099
+ type: AgreementTemplateType;
2100
+ fileId: string;
2101
+ creatorRole: RoleCodes;
2102
+ description?: string | undefined;
2103
+ metadata?: Record<string, any> | undefined;
2104
+ };
2105
+ type UpdateAgreementTemplateInput$1 = {
2106
+ id: string;
2107
+ name?: string | undefined;
2108
+ description?: string | undefined;
2109
+ fileId?: string | undefined;
2110
+ isActive?: boolean | undefined;
2111
+ metadata?: Record<string, any> | undefined;
2112
+ diff?: Record<string, any> | undefined;
2113
+ };
2114
+ interface AgreementTemplateListResult {
2115
+ templates: AgreementTemplateModel[];
2116
+ total: number;
2117
+ page: number;
2118
+ limit: number;
2119
+ totalPages: number;
2120
+ }
2121
+ interface DeleteAgreementTemplateResult {
2122
+ success: boolean;
2123
+ message: string;
2124
+ }
2125
+ interface AgreementTemplatePort {
2126
+ getAgreementTemplateById(id: string): Promise<AgreementTemplateModel | undefined>;
2127
+ listAgreementTemplates(filters: AgreementTemplateFiltersInput): Promise<AgreementTemplateListResult>;
2128
+ createAgreementTemplate(input: CreateAgreementTemplateInput$1): Promise<CreateAgreementTemplateResponse>;
2129
+ updateAgreementTemplate(input: UpdateAgreementTemplateInput$1): Promise<UpdateAgreementTemplateResponse>;
2130
+ deleteAgreementTemplate(id: string): Promise<DeleteAgreementTemplateResult>;
2131
+ restoreAgreementTemplate(id: string): Promise<RestoreAgreementTemplateResponse>;
2132
+ }
2133
+ //#endregion
2075
2134
  //#region src/generated/appointment/appointment.enum.d.ts
2076
2135
  declare enum AppointmentStatus {
2077
2136
  PENDING_APPROVAL = "PENDING_APPROVAL",
@@ -3064,6 +3123,84 @@ declare const ClientCategoryExceptions: {
3064
3123
  FORBIDDEN: string;
3065
3124
  };
3066
3125
  //#endregion
3126
+ //#region src/generated/client/ports/client-command.port.d.ts
3127
+ type ClientCommandCreateInput = {
3128
+ fullname: string;
3129
+ status: ClientStatus;
3130
+ source: ClientSource;
3131
+ budgetMin: bigint | undefined;
3132
+ budgetMax: bigint | undefined;
3133
+ budgetCurrency: string;
3134
+ propertyTypes: ForSalePropertyType[];
3135
+ clientType: ClientType;
3136
+ roles: ClientRoles[];
3137
+ needs: ClientNeed[];
3138
+ phoneNumber?: string | undefined;
3139
+ email?: string | undefined;
3140
+ address?: string | undefined;
3141
+ gender?: UserGender | undefined;
3142
+ birthday?: Date | undefined;
3143
+ lastContactDate?: Date | undefined;
3144
+ notes?: string | undefined;
3145
+ metadata?: any;
3146
+ };
3147
+ type ClientCommandUpdateInput = {
3148
+ id: string;
3149
+ budgetMin: bigint | undefined;
3150
+ budgetMax: bigint | undefined;
3151
+ fullname?: string | undefined;
3152
+ phoneNumber?: string | undefined;
3153
+ email?: string | undefined;
3154
+ address?: string | undefined;
3155
+ gender?: UserGender | undefined;
3156
+ birthday?: string | undefined;
3157
+ status?: ClientStatus | undefined;
3158
+ source?: ClientSource | undefined;
3159
+ budgetCurrency?: string | undefined;
3160
+ propertyTypes?: ForSalePropertyType[] | undefined;
3161
+ lastContactDate?: string | undefined;
3162
+ notes?: string | undefined;
3163
+ metadata?: any;
3164
+ clientType?: ClientType | undefined;
3165
+ roles?: ClientRoles[] | undefined;
3166
+ needs?: ClientNeed[] | undefined;
3167
+ };
3168
+ type ClientCommandDeleteInput = {
3169
+ id: string;
3170
+ };
3171
+ interface ClientCategoryCommandCreateInput {
3172
+ name: string;
3173
+ clientIds: string[];
3174
+ }
3175
+ type ClientCategoryCommandUpdateInput = {
3176
+ id: string;
3177
+ name: string;
3178
+ clientIds?: string[] | undefined;
3179
+ };
3180
+ type ClientCategoryCommandDeleteInput = {
3181
+ id: string;
3182
+ };
3183
+ interface ClientCommandCreateResult {
3184
+ clientId?: string;
3185
+ clientCode?: string;
3186
+ message?: string;
3187
+ }
3188
+ interface ClientCommandMutationResult {
3189
+ message?: string;
3190
+ }
3191
+ interface ClientCategoryCommandCreateResult {
3192
+ categoryId: string;
3193
+ message: string;
3194
+ }
3195
+ interface ClientCommandPort {
3196
+ createClient(input: ClientCommandCreateInput): Promise<ClientCommandCreateResult>;
3197
+ updateClient(input: ClientCommandUpdateInput): Promise<ClientCommandMutationResult>;
3198
+ deleteClient(input: ClientCommandDeleteInput): Promise<ClientCommandMutationResult>;
3199
+ createClientCategory(input: ClientCategoryCommandCreateInput): Promise<ClientCategoryCommandCreateResult>;
3200
+ updateClientCategory(input: ClientCategoryCommandUpdateInput): Promise<ClientCommandMutationResult>;
3201
+ deleteClientCategory(input: ClientCategoryCommandDeleteInput): Promise<ClientCommandMutationResult>;
3202
+ }
3203
+ //#endregion
3067
3204
  //#region src/generated/client/ports/get-client.request.d.ts
3068
3205
  type ClientFilter = {
3069
3206
  id: string;
@@ -7228,6 +7365,22 @@ interface MediaResponse extends BaseRes {
7228
7365
  createdAt?: Date;
7229
7366
  }
7230
7367
  //#endregion
7368
+ //#region src/generated/utility/ports/get-utilities.response.d.ts
7369
+ interface UtilityItem {
7370
+ id: string;
7371
+ name: string;
7372
+ description?: string;
7373
+ icon: string;
7374
+ scope: string;
7375
+ isSelected?: boolean;
7376
+ source: string;
7377
+ createdAt?: Date;
7378
+ updatedAt?: Date;
7379
+ }
7380
+ interface UtilitiesResponse extends BaseRes {
7381
+ data: UtilityItem[];
7382
+ }
7383
+ //#endregion
7231
7384
  //#region src/generated/industrial-property/ports/get-property.response.d.ts
7232
7385
  interface PropertyDetailItem {
7233
7386
  id?: string;
@@ -7250,16 +7403,18 @@ interface PropertyDetailItem {
7250
7403
  interface AssignedBrokerItem {
7251
7404
  brokerId: string;
7252
7405
  brokerName: string;
7253
- avatar: string;
7254
- phoneNumber: string;
7255
- description: string;
7406
+ avatar?: string;
7407
+ phoneNumber?: string;
7408
+ description?: string;
7409
+ email?: string;
7256
7410
  }
7257
7411
  interface OwnerItem {
7258
7412
  ownerId: string;
7259
7413
  ownerName: string;
7260
7414
  avatar: string;
7261
- phoneNumber: string;
7415
+ phoneNumber?: string;
7262
7416
  companyName: string;
7417
+ email?: string;
7263
7418
  }
7264
7419
  interface ProjectSummaryItem {
7265
7420
  projectId: string;
@@ -7271,12 +7426,6 @@ interface NotesItem {
7271
7426
  isImportant?: boolean;
7272
7427
  attachments: MediaResponse[];
7273
7428
  }
7274
- interface UtilityItem {
7275
- id: string;
7276
- name: string;
7277
- description?: string;
7278
- icon: string;
7279
- }
7280
7429
  interface PropertyItem {
7281
7430
  id: string;
7282
7431
  title: string;
@@ -7330,6 +7479,7 @@ interface PropertyItem {
7330
7479
  parentMainId?: string;
7331
7480
  propertyId?: string;
7332
7481
  propertyBranchId?: string;
7482
+ utilities?: UtilityItem[];
7333
7483
  createdAt?: Date;
7334
7484
  updatedAt?: Date;
7335
7485
  createdById?: string;
@@ -7587,6 +7737,7 @@ interface UserSummaryModel {
7587
7737
  avatarName?: string;
7588
7738
  avatarBucket?: string;
7589
7739
  organizationName?: string;
7740
+ email?: string;
7590
7741
  }
7591
7742
  interface ProjectSummaryModel {
7592
7743
  id: string;
@@ -7684,6 +7835,8 @@ interface PropertyDataPort {
7684
7835
  findBranchesByParentId(parentId: string, trx?: Transaction<Database>): Promise<PropertyBranchesTable[]>;
7685
7836
  findDetailsByPropertyIds(propertyIds: string[], trx?: Transaction<Database>): Promise<PropertyDetailsTable[]>;
7686
7837
  findDetailsByBranchIds(branchIds: string[], trx?: Transaction<Database>): Promise<PropertyDetailsTable[]>;
7838
+ findUtilitiesByPropertyIds(propertyIds: string[], trx?: Transaction<Database>): Promise<Map<string, UtilityItem[]>>;
7839
+ findUtilitiesByBranchIds(branchIds: string[], trx?: Transaction<Database>): Promise<Map<string, UtilityItem[]>>;
7687
7840
  }
7688
7841
  //#endregion
7689
7842
  //#region src/generated/industrial-property/ports/update-property.request.d.ts
@@ -10121,6 +10274,13 @@ interface TicketPort {
10121
10274
  softDelete(id: string, deletedById: string, trx?: Transaction<Database>): Promise<void>;
10122
10275
  }
10123
10276
  //#endregion
10277
+ //#region src/generated/utility/ports/create-utility.request.d.ts
10278
+ type CreateUtilityInput = {
10279
+ name: string;
10280
+ icon: string;
10281
+ description?: string | undefined;
10282
+ };
10283
+ //#endregion
10124
10284
  //#region src/generated/utility/ports/create-utility.response.d.ts
10125
10285
  interface CreateUtilityResponse extends BaseRes {
10126
10286
  id: string;
@@ -10134,21 +10294,19 @@ interface CreateUtilityResponse extends BaseRes {
10134
10294
  updatedAt: Date;
10135
10295
  }
10136
10296
  //#endregion
10137
- //#region src/generated/utility/ports/get-utilities.response.d.ts
10138
- interface UtilityItem$1 {
10139
- id: string;
10140
- name: string;
10141
- description?: string;
10142
- icon: string;
10143
- scope: string;
10144
- isSelected?: boolean;
10145
- source: string;
10146
- createdAt?: Date;
10147
- updatedAt?: Date;
10148
- }
10149
- interface UtilitiesResponse extends BaseRes {
10150
- data: UtilityItem$1[];
10151
- }
10297
+ //#region src/generated/utility/ports/get-utilities.request.d.ts
10298
+ type UtilitiesFilter = {
10299
+ projectId?: string | undefined;
10300
+ propertyBranchId?: string | undefined;
10301
+ selectedOnly?: boolean | undefined;
10302
+ };
10303
+ //#endregion
10304
+ //#region src/generated/utility/ports/update-utility.request.d.ts
10305
+ type UpdateUtilityInput = {
10306
+ name?: string | undefined;
10307
+ description?: string | undefined;
10308
+ icon?: string | undefined;
10309
+ };
10152
10310
  //#endregion
10153
10311
  //#region src/generated/utility/ports/update-utility.response.d.ts
10154
10312
  interface UpdateUtilityResponse extends BaseRes {
@@ -10163,6 +10321,62 @@ interface UpdateUtilityResponse extends BaseRes {
10163
10321
  updatedAt: Date;
10164
10322
  }
10165
10323
  //#endregion
10324
+ //#region src/generated/utility/ports/utility-command.port.d.ts
10325
+ interface UtilityCommandCreateProjectInput {
10326
+ projectId: string;
10327
+ input: {
10328
+ name: string;
10329
+ icon: string;
10330
+ description?: string | undefined;
10331
+ };
10332
+ }
10333
+ interface UtilityCommandCreatePropertyBranchInput {
10334
+ propertyBranchId: string;
10335
+ input: {
10336
+ name: string;
10337
+ icon: string;
10338
+ description?: string | undefined;
10339
+ };
10340
+ }
10341
+ interface UtilityCommandUpdateInput {
10342
+ utilityId: string;
10343
+ input: {
10344
+ name?: string | undefined;
10345
+ description?: string | undefined;
10346
+ icon?: string | undefined;
10347
+ };
10348
+ }
10349
+ interface UtilityCommandDeleteInput {
10350
+ utilityId: string;
10351
+ }
10352
+ interface UtilityCommandAddProjectInput {
10353
+ projectId: string;
10354
+ utilityId: string;
10355
+ description?: string;
10356
+ }
10357
+ interface UtilityCommandAddPropertyBranchInput {
10358
+ propertyBranchId: string;
10359
+ utilityId: string;
10360
+ }
10361
+ interface UtilityCommandRemoveProjectInput {
10362
+ projectId: string;
10363
+ utilityId: string;
10364
+ }
10365
+ interface UtilityCommandRemovePropertyBranchInput {
10366
+ propertyBranchId: string;
10367
+ utilityId: string;
10368
+ }
10369
+ interface UtilityCommandPort {
10370
+ createProjectUtility(input: UtilityCommandCreateProjectInput): Promise<CreateUtilityResponse>;
10371
+ createPropertyBranchUtility(input: UtilityCommandCreatePropertyBranchInput): Promise<CreateUtilityResponse>;
10372
+ updateUtility(input: UtilityCommandUpdateInput): Promise<UpdateUtilityResponse>;
10373
+ deleteUtility(input: UtilityCommandDeleteInput): Promise<boolean>;
10374
+ addUtilityToProject(input: UtilityCommandAddProjectInput): Promise<boolean>;
10375
+ addUtilityToPropertyBranch(input: UtilityCommandAddPropertyBranchInput): Promise<boolean>;
10376
+ removeUtilityFromProject(input: UtilityCommandRemoveProjectInput): Promise<boolean>;
10377
+ removeUtilityFromPropertyBranch(input: UtilityCommandRemovePropertyBranchInput): Promise<boolean>;
10378
+ }
10379
+ //#endregion
10166
10380
  //#region src/generated/utility/ports/utility-read.port.d.ts
10167
10381
  interface UtilityReadFilter {
10168
10382
  projectId?: string;
@@ -10249,5 +10463,5 @@ interface UtilityDataPort {
10249
10463
  } | undefined>;
10250
10464
  }
10251
10465
  //#endregion
10252
- export { AcknowledgeAppointmentInput, AcknowledgeAppointmentResponse, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, AddDealStepParticipantsInput, AddDealStepParticipantsResponse, AddDocumentToProjectInput, AddDocumentToProjectResponse, 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, BaseErrorResponse, BaseRes, BaseResponse, 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, type 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, DocumentToProjectInsertData, type DocumentToProjectTable, DocumentType, DocumentUpdateData, type DocumentsTable, ForSaleApproveData, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleDataFilter, ForSaleDataPort, ForSaleExceptions, ForSaleFilter, ForSaleInfrastructureStatus, ForSaleInsertData, 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, MediaDetailModel, MediaExceptions, MediaInsertData, MediaItem, MediaListFilter, MediaPort, MediaReadData, MediaResponse, MediaSortField, MediaType, MediasFilter, MediasResponse, type MediasTable, MessageType, NotesItem, 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, ProjectMediaInsertData, ProjectMediaReadModel, ProjectMediaUpdateData, type ProjectMediasTable, ProjectModel, ProjectOwner, ProjectPagination, ProjectProvince, ProjectResponse, ProjectSearchFilter, ProjectSearchModel, ProjectServiceFee, ProjectStage, ProjectStandard, type ProjectSummaryItem, ProjectSummaryModel, type ProjectToBrokersTable, type ProjectToMediasTable, ProjectType, ProjectUpdateData, type ProjectUtilitiesTable, type ProjectUtilityInsertData, ProjectUtilityModel, ProjectWard, ProjectsFilter, ProjectsResponse, type ProjectsTable, PropertiesFilter, PropertiesResponse, type PropertiesTable, PropertyApprovalStatus, PropertyAuthorizationType, type PropertyBranchUserPermissionsTable, type 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, PropertyModel, PropertyOperationStatus, PropertyResponse, PropertyTransactionStatus, PropertyType, type PropertyUtilitiesTable, 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, UpdateProjectDocumentInput, UpdateProjectDocumentResponse, UpdateProjectInput, UpdateProjectResponse, UpdatePropertiesFailedItem, UpdatePropertiesInput, UpdatePropertiesResponse, UpdatePropertyInput, type UpdatePropertyMapInput, type UpdatePropertyMapResponse, type UpdatePropertyResponse, type UpdatePropertyVisualizationResponse, type 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, type UtilitiesResponse, type UtilitiesTable, type UtilityDataPort, type UtilityInsertData, UtilityItem, type UtilityModel, type UtilityReadFilter, type UtilityReadItem, type UtilityReadPort, type UtilityReadResult, type UtilityUpdateData, VerificationType, VerifyOtpForgotPasswordInput, VerifyOtpForgotPasswordResponse, VersionAction, type VisualizationPropertyItem, VisualizationsByBrokerResult, VisualizationsByOwnerResult, WardExceptions, WardListFilter, WardModel, type WardsTable, deleteDocumentFromProjectResponse };
10466
+ export { AcknowledgeAppointmentInput, AcknowledgeAppointmentResponse, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, AddDealStepParticipantsInput, AddDealStepParticipantsResponse, AddDocumentToProjectInput, AddDocumentToProjectResponse, AdministratorDataPort, type AgreementCommandPort, AgreementDataPort, AgreementExceptions, AgreementInsertData, AgreementModel, AgreementTemplateDataListFilter, AgreementTemplateDataPort, AgreementTemplateExceptions, type AgreementTemplateFiltersInput, AgreementTemplateInsertData, type AgreementTemplateListResult, AgreementTemplateModel, type AgreementTemplatePort, 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, BaseErrorResponse, BaseRes, BaseResponse, 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, ClientCategoryCommandCreateInput, ClientCategoryCommandCreateResult, ClientCategoryCommandDeleteInput, ClientCategoryCommandUpdateInput, ClientCategoryExceptions, ClientCategoryFilter, ClientCategoryItem, ClientCategoryModel, ClientCategoryResponse, ClientCommandCreateInput, ClientCommandCreateResult, ClientCommandDeleteInput, ClientCommandMutationResult, ClientCommandPort, ClientCommandUpdateInput, 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, type DeleteAgreementTemplateResult, DeleteAppointmentInput, DeleteAppointmentResponse, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteClientCategoryInput, DeleteClientCategoryResponse, DeleteClientInput, DeleteClientResponse, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteForSaleInput, DeleteForSaleResponse, DeleteInvestorRepresentativeResponse, DigitalSignatureDataPort, DigitalSignatureInsertData, DigitalSignatureModel, type DigitalSignaturesTable, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentInsertData, DocumentToProjectInsertData, type DocumentToProjectTable, DocumentType, DocumentUpdateData, type DocumentsTable, ForSaleApproveData, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleDataFilter, ForSaleDataPort, ForSaleExceptions, ForSaleFilter, ForSaleInfrastructureStatus, ForSaleInsertData, 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, MediaDetailModel, MediaExceptions, MediaInsertData, MediaItem, MediaListFilter, MediaPort, MediaReadData, MediaResponse, MediaSortField, MediaType, MediasFilter, MediasResponse, type MediasTable, MessageType, NotesItem, 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, ProjectMediaInsertData, ProjectMediaReadModel, ProjectMediaUpdateData, type ProjectMediasTable, 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 PropertyBranchUserPermissionsTable, 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, PropertyModel, PropertyOperationStatus, PropertyResponse, PropertyTransactionStatus, PropertyType, type PropertyUtilitiesTable, 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, UpdateProjectDocumentInput, UpdateProjectDocumentResponse, UpdateProjectInput, UpdateProjectResponse, UpdatePropertiesFailedItem, UpdatePropertiesInput, UpdatePropertiesResponse, 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, UtilityCommandAddProjectInput, UtilityCommandAddPropertyBranchInput, UtilityCommandCreateProjectInput, UtilityCommandCreatePropertyBranchInput, UtilityCommandDeleteInput, UtilityCommandPort, UtilityCommandRemoveProjectInput, UtilityCommandRemovePropertyBranchInput, UtilityCommandUpdateInput, UtilityDataPort, UtilityInsertData, UtilityItem, UtilityModel, UtilityReadFilter, UtilityReadItem, UtilityReadPort, UtilityReadResult, UtilityUpdateData, VerificationType, VerifyOtpForgotPasswordInput, VerifyOtpForgotPasswordResponse, VersionAction, type VisualizationPropertyItem, VisualizationsByBrokerResult, VisualizationsByOwnerResult, WardExceptions, WardListFilter, WardModel, type WardsTable, deleteDocumentFromProjectResponse };
10253
10467
  //# sourceMappingURL=index.d.cts.map
package/dist/index.d.mts CHANGED
@@ -1754,6 +1754,20 @@ interface UploadAgreementResponse extends BaseRes {
1754
1754
  createdAt: Date;
1755
1755
  }
1756
1756
  //#endregion
1757
+ //#region src/generated/agreement/ports/agreement-command.port.d.ts
1758
+ type UploadAgreementInput$1 = {
1759
+ name: string;
1760
+ agreementFile: File;
1761
+ relatedUserIds: string[];
1762
+ userToSignIds: string[];
1763
+ agreementTypeCode: string;
1764
+ };
1765
+ interface AgreementCommandPort {
1766
+ previewAgreement(id: string): Promise<PreviewAgreementResponse>;
1767
+ uploadAgreement(input: UploadAgreementInput$1): Promise<UploadAgreementResponse>;
1768
+ signAgreement(id: string): Promise<SignAgreementResponse>;
1769
+ }
1770
+ //#endregion
1757
1771
  //#region src/generated/agreement-template/agreement-template.enum.d.ts
1758
1772
  declare enum AgreementTemplateType {
1759
1773
  SYSTEM = "SYSTEM",
@@ -2072,6 +2086,51 @@ interface UpdateAgreementTemplateResponse extends BaseRes {
2072
2086
  agreementTemplateId: string;
2073
2087
  }
2074
2088
  //#endregion
2089
+ //#region src/generated/agreement-template/ports/agreement-template.port.d.ts
2090
+ type AgreementTemplateFiltersInput = {
2091
+ page: number;
2092
+ limit: number;
2093
+ types?: AgreementTemplateType[] | undefined;
2094
+ search?: string | undefined;
2095
+ creatorRole?: RoleCodes | undefined;
2096
+ };
2097
+ type CreateAgreementTemplateInput$1 = {
2098
+ name: string;
2099
+ type: AgreementTemplateType;
2100
+ fileId: string;
2101
+ creatorRole: RoleCodes;
2102
+ description?: string | undefined;
2103
+ metadata?: Record<string, any> | undefined;
2104
+ };
2105
+ type UpdateAgreementTemplateInput$1 = {
2106
+ id: string;
2107
+ name?: string | undefined;
2108
+ description?: string | undefined;
2109
+ fileId?: string | undefined;
2110
+ isActive?: boolean | undefined;
2111
+ metadata?: Record<string, any> | undefined;
2112
+ diff?: Record<string, any> | undefined;
2113
+ };
2114
+ interface AgreementTemplateListResult {
2115
+ templates: AgreementTemplateModel[];
2116
+ total: number;
2117
+ page: number;
2118
+ limit: number;
2119
+ totalPages: number;
2120
+ }
2121
+ interface DeleteAgreementTemplateResult {
2122
+ success: boolean;
2123
+ message: string;
2124
+ }
2125
+ interface AgreementTemplatePort {
2126
+ getAgreementTemplateById(id: string): Promise<AgreementTemplateModel | undefined>;
2127
+ listAgreementTemplates(filters: AgreementTemplateFiltersInput): Promise<AgreementTemplateListResult>;
2128
+ createAgreementTemplate(input: CreateAgreementTemplateInput$1): Promise<CreateAgreementTemplateResponse>;
2129
+ updateAgreementTemplate(input: UpdateAgreementTemplateInput$1): Promise<UpdateAgreementTemplateResponse>;
2130
+ deleteAgreementTemplate(id: string): Promise<DeleteAgreementTemplateResult>;
2131
+ restoreAgreementTemplate(id: string): Promise<RestoreAgreementTemplateResponse>;
2132
+ }
2133
+ //#endregion
2075
2134
  //#region src/generated/appointment/appointment.enum.d.ts
2076
2135
  declare enum AppointmentStatus {
2077
2136
  PENDING_APPROVAL = "PENDING_APPROVAL",
@@ -3064,6 +3123,84 @@ declare const ClientCategoryExceptions: {
3064
3123
  FORBIDDEN: string;
3065
3124
  };
3066
3125
  //#endregion
3126
+ //#region src/generated/client/ports/client-command.port.d.ts
3127
+ type ClientCommandCreateInput = {
3128
+ fullname: string;
3129
+ status: ClientStatus;
3130
+ source: ClientSource;
3131
+ budgetMin: bigint | undefined;
3132
+ budgetMax: bigint | undefined;
3133
+ budgetCurrency: string;
3134
+ propertyTypes: ForSalePropertyType[];
3135
+ clientType: ClientType;
3136
+ roles: ClientRoles[];
3137
+ needs: ClientNeed[];
3138
+ phoneNumber?: string | undefined;
3139
+ email?: string | undefined;
3140
+ address?: string | undefined;
3141
+ gender?: UserGender | undefined;
3142
+ birthday?: Date | undefined;
3143
+ lastContactDate?: Date | undefined;
3144
+ notes?: string | undefined;
3145
+ metadata?: any;
3146
+ };
3147
+ type ClientCommandUpdateInput = {
3148
+ id: string;
3149
+ budgetMin: bigint | undefined;
3150
+ budgetMax: bigint | undefined;
3151
+ fullname?: string | undefined;
3152
+ phoneNumber?: string | undefined;
3153
+ email?: string | undefined;
3154
+ address?: string | undefined;
3155
+ gender?: UserGender | undefined;
3156
+ birthday?: string | undefined;
3157
+ status?: ClientStatus | undefined;
3158
+ source?: ClientSource | undefined;
3159
+ budgetCurrency?: string | undefined;
3160
+ propertyTypes?: ForSalePropertyType[] | undefined;
3161
+ lastContactDate?: string | undefined;
3162
+ notes?: string | undefined;
3163
+ metadata?: any;
3164
+ clientType?: ClientType | undefined;
3165
+ roles?: ClientRoles[] | undefined;
3166
+ needs?: ClientNeed[] | undefined;
3167
+ };
3168
+ type ClientCommandDeleteInput = {
3169
+ id: string;
3170
+ };
3171
+ interface ClientCategoryCommandCreateInput {
3172
+ name: string;
3173
+ clientIds: string[];
3174
+ }
3175
+ type ClientCategoryCommandUpdateInput = {
3176
+ id: string;
3177
+ name: string;
3178
+ clientIds?: string[] | undefined;
3179
+ };
3180
+ type ClientCategoryCommandDeleteInput = {
3181
+ id: string;
3182
+ };
3183
+ interface ClientCommandCreateResult {
3184
+ clientId?: string;
3185
+ clientCode?: string;
3186
+ message?: string;
3187
+ }
3188
+ interface ClientCommandMutationResult {
3189
+ message?: string;
3190
+ }
3191
+ interface ClientCategoryCommandCreateResult {
3192
+ categoryId: string;
3193
+ message: string;
3194
+ }
3195
+ interface ClientCommandPort {
3196
+ createClient(input: ClientCommandCreateInput): Promise<ClientCommandCreateResult>;
3197
+ updateClient(input: ClientCommandUpdateInput): Promise<ClientCommandMutationResult>;
3198
+ deleteClient(input: ClientCommandDeleteInput): Promise<ClientCommandMutationResult>;
3199
+ createClientCategory(input: ClientCategoryCommandCreateInput): Promise<ClientCategoryCommandCreateResult>;
3200
+ updateClientCategory(input: ClientCategoryCommandUpdateInput): Promise<ClientCommandMutationResult>;
3201
+ deleteClientCategory(input: ClientCategoryCommandDeleteInput): Promise<ClientCommandMutationResult>;
3202
+ }
3203
+ //#endregion
3067
3204
  //#region src/generated/client/ports/get-client.request.d.ts
3068
3205
  type ClientFilter = {
3069
3206
  id: string;
@@ -7228,6 +7365,22 @@ interface MediaResponse extends BaseRes {
7228
7365
  createdAt?: Date;
7229
7366
  }
7230
7367
  //#endregion
7368
+ //#region src/generated/utility/ports/get-utilities.response.d.ts
7369
+ interface UtilityItem {
7370
+ id: string;
7371
+ name: string;
7372
+ description?: string;
7373
+ icon: string;
7374
+ scope: string;
7375
+ isSelected?: boolean;
7376
+ source: string;
7377
+ createdAt?: Date;
7378
+ updatedAt?: Date;
7379
+ }
7380
+ interface UtilitiesResponse extends BaseRes {
7381
+ data: UtilityItem[];
7382
+ }
7383
+ //#endregion
7231
7384
  //#region src/generated/industrial-property/ports/get-property.response.d.ts
7232
7385
  interface PropertyDetailItem {
7233
7386
  id?: string;
@@ -7250,16 +7403,18 @@ interface PropertyDetailItem {
7250
7403
  interface AssignedBrokerItem {
7251
7404
  brokerId: string;
7252
7405
  brokerName: string;
7253
- avatar: string;
7254
- phoneNumber: string;
7255
- description: string;
7406
+ avatar?: string;
7407
+ phoneNumber?: string;
7408
+ description?: string;
7409
+ email?: string;
7256
7410
  }
7257
7411
  interface OwnerItem {
7258
7412
  ownerId: string;
7259
7413
  ownerName: string;
7260
7414
  avatar: string;
7261
- phoneNumber: string;
7415
+ phoneNumber?: string;
7262
7416
  companyName: string;
7417
+ email?: string;
7263
7418
  }
7264
7419
  interface ProjectSummaryItem {
7265
7420
  projectId: string;
@@ -7271,12 +7426,6 @@ interface NotesItem {
7271
7426
  isImportant?: boolean;
7272
7427
  attachments: MediaResponse[];
7273
7428
  }
7274
- interface UtilityItem {
7275
- id: string;
7276
- name: string;
7277
- description?: string;
7278
- icon: string;
7279
- }
7280
7429
  interface PropertyItem {
7281
7430
  id: string;
7282
7431
  title: string;
@@ -7330,6 +7479,7 @@ interface PropertyItem {
7330
7479
  parentMainId?: string;
7331
7480
  propertyId?: string;
7332
7481
  propertyBranchId?: string;
7482
+ utilities?: UtilityItem[];
7333
7483
  createdAt?: Date;
7334
7484
  updatedAt?: Date;
7335
7485
  createdById?: string;
@@ -7587,6 +7737,7 @@ interface UserSummaryModel {
7587
7737
  avatarName?: string;
7588
7738
  avatarBucket?: string;
7589
7739
  organizationName?: string;
7740
+ email?: string;
7590
7741
  }
7591
7742
  interface ProjectSummaryModel {
7592
7743
  id: string;
@@ -7684,6 +7835,8 @@ interface PropertyDataPort {
7684
7835
  findBranchesByParentId(parentId: string, trx?: Transaction<Database>): Promise<PropertyBranchesTable[]>;
7685
7836
  findDetailsByPropertyIds(propertyIds: string[], trx?: Transaction<Database>): Promise<PropertyDetailsTable[]>;
7686
7837
  findDetailsByBranchIds(branchIds: string[], trx?: Transaction<Database>): Promise<PropertyDetailsTable[]>;
7838
+ findUtilitiesByPropertyIds(propertyIds: string[], trx?: Transaction<Database>): Promise<Map<string, UtilityItem[]>>;
7839
+ findUtilitiesByBranchIds(branchIds: string[], trx?: Transaction<Database>): Promise<Map<string, UtilityItem[]>>;
7687
7840
  }
7688
7841
  //#endregion
7689
7842
  //#region src/generated/industrial-property/ports/update-property.request.d.ts
@@ -10121,6 +10274,13 @@ interface TicketPort {
10121
10274
  softDelete(id: string, deletedById: string, trx?: Transaction<Database>): Promise<void>;
10122
10275
  }
10123
10276
  //#endregion
10277
+ //#region src/generated/utility/ports/create-utility.request.d.ts
10278
+ type CreateUtilityInput = {
10279
+ name: string;
10280
+ icon: string;
10281
+ description?: string | undefined;
10282
+ };
10283
+ //#endregion
10124
10284
  //#region src/generated/utility/ports/create-utility.response.d.ts
10125
10285
  interface CreateUtilityResponse extends BaseRes {
10126
10286
  id: string;
@@ -10134,21 +10294,19 @@ interface CreateUtilityResponse extends BaseRes {
10134
10294
  updatedAt: Date;
10135
10295
  }
10136
10296
  //#endregion
10137
- //#region src/generated/utility/ports/get-utilities.response.d.ts
10138
- interface UtilityItem$1 {
10139
- id: string;
10140
- name: string;
10141
- description?: string;
10142
- icon: string;
10143
- scope: string;
10144
- isSelected?: boolean;
10145
- source: string;
10146
- createdAt?: Date;
10147
- updatedAt?: Date;
10148
- }
10149
- interface UtilitiesResponse extends BaseRes {
10150
- data: UtilityItem$1[];
10151
- }
10297
+ //#region src/generated/utility/ports/get-utilities.request.d.ts
10298
+ type UtilitiesFilter = {
10299
+ projectId?: string | undefined;
10300
+ propertyBranchId?: string | undefined;
10301
+ selectedOnly?: boolean | undefined;
10302
+ };
10303
+ //#endregion
10304
+ //#region src/generated/utility/ports/update-utility.request.d.ts
10305
+ type UpdateUtilityInput = {
10306
+ name?: string | undefined;
10307
+ description?: string | undefined;
10308
+ icon?: string | undefined;
10309
+ };
10152
10310
  //#endregion
10153
10311
  //#region src/generated/utility/ports/update-utility.response.d.ts
10154
10312
  interface UpdateUtilityResponse extends BaseRes {
@@ -10163,6 +10321,62 @@ interface UpdateUtilityResponse extends BaseRes {
10163
10321
  updatedAt: Date;
10164
10322
  }
10165
10323
  //#endregion
10324
+ //#region src/generated/utility/ports/utility-command.port.d.ts
10325
+ interface UtilityCommandCreateProjectInput {
10326
+ projectId: string;
10327
+ input: {
10328
+ name: string;
10329
+ icon: string;
10330
+ description?: string | undefined;
10331
+ };
10332
+ }
10333
+ interface UtilityCommandCreatePropertyBranchInput {
10334
+ propertyBranchId: string;
10335
+ input: {
10336
+ name: string;
10337
+ icon: string;
10338
+ description?: string | undefined;
10339
+ };
10340
+ }
10341
+ interface UtilityCommandUpdateInput {
10342
+ utilityId: string;
10343
+ input: {
10344
+ name?: string | undefined;
10345
+ description?: string | undefined;
10346
+ icon?: string | undefined;
10347
+ };
10348
+ }
10349
+ interface UtilityCommandDeleteInput {
10350
+ utilityId: string;
10351
+ }
10352
+ interface UtilityCommandAddProjectInput {
10353
+ projectId: string;
10354
+ utilityId: string;
10355
+ description?: string;
10356
+ }
10357
+ interface UtilityCommandAddPropertyBranchInput {
10358
+ propertyBranchId: string;
10359
+ utilityId: string;
10360
+ }
10361
+ interface UtilityCommandRemoveProjectInput {
10362
+ projectId: string;
10363
+ utilityId: string;
10364
+ }
10365
+ interface UtilityCommandRemovePropertyBranchInput {
10366
+ propertyBranchId: string;
10367
+ utilityId: string;
10368
+ }
10369
+ interface UtilityCommandPort {
10370
+ createProjectUtility(input: UtilityCommandCreateProjectInput): Promise<CreateUtilityResponse>;
10371
+ createPropertyBranchUtility(input: UtilityCommandCreatePropertyBranchInput): Promise<CreateUtilityResponse>;
10372
+ updateUtility(input: UtilityCommandUpdateInput): Promise<UpdateUtilityResponse>;
10373
+ deleteUtility(input: UtilityCommandDeleteInput): Promise<boolean>;
10374
+ addUtilityToProject(input: UtilityCommandAddProjectInput): Promise<boolean>;
10375
+ addUtilityToPropertyBranch(input: UtilityCommandAddPropertyBranchInput): Promise<boolean>;
10376
+ removeUtilityFromProject(input: UtilityCommandRemoveProjectInput): Promise<boolean>;
10377
+ removeUtilityFromPropertyBranch(input: UtilityCommandRemovePropertyBranchInput): Promise<boolean>;
10378
+ }
10379
+ //#endregion
10166
10380
  //#region src/generated/utility/ports/utility-read.port.d.ts
10167
10381
  interface UtilityReadFilter {
10168
10382
  projectId?: string;
@@ -10249,5 +10463,5 @@ interface UtilityDataPort {
10249
10463
  } | undefined>;
10250
10464
  }
10251
10465
  //#endregion
10252
- export { AcknowledgeAppointmentInput, AcknowledgeAppointmentResponse, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, AddDealStepParticipantsInput, AddDealStepParticipantsResponse, AddDocumentToProjectInput, AddDocumentToProjectResponse, 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, BaseErrorResponse, BaseRes, BaseResponse, 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, type 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, DocumentToProjectInsertData, type DocumentToProjectTable, DocumentType, DocumentUpdateData, type DocumentsTable, ForSaleApproveData, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleDataFilter, ForSaleDataPort, ForSaleExceptions, ForSaleFilter, ForSaleInfrastructureStatus, ForSaleInsertData, 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, MediaDetailModel, MediaExceptions, MediaInsertData, MediaItem, MediaListFilter, MediaPort, MediaReadData, MediaResponse, MediaSortField, MediaType, MediasFilter, MediasResponse, type MediasTable, MessageType, NotesItem, 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, ProjectMediaInsertData, ProjectMediaReadModel, ProjectMediaUpdateData, type ProjectMediasTable, ProjectModel, ProjectOwner, ProjectPagination, ProjectProvince, ProjectResponse, ProjectSearchFilter, ProjectSearchModel, ProjectServiceFee, ProjectStage, ProjectStandard, type ProjectSummaryItem, ProjectSummaryModel, type ProjectToBrokersTable, type ProjectToMediasTable, ProjectType, ProjectUpdateData, type ProjectUtilitiesTable, type ProjectUtilityInsertData, ProjectUtilityModel, ProjectWard, ProjectsFilter, ProjectsResponse, type ProjectsTable, PropertiesFilter, PropertiesResponse, type PropertiesTable, PropertyApprovalStatus, PropertyAuthorizationType, type PropertyBranchUserPermissionsTable, type 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, PropertyModel, PropertyOperationStatus, PropertyResponse, PropertyTransactionStatus, PropertyType, type PropertyUtilitiesTable, 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, UpdateProjectDocumentInput, UpdateProjectDocumentResponse, UpdateProjectInput, UpdateProjectResponse, UpdatePropertiesFailedItem, UpdatePropertiesInput, UpdatePropertiesResponse, UpdatePropertyInput, type UpdatePropertyMapInput, type UpdatePropertyMapResponse, type UpdatePropertyResponse, type UpdatePropertyVisualizationResponse, type 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, type UtilitiesResponse, type UtilitiesTable, type UtilityDataPort, type UtilityInsertData, UtilityItem, type UtilityModel, type UtilityReadFilter, type UtilityReadItem, type UtilityReadPort, type UtilityReadResult, type UtilityUpdateData, VerificationType, VerifyOtpForgotPasswordInput, VerifyOtpForgotPasswordResponse, VersionAction, type VisualizationPropertyItem, VisualizationsByBrokerResult, VisualizationsByOwnerResult, WardExceptions, WardListFilter, WardModel, type WardsTable, deleteDocumentFromProjectResponse };
10466
+ export { AcknowledgeAppointmentInput, AcknowledgeAppointmentResponse, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, AddDealStepParticipantsInput, AddDealStepParticipantsResponse, AddDocumentToProjectInput, AddDocumentToProjectResponse, AdministratorDataPort, type AgreementCommandPort, AgreementDataPort, AgreementExceptions, AgreementInsertData, AgreementModel, AgreementTemplateDataListFilter, AgreementTemplateDataPort, AgreementTemplateExceptions, type AgreementTemplateFiltersInput, AgreementTemplateInsertData, type AgreementTemplateListResult, AgreementTemplateModel, type AgreementTemplatePort, 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, BaseErrorResponse, BaseRes, BaseResponse, 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, ClientCategoryCommandCreateInput, ClientCategoryCommandCreateResult, ClientCategoryCommandDeleteInput, ClientCategoryCommandUpdateInput, ClientCategoryExceptions, ClientCategoryFilter, ClientCategoryItem, ClientCategoryModel, ClientCategoryResponse, ClientCommandCreateInput, ClientCommandCreateResult, ClientCommandDeleteInput, ClientCommandMutationResult, ClientCommandPort, ClientCommandUpdateInput, 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, type DeleteAgreementTemplateResult, DeleteAppointmentInput, DeleteAppointmentResponse, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteClientCategoryInput, DeleteClientCategoryResponse, DeleteClientInput, DeleteClientResponse, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteForSaleInput, DeleteForSaleResponse, DeleteInvestorRepresentativeResponse, DigitalSignatureDataPort, DigitalSignatureInsertData, DigitalSignatureModel, type DigitalSignaturesTable, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentInsertData, DocumentToProjectInsertData, type DocumentToProjectTable, DocumentType, DocumentUpdateData, type DocumentsTable, ForSaleApproveData, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleDataFilter, ForSaleDataPort, ForSaleExceptions, ForSaleFilter, ForSaleInfrastructureStatus, ForSaleInsertData, 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, MediaDetailModel, MediaExceptions, MediaInsertData, MediaItem, MediaListFilter, MediaPort, MediaReadData, MediaResponse, MediaSortField, MediaType, MediasFilter, MediasResponse, type MediasTable, MessageType, NotesItem, 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, ProjectMediaInsertData, ProjectMediaReadModel, ProjectMediaUpdateData, type ProjectMediasTable, 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 PropertyBranchUserPermissionsTable, 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, PropertyModel, PropertyOperationStatus, PropertyResponse, PropertyTransactionStatus, PropertyType, type PropertyUtilitiesTable, 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, UpdateProjectDocumentInput, UpdateProjectDocumentResponse, UpdateProjectInput, UpdateProjectResponse, UpdatePropertiesFailedItem, UpdatePropertiesInput, UpdatePropertiesResponse, 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, UtilityCommandAddProjectInput, UtilityCommandAddPropertyBranchInput, UtilityCommandCreateProjectInput, UtilityCommandCreatePropertyBranchInput, UtilityCommandDeleteInput, UtilityCommandPort, UtilityCommandRemoveProjectInput, UtilityCommandRemovePropertyBranchInput, UtilityCommandUpdateInput, UtilityDataPort, UtilityInsertData, UtilityItem, UtilityModel, UtilityReadFilter, UtilityReadItem, UtilityReadPort, UtilityReadResult, UtilityUpdateData, VerificationType, VerifyOtpForgotPasswordInput, VerifyOtpForgotPasswordResponse, VersionAction, type VisualizationPropertyItem, VisualizationsByBrokerResult, VisualizationsByOwnerResult, WardExceptions, WardListFilter, WardModel, type WardsTable, deleteDocumentFromProjectResponse };
10253
10467
  //# sourceMappingURL=index.d.mts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@investtal/models",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "license": "PRIVATE",
5
5
  "description": "Investtal shared domain types, enums, and exception messages",
6
6
  "author": "Harry Tran <nhattq.coding@gmail.com>",