simpleloan_api 1.1.30 → 1.1.32
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 +51 -3
- package/dist/index.d.ts +51 -3
- package/dist/index.js +9 -0
- package/dist/index.mjs +6 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -24,6 +24,19 @@ type PostParamsWithoutBody = {
|
|
|
24
24
|
search?: SearchParams;
|
|
25
25
|
};
|
|
26
26
|
|
|
27
|
+
type AbsolutBankMeta = {
|
|
28
|
+
id: number;
|
|
29
|
+
mortgageapp_id: number;
|
|
30
|
+
created_at: string;
|
|
31
|
+
salespoint_id: number;
|
|
32
|
+
user_id: number;
|
|
33
|
+
stages: {
|
|
34
|
+
current: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
type AbsolutBankFields = {};
|
|
38
|
+
type AbsolutBank = AbsolutBankMeta & AbsolutBankFields;
|
|
39
|
+
|
|
27
40
|
type User = {
|
|
28
41
|
id: number;
|
|
29
42
|
first_name: string;
|
|
@@ -572,6 +585,14 @@ type MortgageCalculateProgram = {
|
|
|
572
585
|
down_payment: number;
|
|
573
586
|
alt: boolean;
|
|
574
587
|
};
|
|
588
|
+
type MortgageProgramsLimits = {
|
|
589
|
+
loan_sum_min: number;
|
|
590
|
+
loan_sum_max: number;
|
|
591
|
+
loan_term_min: number;
|
|
592
|
+
loan_term_max: number;
|
|
593
|
+
loan_initial_min_percent: string;
|
|
594
|
+
loan_initial_max_percent: string | null;
|
|
595
|
+
};
|
|
575
596
|
|
|
576
597
|
type RosbankDomStages = 'app' | 'app_wait' | 'app_abort' | 'opportunity_wait' | 'opportunity_abort' | 'scans_wait' | 'scans_abort' | 'approval_wait' | 'cancel' | 'end' | 'unknown';
|
|
577
598
|
type RosbankDomOffer = {
|
|
@@ -1233,6 +1254,33 @@ declare const useUpdateMortgage: () => {
|
|
|
1233
1254
|
readonly pending: vue.Ref<boolean>;
|
|
1234
1255
|
post(params: PostParams<MortgageUpdate>): Promise<ApiResponse<Mortgage> | null>;
|
|
1235
1256
|
};
|
|
1257
|
+
/** Отправка ипотечной заявки */
|
|
1258
|
+
declare const useSendMortgage: () => {
|
|
1259
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1260
|
+
readonly pending: vue.Ref<boolean>;
|
|
1261
|
+
post(params: PostParams<{
|
|
1262
|
+
id: number;
|
|
1263
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1264
|
+
};
|
|
1265
|
+
/** Обновление кастомера в ипотечной заявки */
|
|
1266
|
+
declare const useUpdateMortgageCustomer: () => {
|
|
1267
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1268
|
+
readonly pending: vue.Ref<boolean>;
|
|
1269
|
+
post(params: PostParams<{
|
|
1270
|
+
id: number;
|
|
1271
|
+
customer_id: string;
|
|
1272
|
+
check_passport_id?: number;
|
|
1273
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1274
|
+
};
|
|
1275
|
+
/** Удаление кастомера из ипотечной заявки */
|
|
1276
|
+
declare const useDeleteMortgageCustomer: () => {
|
|
1277
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1278
|
+
readonly pending: vue.Ref<boolean>;
|
|
1279
|
+
post(params: PostParams<{
|
|
1280
|
+
id: number;
|
|
1281
|
+
customer_id: string;
|
|
1282
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1283
|
+
};
|
|
1236
1284
|
/** Получение списка ипотечных заявок */
|
|
1237
1285
|
declare const useGetMortgageList: () => {
|
|
1238
1286
|
readonly response: vue.Ref<ApiResponse<Mortgage[]> | null>;
|
|
@@ -1256,11 +1304,11 @@ declare const useCalculateMortgage: () => {
|
|
|
1256
1304
|
};
|
|
1257
1305
|
/** Получить лимиты банковских продуктов */
|
|
1258
1306
|
declare const useGetMortgageLimits: () => {
|
|
1259
|
-
readonly response: vue.Ref<ApiResponse<
|
|
1307
|
+
readonly response: vue.Ref<ApiResponse<MortgageProgramsLimits> | null>;
|
|
1260
1308
|
readonly pending: vue.Ref<boolean>;
|
|
1261
1309
|
post(params: PostParams<{
|
|
1262
1310
|
salespoint_id: number;
|
|
1263
|
-
}>): Promise<ApiResponse<
|
|
1311
|
+
}>): Promise<ApiResponse<MortgageProgramsLimits> | null>;
|
|
1264
1312
|
};
|
|
1265
1313
|
|
|
1266
1314
|
type RosbankDomUpdate = Partial<RosbankDom> & {
|
|
@@ -1503,4 +1551,4 @@ type Mode = 'development' | 'production';
|
|
|
1503
1551
|
declare function setMode(newMode: Mode): void;
|
|
1504
1552
|
declare function getMode(): Mode;
|
|
1505
1553
|
|
|
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 };
|
|
1554
|
+
export { type AbsolutBank, type AbsolutBankFields, type AbsolutBankMeta, 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
|
@@ -24,6 +24,19 @@ type PostParamsWithoutBody = {
|
|
|
24
24
|
search?: SearchParams;
|
|
25
25
|
};
|
|
26
26
|
|
|
27
|
+
type AbsolutBankMeta = {
|
|
28
|
+
id: number;
|
|
29
|
+
mortgageapp_id: number;
|
|
30
|
+
created_at: string;
|
|
31
|
+
salespoint_id: number;
|
|
32
|
+
user_id: number;
|
|
33
|
+
stages: {
|
|
34
|
+
current: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
type AbsolutBankFields = {};
|
|
38
|
+
type AbsolutBank = AbsolutBankMeta & AbsolutBankFields;
|
|
39
|
+
|
|
27
40
|
type User = {
|
|
28
41
|
id: number;
|
|
29
42
|
first_name: string;
|
|
@@ -572,6 +585,14 @@ type MortgageCalculateProgram = {
|
|
|
572
585
|
down_payment: number;
|
|
573
586
|
alt: boolean;
|
|
574
587
|
};
|
|
588
|
+
type MortgageProgramsLimits = {
|
|
589
|
+
loan_sum_min: number;
|
|
590
|
+
loan_sum_max: number;
|
|
591
|
+
loan_term_min: number;
|
|
592
|
+
loan_term_max: number;
|
|
593
|
+
loan_initial_min_percent: string;
|
|
594
|
+
loan_initial_max_percent: string | null;
|
|
595
|
+
};
|
|
575
596
|
|
|
576
597
|
type RosbankDomStages = 'app' | 'app_wait' | 'app_abort' | 'opportunity_wait' | 'opportunity_abort' | 'scans_wait' | 'scans_abort' | 'approval_wait' | 'cancel' | 'end' | 'unknown';
|
|
577
598
|
type RosbankDomOffer = {
|
|
@@ -1233,6 +1254,33 @@ declare const useUpdateMortgage: () => {
|
|
|
1233
1254
|
readonly pending: vue.Ref<boolean>;
|
|
1234
1255
|
post(params: PostParams<MortgageUpdate>): Promise<ApiResponse<Mortgage> | null>;
|
|
1235
1256
|
};
|
|
1257
|
+
/** Отправка ипотечной заявки */
|
|
1258
|
+
declare const useSendMortgage: () => {
|
|
1259
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1260
|
+
readonly pending: vue.Ref<boolean>;
|
|
1261
|
+
post(params: PostParams<{
|
|
1262
|
+
id: number;
|
|
1263
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1264
|
+
};
|
|
1265
|
+
/** Обновление кастомера в ипотечной заявки */
|
|
1266
|
+
declare const useUpdateMortgageCustomer: () => {
|
|
1267
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1268
|
+
readonly pending: vue.Ref<boolean>;
|
|
1269
|
+
post(params: PostParams<{
|
|
1270
|
+
id: number;
|
|
1271
|
+
customer_id: string;
|
|
1272
|
+
check_passport_id?: number;
|
|
1273
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1274
|
+
};
|
|
1275
|
+
/** Удаление кастомера из ипотечной заявки */
|
|
1276
|
+
declare const useDeleteMortgageCustomer: () => {
|
|
1277
|
+
readonly response: vue.Ref<ApiResponse<Mortgage> | null>;
|
|
1278
|
+
readonly pending: vue.Ref<boolean>;
|
|
1279
|
+
post(params: PostParams<{
|
|
1280
|
+
id: number;
|
|
1281
|
+
customer_id: string;
|
|
1282
|
+
}>): Promise<ApiResponse<Mortgage> | null>;
|
|
1283
|
+
};
|
|
1236
1284
|
/** Получение списка ипотечных заявок */
|
|
1237
1285
|
declare const useGetMortgageList: () => {
|
|
1238
1286
|
readonly response: vue.Ref<ApiResponse<Mortgage[]> | null>;
|
|
@@ -1256,11 +1304,11 @@ declare const useCalculateMortgage: () => {
|
|
|
1256
1304
|
};
|
|
1257
1305
|
/** Получить лимиты банковских продуктов */
|
|
1258
1306
|
declare const useGetMortgageLimits: () => {
|
|
1259
|
-
readonly response: vue.Ref<ApiResponse<
|
|
1307
|
+
readonly response: vue.Ref<ApiResponse<MortgageProgramsLimits> | null>;
|
|
1260
1308
|
readonly pending: vue.Ref<boolean>;
|
|
1261
1309
|
post(params: PostParams<{
|
|
1262
1310
|
salespoint_id: number;
|
|
1263
|
-
}>): Promise<ApiResponse<
|
|
1311
|
+
}>): Promise<ApiResponse<MortgageProgramsLimits> | null>;
|
|
1264
1312
|
};
|
|
1265
1313
|
|
|
1266
1314
|
type RosbankDomUpdate = Partial<RosbankDom> & {
|
|
@@ -1503,4 +1551,4 @@ type Mode = 'development' | 'production';
|
|
|
1503
1551
|
declare function setMode(newMode: Mode): void;
|
|
1504
1552
|
declare function getMode(): Mode;
|
|
1505
1553
|
|
|
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 };
|
|
1554
|
+
export { type AbsolutBank, type AbsolutBankFields, type AbsolutBankMeta, 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.32",
|
|
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"
|