simpleloan_api 1.1.30 → 1.1.31
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 +38 -3
- package/dist/index.d.ts +38 -3
- package/dist/index.js +9 -0
- package/dist/index.mjs +6 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -572,6 +572,14 @@ type MortgageCalculateProgram = {
|
|
|
572
572
|
down_payment: number;
|
|
573
573
|
alt: boolean;
|
|
574
574
|
};
|
|
575
|
+
type MortgageProgramsLimits = {
|
|
576
|
+
loan_sum_min: number;
|
|
577
|
+
loan_sum_max: number;
|
|
578
|
+
loan_term_min: number;
|
|
579
|
+
loan_term_max: number;
|
|
580
|
+
loan_initial_min_percent: string;
|
|
581
|
+
loan_initial_max_percent: string | null;
|
|
582
|
+
};
|
|
575
583
|
|
|
576
584
|
type RosbankDomStages = 'app' | 'app_wait' | 'app_abort' | 'opportunity_wait' | 'opportunity_abort' | 'scans_wait' | 'scans_abort' | 'approval_wait' | 'cancel' | 'end' | 'unknown';
|
|
577
585
|
type RosbankDomOffer = {
|
|
@@ -1233,6 +1241,33 @@ declare const useUpdateMortgage: () => {
|
|
|
1233
1241
|
readonly pending: vue.Ref<boolean>;
|
|
1234
1242
|
post(params: PostParams<MortgageUpdate>): Promise<ApiResponse<Mortgage> | null>;
|
|
1235
1243
|
};
|
|
1244
|
+
/** Отправка ипотечной заявки */
|
|
1245
|
+
declare const useSendMortgage: () => {
|
|
1246
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1247
|
+
readonly pending: vue.Ref<boolean>;
|
|
1248
|
+
post(params: PostParams<{
|
|
1249
|
+
id: number;
|
|
1250
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1251
|
+
};
|
|
1252
|
+
/** Обновление кастомера в ипотечной заявки */
|
|
1253
|
+
declare const useUpdateMortgageCustomer: () => {
|
|
1254
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1255
|
+
readonly pending: vue.Ref<boolean>;
|
|
1256
|
+
post(params: PostParams<{
|
|
1257
|
+
id: number;
|
|
1258
|
+
customer_id: string;
|
|
1259
|
+
check_passport_id?: number;
|
|
1260
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1261
|
+
};
|
|
1262
|
+
/** Удаление кастомера из ипотечной заявки */
|
|
1263
|
+
declare const useDeleteMortgageCustomer: () => {
|
|
1264
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1265
|
+
readonly pending: vue.Ref<boolean>;
|
|
1266
|
+
post(params: PostParams<{
|
|
1267
|
+
id: number;
|
|
1268
|
+
customer_id: string;
|
|
1269
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1270
|
+
};
|
|
1236
1271
|
/** Получение списка ипотечных заявок */
|
|
1237
1272
|
declare const useGetMortgageList: () => {
|
|
1238
1273
|
readonly response: vue.Ref<ApiResponse<Mortgage[]> | null>;
|
|
@@ -1256,11 +1291,11 @@ declare const useCalculateMortgage: () => {
|
|
|
1256
1291
|
};
|
|
1257
1292
|
/** Получить лимиты банковских продуктов */
|
|
1258
1293
|
declare const useGetMortgageLimits: () => {
|
|
1259
|
-
readonly response: vue.Ref<ApiResponse<
|
|
1294
|
+
readonly response: vue.Ref<ApiResponse<MortgageProgramsLimits> | null>;
|
|
1260
1295
|
readonly pending: vue.Ref<boolean>;
|
|
1261
1296
|
post(params: PostParams<{
|
|
1262
1297
|
salespoint_id: number;
|
|
1263
|
-
}>): Promise<ApiResponse<
|
|
1298
|
+
}>): Promise<ApiResponse<MortgageProgramsLimits> | null>;
|
|
1264
1299
|
};
|
|
1265
1300
|
|
|
1266
1301
|
type RosbankDomUpdate = Partial<RosbankDom> & {
|
|
@@ -1503,4 +1538,4 @@ type Mode = 'development' | 'production';
|
|
|
1503
1538
|
declare function setMode(newMode: Mode): void;
|
|
1504
1539
|
declare function getMode(): Mode;
|
|
1505
1540
|
|
|
1506
|
-
export { 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 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, useCancelRosbankDom, useCloneAlfabankBalance, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useConfirmRosbankDom, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGroupUser, useDeleteRosbankDom, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, 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, usePreapprovalAlfabankBalanceStatus, usePreapprovalRosbankDomStatus, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendRosbankDom, useSendRosbankDomScans, useStatusManuallyAlfabankBalanceScans, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
|
|
1541
|
+
export { 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, useCancelRosbankDom, useCloneAlfabankBalance, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useConfirmRosbankDom, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGroupUser, useDeleteMortgageCustomer, useDeleteRosbankDom, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, 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, usePreapprovalAlfabankBalanceStatus, usePreapprovalRosbankDomStatus, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendMortgage, useSendRosbankDom, useSendRosbankDomScans, useStatusManuallyAlfabankBalanceScans, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
|
package/dist/index.d.ts
CHANGED
|
@@ -572,6 +572,14 @@ type MortgageCalculateProgram = {
|
|
|
572
572
|
down_payment: number;
|
|
573
573
|
alt: boolean;
|
|
574
574
|
};
|
|
575
|
+
type MortgageProgramsLimits = {
|
|
576
|
+
loan_sum_min: number;
|
|
577
|
+
loan_sum_max: number;
|
|
578
|
+
loan_term_min: number;
|
|
579
|
+
loan_term_max: number;
|
|
580
|
+
loan_initial_min_percent: string;
|
|
581
|
+
loan_initial_max_percent: string | null;
|
|
582
|
+
};
|
|
575
583
|
|
|
576
584
|
type RosbankDomStages = 'app' | 'app_wait' | 'app_abort' | 'opportunity_wait' | 'opportunity_abort' | 'scans_wait' | 'scans_abort' | 'approval_wait' | 'cancel' | 'end' | 'unknown';
|
|
577
585
|
type RosbankDomOffer = {
|
|
@@ -1233,6 +1241,33 @@ declare const useUpdateMortgage: () => {
|
|
|
1233
1241
|
readonly pending: vue.Ref<boolean>;
|
|
1234
1242
|
post(params: PostParams<MortgageUpdate>): Promise<ApiResponse<Mortgage> | null>;
|
|
1235
1243
|
};
|
|
1244
|
+
/** Отправка ипотечной заявки */
|
|
1245
|
+
declare const useSendMortgage: () => {
|
|
1246
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1247
|
+
readonly pending: vue.Ref<boolean>;
|
|
1248
|
+
post(params: PostParams<{
|
|
1249
|
+
id: number;
|
|
1250
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1251
|
+
};
|
|
1252
|
+
/** Обновление кастомера в ипотечной заявки */
|
|
1253
|
+
declare const useUpdateMortgageCustomer: () => {
|
|
1254
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1255
|
+
readonly pending: vue.Ref<boolean>;
|
|
1256
|
+
post(params: PostParams<{
|
|
1257
|
+
id: number;
|
|
1258
|
+
customer_id: string;
|
|
1259
|
+
check_passport_id?: number;
|
|
1260
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1261
|
+
};
|
|
1262
|
+
/** Удаление кастомера из ипотечной заявки */
|
|
1263
|
+
declare const useDeleteMortgageCustomer: () => {
|
|
1264
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1265
|
+
readonly pending: vue.Ref<boolean>;
|
|
1266
|
+
post(params: PostParams<{
|
|
1267
|
+
id: number;
|
|
1268
|
+
customer_id: string;
|
|
1269
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1270
|
+
};
|
|
1236
1271
|
/** Получение списка ипотечных заявок */
|
|
1237
1272
|
declare const useGetMortgageList: () => {
|
|
1238
1273
|
readonly response: vue.Ref<ApiResponse<Mortgage[]> | null>;
|
|
@@ -1256,11 +1291,11 @@ declare const useCalculateMortgage: () => {
|
|
|
1256
1291
|
};
|
|
1257
1292
|
/** Получить лимиты банковских продуктов */
|
|
1258
1293
|
declare const useGetMortgageLimits: () => {
|
|
1259
|
-
readonly response: vue.Ref<ApiResponse<
|
|
1294
|
+
readonly response: vue.Ref<ApiResponse<MortgageProgramsLimits> | null>;
|
|
1260
1295
|
readonly pending: vue.Ref<boolean>;
|
|
1261
1296
|
post(params: PostParams<{
|
|
1262
1297
|
salespoint_id: number;
|
|
1263
|
-
}>): Promise<ApiResponse<
|
|
1298
|
+
}>): Promise<ApiResponse<MortgageProgramsLimits> | null>;
|
|
1264
1299
|
};
|
|
1265
1300
|
|
|
1266
1301
|
type RosbankDomUpdate = Partial<RosbankDom> & {
|
|
@@ -1503,4 +1538,4 @@ type Mode = 'development' | 'production';
|
|
|
1503
1538
|
declare function setMode(newMode: Mode): void;
|
|
1504
1539
|
declare function getMode(): Mode;
|
|
1505
1540
|
|
|
1506
|
-
export { 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 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, useCancelRosbankDom, useCloneAlfabankBalance, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useConfirmRosbankDom, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGroupUser, useDeleteRosbankDom, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, 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, usePreapprovalAlfabankBalanceStatus, usePreapprovalRosbankDomStatus, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendRosbankDom, useSendRosbankDomScans, useStatusManuallyAlfabankBalanceScans, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
|
|
1541
|
+
export { 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, useCancelRosbankDom, useCloneAlfabankBalance, useCloneRosbankDom, useCloneSalespoint, useCloneUser, useConfirmRosbankDom, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteAlfabankBalance, useDeleteAlfabankBalanceScans, useDeleteBrokerclient, useDeleteChatmessage, useDeleteCustomerList, useDeleteGroupUser, useDeleteMortgageCustomer, useDeleteRosbankDom, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGenerateAlfabankBalanceScansApplications, 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, usePreapprovalAlfabankBalanceStatus, usePreapprovalRosbankDomStatus, useProcessingAkbars, useReadChatmessage, useRosbankDomOpportunity, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useSendAlfabankBalance, useSendAlfabankBalanceScans, useSendMortgage, useSendRosbankDom, useSendRosbankDomScans, useStatusManuallyAlfabankBalanceScans, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateAlfabankBalance, useUpdateBrokerclient, useUpdateChatmessage, useUpdateCustomer, useUpdateManySalespoint, useUpdateManyUser, useUpdateMortgage, useUpdateMortgageCustomer, useUpdateRosbankDom, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan, useVerifyManuallyAlfabankBalanceScans };
|
package/dist/index.js
CHANGED
|
@@ -83,6 +83,7 @@ __export(simpleloan_api_exports, {
|
|
|
83
83
|
useDeleteChatmessage: () => useDeleteChatmessage,
|
|
84
84
|
useDeleteCustomerList: () => useDeleteCustomerList,
|
|
85
85
|
useDeleteGroupUser: () => useDeleteGroupUser,
|
|
86
|
+
useDeleteMortgageCustomer: () => useDeleteMortgageCustomer,
|
|
86
87
|
useDeleteRosbankDom: () => useDeleteRosbankDom,
|
|
87
88
|
useDeleteSalespoint: () => useDeleteSalespoint,
|
|
88
89
|
useDeleteStaffBrokerclient: () => useDeleteStaffBrokerclient,
|
|
@@ -131,6 +132,7 @@ __export(simpleloan_api_exports, {
|
|
|
131
132
|
useSendAkbarsScans: () => useSendAkbarsScans,
|
|
132
133
|
useSendAlfabankBalance: () => useSendAlfabankBalance,
|
|
133
134
|
useSendAlfabankBalanceScans: () => useSendAlfabankBalanceScans,
|
|
135
|
+
useSendMortgage: () => useSendMortgage,
|
|
134
136
|
useSendRosbankDom: () => useSendRosbankDom,
|
|
135
137
|
useSendRosbankDomScans: () => useSendRosbankDomScans,
|
|
136
138
|
useStatusManuallyAlfabankBalanceScans: () => useStatusManuallyAlfabankBalanceScans,
|
|
@@ -143,6 +145,7 @@ __export(simpleloan_api_exports, {
|
|
|
143
145
|
useUpdateManySalespoint: () => useUpdateManySalespoint,
|
|
144
146
|
useUpdateManyUser: () => useUpdateManyUser,
|
|
145
147
|
useUpdateMortgage: () => useUpdateMortgage,
|
|
148
|
+
useUpdateMortgageCustomer: () => useUpdateMortgageCustomer,
|
|
146
149
|
useUpdateRosbankDom: () => useUpdateRosbankDom,
|
|
147
150
|
useUpdateSalespoint: () => useUpdateSalespoint,
|
|
148
151
|
useUpdateUser: () => useUpdateUser,
|
|
@@ -303,6 +306,9 @@ var useGetMortgageDict = (dict) => useFetch(baseUrl7 + `dict/${dict}/get_list/`)
|
|
|
303
306
|
var useGetMortgageCommonDictList = () => useFetch(baseUrl7 + "commondict/get_list/");
|
|
304
307
|
var useGetMortgage = () => useFetch(baseUrl7 + "get/");
|
|
305
308
|
var useUpdateMortgage = () => useFetch(baseUrl7 + "update/");
|
|
309
|
+
var useSendMortgage = () => useFetch(baseUrl7 + "send/");
|
|
310
|
+
var useUpdateMortgageCustomer = () => useFetch(baseUrl7 + "app/customer/update/");
|
|
311
|
+
var useDeleteMortgageCustomer = () => useFetch(baseUrl7 + "app/customer/delete/");
|
|
306
312
|
var useGetMortgageList = () => useFetch(baseUrl7 + "get_list/");
|
|
307
313
|
var useGetMortgageProgram = () => useFetch(baseUrl7 + "mortgagedictprogramcode/get/");
|
|
308
314
|
var useCalculateMortgage = () => useFetch(baseUrl7 + "calculate/");
|
|
@@ -376,6 +382,7 @@ var useUpdateManyUser = () => useFetch(baseUrl10 + "update_many/");
|
|
|
376
382
|
useDeleteChatmessage,
|
|
377
383
|
useDeleteCustomerList,
|
|
378
384
|
useDeleteGroupUser,
|
|
385
|
+
useDeleteMortgageCustomer,
|
|
379
386
|
useDeleteRosbankDom,
|
|
380
387
|
useDeleteSalespoint,
|
|
381
388
|
useDeleteStaffBrokerclient,
|
|
@@ -424,6 +431,7 @@ var useUpdateManyUser = () => useFetch(baseUrl10 + "update_many/");
|
|
|
424
431
|
useSendAkbarsScans,
|
|
425
432
|
useSendAlfabankBalance,
|
|
426
433
|
useSendAlfabankBalanceScans,
|
|
434
|
+
useSendMortgage,
|
|
427
435
|
useSendRosbankDom,
|
|
428
436
|
useSendRosbankDomScans,
|
|
429
437
|
useStatusManuallyAlfabankBalanceScans,
|
|
@@ -436,6 +444,7 @@ var useUpdateManyUser = () => useFetch(baseUrl10 + "update_many/");
|
|
|
436
444
|
useUpdateManySalespoint,
|
|
437
445
|
useUpdateManyUser,
|
|
438
446
|
useUpdateMortgage,
|
|
447
|
+
useUpdateMortgageCustomer,
|
|
439
448
|
useUpdateRosbankDom,
|
|
440
449
|
useUpdateSalespoint,
|
|
441
450
|
useUpdateUser,
|
package/dist/index.mjs
CHANGED
|
@@ -187,6 +187,9 @@ var useGetMortgageDict = (dict) => useFetch(baseUrl7 + `dict/${dict}/get_list/`)
|
|
|
187
187
|
var useGetMortgageCommonDictList = () => useFetch(baseUrl7 + "commondict/get_list/");
|
|
188
188
|
var useGetMortgage = () => useFetch(baseUrl7 + "get/");
|
|
189
189
|
var useUpdateMortgage = () => useFetch(baseUrl7 + "update/");
|
|
190
|
+
var useSendMortgage = () => useFetch(baseUrl7 + "send/");
|
|
191
|
+
var useUpdateMortgageCustomer = () => useFetch(baseUrl7 + "app/customer/update/");
|
|
192
|
+
var useDeleteMortgageCustomer = () => useFetch(baseUrl7 + "app/customer/delete/");
|
|
190
193
|
var useGetMortgageList = () => useFetch(baseUrl7 + "get_list/");
|
|
191
194
|
var useGetMortgageProgram = () => useFetch(baseUrl7 + "mortgagedictprogramcode/get/");
|
|
192
195
|
var useCalculateMortgage = () => useFetch(baseUrl7 + "calculate/");
|
|
@@ -259,6 +262,7 @@ export {
|
|
|
259
262
|
useDeleteChatmessage,
|
|
260
263
|
useDeleteCustomerList,
|
|
261
264
|
useDeleteGroupUser,
|
|
265
|
+
useDeleteMortgageCustomer,
|
|
262
266
|
useDeleteRosbankDom,
|
|
263
267
|
useDeleteSalespoint,
|
|
264
268
|
useDeleteStaffBrokerclient,
|
|
@@ -307,6 +311,7 @@ export {
|
|
|
307
311
|
useSendAkbarsScans,
|
|
308
312
|
useSendAlfabankBalance,
|
|
309
313
|
useSendAlfabankBalanceScans,
|
|
314
|
+
useSendMortgage,
|
|
310
315
|
useSendRosbankDom,
|
|
311
316
|
useSendRosbankDomScans,
|
|
312
317
|
useStatusManuallyAlfabankBalanceScans,
|
|
@@ -319,6 +324,7 @@ export {
|
|
|
319
324
|
useUpdateManySalespoint,
|
|
320
325
|
useUpdateManyUser,
|
|
321
326
|
useUpdateMortgage,
|
|
327
|
+
useUpdateMortgageCustomer,
|
|
322
328
|
useUpdateRosbankDom,
|
|
323
329
|
useUpdateSalespoint,
|
|
324
330
|
useUpdateUser,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simpleloan_api",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.31",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"ci": "npm run build &
|
|
11
|
+
"ci": "npm run build & npm publish",
|
|
12
12
|
"build": "tsup index.ts --format cjs,esm --dts",
|
|
13
13
|
"lint": "tsc",
|
|
14
14
|
"test": "echo \"Error: no test specified\" && exit 1"
|