simpleloan_api 1.1.33 → 1.1.35
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 +150 -3
- package/dist/index.d.ts +150 -3
- package/dist/index.js +104 -47
- package/dist/index.mjs +86 -46
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -474,8 +474,23 @@ type CustomerFields = {
|
|
|
474
474
|
};
|
|
475
475
|
type Customer = CustomerFields & CustomerMeta;
|
|
476
476
|
|
|
477
|
+
type GazprombankmStages = 'app' | 'app_wait' | 'app_abort' | 'scans' | 'scans_wait' | 'scans_abort' | 'end' | 'cancel' | 'unknown';
|
|
478
|
+
type GazprombankmMeta = {
|
|
479
|
+
id: number;
|
|
480
|
+
mortgageapp_id: number;
|
|
481
|
+
created_at: string;
|
|
482
|
+
salespoint_id: number;
|
|
483
|
+
user_id: number;
|
|
484
|
+
stages: {
|
|
485
|
+
current: GazprombankmStages;
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
type GazprombankmFields = {};
|
|
489
|
+
type Gazprombankm = GazprombankmMeta & GazprombankmFields;
|
|
490
|
+
type GazprombankmDictNames = 'MarketType' | 'RealEstateTypeCode' | 'LoanPurpose' | 'SubProgramCode' | 'InsuranceType';
|
|
491
|
+
|
|
477
492
|
type MortgageStages = 'app_create' | 'app_wait' | 'app_ending' | 'app_issued' | 'app_cancel' | 'app_complete_decline' | 'app_complete_accept';
|
|
478
|
-
type MortgageBankNames = 'alfabankbalance' | 'rosbankdom' | 'akbars' | 'vtbbankm';
|
|
493
|
+
type MortgageBankNames = 'alfabankbalance' | 'rosbankdom' | 'akbars' | 'vtbbankm' | 'absolutbank';
|
|
479
494
|
type MortgageBankAppStatus = {
|
|
480
495
|
id: number;
|
|
481
496
|
bank: MortgageBankNames;
|
|
@@ -787,7 +802,7 @@ declare const useGetAbsolutbankList: () => {
|
|
|
787
802
|
post(params?: PostParamsWithoutBody): Promise<ApiResponse<AbsolutbankMeta[]> | null>;
|
|
788
803
|
};
|
|
789
804
|
/** Удаление заявки Абсолют банка */
|
|
790
|
-
declare const
|
|
805
|
+
declare const useDeleteAbsolutbank: () => {
|
|
791
806
|
readonly response: vue.Ref<ApiResponse<null> | null>;
|
|
792
807
|
readonly pending: vue.Ref<boolean>;
|
|
793
808
|
post(params: PostParams<{
|
|
@@ -1304,6 +1319,75 @@ declare const useDeleteCustomerList: () => {
|
|
|
1304
1319
|
post(params?: PostParamsWithoutBody): Promise<ApiResponse<Customer[]> | null>;
|
|
1305
1320
|
};
|
|
1306
1321
|
|
|
1322
|
+
/** Получение справочника Газпром банка */
|
|
1323
|
+
declare const useGetGazprombankmDict: (dictName: GazprombankmDictNames) => {
|
|
1324
|
+
readonly response: vue.Ref<ApiResponse<Dict> | null>;
|
|
1325
|
+
readonly pending: vue.Ref<boolean>;
|
|
1326
|
+
post(params?: PostParamsWithoutBody): Promise<ApiResponse<Dict> | null>;
|
|
1327
|
+
};
|
|
1328
|
+
/** Получение заявки Газпром банка */
|
|
1329
|
+
declare const useGetGazprombankm: () => {
|
|
1330
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1331
|
+
readonly pending: vue.Ref<boolean>;
|
|
1332
|
+
post(params: PostParams<{
|
|
1333
|
+
id: number;
|
|
1334
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1335
|
+
};
|
|
1336
|
+
/** Получение списка заявок Газпром банка */
|
|
1337
|
+
declare const useGetGazprombankmList: () => {
|
|
1338
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta[]> | null>;
|
|
1339
|
+
readonly pending: vue.Ref<boolean>;
|
|
1340
|
+
post(params?: PostParamsWithoutBody): Promise<ApiResponse<GazprombankmMeta[]> | null>;
|
|
1341
|
+
};
|
|
1342
|
+
/** Удаление заявки Газпром банка */
|
|
1343
|
+
declare const useDeleteGazprombankm: () => {
|
|
1344
|
+
readonly response: vue.Ref<ApiResponse<null> | null>;
|
|
1345
|
+
readonly pending: vue.Ref<boolean>;
|
|
1346
|
+
post(params: PostParams<{
|
|
1347
|
+
id: number;
|
|
1348
|
+
}>): Promise<ApiResponse<null> | null>;
|
|
1349
|
+
};
|
|
1350
|
+
/** Обновление/создание заявки Газпром банка */
|
|
1351
|
+
declare const useUpdateGazprombankm: () => {
|
|
1352
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1353
|
+
readonly pending: vue.Ref<boolean>;
|
|
1354
|
+
post(params: PostParams<Partial<GazprombankmMeta>>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1355
|
+
};
|
|
1356
|
+
/** Отправка заявки Газпром банка */
|
|
1357
|
+
declare const useSendGazprombankm: () => {
|
|
1358
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1359
|
+
readonly pending: vue.Ref<boolean>;
|
|
1360
|
+
post(params: PostParams<{
|
|
1361
|
+
id: number;
|
|
1362
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1363
|
+
};
|
|
1364
|
+
/** Отправка сканов заявки Газпром банка */
|
|
1365
|
+
declare const useSendGazprombankmScans: () => {
|
|
1366
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1367
|
+
readonly pending: vue.Ref<boolean>;
|
|
1368
|
+
post(params: PostParams<{
|
|
1369
|
+
id: number;
|
|
1370
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1371
|
+
};
|
|
1372
|
+
/** Отмена заявки Газпром банка */
|
|
1373
|
+
declare const useCancelGazprombankm: () => {
|
|
1374
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1375
|
+
readonly pending: vue.Ref<boolean>;
|
|
1376
|
+
post(params: PostParams<{
|
|
1377
|
+
id: number;
|
|
1378
|
+
comment: string;
|
|
1379
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1380
|
+
};
|
|
1381
|
+
/** Копирование заявки Газпром банка */
|
|
1382
|
+
declare const useCloneGazprombankm: () => {
|
|
1383
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1384
|
+
readonly pending: vue.Ref<boolean>;
|
|
1385
|
+
post(params: PostParams<{
|
|
1386
|
+
id: number;
|
|
1387
|
+
salespoint_id?: number;
|
|
1388
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1389
|
+
};
|
|
1390
|
+
|
|
1307
1391
|
type MortgageUpdate = Partial<MortgageFields> & {
|
|
1308
1392
|
id: string;
|
|
1309
1393
|
};
|
|
@@ -1642,8 +1726,71 @@ declare const useUpdateManyUser: () => {
|
|
|
1642
1726
|
}>): Promise<ApiResponse<User[]> | null>;
|
|
1643
1727
|
};
|
|
1644
1728
|
|
|
1729
|
+
/** Получение заявки Втб банка */
|
|
1730
|
+
declare const useGetVtbbankm: () => {
|
|
1731
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1732
|
+
readonly pending: vue.Ref<boolean>;
|
|
1733
|
+
post(params: PostParams<{
|
|
1734
|
+
id: number;
|
|
1735
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1736
|
+
};
|
|
1737
|
+
/** Получение списка заявок Втб банка */
|
|
1738
|
+
declare const useGetVtbbankmList: () => {
|
|
1739
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm[]> | null>;
|
|
1740
|
+
readonly pending: vue.Ref<boolean>;
|
|
1741
|
+
post(params?: PostParamsWithoutBody): Promise<ApiResponse<Vtbbankm[]> | null>;
|
|
1742
|
+
};
|
|
1743
|
+
/** Удаление заявки Втб банка */
|
|
1744
|
+
declare const useDeleteVtbbankm: () => {
|
|
1745
|
+
readonly response: vue.Ref<ApiResponse<null> | null>;
|
|
1746
|
+
readonly pending: vue.Ref<boolean>;
|
|
1747
|
+
post(params: PostParams<{
|
|
1748
|
+
id: number;
|
|
1749
|
+
}>): Promise<ApiResponse<null> | null>;
|
|
1750
|
+
};
|
|
1751
|
+
/** Обновление/создание заявки Втб банка */
|
|
1752
|
+
declare const useUpdateVtbbankm: () => {
|
|
1753
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1754
|
+
readonly pending: vue.Ref<boolean>;
|
|
1755
|
+
post(params: PostParams<Partial<Vtbbankm>>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1756
|
+
};
|
|
1757
|
+
/** Отправка заявки Втб банка */
|
|
1758
|
+
declare const useSendVtbbankm: () => {
|
|
1759
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1760
|
+
readonly pending: vue.Ref<boolean>;
|
|
1761
|
+
post(params: PostParams<{
|
|
1762
|
+
id: number;
|
|
1763
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1764
|
+
};
|
|
1765
|
+
/** Получение анкет для заёмщиков заявки Втб */
|
|
1766
|
+
declare const useGenerateVtbbankmScansApplications: () => {
|
|
1767
|
+
readonly response: vue.Ref<ApiResponse<Record<string, string>> | null>;
|
|
1768
|
+
readonly pending: vue.Ref<boolean>;
|
|
1769
|
+
post(params: PostParams<{
|
|
1770
|
+
mortgageapp_id: number;
|
|
1771
|
+
}>): Promise<ApiResponse<Record<string, string>> | null>;
|
|
1772
|
+
};
|
|
1773
|
+
/** Отмена заявки Втб банка */
|
|
1774
|
+
declare const useCancelVtbbankm: () => {
|
|
1775
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1776
|
+
readonly pending: vue.Ref<boolean>;
|
|
1777
|
+
post(params: PostParams<{
|
|
1778
|
+
id: number;
|
|
1779
|
+
comment: string;
|
|
1780
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1781
|
+
};
|
|
1782
|
+
/** Копирование заявки Втб банка */
|
|
1783
|
+
declare const useCloneVtbbankm: () => {
|
|
1784
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1785
|
+
readonly pending: vue.Ref<boolean>;
|
|
1786
|
+
post(params: PostParams<{
|
|
1787
|
+
id: number;
|
|
1788
|
+
salespoint_id?: number;
|
|
1789
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1790
|
+
};
|
|
1791
|
+
|
|
1645
1792
|
type Mode = 'development' | 'production';
|
|
1646
1793
|
declare function setMode(newMode: Mode): void;
|
|
1647
1794
|
declare function getMode(): Mode;
|
|
1648
1795
|
|
|
1649
|
-
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 Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageCalculateProgram, type MortgageCommonDictNames, type MortgageDictNames, type MortgageFields, type MortgageMeta, type MortgageProgram, type MortgageProgramsLimits, type MortgageStages, type MortgageUpdate, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type UploadedFile, type User, type VtbBankmFields, type VtbBankmMeta, type VtbBankmStages, type Vtbbankm, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCalculateMortgage, useCancelAbsolutbank, useCancelRosbankDom, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useConfirmAbsolutbank, useConfirmRosbankDom,
|
|
1796
|
+
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 Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageCalculateProgram, type MortgageCommonDictNames, type MortgageDictNames, type MortgageFields, type MortgageMeta, type MortgageProgram, type MortgageProgramsLimits, type MortgageStages, type MortgageUpdate, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type UploadedFile, type User, type VtbBankmFields, type VtbBankmMeta, type VtbBankmStages, type Vtbbankm, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCalculateMortgage, useCancelAbsolutbank, useCancelGazprombankm, useCancelRosbankDom, useCancelVtbbankm, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneGazprombankm, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useCloneVtbbankm, useConfirmAbsolutbank, useConfirmRosbankDom, useDeleteAbsolutbank, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGazprombankm, useDeleteGroupUser, useDeleteMortgageCustomer, useDeleteRosbankDom, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useDeleteVtbbankm, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, useGenerateVtbbankmScansApplications, useGetAbsolutbank, useGetAbsolutbankDict, useGetAbsolutbankList, useGetAbsolutbankPrintforms, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDict, useGetAkbarsList, useGetAkbarsPrintformList, useGetAlfabankBalance, useGetAlfabankBalanceDict, useGetAlfabankBalanceList, useGetAlfabankBalanceOffer, useGetBrokerclient, useGetBrokerclientList, useGetChatmessageList, useGetChatmessageThreads, useGetCustomer, useGetCustomerList, useGetGazprombankm, useGetGazprombankmDict, useGetGazprombankmList, useGetMortgage, useGetMortgageCommonDictList, useGetMortgageDict, useGetMortgageLimits, useGetMortgageList, useGetMortgageProgram, useGetRosbankDom, useGetRosbankDomDict, useGetRosbankDomList, useGetRosbankDomPrintformsList, useGetSalespoint, useGetSalespointList, useGetUser, useGetUserList, useGetVtbbankm, useGetVtbbankmList, useLoanerApprovingAkbarsStatus, usePreapprovalAbsolutbankStatus, usePreapprovalAlfabankBalanceStatus, usePreapprovalRosbankDomStatus, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAbsolutbank, useSendAbsolutbankScans, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendGazprombankm, useSendGazprombankmScans, useSendMortgage, useSendRosbankDom, useSendRosbankDomScans, useSendVtbbankm, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateGazprombankm, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUpdateVtbbankm, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
|
package/dist/index.d.ts
CHANGED
|
@@ -474,8 +474,23 @@ type CustomerFields = {
|
|
|
474
474
|
};
|
|
475
475
|
type Customer = CustomerFields & CustomerMeta;
|
|
476
476
|
|
|
477
|
+
type GazprombankmStages = 'app' | 'app_wait' | 'app_abort' | 'scans' | 'scans_wait' | 'scans_abort' | 'end' | 'cancel' | 'unknown';
|
|
478
|
+
type GazprombankmMeta = {
|
|
479
|
+
id: number;
|
|
480
|
+
mortgageapp_id: number;
|
|
481
|
+
created_at: string;
|
|
482
|
+
salespoint_id: number;
|
|
483
|
+
user_id: number;
|
|
484
|
+
stages: {
|
|
485
|
+
current: GazprombankmStages;
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
type GazprombankmFields = {};
|
|
489
|
+
type Gazprombankm = GazprombankmMeta & GazprombankmFields;
|
|
490
|
+
type GazprombankmDictNames = 'MarketType' | 'RealEstateTypeCode' | 'LoanPurpose' | 'SubProgramCode' | 'InsuranceType';
|
|
491
|
+
|
|
477
492
|
type MortgageStages = 'app_create' | 'app_wait' | 'app_ending' | 'app_issued' | 'app_cancel' | 'app_complete_decline' | 'app_complete_accept';
|
|
478
|
-
type MortgageBankNames = 'alfabankbalance' | 'rosbankdom' | 'akbars' | 'vtbbankm';
|
|
493
|
+
type MortgageBankNames = 'alfabankbalance' | 'rosbankdom' | 'akbars' | 'vtbbankm' | 'absolutbank';
|
|
479
494
|
type MortgageBankAppStatus = {
|
|
480
495
|
id: number;
|
|
481
496
|
bank: MortgageBankNames;
|
|
@@ -787,7 +802,7 @@ declare const useGetAbsolutbankList: () => {
|
|
|
787
802
|
post(params?: PostParamsWithoutBody): Promise<ApiResponse<AbsolutbankMeta[]> | null>;
|
|
788
803
|
};
|
|
789
804
|
/** Удаление заявки Абсолют банка */
|
|
790
|
-
declare const
|
|
805
|
+
declare const useDeleteAbsolutbank: () => {
|
|
791
806
|
readonly response: vue.Ref<ApiResponse<null> | null>;
|
|
792
807
|
readonly pending: vue.Ref<boolean>;
|
|
793
808
|
post(params: PostParams<{
|
|
@@ -1304,6 +1319,75 @@ declare const useDeleteCustomerList: () => {
|
|
|
1304
1319
|
post(params?: PostParamsWithoutBody): Promise<ApiResponse<Customer[]> | null>;
|
|
1305
1320
|
};
|
|
1306
1321
|
|
|
1322
|
+
/** Получение справочника Газпром банка */
|
|
1323
|
+
declare const useGetGazprombankmDict: (dictName: GazprombankmDictNames) => {
|
|
1324
|
+
readonly response: vue.Ref<ApiResponse<Dict> | null>;
|
|
1325
|
+
readonly pending: vue.Ref<boolean>;
|
|
1326
|
+
post(params?: PostParamsWithoutBody): Promise<ApiResponse<Dict> | null>;
|
|
1327
|
+
};
|
|
1328
|
+
/** Получение заявки Газпром банка */
|
|
1329
|
+
declare const useGetGazprombankm: () => {
|
|
1330
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1331
|
+
readonly pending: vue.Ref<boolean>;
|
|
1332
|
+
post(params: PostParams<{
|
|
1333
|
+
id: number;
|
|
1334
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1335
|
+
};
|
|
1336
|
+
/** Получение списка заявок Газпром банка */
|
|
1337
|
+
declare const useGetGazprombankmList: () => {
|
|
1338
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta[]> | null>;
|
|
1339
|
+
readonly pending: vue.Ref<boolean>;
|
|
1340
|
+
post(params?: PostParamsWithoutBody): Promise<ApiResponse<GazprombankmMeta[]> | null>;
|
|
1341
|
+
};
|
|
1342
|
+
/** Удаление заявки Газпром банка */
|
|
1343
|
+
declare const useDeleteGazprombankm: () => {
|
|
1344
|
+
readonly response: vue.Ref<ApiResponse<null> | null>;
|
|
1345
|
+
readonly pending: vue.Ref<boolean>;
|
|
1346
|
+
post(params: PostParams<{
|
|
1347
|
+
id: number;
|
|
1348
|
+
}>): Promise<ApiResponse<null> | null>;
|
|
1349
|
+
};
|
|
1350
|
+
/** Обновление/создание заявки Газпром банка */
|
|
1351
|
+
declare const useUpdateGazprombankm: () => {
|
|
1352
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1353
|
+
readonly pending: vue.Ref<boolean>;
|
|
1354
|
+
post(params: PostParams<Partial<GazprombankmMeta>>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1355
|
+
};
|
|
1356
|
+
/** Отправка заявки Газпром банка */
|
|
1357
|
+
declare const useSendGazprombankm: () => {
|
|
1358
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1359
|
+
readonly pending: vue.Ref<boolean>;
|
|
1360
|
+
post(params: PostParams<{
|
|
1361
|
+
id: number;
|
|
1362
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1363
|
+
};
|
|
1364
|
+
/** Отправка сканов заявки Газпром банка */
|
|
1365
|
+
declare const useSendGazprombankmScans: () => {
|
|
1366
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1367
|
+
readonly pending: vue.Ref<boolean>;
|
|
1368
|
+
post(params: PostParams<{
|
|
1369
|
+
id: number;
|
|
1370
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1371
|
+
};
|
|
1372
|
+
/** Отмена заявки Газпром банка */
|
|
1373
|
+
declare const useCancelGazprombankm: () => {
|
|
1374
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1375
|
+
readonly pending: vue.Ref<boolean>;
|
|
1376
|
+
post(params: PostParams<{
|
|
1377
|
+
id: number;
|
|
1378
|
+
comment: string;
|
|
1379
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1380
|
+
};
|
|
1381
|
+
/** Копирование заявки Газпром банка */
|
|
1382
|
+
declare const useCloneGazprombankm: () => {
|
|
1383
|
+
readonly response: vue.Ref<ApiResponse<GazprombankmMeta> | null>;
|
|
1384
|
+
readonly pending: vue.Ref<boolean>;
|
|
1385
|
+
post(params: PostParams<{
|
|
1386
|
+
id: number;
|
|
1387
|
+
salespoint_id?: number;
|
|
1388
|
+
}>): Promise<ApiResponse<GazprombankmMeta> | null>;
|
|
1389
|
+
};
|
|
1390
|
+
|
|
1307
1391
|
type MortgageUpdate = Partial<MortgageFields> & {
|
|
1308
1392
|
id: string;
|
|
1309
1393
|
};
|
|
@@ -1642,8 +1726,71 @@ declare const useUpdateManyUser: () => {
|
|
|
1642
1726
|
}>): Promise<ApiResponse<User[]> | null>;
|
|
1643
1727
|
};
|
|
1644
1728
|
|
|
1729
|
+
/** Получение заявки Втб банка */
|
|
1730
|
+
declare const useGetVtbbankm: () => {
|
|
1731
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1732
|
+
readonly pending: vue.Ref<boolean>;
|
|
1733
|
+
post(params: PostParams<{
|
|
1734
|
+
id: number;
|
|
1735
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1736
|
+
};
|
|
1737
|
+
/** Получение списка заявок Втб банка */
|
|
1738
|
+
declare const useGetVtbbankmList: () => {
|
|
1739
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm[]> | null>;
|
|
1740
|
+
readonly pending: vue.Ref<boolean>;
|
|
1741
|
+
post(params?: PostParamsWithoutBody): Promise<ApiResponse<Vtbbankm[]> | null>;
|
|
1742
|
+
};
|
|
1743
|
+
/** Удаление заявки Втб банка */
|
|
1744
|
+
declare const useDeleteVtbbankm: () => {
|
|
1745
|
+
readonly response: vue.Ref<ApiResponse<null> | null>;
|
|
1746
|
+
readonly pending: vue.Ref<boolean>;
|
|
1747
|
+
post(params: PostParams<{
|
|
1748
|
+
id: number;
|
|
1749
|
+
}>): Promise<ApiResponse<null> | null>;
|
|
1750
|
+
};
|
|
1751
|
+
/** Обновление/создание заявки Втб банка */
|
|
1752
|
+
declare const useUpdateVtbbankm: () => {
|
|
1753
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1754
|
+
readonly pending: vue.Ref<boolean>;
|
|
1755
|
+
post(params: PostParams<Partial<Vtbbankm>>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1756
|
+
};
|
|
1757
|
+
/** Отправка заявки Втб банка */
|
|
1758
|
+
declare const useSendVtbbankm: () => {
|
|
1759
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1760
|
+
readonly pending: vue.Ref<boolean>;
|
|
1761
|
+
post(params: PostParams<{
|
|
1762
|
+
id: number;
|
|
1763
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1764
|
+
};
|
|
1765
|
+
/** Получение анкет для заёмщиков заявки Втб */
|
|
1766
|
+
declare const useGenerateVtbbankmScansApplications: () => {
|
|
1767
|
+
readonly response: vue.Ref<ApiResponse<Record<string, string>> | null>;
|
|
1768
|
+
readonly pending: vue.Ref<boolean>;
|
|
1769
|
+
post(params: PostParams<{
|
|
1770
|
+
mortgageapp_id: number;
|
|
1771
|
+
}>): Promise<ApiResponse<Record<string, string>> | null>;
|
|
1772
|
+
};
|
|
1773
|
+
/** Отмена заявки Втб банка */
|
|
1774
|
+
declare const useCancelVtbbankm: () => {
|
|
1775
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1776
|
+
readonly pending: vue.Ref<boolean>;
|
|
1777
|
+
post(params: PostParams<{
|
|
1778
|
+
id: number;
|
|
1779
|
+
comment: string;
|
|
1780
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1781
|
+
};
|
|
1782
|
+
/** Копирование заявки Втб банка */
|
|
1783
|
+
declare const useCloneVtbbankm: () => {
|
|
1784
|
+
readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
|
|
1785
|
+
readonly pending: vue.Ref<boolean>;
|
|
1786
|
+
post(params: PostParams<{
|
|
1787
|
+
id: number;
|
|
1788
|
+
salespoint_id?: number;
|
|
1789
|
+
}>): Promise<ApiResponse<Vtbbankm> | null>;
|
|
1790
|
+
};
|
|
1791
|
+
|
|
1645
1792
|
type Mode = 'development' | 'production';
|
|
1646
1793
|
declare function setMode(newMode: Mode): void;
|
|
1647
1794
|
declare function getMode(): Mode;
|
|
1648
1795
|
|
|
1649
|
-
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 Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageCalculateProgram, type MortgageCommonDictNames, type MortgageDictNames, type MortgageFields, type MortgageMeta, type MortgageProgram, type MortgageProgramsLimits, type MortgageStages, type MortgageUpdate, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type UploadedFile, type User, type VtbBankmFields, type VtbBankmMeta, type VtbBankmStages, type Vtbbankm, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCalculateMortgage, useCancelAbsolutbank, useCancelRosbankDom, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useConfirmAbsolutbank, useConfirmRosbankDom,
|
|
1796
|
+
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 Brokerclient, type Chatmessage, type ChatmessageRoleUserMsg, type ChatmessageThread, type Customer, type CustomerFields, type CustomerMeta, type CustomerUpdate, type Dict, type DictItem, type Gazprombankm, type GazprombankmDictNames, type GazprombankmFields, type GazprombankmMeta, type GazprombankmStages, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageCalculateProgram, type MortgageCommonDictNames, type MortgageDictNames, type MortgageFields, type MortgageMeta, type MortgageProgram, type MortgageProgramsLimits, type MortgageStages, type MortgageUpdate, type RosbankDom, type RosbankDomFields, type RosbankDomMeta, type RosbankDomOffer, type RosbankDomStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type UploadedFile, type User, type VtbBankmFields, type VtbBankmMeta, type VtbBankmStages, type Vtbbankm, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCalculateMortgage, useCancelAbsolutbank, useCancelGazprombankm, useCancelRosbankDom, useCancelVtbbankm, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneGazprombankm, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useCloneVtbbankm, useConfirmAbsolutbank, useConfirmRosbankDom, useDeleteAbsolutbank, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGazprombankm, useDeleteGroupUser, useDeleteMortgageCustomer, useDeleteRosbankDom, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useDeleteVtbbankm, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, useGenerateVtbbankmScansApplications, useGetAbsolutbank, useGetAbsolutbankDict, useGetAbsolutbankList, useGetAbsolutbankPrintforms, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDict, useGetAkbarsList, useGetAkbarsPrintformList, useGetAlfabankBalance, useGetAlfabankBalanceDict, useGetAlfabankBalanceList, useGetAlfabankBalanceOffer, useGetBrokerclient, useGetBrokerclientList, useGetChatmessageList, useGetChatmessageThreads, useGetCustomer, useGetCustomerList, useGetGazprombankm, useGetGazprombankmDict, useGetGazprombankmList, useGetMortgage, useGetMortgageCommonDictList, useGetMortgageDict, useGetMortgageLimits, useGetMortgageList, useGetMortgageProgram, useGetRosbankDom, useGetRosbankDomDict, useGetRosbankDomList, useGetRosbankDomPrintformsList, useGetSalespoint, useGetSalespointList, useGetUser, useGetUserList, useGetVtbbankm, useGetVtbbankmList, useLoanerApprovingAkbarsStatus, usePreapprovalAbsolutbankStatus, usePreapprovalAlfabankBalanceStatus, usePreapprovalRosbankDomStatus, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAbsolutbank, useSendAbsolutbankScans, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendGazprombankm, useSendGazprombankmScans, useSendMortgage, useSendRosbankDom, useSendRosbankDomScans, useSendVtbbankm, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateGazprombankm, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUpdateVtbbankm, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
|
package/dist/index.js
CHANGED
|
@@ -70,15 +70,19 @@ __export(simpleloan_api_exports, {
|
|
|
70
70
|
useAskAkbarsPrintforms: () => useAskAkbarsPrintforms,
|
|
71
71
|
useCalculateMortgage: () => useCalculateMortgage,
|
|
72
72
|
useCancelAbsolutbank: () => useCancelAbsolutbank,
|
|
73
|
+
useCancelGazprombankm: () => useCancelGazprombankm,
|
|
73
74
|
useCancelRosbankDom: () => useCancelRosbankDom,
|
|
75
|
+
useCancelVtbbankm: () => useCancelVtbbankm,
|
|
74
76
|
useCloneAbsolutbank: () => useCloneAbsolutbank,
|
|
75
77
|
useCloneAlfabankBalance: () => useCloneAlfabankBalance,
|
|
78
|
+
useCloneGazprombankm: () => useCloneGazprombankm,
|
|
76
79
|
useCloneRosbankDom: () => useCloneRosbankDom,
|
|
77
80
|
useCloneSalespoint: () => useCloneSalespoint,
|
|
78
81
|
useCloneUser: () => useCloneUser,
|
|
82
|
+
useCloneVtbbankm: () => useCloneVtbbankm,
|
|
79
83
|
useConfirmAbsolutbank: () => useConfirmAbsolutbank,
|
|
80
84
|
useConfirmRosbankDom: () => useConfirmRosbankDom,
|
|
81
|
-
|
|
85
|
+
useDeleteAbsolutbank: () => useDeleteAbsolutbank,
|
|
82
86
|
useDeleteAkbars: () => useDeleteAkbars,
|
|
83
87
|
useDeleteAkbarsDepositScan: () => useDeleteAkbarsDepositScan,
|
|
84
88
|
useDeleteAlfabankBalance: () => useDeleteAlfabankBalance,
|
|
@@ -86,6 +90,7 @@ __export(simpleloan_api_exports, {
|
|
|
86
90
|
useDeleteBrokerclient: () => useDeleteBrokerclient,
|
|
87
91
|
useDeleteChatmessage: () => useDeleteChatmessage,
|
|
88
92
|
useDeleteCustomerList: () => useDeleteCustomerList,
|
|
93
|
+
useDeleteGazprombankm: () => useDeleteGazprombankm,
|
|
89
94
|
useDeleteGroupUser: () => useDeleteGroupUser,
|
|
90
95
|
useDeleteMortgageCustomer: () => useDeleteMortgageCustomer,
|
|
91
96
|
useDeleteRosbankDom: () => useDeleteRosbankDom,
|
|
@@ -93,8 +98,10 @@ __export(simpleloan_api_exports, {
|
|
|
93
98
|
useDeleteStaffBrokerclient: () => useDeleteStaffBrokerclient,
|
|
94
99
|
useDeleteStaffSalespoint: () => useDeleteStaffSalespoint,
|
|
95
100
|
useDeleteUser: () => useDeleteUser,
|
|
101
|
+
useDeleteVtbbankm: () => useDeleteVtbbankm,
|
|
96
102
|
useGenerateAkbarsScansApplications: () => useGenerateAkbarsScansApplications,
|
|
97
103
|
useGenerateAlfabankBalanceScansApplications: () => useGenerateAlfabankBalanceScansApplications,
|
|
104
|
+
useGenerateVtbbankmScansApplications: () => useGenerateVtbbankmScansApplications,
|
|
98
105
|
useGetAbsolutbank: () => useGetAbsolutbank,
|
|
99
106
|
useGetAbsolutbankDict: () => useGetAbsolutbankDict,
|
|
100
107
|
useGetAbsolutbankList: () => useGetAbsolutbankList,
|
|
@@ -115,6 +122,9 @@ __export(simpleloan_api_exports, {
|
|
|
115
122
|
useGetChatmessageThreads: () => useGetChatmessageThreads,
|
|
116
123
|
useGetCustomer: () => useGetCustomer,
|
|
117
124
|
useGetCustomerList: () => useGetCustomerList,
|
|
125
|
+
useGetGazprombankm: () => useGetGazprombankm,
|
|
126
|
+
useGetGazprombankmDict: () => useGetGazprombankmDict,
|
|
127
|
+
useGetGazprombankmList: () => useGetGazprombankmList,
|
|
118
128
|
useGetMortgage: () => useGetMortgage,
|
|
119
129
|
useGetMortgageCommonDictList: () => useGetMortgageCommonDictList,
|
|
120
130
|
useGetMortgageDict: () => useGetMortgageDict,
|
|
@@ -129,6 +139,8 @@ __export(simpleloan_api_exports, {
|
|
|
129
139
|
useGetSalespointList: () => useGetSalespointList,
|
|
130
140
|
useGetUser: () => useGetUser,
|
|
131
141
|
useGetUserList: () => useGetUserList,
|
|
142
|
+
useGetVtbbankm: () => useGetVtbbankm,
|
|
143
|
+
useGetVtbbankmList: () => useGetVtbbankmList,
|
|
132
144
|
useLoanerApprovingAkbarsStatus: () => useLoanerApprovingAkbarsStatus,
|
|
133
145
|
usePreapprovalAbsolutbankStatus: () => usePreapprovalAbsolutbankStatus,
|
|
134
146
|
usePreapprovalAlfabankBalanceStatus: () => usePreapprovalAlfabankBalanceStatus,
|
|
@@ -143,9 +155,12 @@ __export(simpleloan_api_exports, {
|
|
|
143
155
|
useSendAkbarsScans: () => useSendAkbarsScans,
|
|
144
156
|
useSendAlfabankBalance: () => useSendAlfabankBalance,
|
|
145
157
|
useSendAlfabankBalanceScans: () => useSendAlfabankBalanceScans,
|
|
158
|
+
useSendGazprombankm: () => useSendGazprombankm,
|
|
159
|
+
useSendGazprombankmScans: () => useSendGazprombankmScans,
|
|
146
160
|
useSendMortgage: () => useSendMortgage,
|
|
147
161
|
useSendRosbankDom: () => useSendRosbankDom,
|
|
148
162
|
useSendRosbankDomScans: () => useSendRosbankDomScans,
|
|
163
|
+
useSendVtbbankm: () => useSendVtbbankm,
|
|
149
164
|
useStatusManuallyAlfabankBalanceScans: () => useStatusManuallyAlfabankBalanceScans,
|
|
150
165
|
useUpdateAbsolutbank: () => useUpdateAbsolutbank,
|
|
151
166
|
useUpdateAkbars: () => useUpdateAkbars,
|
|
@@ -154,6 +169,7 @@ __export(simpleloan_api_exports, {
|
|
|
154
169
|
useUpdateBrokerclient: () => useUpdateBrokerclient,
|
|
155
170
|
useUpdateChatmessage: () => useUpdateChatmessage,
|
|
156
171
|
useUpdateCustomer: () => useUpdateCustomer,
|
|
172
|
+
useUpdateGazprombankm: () => useUpdateGazprombankm,
|
|
157
173
|
useUpdateManySalespoint: () => useUpdateManySalespoint,
|
|
158
174
|
useUpdateManyUser: () => useUpdateManyUser,
|
|
159
175
|
useUpdateMortgage: () => useUpdateMortgage,
|
|
@@ -161,6 +177,7 @@ __export(simpleloan_api_exports, {
|
|
|
161
177
|
useUpdateRosbankDom: () => useUpdateRosbankDom,
|
|
162
178
|
useUpdateSalespoint: () => useUpdateSalespoint,
|
|
163
179
|
useUpdateUser: () => useUpdateUser,
|
|
180
|
+
useUpdateVtbbankm: () => useUpdateVtbbankm,
|
|
164
181
|
useUploadAkbarsDepositScan: () => useUploadAkbarsDepositScan,
|
|
165
182
|
useVerifyManuallyAlfabankBalanceScans: () => useVerifyManuallyAlfabankBalanceScans
|
|
166
183
|
});
|
|
@@ -242,7 +259,7 @@ var baseUrl = "absolutbank/";
|
|
|
242
259
|
var useGetAbsolutbankDict = (dictName) => useFetch(baseUrl + `dict/${dictName}/get_list`);
|
|
243
260
|
var useGetAbsolutbank = () => useFetch(baseUrl + "get/");
|
|
244
261
|
var useGetAbsolutbankList = () => useFetch(baseUrl + "get_list/");
|
|
245
|
-
var
|
|
262
|
+
var useDeleteAbsolutbank = () => useFetch(baseUrl + "delete/");
|
|
246
263
|
var useUpdateAbsolutbank = () => useFetch(baseUrl + "app/update/");
|
|
247
264
|
var useSendAbsolutbank = () => useFetch(baseUrl + "app/send/");
|
|
248
265
|
var usePreapprovalAbsolutbankStatus = () => useFetch(baseUrl + "preapproval/status/");
|
|
@@ -327,57 +344,80 @@ var useUpdateCustomer = () => useFetch(baseUrl7 + "update/");
|
|
|
327
344
|
var useGetCustomerList = () => useFetch(baseUrl7 + "get_list/");
|
|
328
345
|
var useDeleteCustomerList = () => useFetch(baseUrl7 + "delete/");
|
|
329
346
|
|
|
347
|
+
// src/repositories/gazprombankm/index.ts
|
|
348
|
+
var baseUrl8 = "gazprombankm/";
|
|
349
|
+
var useGetGazprombankmDict = (dictName) => useFetch(baseUrl8 + `dict/${dictName}/get_list`);
|
|
350
|
+
var useGetGazprombankm = () => useFetch(baseUrl8 + "get/");
|
|
351
|
+
var useGetGazprombankmList = () => useFetch(baseUrl8 + "get_list/");
|
|
352
|
+
var useDeleteGazprombankm = () => useFetch(baseUrl8 + "delete/");
|
|
353
|
+
var useUpdateGazprombankm = () => useFetch(baseUrl8 + "app/update/");
|
|
354
|
+
var useSendGazprombankm = () => useFetch(baseUrl8 + "app/send/");
|
|
355
|
+
var useSendGazprombankmScans = () => useFetch(baseUrl8 + "scans/send/");
|
|
356
|
+
var useCancelGazprombankm = () => useFetch(baseUrl8 + "cancel/");
|
|
357
|
+
var useCloneGazprombankm = () => useFetch(baseUrl8 + "app/clone/");
|
|
358
|
+
|
|
330
359
|
// src/repositories/mortgage/index.ts
|
|
331
|
-
var
|
|
332
|
-
var useGetMortgageDict = (dict) => useFetch(
|
|
333
|
-
var useGetMortgageCommonDictList = () => useFetch(
|
|
334
|
-
var useGetMortgage = () => useFetch(
|
|
335
|
-
var useUpdateMortgage = () => useFetch(
|
|
336
|
-
var useSendMortgage = () => useFetch(
|
|
337
|
-
var useUpdateMortgageCustomer = () => useFetch(
|
|
338
|
-
var useDeleteMortgageCustomer = () => useFetch(
|
|
339
|
-
var useGetMortgageList = () => useFetch(
|
|
340
|
-
var useGetMortgageProgram = () => useFetch(
|
|
341
|
-
var useCalculateMortgage = () => useFetch(
|
|
342
|
-
var useGetMortgageLimits = () => useFetch(
|
|
360
|
+
var baseUrl9 = "mortgage/";
|
|
361
|
+
var useGetMortgageDict = (dict) => useFetch(baseUrl9 + `dict/${dict}/get_list/`);
|
|
362
|
+
var useGetMortgageCommonDictList = () => useFetch(baseUrl9 + "commondict/get_list/");
|
|
363
|
+
var useGetMortgage = () => useFetch(baseUrl9 + "get/");
|
|
364
|
+
var useUpdateMortgage = () => useFetch(baseUrl9 + "update/");
|
|
365
|
+
var useSendMortgage = () => useFetch(baseUrl9 + "send/");
|
|
366
|
+
var useUpdateMortgageCustomer = () => useFetch(baseUrl9 + "app/customer/update/");
|
|
367
|
+
var useDeleteMortgageCustomer = () => useFetch(baseUrl9 + "app/customer/delete/");
|
|
368
|
+
var useGetMortgageList = () => useFetch(baseUrl9 + "get_list/");
|
|
369
|
+
var useGetMortgageProgram = () => useFetch(baseUrl9 + "mortgagedictprogramcode/get/");
|
|
370
|
+
var useCalculateMortgage = () => useFetch(baseUrl9 + "calculate/");
|
|
371
|
+
var useGetMortgageLimits = () => useFetch(baseUrl9 + "limits/");
|
|
343
372
|
|
|
344
373
|
// src/repositories/rosbankdom/index.ts
|
|
345
|
-
var
|
|
346
|
-
var useGetRosbankDomDict = (dict) => useFetch(
|
|
347
|
-
var useGetRosbankDom = () => useFetch(
|
|
348
|
-
var useGetRosbankDomList = () => useFetch(
|
|
349
|
-
var useDeleteRosbankDom = () => useFetch(
|
|
350
|
-
var useUpdateRosbankDom = () => useFetch(
|
|
351
|
-
var useSendRosbankDom = () => useFetch(
|
|
352
|
-
var useRosbankDomOpportunity = () => useFetch(
|
|
353
|
-
var usePreapprovalRosbankDomStatus = () => useFetch(
|
|
354
|
-
var useSendRosbankDomScans = () => useFetch(
|
|
355
|
-
var useGetRosbankDomPrintformsList = () => useFetch(
|
|
356
|
-
var useConfirmRosbankDom = () => useFetch(
|
|
357
|
-
var useCancelRosbankDom = () => useFetch(
|
|
358
|
-
var useCloneRosbankDom = () => useFetch(
|
|
374
|
+
var baseUrl10 = "rosbankdom/";
|
|
375
|
+
var useGetRosbankDomDict = (dict) => useFetch(baseUrl10 + `dict/${dict}/get_list/`);
|
|
376
|
+
var useGetRosbankDom = () => useFetch(baseUrl10 + "get/");
|
|
377
|
+
var useGetRosbankDomList = () => useFetch(baseUrl10 + "get_list/");
|
|
378
|
+
var useDeleteRosbankDom = () => useFetch(baseUrl10 + "delete/");
|
|
379
|
+
var useUpdateRosbankDom = () => useFetch(baseUrl10 + "app/update/");
|
|
380
|
+
var useSendRosbankDom = () => useFetch(baseUrl10 + "app/send/");
|
|
381
|
+
var useRosbankDomOpportunity = () => useFetch(baseUrl10 + "opportunity/");
|
|
382
|
+
var usePreapprovalRosbankDomStatus = () => useFetch(baseUrl10 + "preapproval/status/");
|
|
383
|
+
var useSendRosbankDomScans = () => useFetch(baseUrl10 + "scans/send/");
|
|
384
|
+
var useGetRosbankDomPrintformsList = () => useFetch(baseUrl10 + "printforms/get_list/");
|
|
385
|
+
var useConfirmRosbankDom = () => useFetch(baseUrl10 + "confirm/");
|
|
386
|
+
var useCancelRosbankDom = () => useFetch(baseUrl10 + "cancel/");
|
|
387
|
+
var useCloneRosbankDom = () => useFetch(baseUrl10 + "app/clone/");
|
|
359
388
|
|
|
360
389
|
// src/repositories/salespoint/index.ts
|
|
361
|
-
var
|
|
362
|
-
var useGetSalespoint = () => useFetch(
|
|
363
|
-
var useUpdateSalespoint = () => useFetch(
|
|
364
|
-
var useCloneSalespoint = () => useFetch(
|
|
365
|
-
var useGetSalespointList = () => useFetch(
|
|
366
|
-
var useDeleteSalespoint = () => useFetch(
|
|
367
|
-
var useAddStaffSalespoint = () => useFetch(
|
|
368
|
-
var useDeleteStaffSalespoint = () => useFetch(
|
|
369
|
-
var useUpdateManySalespoint = () => useFetch(
|
|
390
|
+
var baseUrl11 = "salespoint/";
|
|
391
|
+
var useGetSalespoint = () => useFetch(baseUrl11 + "get/");
|
|
392
|
+
var useUpdateSalespoint = () => useFetch(baseUrl11 + "update/");
|
|
393
|
+
var useCloneSalespoint = () => useFetch(baseUrl11 + "clone/");
|
|
394
|
+
var useGetSalespointList = () => useFetch(baseUrl11 + "get_list/");
|
|
395
|
+
var useDeleteSalespoint = () => useFetch(baseUrl11 + "delete/");
|
|
396
|
+
var useAddStaffSalespoint = () => useFetch(baseUrl11 + "add_staff/");
|
|
397
|
+
var useDeleteStaffSalespoint = () => useFetch(baseUrl11 + "delete_staff/");
|
|
398
|
+
var useUpdateManySalespoint = () => useFetch(baseUrl11 + "update_many/");
|
|
370
399
|
|
|
371
400
|
// src/repositories/user/index.ts
|
|
372
|
-
var
|
|
373
|
-
var useGetUser = () => useFetch(
|
|
374
|
-
var useUpdateUser = () => useFetch(
|
|
375
|
-
var useGetUserList = () => useFetch(
|
|
376
|
-
var useDeleteUser = () => useFetch(
|
|
377
|
-
var useCloneUser = () => useFetch(
|
|
378
|
-
var useAddGroupUser = () => useFetch(
|
|
379
|
-
var useDeleteGroupUser = () => useFetch(
|
|
380
|
-
var useUpdateManyUser = () => useFetch(
|
|
401
|
+
var baseUrl12 = "user/";
|
|
402
|
+
var useGetUser = () => useFetch(baseUrl12 + "get/");
|
|
403
|
+
var useUpdateUser = () => useFetch(baseUrl12 + "update/");
|
|
404
|
+
var useGetUserList = () => useFetch(baseUrl12 + "get_list/");
|
|
405
|
+
var useDeleteUser = () => useFetch(baseUrl12 + "delete/");
|
|
406
|
+
var useCloneUser = () => useFetch(baseUrl12 + "clone/");
|
|
407
|
+
var useAddGroupUser = () => useFetch(baseUrl12 + "add_group/");
|
|
408
|
+
var useDeleteGroupUser = () => useFetch(baseUrl12 + "delete_group/");
|
|
409
|
+
var useUpdateManyUser = () => useFetch(baseUrl12 + "update_many/");
|
|
410
|
+
|
|
411
|
+
// src/repositories/vtbbankm/index.ts
|
|
412
|
+
var baseUrl13 = "vtbbankm/";
|
|
413
|
+
var useGetVtbbankm = () => useFetch(baseUrl13 + "get/");
|
|
414
|
+
var useGetVtbbankmList = () => useFetch(baseUrl13 + "get_list/");
|
|
415
|
+
var useDeleteVtbbankm = () => useFetch(baseUrl13 + "delete/");
|
|
416
|
+
var useUpdateVtbbankm = () => useFetch(baseUrl13 + "app/update/");
|
|
417
|
+
var useSendVtbbankm = () => useFetch(baseUrl13 + "app/send/");
|
|
418
|
+
var useGenerateVtbbankmScansApplications = () => useFetch(baseUrl13 + "scans/applications/generate/");
|
|
419
|
+
var useCancelVtbbankm = () => useFetch(baseUrl13 + "cancel/");
|
|
420
|
+
var useCloneVtbbankm = () => useFetch(baseUrl13 + "app/clone/");
|
|
381
421
|
// Annotate the CommonJS export names for ESM import in node:
|
|
382
422
|
0 && (module.exports = {
|
|
383
423
|
getMode,
|
|
@@ -396,15 +436,19 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
|
|
|
396
436
|
useAskAkbarsPrintforms,
|
|
397
437
|
useCalculateMortgage,
|
|
398
438
|
useCancelAbsolutbank,
|
|
439
|
+
useCancelGazprombankm,
|
|
399
440
|
useCancelRosbankDom,
|
|
441
|
+
useCancelVtbbankm,
|
|
400
442
|
useCloneAbsolutbank,
|
|
401
443
|
useCloneAlfabankBalance,
|
|
444
|
+
useCloneGazprombankm,
|
|
402
445
|
useCloneRosbankDom,
|
|
403
446
|
useCloneSalespoint,
|
|
404
447
|
useCloneUser,
|
|
448
|
+
useCloneVtbbankm,
|
|
405
449
|
useConfirmAbsolutbank,
|
|
406
450
|
useConfirmRosbankDom,
|
|
407
|
-
|
|
451
|
+
useDeleteAbsolutbank,
|
|
408
452
|
useDeleteAkbars,
|
|
409
453
|
useDeleteAkbarsDepositScan,
|
|
410
454
|
useDeleteAlfabankBalance,
|
|
@@ -412,6 +456,7 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
|
|
|
412
456
|
useDeleteBrokerclient,
|
|
413
457
|
useDeleteChatmessage,
|
|
414
458
|
useDeleteCustomerList,
|
|
459
|
+
useDeleteGazprombankm,
|
|
415
460
|
useDeleteGroupUser,
|
|
416
461
|
useDeleteMortgageCustomer,
|
|
417
462
|
useDeleteRosbankDom,
|
|
@@ -419,8 +464,10 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
|
|
|
419
464
|
useDeleteStaffBrokerclient,
|
|
420
465
|
useDeleteStaffSalespoint,
|
|
421
466
|
useDeleteUser,
|
|
467
|
+
useDeleteVtbbankm,
|
|
422
468
|
useGenerateAkbarsScansApplications,
|
|
423
469
|
useGenerateAlfabankBalanceScansApplications,
|
|
470
|
+
useGenerateVtbbankmScansApplications,
|
|
424
471
|
useGetAbsolutbank,
|
|
425
472
|
useGetAbsolutbankDict,
|
|
426
473
|
useGetAbsolutbankList,
|
|
@@ -441,6 +488,9 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
|
|
|
441
488
|
useGetChatmessageThreads,
|
|
442
489
|
useGetCustomer,
|
|
443
490
|
useGetCustomerList,
|
|
491
|
+
useGetGazprombankm,
|
|
492
|
+
useGetGazprombankmDict,
|
|
493
|
+
useGetGazprombankmList,
|
|
444
494
|
useGetMortgage,
|
|
445
495
|
useGetMortgageCommonDictList,
|
|
446
496
|
useGetMortgageDict,
|
|
@@ -455,6 +505,8 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
|
|
|
455
505
|
useGetSalespointList,
|
|
456
506
|
useGetUser,
|
|
457
507
|
useGetUserList,
|
|
508
|
+
useGetVtbbankm,
|
|
509
|
+
useGetVtbbankmList,
|
|
458
510
|
useLoanerApprovingAkbarsStatus,
|
|
459
511
|
usePreapprovalAbsolutbankStatus,
|
|
460
512
|
usePreapprovalAlfabankBalanceStatus,
|
|
@@ -469,9 +521,12 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
|
|
|
469
521
|
useSendAkbarsScans,
|
|
470
522
|
useSendAlfabankBalance,
|
|
471
523
|
useSendAlfabankBalanceScans,
|
|
524
|
+
useSendGazprombankm,
|
|
525
|
+
useSendGazprombankmScans,
|
|
472
526
|
useSendMortgage,
|
|
473
527
|
useSendRosbankDom,
|
|
474
528
|
useSendRosbankDomScans,
|
|
529
|
+
useSendVtbbankm,
|
|
475
530
|
useStatusManuallyAlfabankBalanceScans,
|
|
476
531
|
useUpdateAbsolutbank,
|
|
477
532
|
useUpdateAkbars,
|
|
@@ -480,6 +535,7 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
|
|
|
480
535
|
useUpdateBrokerclient,
|
|
481
536
|
useUpdateChatmessage,
|
|
482
537
|
useUpdateCustomer,
|
|
538
|
+
useUpdateGazprombankm,
|
|
483
539
|
useUpdateManySalespoint,
|
|
484
540
|
useUpdateManyUser,
|
|
485
541
|
useUpdateMortgage,
|
|
@@ -487,6 +543,7 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
|
|
|
487
543
|
useUpdateRosbankDom,
|
|
488
544
|
useUpdateSalespoint,
|
|
489
545
|
useUpdateUser,
|
|
546
|
+
useUpdateVtbbankm,
|
|
490
547
|
useUploadAkbarsDepositScan,
|
|
491
548
|
useVerifyManuallyAlfabankBalanceScans
|
|
492
549
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -111,7 +111,7 @@ var baseUrl = "absolutbank/";
|
|
|
111
111
|
var useGetAbsolutbankDict = (dictName) => useFetch(baseUrl + `dict/${dictName}/get_list`);
|
|
112
112
|
var useGetAbsolutbank = () => useFetch(baseUrl + "get/");
|
|
113
113
|
var useGetAbsolutbankList = () => useFetch(baseUrl + "get_list/");
|
|
114
|
-
var
|
|
114
|
+
var useDeleteAbsolutbank = () => useFetch(baseUrl + "delete/");
|
|
115
115
|
var useUpdateAbsolutbank = () => useFetch(baseUrl + "app/update/");
|
|
116
116
|
var useSendAbsolutbank = () => useFetch(baseUrl + "app/send/");
|
|
117
117
|
var usePreapprovalAbsolutbankStatus = () => useFetch(baseUrl + "preapproval/status/");
|
|
@@ -196,57 +196,80 @@ var useUpdateCustomer = () => useFetch(baseUrl7 + "update/");
|
|
|
196
196
|
var useGetCustomerList = () => useFetch(baseUrl7 + "get_list/");
|
|
197
197
|
var useDeleteCustomerList = () => useFetch(baseUrl7 + "delete/");
|
|
198
198
|
|
|
199
|
+
// src/repositories/gazprombankm/index.ts
|
|
200
|
+
var baseUrl8 = "gazprombankm/";
|
|
201
|
+
var useGetGazprombankmDict = (dictName) => useFetch(baseUrl8 + `dict/${dictName}/get_list`);
|
|
202
|
+
var useGetGazprombankm = () => useFetch(baseUrl8 + "get/");
|
|
203
|
+
var useGetGazprombankmList = () => useFetch(baseUrl8 + "get_list/");
|
|
204
|
+
var useDeleteGazprombankm = () => useFetch(baseUrl8 + "delete/");
|
|
205
|
+
var useUpdateGazprombankm = () => useFetch(baseUrl8 + "app/update/");
|
|
206
|
+
var useSendGazprombankm = () => useFetch(baseUrl8 + "app/send/");
|
|
207
|
+
var useSendGazprombankmScans = () => useFetch(baseUrl8 + "scans/send/");
|
|
208
|
+
var useCancelGazprombankm = () => useFetch(baseUrl8 + "cancel/");
|
|
209
|
+
var useCloneGazprombankm = () => useFetch(baseUrl8 + "app/clone/");
|
|
210
|
+
|
|
199
211
|
// src/repositories/mortgage/index.ts
|
|
200
|
-
var
|
|
201
|
-
var useGetMortgageDict = (dict) => useFetch(
|
|
202
|
-
var useGetMortgageCommonDictList = () => useFetch(
|
|
203
|
-
var useGetMortgage = () => useFetch(
|
|
204
|
-
var useUpdateMortgage = () => useFetch(
|
|
205
|
-
var useSendMortgage = () => useFetch(
|
|
206
|
-
var useUpdateMortgageCustomer = () => useFetch(
|
|
207
|
-
var useDeleteMortgageCustomer = () => useFetch(
|
|
208
|
-
var useGetMortgageList = () => useFetch(
|
|
209
|
-
var useGetMortgageProgram = () => useFetch(
|
|
210
|
-
var useCalculateMortgage = () => useFetch(
|
|
211
|
-
var useGetMortgageLimits = () => useFetch(
|
|
212
|
+
var baseUrl9 = "mortgage/";
|
|
213
|
+
var useGetMortgageDict = (dict) => useFetch(baseUrl9 + `dict/${dict}/get_list/`);
|
|
214
|
+
var useGetMortgageCommonDictList = () => useFetch(baseUrl9 + "commondict/get_list/");
|
|
215
|
+
var useGetMortgage = () => useFetch(baseUrl9 + "get/");
|
|
216
|
+
var useUpdateMortgage = () => useFetch(baseUrl9 + "update/");
|
|
217
|
+
var useSendMortgage = () => useFetch(baseUrl9 + "send/");
|
|
218
|
+
var useUpdateMortgageCustomer = () => useFetch(baseUrl9 + "app/customer/update/");
|
|
219
|
+
var useDeleteMortgageCustomer = () => useFetch(baseUrl9 + "app/customer/delete/");
|
|
220
|
+
var useGetMortgageList = () => useFetch(baseUrl9 + "get_list/");
|
|
221
|
+
var useGetMortgageProgram = () => useFetch(baseUrl9 + "mortgagedictprogramcode/get/");
|
|
222
|
+
var useCalculateMortgage = () => useFetch(baseUrl9 + "calculate/");
|
|
223
|
+
var useGetMortgageLimits = () => useFetch(baseUrl9 + "limits/");
|
|
212
224
|
|
|
213
225
|
// src/repositories/rosbankdom/index.ts
|
|
214
|
-
var
|
|
215
|
-
var useGetRosbankDomDict = (dict) => useFetch(
|
|
216
|
-
var useGetRosbankDom = () => useFetch(
|
|
217
|
-
var useGetRosbankDomList = () => useFetch(
|
|
218
|
-
var useDeleteRosbankDom = () => useFetch(
|
|
219
|
-
var useUpdateRosbankDom = () => useFetch(
|
|
220
|
-
var useSendRosbankDom = () => useFetch(
|
|
221
|
-
var useRosbankDomOpportunity = () => useFetch(
|
|
222
|
-
var usePreapprovalRosbankDomStatus = () => useFetch(
|
|
223
|
-
var useSendRosbankDomScans = () => useFetch(
|
|
224
|
-
var useGetRosbankDomPrintformsList = () => useFetch(
|
|
225
|
-
var useConfirmRosbankDom = () => useFetch(
|
|
226
|
-
var useCancelRosbankDom = () => useFetch(
|
|
227
|
-
var useCloneRosbankDom = () => useFetch(
|
|
226
|
+
var baseUrl10 = "rosbankdom/";
|
|
227
|
+
var useGetRosbankDomDict = (dict) => useFetch(baseUrl10 + `dict/${dict}/get_list/`);
|
|
228
|
+
var useGetRosbankDom = () => useFetch(baseUrl10 + "get/");
|
|
229
|
+
var useGetRosbankDomList = () => useFetch(baseUrl10 + "get_list/");
|
|
230
|
+
var useDeleteRosbankDom = () => useFetch(baseUrl10 + "delete/");
|
|
231
|
+
var useUpdateRosbankDom = () => useFetch(baseUrl10 + "app/update/");
|
|
232
|
+
var useSendRosbankDom = () => useFetch(baseUrl10 + "app/send/");
|
|
233
|
+
var useRosbankDomOpportunity = () => useFetch(baseUrl10 + "opportunity/");
|
|
234
|
+
var usePreapprovalRosbankDomStatus = () => useFetch(baseUrl10 + "preapproval/status/");
|
|
235
|
+
var useSendRosbankDomScans = () => useFetch(baseUrl10 + "scans/send/");
|
|
236
|
+
var useGetRosbankDomPrintformsList = () => useFetch(baseUrl10 + "printforms/get_list/");
|
|
237
|
+
var useConfirmRosbankDom = () => useFetch(baseUrl10 + "confirm/");
|
|
238
|
+
var useCancelRosbankDom = () => useFetch(baseUrl10 + "cancel/");
|
|
239
|
+
var useCloneRosbankDom = () => useFetch(baseUrl10 + "app/clone/");
|
|
228
240
|
|
|
229
241
|
// src/repositories/salespoint/index.ts
|
|
230
|
-
var
|
|
231
|
-
var useGetSalespoint = () => useFetch(
|
|
232
|
-
var useUpdateSalespoint = () => useFetch(
|
|
233
|
-
var useCloneSalespoint = () => useFetch(
|
|
234
|
-
var useGetSalespointList = () => useFetch(
|
|
235
|
-
var useDeleteSalespoint = () => useFetch(
|
|
236
|
-
var useAddStaffSalespoint = () => useFetch(
|
|
237
|
-
var useDeleteStaffSalespoint = () => useFetch(
|
|
238
|
-
var useUpdateManySalespoint = () => useFetch(
|
|
242
|
+
var baseUrl11 = "salespoint/";
|
|
243
|
+
var useGetSalespoint = () => useFetch(baseUrl11 + "get/");
|
|
244
|
+
var useUpdateSalespoint = () => useFetch(baseUrl11 + "update/");
|
|
245
|
+
var useCloneSalespoint = () => useFetch(baseUrl11 + "clone/");
|
|
246
|
+
var useGetSalespointList = () => useFetch(baseUrl11 + "get_list/");
|
|
247
|
+
var useDeleteSalespoint = () => useFetch(baseUrl11 + "delete/");
|
|
248
|
+
var useAddStaffSalespoint = () => useFetch(baseUrl11 + "add_staff/");
|
|
249
|
+
var useDeleteStaffSalespoint = () => useFetch(baseUrl11 + "delete_staff/");
|
|
250
|
+
var useUpdateManySalespoint = () => useFetch(baseUrl11 + "update_many/");
|
|
239
251
|
|
|
240
252
|
// src/repositories/user/index.ts
|
|
241
|
-
var
|
|
242
|
-
var useGetUser = () => useFetch(
|
|
243
|
-
var useUpdateUser = () => useFetch(
|
|
244
|
-
var useGetUserList = () => useFetch(
|
|
245
|
-
var useDeleteUser = () => useFetch(
|
|
246
|
-
var useCloneUser = () => useFetch(
|
|
247
|
-
var useAddGroupUser = () => useFetch(
|
|
248
|
-
var useDeleteGroupUser = () => useFetch(
|
|
249
|
-
var useUpdateManyUser = () => useFetch(
|
|
253
|
+
var baseUrl12 = "user/";
|
|
254
|
+
var useGetUser = () => useFetch(baseUrl12 + "get/");
|
|
255
|
+
var useUpdateUser = () => useFetch(baseUrl12 + "update/");
|
|
256
|
+
var useGetUserList = () => useFetch(baseUrl12 + "get_list/");
|
|
257
|
+
var useDeleteUser = () => useFetch(baseUrl12 + "delete/");
|
|
258
|
+
var useCloneUser = () => useFetch(baseUrl12 + "clone/");
|
|
259
|
+
var useAddGroupUser = () => useFetch(baseUrl12 + "add_group/");
|
|
260
|
+
var useDeleteGroupUser = () => useFetch(baseUrl12 + "delete_group/");
|
|
261
|
+
var useUpdateManyUser = () => useFetch(baseUrl12 + "update_many/");
|
|
262
|
+
|
|
263
|
+
// src/repositories/vtbbankm/index.ts
|
|
264
|
+
var baseUrl13 = "vtbbankm/";
|
|
265
|
+
var useGetVtbbankm = () => useFetch(baseUrl13 + "get/");
|
|
266
|
+
var useGetVtbbankmList = () => useFetch(baseUrl13 + "get_list/");
|
|
267
|
+
var useDeleteVtbbankm = () => useFetch(baseUrl13 + "delete/");
|
|
268
|
+
var useUpdateVtbbankm = () => useFetch(baseUrl13 + "app/update/");
|
|
269
|
+
var useSendVtbbankm = () => useFetch(baseUrl13 + "app/send/");
|
|
270
|
+
var useGenerateVtbbankmScansApplications = () => useFetch(baseUrl13 + "scans/applications/generate/");
|
|
271
|
+
var useCancelVtbbankm = () => useFetch(baseUrl13 + "cancel/");
|
|
272
|
+
var useCloneVtbbankm = () => useFetch(baseUrl13 + "app/clone/");
|
|
250
273
|
export {
|
|
251
274
|
getMode,
|
|
252
275
|
setMode,
|
|
@@ -264,15 +287,19 @@ export {
|
|
|
264
287
|
useAskAkbarsPrintforms,
|
|
265
288
|
useCalculateMortgage,
|
|
266
289
|
useCancelAbsolutbank,
|
|
290
|
+
useCancelGazprombankm,
|
|
267
291
|
useCancelRosbankDom,
|
|
292
|
+
useCancelVtbbankm,
|
|
268
293
|
useCloneAbsolutbank,
|
|
269
294
|
useCloneAlfabankBalance,
|
|
295
|
+
useCloneGazprombankm,
|
|
270
296
|
useCloneRosbankDom,
|
|
271
297
|
useCloneSalespoint,
|
|
272
298
|
useCloneUser,
|
|
299
|
+
useCloneVtbbankm,
|
|
273
300
|
useConfirmAbsolutbank,
|
|
274
301
|
useConfirmRosbankDom,
|
|
275
|
-
|
|
302
|
+
useDeleteAbsolutbank,
|
|
276
303
|
useDeleteAkbars,
|
|
277
304
|
useDeleteAkbarsDepositScan,
|
|
278
305
|
useDeleteAlfabankBalance,
|
|
@@ -280,6 +307,7 @@ export {
|
|
|
280
307
|
useDeleteBrokerclient,
|
|
281
308
|
useDeleteChatmessage,
|
|
282
309
|
useDeleteCustomerList,
|
|
310
|
+
useDeleteGazprombankm,
|
|
283
311
|
useDeleteGroupUser,
|
|
284
312
|
useDeleteMortgageCustomer,
|
|
285
313
|
useDeleteRosbankDom,
|
|
@@ -287,8 +315,10 @@ export {
|
|
|
287
315
|
useDeleteStaffBrokerclient,
|
|
288
316
|
useDeleteStaffSalespoint,
|
|
289
317
|
useDeleteUser,
|
|
318
|
+
useDeleteVtbbankm,
|
|
290
319
|
useGenerateAkbarsScansApplications,
|
|
291
320
|
useGenerateAlfabankBalanceScansApplications,
|
|
321
|
+
useGenerateVtbbankmScansApplications,
|
|
292
322
|
useGetAbsolutbank,
|
|
293
323
|
useGetAbsolutbankDict,
|
|
294
324
|
useGetAbsolutbankList,
|
|
@@ -309,6 +339,9 @@ export {
|
|
|
309
339
|
useGetChatmessageThreads,
|
|
310
340
|
useGetCustomer,
|
|
311
341
|
useGetCustomerList,
|
|
342
|
+
useGetGazprombankm,
|
|
343
|
+
useGetGazprombankmDict,
|
|
344
|
+
useGetGazprombankmList,
|
|
312
345
|
useGetMortgage,
|
|
313
346
|
useGetMortgageCommonDictList,
|
|
314
347
|
useGetMortgageDict,
|
|
@@ -323,6 +356,8 @@ export {
|
|
|
323
356
|
useGetSalespointList,
|
|
324
357
|
useGetUser,
|
|
325
358
|
useGetUserList,
|
|
359
|
+
useGetVtbbankm,
|
|
360
|
+
useGetVtbbankmList,
|
|
326
361
|
useLoanerApprovingAkbarsStatus,
|
|
327
362
|
usePreapprovalAbsolutbankStatus,
|
|
328
363
|
usePreapprovalAlfabankBalanceStatus,
|
|
@@ -337,9 +372,12 @@ export {
|
|
|
337
372
|
useSendAkbarsScans,
|
|
338
373
|
useSendAlfabankBalance,
|
|
339
374
|
useSendAlfabankBalanceScans,
|
|
375
|
+
useSendGazprombankm,
|
|
376
|
+
useSendGazprombankmScans,
|
|
340
377
|
useSendMortgage,
|
|
341
378
|
useSendRosbankDom,
|
|
342
379
|
useSendRosbankDomScans,
|
|
380
|
+
useSendVtbbankm,
|
|
343
381
|
useStatusManuallyAlfabankBalanceScans,
|
|
344
382
|
useUpdateAbsolutbank,
|
|
345
383
|
useUpdateAkbars,
|
|
@@ -348,6 +386,7 @@ export {
|
|
|
348
386
|
useUpdateBrokerclient,
|
|
349
387
|
useUpdateChatmessage,
|
|
350
388
|
useUpdateCustomer,
|
|
389
|
+
useUpdateGazprombankm,
|
|
351
390
|
useUpdateManySalespoint,
|
|
352
391
|
useUpdateManyUser,
|
|
353
392
|
useUpdateMortgage,
|
|
@@ -355,6 +394,7 @@ export {
|
|
|
355
394
|
useUpdateRosbankDom,
|
|
356
395
|
useUpdateSalespoint,
|
|
357
396
|
useUpdateUser,
|
|
397
|
+
useUpdateVtbbankm,
|
|
358
398
|
useUploadAkbarsDepositScan,
|
|
359
399
|
useVerifyManuallyAlfabankBalanceScans
|
|
360
400
|
};
|