simpleloan_api 1.2.60 → 1.2.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +112 -6
- package/dist/index.d.ts +112 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -722,11 +722,7 @@ type GazprombankmDictNames = 'MarketType' | 'RealEstateTypeCode' | 'LoanPurpose'
|
|
|
722
722
|
|
|
723
723
|
/** Режим ранжирования банков в правиле (`/generalapp/scorerule/get_list/`). */
|
|
724
724
|
type ScoreruleMode = 'd' | 'm' | 'h' | 's';
|
|
725
|
-
/**
|
|
726
|
-
* Правило ранжирования банков (`/generalapp/scorerule/get_list/`).
|
|
727
|
-
* TODO: без контрактов — `GeneralappContracts` добавим, когда разберём
|
|
728
|
-
* остальные эндпоинты `/generalapp/scorerule/*` и `/generalapp/scorerule/item/*`.
|
|
729
|
-
*/
|
|
725
|
+
/** Правило ранжирования банков (`/generalapp/scorerule/get_list/`). */
|
|
730
726
|
type Scorerule = {
|
|
731
727
|
id: number;
|
|
732
728
|
salespoint_group_id: number | null;
|
|
@@ -741,6 +737,116 @@ type Scorerule = {
|
|
|
741
737
|
salespoints_or_group_str: string;
|
|
742
738
|
banks_str: string;
|
|
743
739
|
};
|
|
740
|
+
/** Строка банка внутри правила ранжирования (`/generalapp/scorerule/item/get_list/`). */
|
|
741
|
+
type ScoreruleItem = {
|
|
742
|
+
id: number;
|
|
743
|
+
bankscorerule_id: number;
|
|
744
|
+
bank: BankCode;
|
|
745
|
+
timeout: number;
|
|
746
|
+
priority: number;
|
|
747
|
+
};
|
|
748
|
+
type ScoreruleUpdateBody = WithData<{
|
|
749
|
+
id?: number;
|
|
750
|
+
is_active: boolean;
|
|
751
|
+
mode: ScoreruleMode;
|
|
752
|
+
salespoints: number[];
|
|
753
|
+
timeout_other: number;
|
|
754
|
+
}>;
|
|
755
|
+
type ScoreruleItemUpdateBody = WithData<{
|
|
756
|
+
id?: number;
|
|
757
|
+
bank: BankCode;
|
|
758
|
+
bankscorerule: number;
|
|
759
|
+
timeout: number | string;
|
|
760
|
+
priority: number | string;
|
|
761
|
+
}>;
|
|
762
|
+
type GeneralappContracts = {
|
|
763
|
+
/** Список правил ранжирования банков */
|
|
764
|
+
'/generalapp/scorerule/get_list/': {
|
|
765
|
+
body: SearchParams;
|
|
766
|
+
response: ApiResponse<Scorerule[]>;
|
|
767
|
+
};
|
|
768
|
+
/** Получить правило ранжирования банков по id */
|
|
769
|
+
'/generalapp/scorerule/get/': {
|
|
770
|
+
body: WithData<{
|
|
771
|
+
id: number | string;
|
|
772
|
+
}>;
|
|
773
|
+
response: ApiResponse<Scorerule>;
|
|
774
|
+
};
|
|
775
|
+
/** Обновить правило ранжирования банков */
|
|
776
|
+
'/generalapp/scorerule/update/': {
|
|
777
|
+
body: ScoreruleUpdateBody;
|
|
778
|
+
response: ApiResponse<Scorerule>;
|
|
779
|
+
};
|
|
780
|
+
/** Удалить правило ранжирования банков. */
|
|
781
|
+
'/generalapp/scorerule/delete/': {
|
|
782
|
+
body: WithData<{
|
|
783
|
+
id: number;
|
|
784
|
+
}>;
|
|
785
|
+
response: ApiResponse<unknown>;
|
|
786
|
+
};
|
|
787
|
+
/** Список строк банков правила ранжирования */
|
|
788
|
+
'/generalapp/scorerule/item/get_list/': {
|
|
789
|
+
body: SearchParams<{
|
|
790
|
+
bankscorerule_id?: number;
|
|
791
|
+
}>;
|
|
792
|
+
response: ApiResponse<ScoreruleItem[]>;
|
|
793
|
+
};
|
|
794
|
+
/**
|
|
795
|
+
* Получить строку банка правила ранжирования по id.
|
|
796
|
+
* TODO: без подтверждённого использования на фронте — эндпоинт нигде не вызывается.
|
|
797
|
+
*/
|
|
798
|
+
'/generalapp/scorerule/item/get/': {
|
|
799
|
+
body: WithData<{
|
|
800
|
+
id: number;
|
|
801
|
+
}>;
|
|
802
|
+
response: ApiResponse<ScoreruleItem>;
|
|
803
|
+
};
|
|
804
|
+
/** Обновить (или создать) строку банка правила ранжирования */
|
|
805
|
+
'/generalapp/scorerule/item/update/': {
|
|
806
|
+
body: ScoreruleItemUpdateBody;
|
|
807
|
+
response: ApiResponse<ScoreruleItem>;
|
|
808
|
+
};
|
|
809
|
+
/** Удалить строку банка правила ранжирования. */
|
|
810
|
+
'/generalapp/scorerule/item/delete/': {
|
|
811
|
+
body: WithData<{
|
|
812
|
+
id: number;
|
|
813
|
+
}>;
|
|
814
|
+
response: ApiResponse<unknown>;
|
|
815
|
+
};
|
|
816
|
+
/**
|
|
817
|
+
* Отменить заявку на страхование по заявке general-приложения.
|
|
818
|
+
* TODO: типизировать
|
|
819
|
+
*/
|
|
820
|
+
'/generalapp/cancel_insurance/': {
|
|
821
|
+
body: WithData<{
|
|
822
|
+
id: number;
|
|
823
|
+
with_cheque: boolean;
|
|
824
|
+
}>;
|
|
825
|
+
response: ApiResponse<unknown>;
|
|
826
|
+
};
|
|
827
|
+
/**
|
|
828
|
+
* Отменить уведомление по заявке general-приложения.
|
|
829
|
+
* TODO: типизировать
|
|
830
|
+
*/
|
|
831
|
+
'/generalapp/cancel_notification/': {
|
|
832
|
+
body: WithData<{
|
|
833
|
+
id: number;
|
|
834
|
+
with_cheque: boolean;
|
|
835
|
+
}>;
|
|
836
|
+
response: ApiResponse<unknown>;
|
|
837
|
+
};
|
|
838
|
+
/**
|
|
839
|
+
* Отменить предоставление кредита по заявке general-приложения.
|
|
840
|
+
* TODO: типизировать
|
|
841
|
+
*/
|
|
842
|
+
'/generalapp/cancel_providing_credit/': {
|
|
843
|
+
body: WithData<{
|
|
844
|
+
id: number;
|
|
845
|
+
with_cheque: boolean;
|
|
846
|
+
}>;
|
|
847
|
+
response: ApiResponse<unknown>;
|
|
848
|
+
};
|
|
849
|
+
};
|
|
744
850
|
|
|
745
851
|
/** Группа прав пользователя (`/group/get_list/`). */
|
|
746
852
|
type Group = {
|
|
@@ -3288,4 +3394,4 @@ type Mode = 'development' | 'production';
|
|
|
3288
3394
|
declare function setMode(newMode: Mode): void;
|
|
3289
3395
|
declare function getMode(): Mode;
|
|
3290
3396
|
|
|
3291
|
-
export { type Absolutbank, type AbsolutbankDictNames, type AbsolutbankFields, type AbsolutbankMeta, type AbsolutbankStages, type Address, type AgentAct, type AgentActContract, type AgentActFile, type AgentGetListBody, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type AlfabankBalance, type AlfabankBalanceOffer, type AlfabankBalanceOfferLoanParameters, type AlfabankBalanceScanState, type AlfabankBalanceStages, type ApiResponse, type Atbbank, type AtbbankFields, type AtbbankMeta, type AtbbankStages, BANK_CODES, type BankCode, type BankDetail, type BankDetailContracts, type BankDetailGetListBody, type BankRevise, type BankReviseContracts, type BankReviseGenerateBody, type BankReviseItem, type BankReviseItemUpdateBody, type BankReviseItemUpdateManyBody, type BankReviseItemUpdateManyItem, type BankReviseItemsDownloadBody, type BankServiceProvider, type BankdetailListFilter, type Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type CheckpassportApp, type CheckpassportUploadRequest, type CheckpassportUploadRequestWithAllFiles, type CheckpassportUploadRequestWithFiles, type CommissionFeeReviseWipContracts, type CommissionFeeReviseWipDownloadBody, type CommissionFeeReviseWipGenerateBody, type CommissionFeeReviseWipItem, type CommissionFeeReviseWipUpdateBody, type CommissionFeeReviseWipUpdateManyBody, type CommissionFeeReviseWipUpdateManyItem, type CommissionFeeReviseWipUpdateManyResponse, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Faq, type FaqContracts, type FaqGetListBody, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type GetFmsResponse, type Group, type GroupContracts, type GroupListFilter, type Login, type LoginResponse, MORTGAGE_BANK_CODES, type MessageUpdateWithGroupId, type MessageUpdateWithSalespointIds, type Mortgage, type MortgageBankApp, type MortgageBankAppStatus, type MortgageBankCode, type MortgageBankNames, type MortgageCalculateProgram, type MortgageCommonDictNames, type MortgageDictNames, type MortgageFields, type MortgageLoanReportRequest, type MortgageLoanReportStatus, type MortgageMeta, type MortgageProgram, type MortgageProgramsLimits, type MortgageScan, type MortgageScanDoctype, type MortgageStages, type MortgageUpdate, PERMISSIONS, POS_BANK_CODES, type Permission, type PosBankCode, type PostParams, type PostParamsWithoutBody, type ProductUploadBody, type ReportsAsync, type ReportsAsyncStatus, type ReportsMortgageLoanRequest, type ReportsMortgageStatFilter, type ReportsMortgageStatRequest, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointAltSumMode, type SalespointContracts, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type SalespointProvidingCreditMode, type SalespointUpdateBody, type Salespointgroup, type SalespointgroupContracts, type SalespointgroupUpdateBody, type Scorerule, type ScoreruleMode, type ScriptContracts, type ScriptExportResult, type ScriptLoadBody, type ScriptLoadError, type ScriptLoadResult, type ScriptLoadStats, type ScriptRunResult, type SearchParams, type Sex, type Sovcombank, type SovcombankFields, type SovcombankMeta, type SovcombankOffer, type SovcombankStages, type TransferAcceptanceContracts, type TransferAcceptanceGenerateBody, type TransferAcceptanceGenerateResponse, type UpdateMortgageCustomerRequest, type UploadB64File, type UploadedFile, type User, type UserContracts, type UserListFilter, type UserUpdateBody, type VtbBankmFields, type VtbBankmMeta, type VtbBankmStages, type Vtbbankm, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCalculateMortgage, useCancelAbsolutbank, useCancelAtbbank, useCancelGazprombankm, useCancelMortgage, useCancelRosbankDom, useCancelSovcombank, useCancelVtbbankm, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneAtbbank, useCloneGazprombankm, useCloneMortgage, useCloneRosbankDom, useCloneSalespoint, useCloneSovcombank, useCloneUser, useCloneVtbbankm, useConfirmAbsolutbank, useConfirmAtbbank, useConfirmRosbankDom, useConfirmSovcombank, useDeleteAbsolutbank, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteAtbbank, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGazprombankm, useDeleteGroupUser, useDeleteMortgage, useDeleteMortgageCustomer, useDeleteMortgageProgram, useDeleteMortgageScan, useDeleteRosbankDom, useDeleteSalespoint, useDeleteSalespointgroup, useDeleteSovcombank, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useDeleteVtbbankm, useGenerateAbsolutbankScansApplications, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, useGenerateAtbbankScansApplications, useGenerateGazprombankmScansApplications, useGenerateMortgageLoanReport, useGenerateMortgageStatReport, useGenerateSovcombankScansApplications, useGenerateVtbbankmScansApplications, useGetAbsolutbank, useGetAbsolutbankDict, useGetAbsolutbankList, useGetAbsolutbankPrintforms, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDict, useGetAkbarsList, useGetAkbarsPrintformList, useGetAlfabankBalance, useGetAlfabankBalanceDict, useGetAlfabankBalanceList, useGetAlfabankBalanceOffer, useGetAtbbank, useGetAtbbankDict, useGetAtbbankFiles, useGetAtbbankList, useGetAtbbankPrintformsList, useGetBrokerclient, useGetBrokerclientList, useGetChatmessageList, useGetChatmessageThreads, useGetCheckpassportStatus, useGetCommondictsBanks, useGetCommondictsPassportFms, useGetCustomer, useGetCustomerList, useGetGazprombankm, useGetGazprombankmDict, useGetGazprombankmList, useGetMortgage, useGetMortgageBankApp, useGetMortgageCommonDictList, useGetMortgageDict, useGetMortgageFieldChoices, useGetMortgageFieldRequired, useGetMortgageLimits, useGetMortgageList, useGetMortgageProgram, useGetMortgageProgramsGroup, useGetMortgageProgramsList, useGetMortgageScansDoctypesList, useGetMortgageScansList, useGetReportsList, useGetRosbankDom, useGetRosbankDomDict, useGetRosbankDomList, useGetRosbankDomPrintformsList, useGetSalespoint, useGetSalespointList, useGetSalespointgroup, useGetSalespointgroupList, useGetSovcombank, useGetSovcombankDict, useGetSovcombankFiles, useGetSovcombankList, useGetSovcombankPrintformsList, useGetUser, useGetUserList, useGetVtbbankm, useGetVtbbankmList, useLoanerApprovingAkbarsStatus, usePreapprovalAbsolutbankStatus, usePreapprovalAlfabankBalanceStatus, usePreapprovalAtbbankStatus, usePreapprovalRosbankDomStatus, usePreapprovalSovcombankStatus, usePrintMortgageForm, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAbsolutbank, useSendAbsolutbankScans, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendAtbbank, useSendAtbbankScans, useSendGazprombankm, useSendGazprombankmScans, useSendMortgage, useSendMortgageScans, useSendRosbankDom, useSendRosbankDomScans, useSendSovcombank, useSendSovcombankScans, useSendVtbbankScans, useSendVtbbankm, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateAtbbank, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCommondictsPassportFms, useUpdateCustomer, useUpdateGazprombankm, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateMortgageProgram, useUpdateRosbankDom, useUpdateSalespoint, useUpdateSalespointgroup, useUpdateSovcombank, useUpdateUser, useUpdateVtbbankm, useUploadAkbarsDepositScan, useUploadCheckpassport, useUploadMortgageScan, useVerifyManuallyAlfabankBalanceScans };
|
|
3397
|
+
export { type Absolutbank, type AbsolutbankDictNames, type AbsolutbankFields, type AbsolutbankMeta, type AbsolutbankStages, type Address, type AgentAct, type AgentActContract, type AgentActFile, type AgentGetListBody, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type AlfabankBalance, type AlfabankBalanceOffer, type AlfabankBalanceOfferLoanParameters, type AlfabankBalanceScanState, type AlfabankBalanceStages, type ApiResponse, type Atbbank, type AtbbankFields, type AtbbankMeta, type AtbbankStages, BANK_CODES, type BankCode, type BankDetail, type BankDetailContracts, type BankDetailGetListBody, type BankRevise, type BankReviseContracts, type BankReviseGenerateBody, type BankReviseItem, type BankReviseItemUpdateBody, type BankReviseItemUpdateManyBody, type BankReviseItemUpdateManyItem, type BankReviseItemsDownloadBody, type BankServiceProvider, type BankdetailListFilter, type Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type CheckpassportApp, type CheckpassportUploadRequest, type CheckpassportUploadRequestWithAllFiles, type CheckpassportUploadRequestWithFiles, type CommissionFeeReviseWipContracts, type CommissionFeeReviseWipDownloadBody, type CommissionFeeReviseWipGenerateBody, type CommissionFeeReviseWipItem, type CommissionFeeReviseWipUpdateBody, type CommissionFeeReviseWipUpdateManyBody, type CommissionFeeReviseWipUpdateManyItem, type CommissionFeeReviseWipUpdateManyResponse, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Faq, type FaqContracts, type FaqGetListBody, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type GeneralappContracts, type GetFmsResponse, type Group, type GroupContracts, type GroupListFilter, type Login, type LoginResponse, MORTGAGE_BANK_CODES, type MessageUpdateWithGroupId, type MessageUpdateWithSalespointIds, type Mortgage, type MortgageBankApp, type MortgageBankAppStatus, type MortgageBankCode, type MortgageBankNames, type MortgageCalculateProgram, type MortgageCommonDictNames, type MortgageDictNames, type MortgageFields, type MortgageLoanReportRequest, type MortgageLoanReportStatus, type MortgageMeta, type MortgageProgram, type MortgageProgramsLimits, type MortgageScan, type MortgageScanDoctype, type MortgageStages, type MortgageUpdate, PERMISSIONS, POS_BANK_CODES, type Permission, type PosBankCode, type PostParams, type PostParamsWithoutBody, type ProductUploadBody, type ReportsAsync, type ReportsAsyncStatus, type ReportsMortgageLoanRequest, type ReportsMortgageStatFilter, type ReportsMortgageStatRequest, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointAltSumMode, type SalespointContracts, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type SalespointProvidingCreditMode, type SalespointUpdateBody, type Salespointgroup, type SalespointgroupContracts, type SalespointgroupUpdateBody, type Scorerule, type ScoreruleItem, type ScoreruleItemUpdateBody, type ScoreruleMode, type ScoreruleUpdateBody, type ScriptContracts, type ScriptExportResult, type ScriptLoadBody, type ScriptLoadError, type ScriptLoadResult, type ScriptLoadStats, type ScriptRunResult, type SearchParams, type Sex, type Sovcombank, type SovcombankFields, type SovcombankMeta, type SovcombankOffer, type SovcombankStages, type TransferAcceptanceContracts, type TransferAcceptanceGenerateBody, type TransferAcceptanceGenerateResponse, type UpdateMortgageCustomerRequest, type UploadB64File, type UploadedFile, type User, type UserContracts, type UserListFilter, type UserUpdateBody, type VtbBankmFields, type VtbBankmMeta, type VtbBankmStages, type Vtbbankm, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCalculateMortgage, useCancelAbsolutbank, useCancelAtbbank, useCancelGazprombankm, useCancelMortgage, useCancelRosbankDom, useCancelSovcombank, useCancelVtbbankm, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneAtbbank, useCloneGazprombankm, useCloneMortgage, useCloneRosbankDom, useCloneSalespoint, useCloneSovcombank, useCloneUser, useCloneVtbbankm, useConfirmAbsolutbank, useConfirmAtbbank, useConfirmRosbankDom, useConfirmSovcombank, useDeleteAbsolutbank, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteAtbbank, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGazprombankm, useDeleteGroupUser, useDeleteMortgage, useDeleteMortgageCustomer, useDeleteMortgageProgram, useDeleteMortgageScan, useDeleteRosbankDom, useDeleteSalespoint, useDeleteSalespointgroup, useDeleteSovcombank, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useDeleteVtbbankm, useGenerateAbsolutbankScansApplications, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, useGenerateAtbbankScansApplications, useGenerateGazprombankmScansApplications, useGenerateMortgageLoanReport, useGenerateMortgageStatReport, useGenerateSovcombankScansApplications, useGenerateVtbbankmScansApplications, useGetAbsolutbank, useGetAbsolutbankDict, useGetAbsolutbankList, useGetAbsolutbankPrintforms, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDict, useGetAkbarsList, useGetAkbarsPrintformList, useGetAlfabankBalance, useGetAlfabankBalanceDict, useGetAlfabankBalanceList, useGetAlfabankBalanceOffer, useGetAtbbank, useGetAtbbankDict, useGetAtbbankFiles, useGetAtbbankList, useGetAtbbankPrintformsList, useGetBrokerclient, useGetBrokerclientList, useGetChatmessageList, useGetChatmessageThreads, useGetCheckpassportStatus, useGetCommondictsBanks, useGetCommondictsPassportFms, useGetCustomer, useGetCustomerList, useGetGazprombankm, useGetGazprombankmDict, useGetGazprombankmList, useGetMortgage, useGetMortgageBankApp, useGetMortgageCommonDictList, useGetMortgageDict, useGetMortgageFieldChoices, useGetMortgageFieldRequired, useGetMortgageLimits, useGetMortgageList, useGetMortgageProgram, useGetMortgageProgramsGroup, useGetMortgageProgramsList, useGetMortgageScansDoctypesList, useGetMortgageScansList, useGetReportsList, useGetRosbankDom, useGetRosbankDomDict, useGetRosbankDomList, useGetRosbankDomPrintformsList, useGetSalespoint, useGetSalespointList, useGetSalespointgroup, useGetSalespointgroupList, useGetSovcombank, useGetSovcombankDict, useGetSovcombankFiles, useGetSovcombankList, useGetSovcombankPrintformsList, useGetUser, useGetUserList, useGetVtbbankm, useGetVtbbankmList, useLoanerApprovingAkbarsStatus, usePreapprovalAbsolutbankStatus, usePreapprovalAlfabankBalanceStatus, usePreapprovalAtbbankStatus, usePreapprovalRosbankDomStatus, usePreapprovalSovcombankStatus, usePrintMortgageForm, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAbsolutbank, useSendAbsolutbankScans, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendAtbbank, useSendAtbbankScans, useSendGazprombankm, useSendGazprombankmScans, useSendMortgage, useSendMortgageScans, useSendRosbankDom, useSendRosbankDomScans, useSendSovcombank, useSendSovcombankScans, useSendVtbbankScans, useSendVtbbankm, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateAtbbank, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCommondictsPassportFms, useUpdateCustomer, useUpdateGazprombankm, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateMortgageProgram, useUpdateRosbankDom, useUpdateSalespoint, useUpdateSalespointgroup, useUpdateSovcombank, useUpdateUser, useUpdateVtbbankm, useUploadAkbarsDepositScan, useUploadCheckpassport, useUploadMortgageScan, useVerifyManuallyAlfabankBalanceScans };
|
package/dist/index.d.ts
CHANGED
|
@@ -722,11 +722,7 @@ type GazprombankmDictNames = 'MarketType' | 'RealEstateTypeCode' | 'LoanPurpose'
|
|
|
722
722
|
|
|
723
723
|
/** Режим ранжирования банков в правиле (`/generalapp/scorerule/get_list/`). */
|
|
724
724
|
type ScoreruleMode = 'd' | 'm' | 'h' | 's';
|
|
725
|
-
/**
|
|
726
|
-
* Правило ранжирования банков (`/generalapp/scorerule/get_list/`).
|
|
727
|
-
* TODO: без контрактов — `GeneralappContracts` добавим, когда разберём
|
|
728
|
-
* остальные эндпоинты `/generalapp/scorerule/*` и `/generalapp/scorerule/item/*`.
|
|
729
|
-
*/
|
|
725
|
+
/** Правило ранжирования банков (`/generalapp/scorerule/get_list/`). */
|
|
730
726
|
type Scorerule = {
|
|
731
727
|
id: number;
|
|
732
728
|
salespoint_group_id: number | null;
|
|
@@ -741,6 +737,116 @@ type Scorerule = {
|
|
|
741
737
|
salespoints_or_group_str: string;
|
|
742
738
|
banks_str: string;
|
|
743
739
|
};
|
|
740
|
+
/** Строка банка внутри правила ранжирования (`/generalapp/scorerule/item/get_list/`). */
|
|
741
|
+
type ScoreruleItem = {
|
|
742
|
+
id: number;
|
|
743
|
+
bankscorerule_id: number;
|
|
744
|
+
bank: BankCode;
|
|
745
|
+
timeout: number;
|
|
746
|
+
priority: number;
|
|
747
|
+
};
|
|
748
|
+
type ScoreruleUpdateBody = WithData<{
|
|
749
|
+
id?: number;
|
|
750
|
+
is_active: boolean;
|
|
751
|
+
mode: ScoreruleMode;
|
|
752
|
+
salespoints: number[];
|
|
753
|
+
timeout_other: number;
|
|
754
|
+
}>;
|
|
755
|
+
type ScoreruleItemUpdateBody = WithData<{
|
|
756
|
+
id?: number;
|
|
757
|
+
bank: BankCode;
|
|
758
|
+
bankscorerule: number;
|
|
759
|
+
timeout: number | string;
|
|
760
|
+
priority: number | string;
|
|
761
|
+
}>;
|
|
762
|
+
type GeneralappContracts = {
|
|
763
|
+
/** Список правил ранжирования банков */
|
|
764
|
+
'/generalapp/scorerule/get_list/': {
|
|
765
|
+
body: SearchParams;
|
|
766
|
+
response: ApiResponse<Scorerule[]>;
|
|
767
|
+
};
|
|
768
|
+
/** Получить правило ранжирования банков по id */
|
|
769
|
+
'/generalapp/scorerule/get/': {
|
|
770
|
+
body: WithData<{
|
|
771
|
+
id: number | string;
|
|
772
|
+
}>;
|
|
773
|
+
response: ApiResponse<Scorerule>;
|
|
774
|
+
};
|
|
775
|
+
/** Обновить правило ранжирования банков */
|
|
776
|
+
'/generalapp/scorerule/update/': {
|
|
777
|
+
body: ScoreruleUpdateBody;
|
|
778
|
+
response: ApiResponse<Scorerule>;
|
|
779
|
+
};
|
|
780
|
+
/** Удалить правило ранжирования банков. */
|
|
781
|
+
'/generalapp/scorerule/delete/': {
|
|
782
|
+
body: WithData<{
|
|
783
|
+
id: number;
|
|
784
|
+
}>;
|
|
785
|
+
response: ApiResponse<unknown>;
|
|
786
|
+
};
|
|
787
|
+
/** Список строк банков правила ранжирования */
|
|
788
|
+
'/generalapp/scorerule/item/get_list/': {
|
|
789
|
+
body: SearchParams<{
|
|
790
|
+
bankscorerule_id?: number;
|
|
791
|
+
}>;
|
|
792
|
+
response: ApiResponse<ScoreruleItem[]>;
|
|
793
|
+
};
|
|
794
|
+
/**
|
|
795
|
+
* Получить строку банка правила ранжирования по id.
|
|
796
|
+
* TODO: без подтверждённого использования на фронте — эндпоинт нигде не вызывается.
|
|
797
|
+
*/
|
|
798
|
+
'/generalapp/scorerule/item/get/': {
|
|
799
|
+
body: WithData<{
|
|
800
|
+
id: number;
|
|
801
|
+
}>;
|
|
802
|
+
response: ApiResponse<ScoreruleItem>;
|
|
803
|
+
};
|
|
804
|
+
/** Обновить (или создать) строку банка правила ранжирования */
|
|
805
|
+
'/generalapp/scorerule/item/update/': {
|
|
806
|
+
body: ScoreruleItemUpdateBody;
|
|
807
|
+
response: ApiResponse<ScoreruleItem>;
|
|
808
|
+
};
|
|
809
|
+
/** Удалить строку банка правила ранжирования. */
|
|
810
|
+
'/generalapp/scorerule/item/delete/': {
|
|
811
|
+
body: WithData<{
|
|
812
|
+
id: number;
|
|
813
|
+
}>;
|
|
814
|
+
response: ApiResponse<unknown>;
|
|
815
|
+
};
|
|
816
|
+
/**
|
|
817
|
+
* Отменить заявку на страхование по заявке general-приложения.
|
|
818
|
+
* TODO: типизировать
|
|
819
|
+
*/
|
|
820
|
+
'/generalapp/cancel_insurance/': {
|
|
821
|
+
body: WithData<{
|
|
822
|
+
id: number;
|
|
823
|
+
with_cheque: boolean;
|
|
824
|
+
}>;
|
|
825
|
+
response: ApiResponse<unknown>;
|
|
826
|
+
};
|
|
827
|
+
/**
|
|
828
|
+
* Отменить уведомление по заявке general-приложения.
|
|
829
|
+
* TODO: типизировать
|
|
830
|
+
*/
|
|
831
|
+
'/generalapp/cancel_notification/': {
|
|
832
|
+
body: WithData<{
|
|
833
|
+
id: number;
|
|
834
|
+
with_cheque: boolean;
|
|
835
|
+
}>;
|
|
836
|
+
response: ApiResponse<unknown>;
|
|
837
|
+
};
|
|
838
|
+
/**
|
|
839
|
+
* Отменить предоставление кредита по заявке general-приложения.
|
|
840
|
+
* TODO: типизировать
|
|
841
|
+
*/
|
|
842
|
+
'/generalapp/cancel_providing_credit/': {
|
|
843
|
+
body: WithData<{
|
|
844
|
+
id: number;
|
|
845
|
+
with_cheque: boolean;
|
|
846
|
+
}>;
|
|
847
|
+
response: ApiResponse<unknown>;
|
|
848
|
+
};
|
|
849
|
+
};
|
|
744
850
|
|
|
745
851
|
/** Группа прав пользователя (`/group/get_list/`). */
|
|
746
852
|
type Group = {
|
|
@@ -3288,4 +3394,4 @@ type Mode = 'development' | 'production';
|
|
|
3288
3394
|
declare function setMode(newMode: Mode): void;
|
|
3289
3395
|
declare function getMode(): Mode;
|
|
3290
3396
|
|
|
3291
|
-
export { type Absolutbank, type AbsolutbankDictNames, type AbsolutbankFields, type AbsolutbankMeta, type AbsolutbankStages, type Address, type AgentAct, type AgentActContract, type AgentActFile, type AgentGetListBody, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type AlfabankBalance, type AlfabankBalanceOffer, type AlfabankBalanceOfferLoanParameters, type AlfabankBalanceScanState, type AlfabankBalanceStages, type ApiResponse, type Atbbank, type AtbbankFields, type AtbbankMeta, type AtbbankStages, BANK_CODES, type BankCode, type BankDetail, type BankDetailContracts, type BankDetailGetListBody, type BankRevise, type BankReviseContracts, type BankReviseGenerateBody, type BankReviseItem, type BankReviseItemUpdateBody, type BankReviseItemUpdateManyBody, type BankReviseItemUpdateManyItem, type BankReviseItemsDownloadBody, type BankServiceProvider, type BankdetailListFilter, type Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type CheckpassportApp, type CheckpassportUploadRequest, type CheckpassportUploadRequestWithAllFiles, type CheckpassportUploadRequestWithFiles, type CommissionFeeReviseWipContracts, type CommissionFeeReviseWipDownloadBody, type CommissionFeeReviseWipGenerateBody, type CommissionFeeReviseWipItem, type CommissionFeeReviseWipUpdateBody, type CommissionFeeReviseWipUpdateManyBody, type CommissionFeeReviseWipUpdateManyItem, type CommissionFeeReviseWipUpdateManyResponse, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Faq, type FaqContracts, type FaqGetListBody, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type GetFmsResponse, type Group, type GroupContracts, type GroupListFilter, type Login, type LoginResponse, MORTGAGE_BANK_CODES, type MessageUpdateWithGroupId, type MessageUpdateWithSalespointIds, type Mortgage, type MortgageBankApp, type MortgageBankAppStatus, type MortgageBankCode, type MortgageBankNames, type MortgageCalculateProgram, type MortgageCommonDictNames, type MortgageDictNames, type MortgageFields, type MortgageLoanReportRequest, type MortgageLoanReportStatus, type MortgageMeta, type MortgageProgram, type MortgageProgramsLimits, type MortgageScan, type MortgageScanDoctype, type MortgageStages, type MortgageUpdate, PERMISSIONS, POS_BANK_CODES, type Permission, type PosBankCode, type PostParams, type PostParamsWithoutBody, type ProductUploadBody, type ReportsAsync, type ReportsAsyncStatus, type ReportsMortgageLoanRequest, type ReportsMortgageStatFilter, type ReportsMortgageStatRequest, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointAltSumMode, type SalespointContracts, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type SalespointProvidingCreditMode, type SalespointUpdateBody, type Salespointgroup, type SalespointgroupContracts, type SalespointgroupUpdateBody, type Scorerule, type ScoreruleMode, type ScriptContracts, type ScriptExportResult, type ScriptLoadBody, type ScriptLoadError, type ScriptLoadResult, type ScriptLoadStats, type ScriptRunResult, type SearchParams, type Sex, type Sovcombank, type SovcombankFields, type SovcombankMeta, type SovcombankOffer, type SovcombankStages, type TransferAcceptanceContracts, type TransferAcceptanceGenerateBody, type TransferAcceptanceGenerateResponse, type UpdateMortgageCustomerRequest, type UploadB64File, type UploadedFile, type User, type UserContracts, type UserListFilter, type UserUpdateBody, type VtbBankmFields, type VtbBankmMeta, type VtbBankmStages, type Vtbbankm, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCalculateMortgage, useCancelAbsolutbank, useCancelAtbbank, useCancelGazprombankm, useCancelMortgage, useCancelRosbankDom, useCancelSovcombank, useCancelVtbbankm, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneAtbbank, useCloneGazprombankm, useCloneMortgage, useCloneRosbankDom, useCloneSalespoint, useCloneSovcombank, useCloneUser, useCloneVtbbankm, useConfirmAbsolutbank, useConfirmAtbbank, useConfirmRosbankDom, useConfirmSovcombank, useDeleteAbsolutbank, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteAtbbank, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGazprombankm, useDeleteGroupUser, useDeleteMortgage, useDeleteMortgageCustomer, useDeleteMortgageProgram, useDeleteMortgageScan, useDeleteRosbankDom, useDeleteSalespoint, useDeleteSalespointgroup, useDeleteSovcombank, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useDeleteVtbbankm, useGenerateAbsolutbankScansApplications, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, useGenerateAtbbankScansApplications, useGenerateGazprombankmScansApplications, useGenerateMortgageLoanReport, useGenerateMortgageStatReport, useGenerateSovcombankScansApplications, useGenerateVtbbankmScansApplications, useGetAbsolutbank, useGetAbsolutbankDict, useGetAbsolutbankList, useGetAbsolutbankPrintforms, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDict, useGetAkbarsList, useGetAkbarsPrintformList, useGetAlfabankBalance, useGetAlfabankBalanceDict, useGetAlfabankBalanceList, useGetAlfabankBalanceOffer, useGetAtbbank, useGetAtbbankDict, useGetAtbbankFiles, useGetAtbbankList, useGetAtbbankPrintformsList, useGetBrokerclient, useGetBrokerclientList, useGetChatmessageList, useGetChatmessageThreads, useGetCheckpassportStatus, useGetCommondictsBanks, useGetCommondictsPassportFms, useGetCustomer, useGetCustomerList, useGetGazprombankm, useGetGazprombankmDict, useGetGazprombankmList, useGetMortgage, useGetMortgageBankApp, useGetMortgageCommonDictList, useGetMortgageDict, useGetMortgageFieldChoices, useGetMortgageFieldRequired, useGetMortgageLimits, useGetMortgageList, useGetMortgageProgram, useGetMortgageProgramsGroup, useGetMortgageProgramsList, useGetMortgageScansDoctypesList, useGetMortgageScansList, useGetReportsList, useGetRosbankDom, useGetRosbankDomDict, useGetRosbankDomList, useGetRosbankDomPrintformsList, useGetSalespoint, useGetSalespointList, useGetSalespointgroup, useGetSalespointgroupList, useGetSovcombank, useGetSovcombankDict, useGetSovcombankFiles, useGetSovcombankList, useGetSovcombankPrintformsList, useGetUser, useGetUserList, useGetVtbbankm, useGetVtbbankmList, useLoanerApprovingAkbarsStatus, usePreapprovalAbsolutbankStatus, usePreapprovalAlfabankBalanceStatus, usePreapprovalAtbbankStatus, usePreapprovalRosbankDomStatus, usePreapprovalSovcombankStatus, usePrintMortgageForm, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAbsolutbank, useSendAbsolutbankScans, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendAtbbank, useSendAtbbankScans, useSendGazprombankm, useSendGazprombankmScans, useSendMortgage, useSendMortgageScans, useSendRosbankDom, useSendRosbankDomScans, useSendSovcombank, useSendSovcombankScans, useSendVtbbankScans, useSendVtbbankm, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateAtbbank, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCommondictsPassportFms, useUpdateCustomer, useUpdateGazprombankm, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateMortgageProgram, useUpdateRosbankDom, useUpdateSalespoint, useUpdateSalespointgroup, useUpdateSovcombank, useUpdateUser, useUpdateVtbbankm, useUploadAkbarsDepositScan, useUploadCheckpassport, useUploadMortgageScan, useVerifyManuallyAlfabankBalanceScans };
|
|
3397
|
+
export { type Absolutbank, type AbsolutbankDictNames, type AbsolutbankFields, type AbsolutbankMeta, type AbsolutbankStages, type Address, type AgentAct, type AgentActContract, type AgentActFile, type AgentGetListBody, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type AlfabankBalance, type AlfabankBalanceOffer, type AlfabankBalanceOfferLoanParameters, type AlfabankBalanceScanState, type AlfabankBalanceStages, type ApiResponse, type Atbbank, type AtbbankFields, type AtbbankMeta, type AtbbankStages, BANK_CODES, type BankCode, type BankDetail, type BankDetailContracts, type BankDetailGetListBody, type BankRevise, type BankReviseContracts, type BankReviseGenerateBody, type BankReviseItem, type BankReviseItemUpdateBody, type BankReviseItemUpdateManyBody, type BankReviseItemUpdateManyItem, type BankReviseItemsDownloadBody, type BankServiceProvider, type BankdetailListFilter, type Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type CheckpassportApp, type CheckpassportUploadRequest, type CheckpassportUploadRequestWithAllFiles, type CheckpassportUploadRequestWithFiles, type CommissionFeeReviseWipContracts, type CommissionFeeReviseWipDownloadBody, type CommissionFeeReviseWipGenerateBody, type CommissionFeeReviseWipItem, type CommissionFeeReviseWipUpdateBody, type CommissionFeeReviseWipUpdateManyBody, type CommissionFeeReviseWipUpdateManyItem, type CommissionFeeReviseWipUpdateManyResponse, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Faq, type FaqContracts, type FaqGetListBody, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type GeneralappContracts, type GetFmsResponse, type Group, type GroupContracts, type GroupListFilter, type Login, type LoginResponse, MORTGAGE_BANK_CODES, type MessageUpdateWithGroupId, type MessageUpdateWithSalespointIds, type Mortgage, type MortgageBankApp, type MortgageBankAppStatus, type MortgageBankCode, type MortgageBankNames, type MortgageCalculateProgram, type MortgageCommonDictNames, type MortgageDictNames, type MortgageFields, type MortgageLoanReportRequest, type MortgageLoanReportStatus, type MortgageMeta, type MortgageProgram, type MortgageProgramsLimits, type MortgageScan, type MortgageScanDoctype, type MortgageStages, type MortgageUpdate, PERMISSIONS, POS_BANK_CODES, type Permission, type PosBankCode, type PostParams, type PostParamsWithoutBody, type ProductUploadBody, type ReportsAsync, type ReportsAsyncStatus, type ReportsMortgageLoanRequest, type ReportsMortgageStatFilter, type ReportsMortgageStatRequest, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointAltSumMode, type SalespointContracts, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type SalespointProvidingCreditMode, type SalespointUpdateBody, type Salespointgroup, type SalespointgroupContracts, type SalespointgroupUpdateBody, type Scorerule, type ScoreruleItem, type ScoreruleItemUpdateBody, type ScoreruleMode, type ScoreruleUpdateBody, type ScriptContracts, type ScriptExportResult, type ScriptLoadBody, type ScriptLoadError, type ScriptLoadResult, type ScriptLoadStats, type ScriptRunResult, type SearchParams, type Sex, type Sovcombank, type SovcombankFields, type SovcombankMeta, type SovcombankOffer, type SovcombankStages, type TransferAcceptanceContracts, type TransferAcceptanceGenerateBody, type TransferAcceptanceGenerateResponse, type UpdateMortgageCustomerRequest, type UploadB64File, type UploadedFile, type User, type UserContracts, type UserListFilter, type UserUpdateBody, type VtbBankmFields, type VtbBankmMeta, type VtbBankmStages, type Vtbbankm, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCalculateMortgage, useCancelAbsolutbank, useCancelAtbbank, useCancelGazprombankm, useCancelMortgage, useCancelRosbankDom, useCancelSovcombank, useCancelVtbbankm, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneAtbbank, useCloneGazprombankm, useCloneMortgage, useCloneRosbankDom, useCloneSalespoint, useCloneSovcombank, useCloneUser, useCloneVtbbankm, useConfirmAbsolutbank, useConfirmAtbbank, useConfirmRosbankDom, useConfirmSovcombank, useDeleteAbsolutbank, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteAtbbank, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGazprombankm, useDeleteGroupUser, useDeleteMortgage, useDeleteMortgageCustomer, useDeleteMortgageProgram, useDeleteMortgageScan, useDeleteRosbankDom, useDeleteSalespoint, useDeleteSalespointgroup, useDeleteSovcombank, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useDeleteVtbbankm, useGenerateAbsolutbankScansApplications, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, useGenerateAtbbankScansApplications, useGenerateGazprombankmScansApplications, useGenerateMortgageLoanReport, useGenerateMortgageStatReport, useGenerateSovcombankScansApplications, useGenerateVtbbankmScansApplications, useGetAbsolutbank, useGetAbsolutbankDict, useGetAbsolutbankList, useGetAbsolutbankPrintforms, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDict, useGetAkbarsList, useGetAkbarsPrintformList, useGetAlfabankBalance, useGetAlfabankBalanceDict, useGetAlfabankBalanceList, useGetAlfabankBalanceOffer, useGetAtbbank, useGetAtbbankDict, useGetAtbbankFiles, useGetAtbbankList, useGetAtbbankPrintformsList, useGetBrokerclient, useGetBrokerclientList, useGetChatmessageList, useGetChatmessageThreads, useGetCheckpassportStatus, useGetCommondictsBanks, useGetCommondictsPassportFms, useGetCustomer, useGetCustomerList, useGetGazprombankm, useGetGazprombankmDict, useGetGazprombankmList, useGetMortgage, useGetMortgageBankApp, useGetMortgageCommonDictList, useGetMortgageDict, useGetMortgageFieldChoices, useGetMortgageFieldRequired, useGetMortgageLimits, useGetMortgageList, useGetMortgageProgram, useGetMortgageProgramsGroup, useGetMortgageProgramsList, useGetMortgageScansDoctypesList, useGetMortgageScansList, useGetReportsList, useGetRosbankDom, useGetRosbankDomDict, useGetRosbankDomList, useGetRosbankDomPrintformsList, useGetSalespoint, useGetSalespointList, useGetSalespointgroup, useGetSalespointgroupList, useGetSovcombank, useGetSovcombankDict, useGetSovcombankFiles, useGetSovcombankList, useGetSovcombankPrintformsList, useGetUser, useGetUserList, useGetVtbbankm, useGetVtbbankmList, useLoanerApprovingAkbarsStatus, usePreapprovalAbsolutbankStatus, usePreapprovalAlfabankBalanceStatus, usePreapprovalAtbbankStatus, usePreapprovalRosbankDomStatus, usePreapprovalSovcombankStatus, usePrintMortgageForm, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAbsolutbank, useSendAbsolutbankScans, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendAtbbank, useSendAtbbankScans, useSendGazprombankm, useSendGazprombankmScans, useSendMortgage, useSendMortgageScans, useSendRosbankDom, useSendRosbankDomScans, useSendSovcombank, useSendSovcombankScans, useSendVtbbankScans, useSendVtbbankm, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateAtbbank, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCommondictsPassportFms, useUpdateCustomer, useUpdateGazprombankm, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateMortgageProgram, useUpdateRosbankDom, useUpdateSalespoint, useUpdateSalespointgroup, useUpdateSovcombank, useUpdateUser, useUpdateVtbbankm, useUploadAkbarsDepositScan, useUploadCheckpassport, useUploadMortgageScan, useVerifyManuallyAlfabankBalanceScans };
|