@investtal/models 1.5.2 → 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
@@ -992,19 +992,6 @@ interface PropertyBranchUserPermissionsTable {
992
992
  canEdit: boolean;
993
993
  }
994
994
  //#endregion
995
- //#region src/generated/tables/property-branch-utilities.table.d.ts
996
- interface PropertyBranchUtilitiesTable {
997
- id: string;
998
- propertyBranchId: string;
999
- projectUtilityId: string;
1000
- createdAt?: Date;
1001
- updatedAt?: Date;
1002
- deletedAt?: Date;
1003
- createdById: string;
1004
- updatedById?: string;
1005
- deletedById?: string;
1006
- }
1007
- //#endregion
1008
995
  //#region src/generated/tables/property-branches.table.d.ts
1009
996
  interface PropertyBranchesTable {
1010
997
  id: string;
@@ -1116,6 +1103,20 @@ interface PropertyMapsTable {
1116
1103
  deletedById?: string;
1117
1104
  }
1118
1105
  //#endregion
1106
+ //#region src/generated/tables/property-utilities.table.d.ts
1107
+ interface PropertyUtilitiesTable {
1108
+ id: string;
1109
+ propertyBranchId?: string;
1110
+ propertyId?: string;
1111
+ projectUtilityId: string;
1112
+ createdAt?: Date;
1113
+ updatedAt?: Date;
1114
+ deletedAt?: Date;
1115
+ createdById: string;
1116
+ updatedById?: string;
1117
+ deletedById?: string;
1118
+ }
1119
+ //#endregion
1119
1120
  //#region src/generated/tables/property-versions.table.d.ts
1120
1121
  interface PropertyVersionsTable {
1121
1122
  id: string;
@@ -1418,7 +1419,7 @@ interface Database {
1418
1419
  _project_to_brokers: ProjectToBrokersTable;
1419
1420
  utilities: UtilitiesTable;
1420
1421
  project_utilities: ProjectUtilitiesTable;
1421
- property_branch_utilities: PropertyBranchUtilitiesTable;
1422
+ property_utilities: PropertyUtilitiesTable;
1422
1423
  documents: DocumentsTable;
1423
1424
  document_to_project: DocumentToProjectTable;
1424
1425
  payment_processes: PaymentProcessesTable;
@@ -1753,6 +1754,20 @@ interface UploadAgreementResponse extends BaseRes {
1753
1754
  createdAt: Date;
1754
1755
  }
1755
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
1756
1771
  //#region src/generated/agreement-template/agreement-template.enum.d.ts
1757
1772
  declare enum AgreementTemplateType {
1758
1773
  SYSTEM = "SYSTEM",
@@ -2071,6 +2086,51 @@ interface UpdateAgreementTemplateResponse extends BaseRes {
2071
2086
  agreementTemplateId: string;
2072
2087
  }
2073
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
2074
2134
  //#region src/generated/appointment/appointment.enum.d.ts
2075
2135
  declare enum AppointmentStatus {
2076
2136
  PENDING_APPROVAL = "PENDING_APPROVAL",
@@ -3063,6 +3123,84 @@ declare const ClientCategoryExceptions: {
3063
3123
  FORBIDDEN: string;
3064
3124
  };
3065
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
3066
3204
  //#region src/generated/client/ports/get-client.request.d.ts
3067
3205
  type ClientFilter = {
3068
3206
  id: string;
@@ -7227,6 +7365,22 @@ interface MediaResponse extends BaseRes {
7227
7365
  createdAt?: Date;
7228
7366
  }
7229
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
7230
7384
  //#region src/generated/industrial-property/ports/get-property.response.d.ts
7231
7385
  interface PropertyDetailItem {
7232
7386
  id?: string;
@@ -7249,16 +7403,18 @@ interface PropertyDetailItem {
7249
7403
  interface AssignedBrokerItem {
7250
7404
  brokerId: string;
7251
7405
  brokerName: string;
7252
- avatar: string;
7253
- phoneNumber: string;
7254
- description: string;
7406
+ avatar?: string;
7407
+ phoneNumber?: string;
7408
+ description?: string;
7409
+ email?: string;
7255
7410
  }
7256
7411
  interface OwnerItem {
7257
7412
  ownerId: string;
7258
7413
  ownerName: string;
7259
7414
  avatar: string;
7260
- phoneNumber: string;
7415
+ phoneNumber?: string;
7261
7416
  companyName: string;
7417
+ email?: string;
7262
7418
  }
7263
7419
  interface ProjectSummaryItem {
7264
7420
  projectId: string;
@@ -7323,6 +7479,7 @@ interface PropertyItem {
7323
7479
  parentMainId?: string;
7324
7480
  propertyId?: string;
7325
7481
  propertyBranchId?: string;
7482
+ utilities?: UtilityItem[];
7326
7483
  createdAt?: Date;
7327
7484
  updatedAt?: Date;
7328
7485
  createdById?: string;
@@ -7580,6 +7737,7 @@ interface UserSummaryModel {
7580
7737
  avatarName?: string;
7581
7738
  avatarBucket?: string;
7582
7739
  organizationName?: string;
7740
+ email?: string;
7583
7741
  }
7584
7742
  interface ProjectSummaryModel {
7585
7743
  id: string;
@@ -7677,6 +7835,8 @@ interface PropertyDataPort {
7677
7835
  findBranchesByParentId(parentId: string, trx?: Transaction<Database>): Promise<PropertyBranchesTable[]>;
7678
7836
  findDetailsByPropertyIds(propertyIds: string[], trx?: Transaction<Database>): Promise<PropertyDetailsTable[]>;
7679
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[]>>;
7680
7840
  }
7681
7841
  //#endregion
7682
7842
  //#region src/generated/industrial-property/ports/update-property.request.d.ts
@@ -10141,22 +10301,6 @@ type UtilitiesFilter = {
10141
10301
  selectedOnly?: boolean | undefined;
10142
10302
  };
10143
10303
  //#endregion
10144
- //#region src/generated/utility/ports/get-utilities.response.d.ts
10145
- interface UtilityItem {
10146
- id: string;
10147
- name: string;
10148
- description?: string;
10149
- icon: string;
10150
- scope: string;
10151
- isSelected?: boolean;
10152
- source: string;
10153
- createdAt?: Date;
10154
- updatedAt?: Date;
10155
- }
10156
- interface UtilitiesResponse extends BaseRes {
10157
- data: UtilityItem[];
10158
- }
10159
- //#endregion
10160
10304
  //#region src/generated/utility/ports/update-utility.request.d.ts
10161
10305
  type UpdateUtilityInput = {
10162
10306
  name?: string | undefined;
@@ -10177,6 +10321,62 @@ interface UpdateUtilityResponse extends BaseRes {
10177
10321
  updatedAt: Date;
10178
10322
  }
10179
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
10180
10380
  //#region src/generated/utility/ports/utility-read.port.d.ts
10181
10381
  interface UtilityReadFilter {
10182
10382
  projectId?: string;
@@ -10263,5 +10463,5 @@ interface UtilityDataPort {
10263
10463
  } | undefined>;
10264
10464
  }
10265
10465
  //#endregion
10266
- 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, CreateUtilityInput, CreateUtilityResponse, Database, DealDataPort, DealExceptions, DealFilter, DealFilterType, DealInsertData, DealItem, DealModel, DealParticipantModel, DealParticipantProfile, DealPaymentInstallment, DealProgress, DealStatus, DealStepAttachment, DealStepCreator, DealStepExceptions, DealStepHistoryItem, DealStepInsertData, DealStepModel, DealStepParticipantInsertData, type DealStepParticipantsTable, DealStepStatus, DealStepUpdateData, DealStepWithCreatorModel, DealStepsResponse, type DealStepsTable, DealSummaryResponse, DealUpdateData, DealWithSummaryModel, DealsFilter, DealsForUserFilter, DealsResponse, type DealsTable, DeleteAgreementTemplateResponse, DeleteAppointmentInput, DeleteAppointmentResponse, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteClientCategoryInput, DeleteClientCategoryResponse, DeleteClientInput, DeleteClientResponse, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteForSaleInput, DeleteForSaleResponse, DeleteInvestorRepresentativeResponse, DigitalSignatureDataPort, DigitalSignatureInsertData, DigitalSignatureModel, type DigitalSignaturesTable, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentInsertData, 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, type PropertyBranchUtilitiesTable, PropertyBranchUtilityInsertData, type PropertyBranchesTable, PropertyDataPort, type PropertyDetailItem, PropertyDetailModel, type PropertyDetailsTable, PropertyExceptions, type PropertyFilter, PropertyIdentifierModel, PropertyIdentifierType, type PropertyIdentifiersTable, type PropertyItem, PropertyLandCurrentStatus, PropertyLegalStatus, PropertyListingFilter, PropertyListingResult, type PropertyMapItem, PropertyMapModel, PropertyMapWithMediaModel, PropertyMapsFilter, PropertyMapsResponse, type PropertyMapsTable, PropertyModel, PropertyOperationStatus, PropertyResponse, PropertyTransactionStatus, PropertyType, PropertyVersionModel, type PropertyVersionsTable, PropertyVisualizationInsertData, type PropertyVisualizationItem, PropertyVisualizationModel, PropertyVisualizationUpdateData, type PropertyVisualizationsFilter, PropertyVisualizationsResponse, type PropertyVisualizationsTable, ProvinceExceptions, ProvinceListFilter, ProvinceModel, type ProvincesTable, ReadNotificationInput, ReadNotificationResponse, RefreshTokenInput, RefreshTokenResponse, RegisterAccountRequestInsertData, RegisterAccountRequestModel, RegisterAccountRequestUpdateData, type RegisterAccountRequestsTable, RegisterAccountVerificationInsertData, RegisterAccountVerificationModel, RegisterAccountVerificationUpdateData, type RegisterAccountVerificationsTable, RegisterDataPort, RegisterExceptions, RegisterInvestorRepresentativeResponse, RegisterRequestFilter, RejectTicketsInput, RejectTicketsResponse, RemoveDealStepParticipantsInput, RemoveDealStepParticipantsResponse, RemoveMemberChatGroupInput, RemoveMemberChatGroupResponse, RequestCreateAccountClientInput, RequestCreateAccountClientResponse, RequestCreateAccountInput, RequestCreateAccountResponse, RequestUpdateEmailInput, RequestUpdateEmailResponse, RequestUpdatePhoneNumberInput, RequestUpdatePhoneNumberResponse, RestoreAgreementTemplateResponse, RestoredAgreementTemplate, RoleCodes, RoleExceptions, RoleModel, type RolePermissionsTable, type RolesTable, ScheduleNotificationInput, ScheduleNotificationResponse, ScheduleType, SchedulerStatus, SearchDealModel, type SessionsTable, SetNewPasswordWhenForgotInput, SetNewPasswordWhenForgotResponse, SetPinnedMessageInput, SetPinnedMessageResponse, SettingExceptions, SignAgreementResponse, SignInInput, SignInResponse, SignOutInput, SignOutResponse, SortDirection, TicketExceptions, TicketInsertData, TicketItem, TicketListFilter, TicketModel, TicketPort, TicketStatus, TicketType, TicketUpdateData, TicketsFilter, TicketsResponse, type TicketsTable, UnreadCountByChannel, UpdateAgreementTemplateInput, UpdateAgreementTemplateResponse, UpdateAppointmentInput, UpdateAppointmentResponse, UpdateBlacklistInput, UpdateBlacklistResponse, UpdateBrokerPropertyPermissionData, UpdateChatGroupInput, UpdateChatGroupMemberInput, UpdateChatGroupMemberResponse, UpdateChatGroupResponse, UpdateClientCategoryInput, UpdateClientCategoryResponse, UpdateClientInput, UpdateClientResponse, UpdateConsignmentRequestInput, UpdateConsignmentRequestResponse, UpdateDealStepStatusInput, UpdateDealStepStatusResponse, UpdateForSaleInput, UpdateForSaleResponse, UpdateNotificationSettingsInput, UpdateNotificationSettingsResponse, UpdateOrderRequestInput, UpdateOrderRequestResponse, UpdatePaymentInstallmentInput, UpdatePaymentInstallmentResponse, UpdatePaymentProcessInput, UpdatePaymentProcessResponse, UpdateProfileInput, UpdateProfileResponse, 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, UtilityDataPort, UtilityInsertData, UtilityItem, UtilityModel, UtilityReadFilter, UtilityReadItem, UtilityReadPort, UtilityReadResult, 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 };
10267
10467
  //# sourceMappingURL=index.d.cts.map
package/dist/index.d.mts CHANGED
@@ -992,19 +992,6 @@ interface PropertyBranchUserPermissionsTable {
992
992
  canEdit: boolean;
993
993
  }
994
994
  //#endregion
995
- //#region src/generated/tables/property-branch-utilities.table.d.ts
996
- interface PropertyBranchUtilitiesTable {
997
- id: string;
998
- propertyBranchId: string;
999
- projectUtilityId: string;
1000
- createdAt?: Date;
1001
- updatedAt?: Date;
1002
- deletedAt?: Date;
1003
- createdById: string;
1004
- updatedById?: string;
1005
- deletedById?: string;
1006
- }
1007
- //#endregion
1008
995
  //#region src/generated/tables/property-branches.table.d.ts
1009
996
  interface PropertyBranchesTable {
1010
997
  id: string;
@@ -1116,6 +1103,20 @@ interface PropertyMapsTable {
1116
1103
  deletedById?: string;
1117
1104
  }
1118
1105
  //#endregion
1106
+ //#region src/generated/tables/property-utilities.table.d.ts
1107
+ interface PropertyUtilitiesTable {
1108
+ id: string;
1109
+ propertyBranchId?: string;
1110
+ propertyId?: string;
1111
+ projectUtilityId: string;
1112
+ createdAt?: Date;
1113
+ updatedAt?: Date;
1114
+ deletedAt?: Date;
1115
+ createdById: string;
1116
+ updatedById?: string;
1117
+ deletedById?: string;
1118
+ }
1119
+ //#endregion
1119
1120
  //#region src/generated/tables/property-versions.table.d.ts
1120
1121
  interface PropertyVersionsTable {
1121
1122
  id: string;
@@ -1418,7 +1419,7 @@ interface Database {
1418
1419
  _project_to_brokers: ProjectToBrokersTable;
1419
1420
  utilities: UtilitiesTable;
1420
1421
  project_utilities: ProjectUtilitiesTable;
1421
- property_branch_utilities: PropertyBranchUtilitiesTable;
1422
+ property_utilities: PropertyUtilitiesTable;
1422
1423
  documents: DocumentsTable;
1423
1424
  document_to_project: DocumentToProjectTable;
1424
1425
  payment_processes: PaymentProcessesTable;
@@ -1753,6 +1754,20 @@ interface UploadAgreementResponse extends BaseRes {
1753
1754
  createdAt: Date;
1754
1755
  }
1755
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
1756
1771
  //#region src/generated/agreement-template/agreement-template.enum.d.ts
1757
1772
  declare enum AgreementTemplateType {
1758
1773
  SYSTEM = "SYSTEM",
@@ -2071,6 +2086,51 @@ interface UpdateAgreementTemplateResponse extends BaseRes {
2071
2086
  agreementTemplateId: string;
2072
2087
  }
2073
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
2074
2134
  //#region src/generated/appointment/appointment.enum.d.ts
2075
2135
  declare enum AppointmentStatus {
2076
2136
  PENDING_APPROVAL = "PENDING_APPROVAL",
@@ -3063,6 +3123,84 @@ declare const ClientCategoryExceptions: {
3063
3123
  FORBIDDEN: string;
3064
3124
  };
3065
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
3066
3204
  //#region src/generated/client/ports/get-client.request.d.ts
3067
3205
  type ClientFilter = {
3068
3206
  id: string;
@@ -7227,6 +7365,22 @@ interface MediaResponse extends BaseRes {
7227
7365
  createdAt?: Date;
7228
7366
  }
7229
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
7230
7384
  //#region src/generated/industrial-property/ports/get-property.response.d.ts
7231
7385
  interface PropertyDetailItem {
7232
7386
  id?: string;
@@ -7249,16 +7403,18 @@ interface PropertyDetailItem {
7249
7403
  interface AssignedBrokerItem {
7250
7404
  brokerId: string;
7251
7405
  brokerName: string;
7252
- avatar: string;
7253
- phoneNumber: string;
7254
- description: string;
7406
+ avatar?: string;
7407
+ phoneNumber?: string;
7408
+ description?: string;
7409
+ email?: string;
7255
7410
  }
7256
7411
  interface OwnerItem {
7257
7412
  ownerId: string;
7258
7413
  ownerName: string;
7259
7414
  avatar: string;
7260
- phoneNumber: string;
7415
+ phoneNumber?: string;
7261
7416
  companyName: string;
7417
+ email?: string;
7262
7418
  }
7263
7419
  interface ProjectSummaryItem {
7264
7420
  projectId: string;
@@ -7323,6 +7479,7 @@ interface PropertyItem {
7323
7479
  parentMainId?: string;
7324
7480
  propertyId?: string;
7325
7481
  propertyBranchId?: string;
7482
+ utilities?: UtilityItem[];
7326
7483
  createdAt?: Date;
7327
7484
  updatedAt?: Date;
7328
7485
  createdById?: string;
@@ -7580,6 +7737,7 @@ interface UserSummaryModel {
7580
7737
  avatarName?: string;
7581
7738
  avatarBucket?: string;
7582
7739
  organizationName?: string;
7740
+ email?: string;
7583
7741
  }
7584
7742
  interface ProjectSummaryModel {
7585
7743
  id: string;
@@ -7677,6 +7835,8 @@ interface PropertyDataPort {
7677
7835
  findBranchesByParentId(parentId: string, trx?: Transaction<Database>): Promise<PropertyBranchesTable[]>;
7678
7836
  findDetailsByPropertyIds(propertyIds: string[], trx?: Transaction<Database>): Promise<PropertyDetailsTable[]>;
7679
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[]>>;
7680
7840
  }
7681
7841
  //#endregion
7682
7842
  //#region src/generated/industrial-property/ports/update-property.request.d.ts
@@ -10141,22 +10301,6 @@ type UtilitiesFilter = {
10141
10301
  selectedOnly?: boolean | undefined;
10142
10302
  };
10143
10303
  //#endregion
10144
- //#region src/generated/utility/ports/get-utilities.response.d.ts
10145
- interface UtilityItem {
10146
- id: string;
10147
- name: string;
10148
- description?: string;
10149
- icon: string;
10150
- scope: string;
10151
- isSelected?: boolean;
10152
- source: string;
10153
- createdAt?: Date;
10154
- updatedAt?: Date;
10155
- }
10156
- interface UtilitiesResponse extends BaseRes {
10157
- data: UtilityItem[];
10158
- }
10159
- //#endregion
10160
10304
  //#region src/generated/utility/ports/update-utility.request.d.ts
10161
10305
  type UpdateUtilityInput = {
10162
10306
  name?: string | undefined;
@@ -10177,6 +10321,62 @@ interface UpdateUtilityResponse extends BaseRes {
10177
10321
  updatedAt: Date;
10178
10322
  }
10179
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
10180
10380
  //#region src/generated/utility/ports/utility-read.port.d.ts
10181
10381
  interface UtilityReadFilter {
10182
10382
  projectId?: string;
@@ -10263,5 +10463,5 @@ interface UtilityDataPort {
10263
10463
  } | undefined>;
10264
10464
  }
10265
10465
  //#endregion
10266
- 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, CreateUtilityInput, CreateUtilityResponse, Database, DealDataPort, DealExceptions, DealFilter, DealFilterType, DealInsertData, DealItem, DealModel, DealParticipantModel, DealParticipantProfile, DealPaymentInstallment, DealProgress, DealStatus, DealStepAttachment, DealStepCreator, DealStepExceptions, DealStepHistoryItem, DealStepInsertData, DealStepModel, DealStepParticipantInsertData, type DealStepParticipantsTable, DealStepStatus, DealStepUpdateData, DealStepWithCreatorModel, DealStepsResponse, type DealStepsTable, DealSummaryResponse, DealUpdateData, DealWithSummaryModel, DealsFilter, DealsForUserFilter, DealsResponse, type DealsTable, DeleteAgreementTemplateResponse, DeleteAppointmentInput, DeleteAppointmentResponse, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteClientCategoryInput, DeleteClientCategoryResponse, DeleteClientInput, DeleteClientResponse, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteForSaleInput, DeleteForSaleResponse, DeleteInvestorRepresentativeResponse, DigitalSignatureDataPort, DigitalSignatureInsertData, DigitalSignatureModel, type DigitalSignaturesTable, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentInsertData, 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, type PropertyBranchUtilitiesTable, PropertyBranchUtilityInsertData, type PropertyBranchesTable, PropertyDataPort, type PropertyDetailItem, PropertyDetailModel, type PropertyDetailsTable, PropertyExceptions, type PropertyFilter, PropertyIdentifierModel, PropertyIdentifierType, type PropertyIdentifiersTable, type PropertyItem, PropertyLandCurrentStatus, PropertyLegalStatus, PropertyListingFilter, PropertyListingResult, type PropertyMapItem, PropertyMapModel, PropertyMapWithMediaModel, PropertyMapsFilter, PropertyMapsResponse, type PropertyMapsTable, PropertyModel, PropertyOperationStatus, PropertyResponse, PropertyTransactionStatus, PropertyType, PropertyVersionModel, type PropertyVersionsTable, PropertyVisualizationInsertData, type PropertyVisualizationItem, PropertyVisualizationModel, PropertyVisualizationUpdateData, type PropertyVisualizationsFilter, PropertyVisualizationsResponse, type PropertyVisualizationsTable, ProvinceExceptions, ProvinceListFilter, ProvinceModel, type ProvincesTable, ReadNotificationInput, ReadNotificationResponse, RefreshTokenInput, RefreshTokenResponse, RegisterAccountRequestInsertData, RegisterAccountRequestModel, RegisterAccountRequestUpdateData, type RegisterAccountRequestsTable, RegisterAccountVerificationInsertData, RegisterAccountVerificationModel, RegisterAccountVerificationUpdateData, type RegisterAccountVerificationsTable, RegisterDataPort, RegisterExceptions, RegisterInvestorRepresentativeResponse, RegisterRequestFilter, RejectTicketsInput, RejectTicketsResponse, RemoveDealStepParticipantsInput, RemoveDealStepParticipantsResponse, RemoveMemberChatGroupInput, RemoveMemberChatGroupResponse, RequestCreateAccountClientInput, RequestCreateAccountClientResponse, RequestCreateAccountInput, RequestCreateAccountResponse, RequestUpdateEmailInput, RequestUpdateEmailResponse, RequestUpdatePhoneNumberInput, RequestUpdatePhoneNumberResponse, RestoreAgreementTemplateResponse, RestoredAgreementTemplate, RoleCodes, RoleExceptions, RoleModel, type RolePermissionsTable, type RolesTable, ScheduleNotificationInput, ScheduleNotificationResponse, ScheduleType, SchedulerStatus, SearchDealModel, type SessionsTable, SetNewPasswordWhenForgotInput, SetNewPasswordWhenForgotResponse, SetPinnedMessageInput, SetPinnedMessageResponse, SettingExceptions, SignAgreementResponse, SignInInput, SignInResponse, SignOutInput, SignOutResponse, SortDirection, TicketExceptions, TicketInsertData, TicketItem, TicketListFilter, TicketModel, TicketPort, TicketStatus, TicketType, TicketUpdateData, TicketsFilter, TicketsResponse, type TicketsTable, UnreadCountByChannel, UpdateAgreementTemplateInput, UpdateAgreementTemplateResponse, UpdateAppointmentInput, UpdateAppointmentResponse, UpdateBlacklistInput, UpdateBlacklistResponse, UpdateBrokerPropertyPermissionData, UpdateChatGroupInput, UpdateChatGroupMemberInput, UpdateChatGroupMemberResponse, UpdateChatGroupResponse, UpdateClientCategoryInput, UpdateClientCategoryResponse, UpdateClientInput, UpdateClientResponse, UpdateConsignmentRequestInput, UpdateConsignmentRequestResponse, UpdateDealStepStatusInput, UpdateDealStepStatusResponse, UpdateForSaleInput, UpdateForSaleResponse, UpdateNotificationSettingsInput, UpdateNotificationSettingsResponse, UpdateOrderRequestInput, UpdateOrderRequestResponse, UpdatePaymentInstallmentInput, UpdatePaymentInstallmentResponse, UpdatePaymentProcessInput, UpdatePaymentProcessResponse, UpdateProfileInput, UpdateProfileResponse, 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, UtilityDataPort, UtilityInsertData, UtilityItem, UtilityModel, UtilityReadFilter, UtilityReadItem, UtilityReadPort, UtilityReadResult, 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 };
10267
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.2",
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>",