simpleloan_api 1.2.35 → 1.2.37
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 +43 -22
- package/dist/index.d.ts +43 -22
- package/dist/index.js +3 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -921,31 +921,13 @@ type SovcombankFields = {};
|
|
|
921
921
|
type Sovcombank = SovcombankMeta & SovcombankFields;
|
|
922
922
|
|
|
923
923
|
type VtbBankmStages = 'app' | 'app_wait' | 'app_abort' | 'scans_wait' | 'scans_abort' | 'cancel' | 'end' | 'unknown';
|
|
924
|
-
type
|
|
924
|
+
type Vtbbankm = {
|
|
925
925
|
id: number;
|
|
926
926
|
created_at: string;
|
|
927
927
|
salespoint_id: number;
|
|
928
928
|
user_id: number;
|
|
929
929
|
mortgageapp_id: number;
|
|
930
930
|
bank_id: string;
|
|
931
|
-
offers: null;
|
|
932
|
-
scans_send: false;
|
|
933
|
-
verify_send: false;
|
|
934
|
-
stages: {
|
|
935
|
-
current: VtbBankmStages;
|
|
936
|
-
fields: [];
|
|
937
|
-
last_comment: string;
|
|
938
|
-
cancel_date: null;
|
|
939
|
-
result_app: string;
|
|
940
|
-
result_app_start: null;
|
|
941
|
-
result_app_stop: null;
|
|
942
|
-
result_scans: string;
|
|
943
|
-
result_scans_start: null;
|
|
944
|
-
result_scans_stop: null;
|
|
945
|
-
confirm_date: null;
|
|
946
|
-
};
|
|
947
|
-
};
|
|
948
|
-
type VtbBankmFields = {
|
|
949
931
|
division: string;
|
|
950
932
|
divisionCity: string;
|
|
951
933
|
objectCategory: string;
|
|
@@ -956,17 +938,48 @@ type VtbBankmFields = {
|
|
|
956
938
|
initialPayment: string;
|
|
957
939
|
requestedLoanTerm: number;
|
|
958
940
|
loanProductGroup: string;
|
|
959
|
-
maternalCapitalUsagePurpouse:
|
|
941
|
+
maternalCapitalUsagePurpouse: null;
|
|
960
942
|
maternalCapitalAmount: null;
|
|
961
943
|
creditProgram: string;
|
|
944
|
+
refinancing: false;
|
|
962
945
|
is_pledge: false;
|
|
963
946
|
pledgeEstateType: null;
|
|
964
947
|
pledgeObjectCategory: null;
|
|
948
|
+
program_code: null;
|
|
949
|
+
down_payment_housing_subsidy: false;
|
|
950
|
+
down_payment_targeted_housing_loan: false;
|
|
965
951
|
is_tranche: false;
|
|
966
952
|
is_combo: false;
|
|
967
953
|
tranches: null;
|
|
954
|
+
scans_send: true;
|
|
955
|
+
scans_send_meta: true;
|
|
956
|
+
verify_send: true;
|
|
957
|
+
offers: VtbbankmOffers[];
|
|
958
|
+
stages: {
|
|
959
|
+
current: string;
|
|
960
|
+
fields: string[];
|
|
961
|
+
last_comment: string;
|
|
962
|
+
cancel_date: string | null;
|
|
963
|
+
result_app: string | null;
|
|
964
|
+
result_app_start: string | null;
|
|
965
|
+
result_app_stop: string | null;
|
|
966
|
+
result_scans: string | null;
|
|
967
|
+
result_scans_start: string | null;
|
|
968
|
+
result_scans_stop: string | null;
|
|
969
|
+
confirm_date: string | null;
|
|
970
|
+
};
|
|
971
|
+
};
|
|
972
|
+
type VtbbankmOffers = {
|
|
973
|
+
loanRate: number;
|
|
974
|
+
loanTerm: number;
|
|
975
|
+
approveDate: string;
|
|
976
|
+
approvedAmount: number;
|
|
977
|
+
monthlyPayment: number;
|
|
978
|
+
initialFeeAmount: number;
|
|
979
|
+
azsQuestionnaireId: string;
|
|
980
|
+
calculatedLoanAmount: number;
|
|
981
|
+
realEstateCategoryId: string;
|
|
968
982
|
};
|
|
969
|
-
type Vtbbankm = VtbBankmMeta & VtbBankmFields;
|
|
970
983
|
|
|
971
984
|
type ApiResponse<T> = {
|
|
972
985
|
_code: number;
|
|
@@ -2463,6 +2476,14 @@ declare const useSendVtbbankm: () => {
|
|
|
2463
2476
|
id: number;
|
|
2464
2477
|
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
2465
2478
|
};
|
|
2479
|
+
/** Отправка заявки Втб банка */
|
|
2480
|
+
declare const useSendVtbbankmScans: () => {
|
|
2481
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
2482
|
+
readonly pending: vue.Ref<boolean>;
|
|
2483
|
+
post(params: PostParams<{
|
|
2484
|
+
id: number;
|
|
2485
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
2486
|
+
};
|
|
2466
2487
|
/** Получение анкет для заёмщиков заявки Втб */
|
|
2467
2488
|
declare const useGenerateVtbbankmScansApplications: () => {
|
|
2468
2489
|
readonly response: vue.Ref<ApiResponse<Record<string, string>> | null>;
|
|
@@ -2495,4 +2516,4 @@ type Mode = 'development' | 'production';
|
|
|
2495
2516
|
declare function setMode(newMode: Mode): void;
|
|
2496
2517
|
declare function getMode(): Mode;
|
|
2497
2518
|
|
|
2498
|
-
export { type Absolutbank, type AbsolutbankDictNames, type AbsolutbankFields, type AbsolutbankMeta, type AbsolutbankStages, type Address, 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 Atbbank, type AtbbankFields, type AtbbankMeta, type AtbbankStages, type Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type CheckpassportApp, type CheckpassportUploadRequest, type CheckpassportUploadRequestWithAllFiles, type CheckpassportUploadRequestWithFiles, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type GetFmsResponse, type Login, type LoginResponse, type MessageUpdateWithGroupId, type MessageUpdateWithSalespointIds, type Mortgage, type MortgageBankApp, type MortgageBankAppStatus, 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, type ReportsAsync, type ReportsAsyncStatus, type ReportsMortgageLoanRequest, type ReportsMortgageStatFilter, type ReportsMortgageStatRequest, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Salespointgroup, type Sex, type Sovcombank, type SovcombankFields, type SovcombankMeta, type SovcombankOffer, type SovcombankStages, type UpdateMortgageCustomerRequest, type UploadB64File, type UploadedFile, type User, type
|
|
2519
|
+
export { type Absolutbank, type AbsolutbankDictNames, type AbsolutbankFields, type AbsolutbankMeta, type AbsolutbankStages, type Address, 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 Atbbank, type AtbbankFields, type AtbbankMeta, type AtbbankStages, type Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type CheckpassportApp, type CheckpassportUploadRequest, type CheckpassportUploadRequestWithAllFiles, type CheckpassportUploadRequestWithFiles, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type GetFmsResponse, type Login, type LoginResponse, type MessageUpdateWithGroupId, type MessageUpdateWithSalespointIds, type Mortgage, type MortgageBankApp, type MortgageBankAppStatus, 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, type ReportsAsync, type ReportsAsyncStatus, type ReportsMortgageLoanRequest, type ReportsMortgageStatFilter, type ReportsMortgageStatRequest, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Salespointgroup, type Sex, type Sovcombank, type SovcombankFields, type SovcombankMeta, type SovcombankOffer, type SovcombankStages, type UpdateMortgageCustomerRequest, type UploadB64File, type UploadedFile, type User, type VtbBankmStages, type Vtbbankm, type VtbbankmOffers, 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, useSendVtbbankm, useSendVtbbankmScans, 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
|
@@ -921,31 +921,13 @@ type SovcombankFields = {};
|
|
|
921
921
|
type Sovcombank = SovcombankMeta & SovcombankFields;
|
|
922
922
|
|
|
923
923
|
type VtbBankmStages = 'app' | 'app_wait' | 'app_abort' | 'scans_wait' | 'scans_abort' | 'cancel' | 'end' | 'unknown';
|
|
924
|
-
type
|
|
924
|
+
type Vtbbankm = {
|
|
925
925
|
id: number;
|
|
926
926
|
created_at: string;
|
|
927
927
|
salespoint_id: number;
|
|
928
928
|
user_id: number;
|
|
929
929
|
mortgageapp_id: number;
|
|
930
930
|
bank_id: string;
|
|
931
|
-
offers: null;
|
|
932
|
-
scans_send: false;
|
|
933
|
-
verify_send: false;
|
|
934
|
-
stages: {
|
|
935
|
-
current: VtbBankmStages;
|
|
936
|
-
fields: [];
|
|
937
|
-
last_comment: string;
|
|
938
|
-
cancel_date: null;
|
|
939
|
-
result_app: string;
|
|
940
|
-
result_app_start: null;
|
|
941
|
-
result_app_stop: null;
|
|
942
|
-
result_scans: string;
|
|
943
|
-
result_scans_start: null;
|
|
944
|
-
result_scans_stop: null;
|
|
945
|
-
confirm_date: null;
|
|
946
|
-
};
|
|
947
|
-
};
|
|
948
|
-
type VtbBankmFields = {
|
|
949
931
|
division: string;
|
|
950
932
|
divisionCity: string;
|
|
951
933
|
objectCategory: string;
|
|
@@ -956,17 +938,48 @@ type VtbBankmFields = {
|
|
|
956
938
|
initialPayment: string;
|
|
957
939
|
requestedLoanTerm: number;
|
|
958
940
|
loanProductGroup: string;
|
|
959
|
-
maternalCapitalUsagePurpouse:
|
|
941
|
+
maternalCapitalUsagePurpouse: null;
|
|
960
942
|
maternalCapitalAmount: null;
|
|
961
943
|
creditProgram: string;
|
|
944
|
+
refinancing: false;
|
|
962
945
|
is_pledge: false;
|
|
963
946
|
pledgeEstateType: null;
|
|
964
947
|
pledgeObjectCategory: null;
|
|
948
|
+
program_code: null;
|
|
949
|
+
down_payment_housing_subsidy: false;
|
|
950
|
+
down_payment_targeted_housing_loan: false;
|
|
965
951
|
is_tranche: false;
|
|
966
952
|
is_combo: false;
|
|
967
953
|
tranches: null;
|
|
954
|
+
scans_send: true;
|
|
955
|
+
scans_send_meta: true;
|
|
956
|
+
verify_send: true;
|
|
957
|
+
offers: VtbbankmOffers[];
|
|
958
|
+
stages: {
|
|
959
|
+
current: string;
|
|
960
|
+
fields: string[];
|
|
961
|
+
last_comment: string;
|
|
962
|
+
cancel_date: string | null;
|
|
963
|
+
result_app: string | null;
|
|
964
|
+
result_app_start: string | null;
|
|
965
|
+
result_app_stop: string | null;
|
|
966
|
+
result_scans: string | null;
|
|
967
|
+
result_scans_start: string | null;
|
|
968
|
+
result_scans_stop: string | null;
|
|
969
|
+
confirm_date: string | null;
|
|
970
|
+
};
|
|
971
|
+
};
|
|
972
|
+
type VtbbankmOffers = {
|
|
973
|
+
loanRate: number;
|
|
974
|
+
loanTerm: number;
|
|
975
|
+
approveDate: string;
|
|
976
|
+
approvedAmount: number;
|
|
977
|
+
monthlyPayment: number;
|
|
978
|
+
initialFeeAmount: number;
|
|
979
|
+
azsQuestionnaireId: string;
|
|
980
|
+
calculatedLoanAmount: number;
|
|
981
|
+
realEstateCategoryId: string;
|
|
968
982
|
};
|
|
969
|
-
type Vtbbankm = VtbBankmMeta & VtbBankmFields;
|
|
970
983
|
|
|
971
984
|
type ApiResponse<T> = {
|
|
972
985
|
_code: number;
|
|
@@ -2463,6 +2476,14 @@ declare const useSendVtbbankm: () => {
|
|
|
2463
2476
|
id: number;
|
|
2464
2477
|
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
2465
2478
|
};
|
|
2479
|
+
/** Отправка заявки Втб банка */
|
|
2480
|
+
declare const useSendVtbbankmScans: () => {
|
|
2481
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
2482
|
+
readonly pending: vue.Ref<boolean>;
|
|
2483
|
+
post(params: PostParams<{
|
|
2484
|
+
id: number;
|
|
2485
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
2486
|
+
};
|
|
2466
2487
|
/** Получение анкет для заёмщиков заявки Втб */
|
|
2467
2488
|
declare const useGenerateVtbbankmScansApplications: () => {
|
|
2468
2489
|
readonly response: vue.Ref<ApiResponse<Record<string, string>> | null>;
|
|
@@ -2495,4 +2516,4 @@ type Mode = 'development' | 'production';
|
|
|
2495
2516
|
declare function setMode(newMode: Mode): void;
|
|
2496
2517
|
declare function getMode(): Mode;
|
|
2497
2518
|
|
|
2498
|
-
export { type Absolutbank, type AbsolutbankDictNames, type AbsolutbankFields, type AbsolutbankMeta, type AbsolutbankStages, type Address, 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 Atbbank, type AtbbankFields, type AtbbankMeta, type AtbbankStages, type Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type CheckpassportApp, type CheckpassportUploadRequest, type CheckpassportUploadRequestWithAllFiles, type CheckpassportUploadRequestWithFiles, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type GetFmsResponse, type Login, type LoginResponse, type MessageUpdateWithGroupId, type MessageUpdateWithSalespointIds, type Mortgage, type MortgageBankApp, type MortgageBankAppStatus, 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, type ReportsAsync, type ReportsAsyncStatus, type ReportsMortgageLoanRequest, type ReportsMortgageStatFilter, type ReportsMortgageStatRequest, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Salespointgroup, type Sex, type Sovcombank, type SovcombankFields, type SovcombankMeta, type SovcombankOffer, type SovcombankStages, type UpdateMortgageCustomerRequest, type UploadB64File, type UploadedFile, type User, type
|
|
2519
|
+
export { type Absolutbank, type AbsolutbankDictNames, type AbsolutbankFields, type AbsolutbankMeta, type AbsolutbankStages, type Address, 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 Atbbank, type AtbbankFields, type AtbbankMeta, type AtbbankStages, type Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type CheckpassportApp, type CheckpassportUploadRequest, type CheckpassportUploadRequestWithAllFiles, type CheckpassportUploadRequestWithFiles, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type GetFmsResponse, type Login, type LoginResponse, type MessageUpdateWithGroupId, type MessageUpdateWithSalespointIds, type Mortgage, type MortgageBankApp, type MortgageBankAppStatus, 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, type ReportsAsync, type ReportsAsyncStatus, type ReportsMortgageLoanRequest, type ReportsMortgageStatFilter, type ReportsMortgageStatRequest, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Salespointgroup, type Sex, type Sovcombank, type SovcombankFields, type SovcombankMeta, type SovcombankOffer, type SovcombankStages, type UpdateMortgageCustomerRequest, type UploadB64File, type UploadedFile, type User, type VtbBankmStages, type Vtbbankm, type VtbbankmOffers, 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, useSendVtbbankm, useSendVtbbankmScans, 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.js
CHANGED
|
@@ -212,6 +212,7 @@ __export(simpleloan_api_exports, {
|
|
|
212
212
|
useSendSovcombank: () => useSendSovcombank,
|
|
213
213
|
useSendSovcombankScans: () => useSendSovcombankScans,
|
|
214
214
|
useSendVtbbankm: () => useSendVtbbankm,
|
|
215
|
+
useSendVtbbankmScans: () => useSendVtbbankmScans,
|
|
215
216
|
useStatusManuallyAlfabankBalanceScans: () => useStatusManuallyAlfabankBalanceScans,
|
|
216
217
|
useUpdateAbsolutbank: () => useUpdateAbsolutbank,
|
|
217
218
|
useUpdateAkbars: () => useUpdateAkbars,
|
|
@@ -556,6 +557,7 @@ var useGetVtbbankmList = () => useFetch(baseUrl19 + "get_list/");
|
|
|
556
557
|
var useDeleteVtbbankm = () => useFetch(baseUrl19 + "delete/");
|
|
557
558
|
var useUpdateVtbbankm = () => useFetch(baseUrl19 + "app/update/");
|
|
558
559
|
var useSendVtbbankm = () => useFetch(baseUrl19 + "app/send/");
|
|
560
|
+
var useSendVtbbankmScans = () => useFetch(baseUrl19 + "scans/send/");
|
|
559
561
|
var useGenerateVtbbankmScansApplications = () => useFetch(baseUrl19 + "scans/applications/generate/");
|
|
560
562
|
var useCancelVtbbankm = () => useFetch(baseUrl19 + "cancel/");
|
|
561
563
|
var useCloneVtbbankm = () => useFetch(baseUrl19 + "app/clone/");
|
|
@@ -719,6 +721,7 @@ var useCloneVtbbankm = () => useFetch(baseUrl19 + "app/clone/");
|
|
|
719
721
|
useSendSovcombank,
|
|
720
722
|
useSendSovcombankScans,
|
|
721
723
|
useSendVtbbankm,
|
|
724
|
+
useSendVtbbankmScans,
|
|
722
725
|
useStatusManuallyAlfabankBalanceScans,
|
|
723
726
|
useUpdateAbsolutbank,
|
|
724
727
|
useUpdateAkbars,
|
package/dist/index.mjs
CHANGED
|
@@ -350,6 +350,7 @@ var useGetVtbbankmList = () => useFetch(baseUrl19 + "get_list/");
|
|
|
350
350
|
var useDeleteVtbbankm = () => useFetch(baseUrl19 + "delete/");
|
|
351
351
|
var useUpdateVtbbankm = () => useFetch(baseUrl19 + "app/update/");
|
|
352
352
|
var useSendVtbbankm = () => useFetch(baseUrl19 + "app/send/");
|
|
353
|
+
var useSendVtbbankmScans = () => useFetch(baseUrl19 + "scans/send/");
|
|
353
354
|
var useGenerateVtbbankmScansApplications = () => useFetch(baseUrl19 + "scans/applications/generate/");
|
|
354
355
|
var useCancelVtbbankm = () => useFetch(baseUrl19 + "cancel/");
|
|
355
356
|
var useCloneVtbbankm = () => useFetch(baseUrl19 + "app/clone/");
|
|
@@ -512,6 +513,7 @@ export {
|
|
|
512
513
|
useSendSovcombank,
|
|
513
514
|
useSendSovcombankScans,
|
|
514
515
|
useSendVtbbankm,
|
|
516
|
+
useSendVtbbankmScans,
|
|
515
517
|
useStatusManuallyAlfabankBalanceScans,
|
|
516
518
|
useUpdateAbsolutbank,
|
|
517
519
|
useUpdateAkbars,
|