simpleloan_api 1.1.33 → 1.1.34

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 CHANGED
@@ -475,7 +475,7 @@ type CustomerFields = {
475
475
  type Customer = CustomerFields & CustomerMeta;
476
476
 
477
477
  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';
478
+ type MortgageBankNames = 'alfabankbalance' | 'rosbankdom' | 'akbars' | 'vtbbankm' | 'absolutbank';
479
479
  type MortgageBankAppStatus = {
480
480
  id: number;
481
481
  bank: MortgageBankNames;
@@ -787,7 +787,7 @@ declare const useGetAbsolutbankList: () => {
787
787
  post(params?: PostParamsWithoutBody): Promise<ApiResponse<AbsolutbankMeta[]> | null>;
788
788
  };
789
789
  /** Удаление заявки Абсолют банка */
790
- declare const useDeleteAbsolutbankStatus: () => {
790
+ declare const useDeleteAbsolutbank: () => {
791
791
  readonly response: vue.Ref<ApiResponse<null> | null>;
792
792
  readonly pending: vue.Ref<boolean>;
793
793
  post(params: PostParams<{
@@ -1642,8 +1642,71 @@ declare const useUpdateManyUser: () => {
1642
1642
  }>): Promise<ApiResponse<User[]> | null>;
1643
1643
  };
1644
1644
 
1645
+ /** Получение заявки Втб банка */
1646
+ declare const useGetVtbbankm: () => {
1647
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1648
+ readonly pending: vue.Ref<boolean>;
1649
+ post(params: PostParams<{
1650
+ id: number;
1651
+ }>): Promise<ApiResponse<Vtbbankm> | null>;
1652
+ };
1653
+ /** Получение списка заявок Втб банка */
1654
+ declare const useGetVtbbankmList: () => {
1655
+ readonly response: vue.Ref<ApiResponse<Vtbbankm[]> | null>;
1656
+ readonly pending: vue.Ref<boolean>;
1657
+ post(params?: PostParamsWithoutBody): Promise<ApiResponse<Vtbbankm[]> | null>;
1658
+ };
1659
+ /** Удаление заявки Втб банка */
1660
+ declare const useDeleteVtbbankm: () => {
1661
+ readonly response: vue.Ref<ApiResponse<null> | null>;
1662
+ readonly pending: vue.Ref<boolean>;
1663
+ post(params: PostParams<{
1664
+ id: number;
1665
+ }>): Promise<ApiResponse<null> | null>;
1666
+ };
1667
+ /** Обновление/создание заявки Втб банка */
1668
+ declare const useUpdateVtbbankm: () => {
1669
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1670
+ readonly pending: vue.Ref<boolean>;
1671
+ post(params: PostParams<Partial<Vtbbankm>>): Promise<ApiResponse<Vtbbankm> | null>;
1672
+ };
1673
+ /** Отправка заявки Втб банка */
1674
+ declare const useSendVtbbankm: () => {
1675
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1676
+ readonly pending: vue.Ref<boolean>;
1677
+ post(params: PostParams<{
1678
+ id: number;
1679
+ }>): Promise<ApiResponse<Vtbbankm> | null>;
1680
+ };
1681
+ /** Получение анкет для заёмщиков заявки Втб */
1682
+ declare const useGenerateVtbbankmScansApplications: () => {
1683
+ readonly response: vue.Ref<ApiResponse<Record<string, string>> | null>;
1684
+ readonly pending: vue.Ref<boolean>;
1685
+ post(params: PostParams<{
1686
+ mortgageapp_id: number;
1687
+ }>): Promise<ApiResponse<Record<string, string>> | null>;
1688
+ };
1689
+ /** Отмена заявки Втб банка */
1690
+ declare const useCancelVtbbankm: () => {
1691
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1692
+ readonly pending: vue.Ref<boolean>;
1693
+ post(params: PostParams<{
1694
+ id: number;
1695
+ comment: string;
1696
+ }>): Promise<ApiResponse<Vtbbankm> | null>;
1697
+ };
1698
+ /** Копирование заявки Втб банка */
1699
+ declare const useCloneVtbbankm: () => {
1700
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1701
+ readonly pending: vue.Ref<boolean>;
1702
+ post(params: PostParams<{
1703
+ id: number;
1704
+ salespoint_id?: number;
1705
+ }>): Promise<ApiResponse<Vtbbankm> | null>;
1706
+ };
1707
+
1645
1708
  type Mode = 'development' | 'production';
1646
1709
  declare function setMode(newMode: Mode): void;
1647
1710
  declare function getMode(): Mode;
1648
1711
 
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, useDeleteAbsolutbankStatus, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGroupUser, useDeleteMortgageCustomer, useDeleteRosbankDom, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, useGetAbsolutbank, useGetAbsolutbankDict, useGetAbsolutbankList, useGetAbsolutbankPrintforms, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDict, useGetAkbarsList, useGetAkbarsPrintformList, useGetAlfabankBalance, useGetAlfabankBalanceDict, useGetAlfabankBalanceList, useGetAlfabankBalanceOffer, useGetBrokerclient, useGetBrokerclientList, useGetChatmessageList, useGetChatmessageThreads, useGetCustomer, useGetCustomerList, useGetMortgage, useGetMortgageCommonDictList, useGetMortgageDict, useGetMortgageLimits, useGetMortgageList, useGetMortgageProgram, useGetRosbankDom, useGetRosbankDomDict, useGetRosbankDomList, useGetRosbankDomPrintformsList, useGetSalespoint, useGetSalespointList, useGetUser, useGetUserList, useLoanerApprovingAkbarsStatus, usePreapprovalAbsolutbankStatus, usePreapprovalAlfabankBalanceStatus, usePreapprovalRosbankDomStatus, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAbsolutbank, useSendAbsolutbankScans, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendMortgage, useSendRosbankDom, useSendRosbankDomScans, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
1712
+ 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, useCancelVtbbankm, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useCloneVtbbankm, useConfirmAbsolutbank, useConfirmRosbankDom, useDeleteAbsolutbank, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, 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, 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, useSendMortgage, useSendRosbankDom, useSendRosbankDomScans, useSendVtbbankm, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUpdateVtbbankm, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
package/dist/index.d.ts CHANGED
@@ -475,7 +475,7 @@ type CustomerFields = {
475
475
  type Customer = CustomerFields & CustomerMeta;
476
476
 
477
477
  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';
478
+ type MortgageBankNames = 'alfabankbalance' | 'rosbankdom' | 'akbars' | 'vtbbankm' | 'absolutbank';
479
479
  type MortgageBankAppStatus = {
480
480
  id: number;
481
481
  bank: MortgageBankNames;
@@ -787,7 +787,7 @@ declare const useGetAbsolutbankList: () => {
787
787
  post(params?: PostParamsWithoutBody): Promise<ApiResponse<AbsolutbankMeta[]> | null>;
788
788
  };
789
789
  /** Удаление заявки Абсолют банка */
790
- declare const useDeleteAbsolutbankStatus: () => {
790
+ declare const useDeleteAbsolutbank: () => {
791
791
  readonly response: vue.Ref<ApiResponse<null> | null>;
792
792
  readonly pending: vue.Ref<boolean>;
793
793
  post(params: PostParams<{
@@ -1642,8 +1642,71 @@ declare const useUpdateManyUser: () => {
1642
1642
  }>): Promise<ApiResponse<User[]> | null>;
1643
1643
  };
1644
1644
 
1645
+ /** Получение заявки Втб банка */
1646
+ declare const useGetVtbbankm: () => {
1647
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1648
+ readonly pending: vue.Ref<boolean>;
1649
+ post(params: PostParams<{
1650
+ id: number;
1651
+ }>): Promise<ApiResponse<Vtbbankm> | null>;
1652
+ };
1653
+ /** Получение списка заявок Втб банка */
1654
+ declare const useGetVtbbankmList: () => {
1655
+ readonly response: vue.Ref<ApiResponse<Vtbbankm[]> | null>;
1656
+ readonly pending: vue.Ref<boolean>;
1657
+ post(params?: PostParamsWithoutBody): Promise<ApiResponse<Vtbbankm[]> | null>;
1658
+ };
1659
+ /** Удаление заявки Втб банка */
1660
+ declare const useDeleteVtbbankm: () => {
1661
+ readonly response: vue.Ref<ApiResponse<null> | null>;
1662
+ readonly pending: vue.Ref<boolean>;
1663
+ post(params: PostParams<{
1664
+ id: number;
1665
+ }>): Promise<ApiResponse<null> | null>;
1666
+ };
1667
+ /** Обновление/создание заявки Втб банка */
1668
+ declare const useUpdateVtbbankm: () => {
1669
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1670
+ readonly pending: vue.Ref<boolean>;
1671
+ post(params: PostParams<Partial<Vtbbankm>>): Promise<ApiResponse<Vtbbankm> | null>;
1672
+ };
1673
+ /** Отправка заявки Втб банка */
1674
+ declare const useSendVtbbankm: () => {
1675
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1676
+ readonly pending: vue.Ref<boolean>;
1677
+ post(params: PostParams<{
1678
+ id: number;
1679
+ }>): Promise<ApiResponse<Vtbbankm> | null>;
1680
+ };
1681
+ /** Получение анкет для заёмщиков заявки Втб */
1682
+ declare const useGenerateVtbbankmScansApplications: () => {
1683
+ readonly response: vue.Ref<ApiResponse<Record<string, string>> | null>;
1684
+ readonly pending: vue.Ref<boolean>;
1685
+ post(params: PostParams<{
1686
+ mortgageapp_id: number;
1687
+ }>): Promise<ApiResponse<Record<string, string>> | null>;
1688
+ };
1689
+ /** Отмена заявки Втб банка */
1690
+ declare const useCancelVtbbankm: () => {
1691
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1692
+ readonly pending: vue.Ref<boolean>;
1693
+ post(params: PostParams<{
1694
+ id: number;
1695
+ comment: string;
1696
+ }>): Promise<ApiResponse<Vtbbankm> | null>;
1697
+ };
1698
+ /** Копирование заявки Втб банка */
1699
+ declare const useCloneVtbbankm: () => {
1700
+ readonly response: vue.Ref<ApiResponse<Vtbbankm> | null>;
1701
+ readonly pending: vue.Ref<boolean>;
1702
+ post(params: PostParams<{
1703
+ id: number;
1704
+ salespoint_id?: number;
1705
+ }>): Promise<ApiResponse<Vtbbankm> | null>;
1706
+ };
1707
+
1645
1708
  type Mode = 'development' | 'production';
1646
1709
  declare function setMode(newMode: Mode): void;
1647
1710
  declare function getMode(): Mode;
1648
1711
 
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, useDeleteAbsolutbankStatus, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGroupUser, useDeleteMortgageCustomer, useDeleteRosbankDom, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, useGetAbsolutbank, useGetAbsolutbankDict, useGetAbsolutbankList, useGetAbsolutbankPrintforms, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDict, useGetAkbarsList, useGetAkbarsPrintformList, useGetAlfabankBalance, useGetAlfabankBalanceDict, useGetAlfabankBalanceList, useGetAlfabankBalanceOffer, useGetBrokerclient, useGetBrokerclientList, useGetChatmessageList, useGetChatmessageThreads, useGetCustomer, useGetCustomerList, useGetMortgage, useGetMortgageCommonDictList, useGetMortgageDict, useGetMortgageLimits, useGetMortgageList, useGetMortgageProgram, useGetRosbankDom, useGetRosbankDomDict, useGetRosbankDomList, useGetRosbankDomPrintformsList, useGetSalespoint, useGetSalespointList, useGetUser, useGetUserList, useLoanerApprovingAkbarsStatus, usePreapprovalAbsolutbankStatus, usePreapprovalAlfabankBalanceStatus, usePreapprovalRosbankDomStatus, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAbsolutbank, useSendAbsolutbankScans, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendMortgage, useSendRosbankDom, useSendRosbankDomScans, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
1712
+ 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, useCancelVtbbankm, useCloneAbsolutbank, useCloneAlfabankBalance, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useCloneVtbbankm, useConfirmAbsolutbank, useConfirmRosbankDom, useDeleteAbsolutbank, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, 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, 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, useSendMortgage, useSendRosbankDom, useSendRosbankDomScans, useSendVtbbankm, useStatusManuallyAlfabankBalanceScans, useUpdateAbsolutbank, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUpdateVtbbankm, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
package/dist/index.js CHANGED
@@ -71,14 +71,16 @@ __export(simpleloan_api_exports, {
71
71
  useCalculateMortgage: () => useCalculateMortgage,
72
72
  useCancelAbsolutbank: () => useCancelAbsolutbank,
73
73
  useCancelRosbankDom: () => useCancelRosbankDom,
74
+ useCancelVtbbankm: () => useCancelVtbbankm,
74
75
  useCloneAbsolutbank: () => useCloneAbsolutbank,
75
76
  useCloneAlfabankBalance: () => useCloneAlfabankBalance,
76
77
  useCloneRosbankDom: () => useCloneRosbankDom,
77
78
  useCloneSalespoint: () => useCloneSalespoint,
78
79
  useCloneUser: () => useCloneUser,
80
+ useCloneVtbbankm: () => useCloneVtbbankm,
79
81
  useConfirmAbsolutbank: () => useConfirmAbsolutbank,
80
82
  useConfirmRosbankDom: () => useConfirmRosbankDom,
81
- useDeleteAbsolutbankStatus: () => useDeleteAbsolutbankStatus,
83
+ useDeleteAbsolutbank: () => useDeleteAbsolutbank,
82
84
  useDeleteAkbars: () => useDeleteAkbars,
83
85
  useDeleteAkbarsDepositScan: () => useDeleteAkbarsDepositScan,
84
86
  useDeleteAlfabankBalance: () => useDeleteAlfabankBalance,
@@ -93,8 +95,10 @@ __export(simpleloan_api_exports, {
93
95
  useDeleteStaffBrokerclient: () => useDeleteStaffBrokerclient,
94
96
  useDeleteStaffSalespoint: () => useDeleteStaffSalespoint,
95
97
  useDeleteUser: () => useDeleteUser,
98
+ useDeleteVtbbankm: () => useDeleteVtbbankm,
96
99
  useGenerateAkbarsScansApplications: () => useGenerateAkbarsScansApplications,
97
100
  useGenerateAlfabankBalanceScansApplications: () => useGenerateAlfabankBalanceScansApplications,
101
+ useGenerateVtbbankmScansApplications: () => useGenerateVtbbankmScansApplications,
98
102
  useGetAbsolutbank: () => useGetAbsolutbank,
99
103
  useGetAbsolutbankDict: () => useGetAbsolutbankDict,
100
104
  useGetAbsolutbankList: () => useGetAbsolutbankList,
@@ -129,6 +133,8 @@ __export(simpleloan_api_exports, {
129
133
  useGetSalespointList: () => useGetSalespointList,
130
134
  useGetUser: () => useGetUser,
131
135
  useGetUserList: () => useGetUserList,
136
+ useGetVtbbankm: () => useGetVtbbankm,
137
+ useGetVtbbankmList: () => useGetVtbbankmList,
132
138
  useLoanerApprovingAkbarsStatus: () => useLoanerApprovingAkbarsStatus,
133
139
  usePreapprovalAbsolutbankStatus: () => usePreapprovalAbsolutbankStatus,
134
140
  usePreapprovalAlfabankBalanceStatus: () => usePreapprovalAlfabankBalanceStatus,
@@ -146,6 +152,7 @@ __export(simpleloan_api_exports, {
146
152
  useSendMortgage: () => useSendMortgage,
147
153
  useSendRosbankDom: () => useSendRosbankDom,
148
154
  useSendRosbankDomScans: () => useSendRosbankDomScans,
155
+ useSendVtbbankm: () => useSendVtbbankm,
149
156
  useStatusManuallyAlfabankBalanceScans: () => useStatusManuallyAlfabankBalanceScans,
150
157
  useUpdateAbsolutbank: () => useUpdateAbsolutbank,
151
158
  useUpdateAkbars: () => useUpdateAkbars,
@@ -161,6 +168,7 @@ __export(simpleloan_api_exports, {
161
168
  useUpdateRosbankDom: () => useUpdateRosbankDom,
162
169
  useUpdateSalespoint: () => useUpdateSalespoint,
163
170
  useUpdateUser: () => useUpdateUser,
171
+ useUpdateVtbbankm: () => useUpdateVtbbankm,
164
172
  useUploadAkbarsDepositScan: () => useUploadAkbarsDepositScan,
165
173
  useVerifyManuallyAlfabankBalanceScans: () => useVerifyManuallyAlfabankBalanceScans
166
174
  });
@@ -242,7 +250,7 @@ var baseUrl = "absolutbank/";
242
250
  var useGetAbsolutbankDict = (dictName) => useFetch(baseUrl + `dict/${dictName}/get_list`);
243
251
  var useGetAbsolutbank = () => useFetch(baseUrl + "get/");
244
252
  var useGetAbsolutbankList = () => useFetch(baseUrl + "get_list/");
245
- var useDeleteAbsolutbankStatus = () => useFetch(baseUrl + "delete/");
253
+ var useDeleteAbsolutbank = () => useFetch(baseUrl + "delete/");
246
254
  var useUpdateAbsolutbank = () => useFetch(baseUrl + "app/update/");
247
255
  var useSendAbsolutbank = () => useFetch(baseUrl + "app/send/");
248
256
  var usePreapprovalAbsolutbankStatus = () => useFetch(baseUrl + "preapproval/status/");
@@ -378,6 +386,17 @@ var useCloneUser = () => useFetch(baseUrl11 + "clone/");
378
386
  var useAddGroupUser = () => useFetch(baseUrl11 + "add_group/");
379
387
  var useDeleteGroupUser = () => useFetch(baseUrl11 + "delete_group/");
380
388
  var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
389
+
390
+ // src/repositories/vtbbankm/index.ts
391
+ var baseUrl12 = "vtbbankm/";
392
+ var useGetVtbbankm = () => useFetch(baseUrl12 + "get/");
393
+ var useGetVtbbankmList = () => useFetch(baseUrl12 + "get_list/");
394
+ var useDeleteVtbbankm = () => useFetch(baseUrl12 + "delete/");
395
+ var useUpdateVtbbankm = () => useFetch(baseUrl12 + "app/update/");
396
+ var useSendVtbbankm = () => useFetch(baseUrl12 + "app/send/");
397
+ var useGenerateVtbbankmScansApplications = () => useFetch(baseUrl12 + "scans/applications/generate/");
398
+ var useCancelVtbbankm = () => useFetch(baseUrl12 + "cancel/");
399
+ var useCloneVtbbankm = () => useFetch(baseUrl12 + "app/clone/");
381
400
  // Annotate the CommonJS export names for ESM import in node:
382
401
  0 && (module.exports = {
383
402
  getMode,
@@ -397,14 +416,16 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
397
416
  useCalculateMortgage,
398
417
  useCancelAbsolutbank,
399
418
  useCancelRosbankDom,
419
+ useCancelVtbbankm,
400
420
  useCloneAbsolutbank,
401
421
  useCloneAlfabankBalance,
402
422
  useCloneRosbankDom,
403
423
  useCloneSalespoint,
404
424
  useCloneUser,
425
+ useCloneVtbbankm,
405
426
  useConfirmAbsolutbank,
406
427
  useConfirmRosbankDom,
407
- useDeleteAbsolutbankStatus,
428
+ useDeleteAbsolutbank,
408
429
  useDeleteAkbars,
409
430
  useDeleteAkbarsDepositScan,
410
431
  useDeleteAlfabankBalance,
@@ -419,8 +440,10 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
419
440
  useDeleteStaffBrokerclient,
420
441
  useDeleteStaffSalespoint,
421
442
  useDeleteUser,
443
+ useDeleteVtbbankm,
422
444
  useGenerateAkbarsScansApplications,
423
445
  useGenerateAlfabankBalanceScansApplications,
446
+ useGenerateVtbbankmScansApplications,
424
447
  useGetAbsolutbank,
425
448
  useGetAbsolutbankDict,
426
449
  useGetAbsolutbankList,
@@ -455,6 +478,8 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
455
478
  useGetSalespointList,
456
479
  useGetUser,
457
480
  useGetUserList,
481
+ useGetVtbbankm,
482
+ useGetVtbbankmList,
458
483
  useLoanerApprovingAkbarsStatus,
459
484
  usePreapprovalAbsolutbankStatus,
460
485
  usePreapprovalAlfabankBalanceStatus,
@@ -472,6 +497,7 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
472
497
  useSendMortgage,
473
498
  useSendRosbankDom,
474
499
  useSendRosbankDomScans,
500
+ useSendVtbbankm,
475
501
  useStatusManuallyAlfabankBalanceScans,
476
502
  useUpdateAbsolutbank,
477
503
  useUpdateAkbars,
@@ -487,6 +513,7 @@ var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
487
513
  useUpdateRosbankDom,
488
514
  useUpdateSalespoint,
489
515
  useUpdateUser,
516
+ useUpdateVtbbankm,
490
517
  useUploadAkbarsDepositScan,
491
518
  useVerifyManuallyAlfabankBalanceScans
492
519
  });
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 useDeleteAbsolutbankStatus = () => useFetch(baseUrl + "delete/");
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/");
@@ -247,6 +247,17 @@ var useCloneUser = () => useFetch(baseUrl11 + "clone/");
247
247
  var useAddGroupUser = () => useFetch(baseUrl11 + "add_group/");
248
248
  var useDeleteGroupUser = () => useFetch(baseUrl11 + "delete_group/");
249
249
  var useUpdateManyUser = () => useFetch(baseUrl11 + "update_many/");
250
+
251
+ // src/repositories/vtbbankm/index.ts
252
+ var baseUrl12 = "vtbbankm/";
253
+ var useGetVtbbankm = () => useFetch(baseUrl12 + "get/");
254
+ var useGetVtbbankmList = () => useFetch(baseUrl12 + "get_list/");
255
+ var useDeleteVtbbankm = () => useFetch(baseUrl12 + "delete/");
256
+ var useUpdateVtbbankm = () => useFetch(baseUrl12 + "app/update/");
257
+ var useSendVtbbankm = () => useFetch(baseUrl12 + "app/send/");
258
+ var useGenerateVtbbankmScansApplications = () => useFetch(baseUrl12 + "scans/applications/generate/");
259
+ var useCancelVtbbankm = () => useFetch(baseUrl12 + "cancel/");
260
+ var useCloneVtbbankm = () => useFetch(baseUrl12 + "app/clone/");
250
261
  export {
251
262
  getMode,
252
263
  setMode,
@@ -265,14 +276,16 @@ export {
265
276
  useCalculateMortgage,
266
277
  useCancelAbsolutbank,
267
278
  useCancelRosbankDom,
279
+ useCancelVtbbankm,
268
280
  useCloneAbsolutbank,
269
281
  useCloneAlfabankBalance,
270
282
  useCloneRosbankDom,
271
283
  useCloneSalespoint,
272
284
  useCloneUser,
285
+ useCloneVtbbankm,
273
286
  useConfirmAbsolutbank,
274
287
  useConfirmRosbankDom,
275
- useDeleteAbsolutbankStatus,
288
+ useDeleteAbsolutbank,
276
289
  useDeleteAkbars,
277
290
  useDeleteAkbarsDepositScan,
278
291
  useDeleteAlfabankBalance,
@@ -287,8 +300,10 @@ export {
287
300
  useDeleteStaffBrokerclient,
288
301
  useDeleteStaffSalespoint,
289
302
  useDeleteUser,
303
+ useDeleteVtbbankm,
290
304
  useGenerateAkbarsScansApplications,
291
305
  useGenerateAlfabankBalanceScansApplications,
306
+ useGenerateVtbbankmScansApplications,
292
307
  useGetAbsolutbank,
293
308
  useGetAbsolutbankDict,
294
309
  useGetAbsolutbankList,
@@ -323,6 +338,8 @@ export {
323
338
  useGetSalespointList,
324
339
  useGetUser,
325
340
  useGetUserList,
341
+ useGetVtbbankm,
342
+ useGetVtbbankmList,
326
343
  useLoanerApprovingAkbarsStatus,
327
344
  usePreapprovalAbsolutbankStatus,
328
345
  usePreapprovalAlfabankBalanceStatus,
@@ -340,6 +357,7 @@ export {
340
357
  useSendMortgage,
341
358
  useSendRosbankDom,
342
359
  useSendRosbankDomScans,
360
+ useSendVtbbankm,
343
361
  useStatusManuallyAlfabankBalanceScans,
344
362
  useUpdateAbsolutbank,
345
363
  useUpdateAkbars,
@@ -355,6 +373,7 @@ export {
355
373
  useUpdateRosbankDom,
356
374
  useUpdateSalespoint,
357
375
  useUpdateUser,
376
+ useUpdateVtbbankm,
358
377
  useUploadAkbarsDepositScan,
359
378
  useVerifyManuallyAlfabankBalanceScans
360
379
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.1.33",
3
+ "version": "1.1.34",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",