simpleloan_api 1.1.7 → 1.1.8
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 +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +19 -20
- package/dist/index.mjs +13 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -500,25 +500,25 @@ declare const useGetAkbarsPrintformList: () => {
|
|
|
500
500
|
}> | undefined): Promise<ApiResponse<AkbarsPrintform[]> | null>;
|
|
501
501
|
};
|
|
502
502
|
/** Добавить/Редактировать залог к заявке Ак Барс Банка */
|
|
503
|
-
declare const
|
|
503
|
+
declare const useUpdateAkbarsDeposit: () => {
|
|
504
504
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
505
505
|
pending: vue.Ref<boolean>;
|
|
506
506
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
507
507
|
};
|
|
508
508
|
/** Получить залог из заявки Ак Барс Банка */
|
|
509
|
-
declare const
|
|
509
|
+
declare const useGetAkbarsDeposit: () => {
|
|
510
510
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
511
511
|
pending: vue.Ref<boolean>;
|
|
512
512
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
513
513
|
};
|
|
514
514
|
/** Отправить информацию об залоге со сканами в Ак Барс Банк */
|
|
515
|
-
declare const
|
|
515
|
+
declare const useSendAkbarsDeposit: () => {
|
|
516
516
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
517
517
|
pending: vue.Ref<boolean>;
|
|
518
518
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
519
519
|
};
|
|
520
520
|
/** Загрузить скан депозита в заявку Ак Барс Банка */
|
|
521
|
-
declare const
|
|
521
|
+
declare const useUploadAkbarsDepositScan: () => {
|
|
522
522
|
response: vue.Ref<ApiResponse<AkbarsDepositScan> | null>;
|
|
523
523
|
pending: vue.Ref<boolean>;
|
|
524
524
|
post(params?: PostParams<{
|
|
@@ -528,7 +528,7 @@ declare const useUploadAkbarsDepositeScan: () => {
|
|
|
528
528
|
}> | undefined): Promise<ApiResponse<AkbarsDepositScan> | null>;
|
|
529
529
|
};
|
|
530
530
|
/** Получить список сканов депозита в заявке Ак Барс Банка */
|
|
531
|
-
declare const
|
|
531
|
+
declare const useGetAkbarsDepositScanList: () => {
|
|
532
532
|
response: vue.Ref<ApiResponse<AkbarsDepositScan[]> | null>;
|
|
533
533
|
pending: vue.Ref<boolean>;
|
|
534
534
|
post(params?: PostParams<{
|
|
@@ -536,7 +536,7 @@ declare const useGetAkbarsDepositeScanList: () => {
|
|
|
536
536
|
}> | undefined): Promise<ApiResponse<AkbarsDepositScan[]> | null>;
|
|
537
537
|
};
|
|
538
538
|
/** Удалить скан депозита в заявке Ак Барс Банка */
|
|
539
|
-
declare const
|
|
539
|
+
declare const useDeleteAkbarsDepositScan: () => {
|
|
540
540
|
response: vue.Ref<ApiResponse<null> | null>;
|
|
541
541
|
pending: vue.Ref<boolean>;
|
|
542
542
|
post(params?: PostParams<{
|
|
@@ -733,4 +733,4 @@ type Mode = 'development' | 'production';
|
|
|
733
733
|
declare function setMode(newMode: Mode): void;
|
|
734
734
|
declare function getMode(): Mode;
|
|
735
735
|
|
|
736
|
-
export { type Address, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type Brokerclient, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type User, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCloneSalespoint, useCloneUser, useDeleteAkbars,
|
|
736
|
+
export { type Address, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type Brokerclient, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type User, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCloneSalespoint, useCloneUser, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteBrokerclient, useDeleteGroupUser, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDictList, useGetAkbarsList, useGetAkbarsPrintformList, useGetBrokerclient, useGetBrokerclientList, useGetSalespoint, useGetSalespointList, useGetUser, useGetUserList, useLoanerApprovingAkbarsStatus, useProcessingAkbars, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateBrokerclient, useUpdateManySalespoint, useUpdateManyUser, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan };
|
package/dist/index.d.ts
CHANGED
|
@@ -500,25 +500,25 @@ declare const useGetAkbarsPrintformList: () => {
|
|
|
500
500
|
}> | undefined): Promise<ApiResponse<AkbarsPrintform[]> | null>;
|
|
501
501
|
};
|
|
502
502
|
/** Добавить/Редактировать залог к заявке Ак Барс Банка */
|
|
503
|
-
declare const
|
|
503
|
+
declare const useUpdateAkbarsDeposit: () => {
|
|
504
504
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
505
505
|
pending: vue.Ref<boolean>;
|
|
506
506
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
507
507
|
};
|
|
508
508
|
/** Получить залог из заявки Ак Барс Банка */
|
|
509
|
-
declare const
|
|
509
|
+
declare const useGetAkbarsDeposit: () => {
|
|
510
510
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
511
511
|
pending: vue.Ref<boolean>;
|
|
512
512
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
513
513
|
};
|
|
514
514
|
/** Отправить информацию об залоге со сканами в Ак Барс Банк */
|
|
515
|
-
declare const
|
|
515
|
+
declare const useSendAkbarsDeposit: () => {
|
|
516
516
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
517
517
|
pending: vue.Ref<boolean>;
|
|
518
518
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
519
519
|
};
|
|
520
520
|
/** Загрузить скан депозита в заявку Ак Барс Банка */
|
|
521
|
-
declare const
|
|
521
|
+
declare const useUploadAkbarsDepositScan: () => {
|
|
522
522
|
response: vue.Ref<ApiResponse<AkbarsDepositScan> | null>;
|
|
523
523
|
pending: vue.Ref<boolean>;
|
|
524
524
|
post(params?: PostParams<{
|
|
@@ -528,7 +528,7 @@ declare const useUploadAkbarsDepositeScan: () => {
|
|
|
528
528
|
}> | undefined): Promise<ApiResponse<AkbarsDepositScan> | null>;
|
|
529
529
|
};
|
|
530
530
|
/** Получить список сканов депозита в заявке Ак Барс Банка */
|
|
531
|
-
declare const
|
|
531
|
+
declare const useGetAkbarsDepositScanList: () => {
|
|
532
532
|
response: vue.Ref<ApiResponse<AkbarsDepositScan[]> | null>;
|
|
533
533
|
pending: vue.Ref<boolean>;
|
|
534
534
|
post(params?: PostParams<{
|
|
@@ -536,7 +536,7 @@ declare const useGetAkbarsDepositeScanList: () => {
|
|
|
536
536
|
}> | undefined): Promise<ApiResponse<AkbarsDepositScan[]> | null>;
|
|
537
537
|
};
|
|
538
538
|
/** Удалить скан депозита в заявке Ак Барс Банка */
|
|
539
|
-
declare const
|
|
539
|
+
declare const useDeleteAkbarsDepositScan: () => {
|
|
540
540
|
response: vue.Ref<ApiResponse<null> | null>;
|
|
541
541
|
pending: vue.Ref<boolean>;
|
|
542
542
|
post(params?: PostParams<{
|
|
@@ -733,4 +733,4 @@ type Mode = 'development' | 'production';
|
|
|
733
733
|
declare function setMode(newMode: Mode): void;
|
|
734
734
|
declare function getMode(): Mode;
|
|
735
735
|
|
|
736
|
-
export { type Address, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type Brokerclient, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type User, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCloneSalespoint, useCloneUser, useDeleteAkbars,
|
|
736
|
+
export { type Address, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type Brokerclient, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type User, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCloneSalespoint, useCloneUser, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteBrokerclient, useDeleteGroupUser, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDictList, useGetAkbarsList, useGetAkbarsPrintformList, useGetBrokerclient, useGetBrokerclientList, useGetSalespoint, useGetSalespointList, useGetUser, useGetUserList, useLoanerApprovingAkbarsStatus, useProcessingAkbars, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateBrokerclient, useUpdateManySalespoint, useUpdateManyUser, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan };
|
package/dist/index.js
CHANGED
|
@@ -57,7 +57,7 @@ __export(simpleloan_api_exports, {
|
|
|
57
57
|
useCloneSalespoint: () => useCloneSalespoint,
|
|
58
58
|
useCloneUser: () => useCloneUser,
|
|
59
59
|
useDeleteAkbars: () => useDeleteAkbars,
|
|
60
|
-
|
|
60
|
+
useDeleteAkbarsDepositScan: () => useDeleteAkbarsDepositScan,
|
|
61
61
|
useDeleteBrokerclient: () => useDeleteBrokerclient,
|
|
62
62
|
useDeleteGroupUser: () => useDeleteGroupUser,
|
|
63
63
|
useDeleteSalespoint: () => useDeleteSalespoint,
|
|
@@ -66,8 +66,8 @@ __export(simpleloan_api_exports, {
|
|
|
66
66
|
useDeleteUser: () => useDeleteUser,
|
|
67
67
|
useGenerateAkbarsScansApplications: () => useGenerateAkbarsScansApplications,
|
|
68
68
|
useGetAkbars: () => useGetAkbars,
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
useGetAkbarsDeposit: () => useGetAkbarsDeposit,
|
|
70
|
+
useGetAkbarsDepositScanList: () => useGetAkbarsDepositScanList,
|
|
71
71
|
useGetAkbarsDictList: () => useGetAkbarsDictList,
|
|
72
72
|
useGetAkbarsList: () => useGetAkbarsList,
|
|
73
73
|
useGetAkbarsPrintformList: () => useGetAkbarsPrintformList,
|
|
@@ -80,16 +80,16 @@ __export(simpleloan_api_exports, {
|
|
|
80
80
|
useLoanerApprovingAkbarsStatus: () => useLoanerApprovingAkbarsStatus,
|
|
81
81
|
useProcessingAkbars: () => useProcessingAkbars,
|
|
82
82
|
useSendAkbars: () => useSendAkbars,
|
|
83
|
-
|
|
83
|
+
useSendAkbarsDeposit: () => useSendAkbarsDeposit,
|
|
84
84
|
useSendAkbarsScans: () => useSendAkbarsScans,
|
|
85
85
|
useUpdateAkbars: () => useUpdateAkbars,
|
|
86
|
-
|
|
86
|
+
useUpdateAkbarsDeposit: () => useUpdateAkbarsDeposit,
|
|
87
87
|
useUpdateBrokerclient: () => useUpdateBrokerclient,
|
|
88
88
|
useUpdateManySalespoint: () => useUpdateManySalespoint,
|
|
89
89
|
useUpdateManyUser: () => useUpdateManyUser,
|
|
90
90
|
useUpdateSalespoint: () => useUpdateSalespoint,
|
|
91
91
|
useUpdateUser: () => useUpdateUser,
|
|
92
|
-
|
|
92
|
+
useUploadAkbarsDepositScan: () => useUploadAkbarsDepositScan
|
|
93
93
|
});
|
|
94
94
|
module.exports = __toCommonJS(simpleloan_api_exports);
|
|
95
95
|
|
|
@@ -132,7 +132,6 @@ function getApiUrl() {
|
|
|
132
132
|
return getMode() === "production" ? "https://portal.simpleloan.ru/api/v1" : "https://slb.medv.ru/api/v1/";
|
|
133
133
|
}
|
|
134
134
|
function getBody(params) {
|
|
135
|
-
console.log("token", localStorage.getItem("token"));
|
|
136
135
|
return JSON.stringify({
|
|
137
136
|
_data: params.body || void 0,
|
|
138
137
|
_searchParams: params.search || void 0,
|
|
@@ -190,14 +189,14 @@ var useProcessingAkbars = () => useFetch(baseUrl2 + "app/processing/");
|
|
|
190
189
|
var useAskAkbarsPrintforms = () => useFetch(baseUrl2 + "printforms/ask/");
|
|
191
190
|
var useLoanerApprovingAkbarsStatus = () => useFetch(baseUrl2 + "loaner_approving/status/");
|
|
192
191
|
var useGetAkbarsPrintformList = () => useFetch(baseUrl2 + "printforms/get_list/");
|
|
193
|
-
var
|
|
194
|
-
var
|
|
195
|
-
var
|
|
196
|
-
var
|
|
197
|
-
baseUrl2 + "
|
|
192
|
+
var useUpdateAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/update/");
|
|
193
|
+
var useGetAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/get/");
|
|
194
|
+
var useSendAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/send/");
|
|
195
|
+
var useUploadAkbarsDepositScan = () => useFetch(
|
|
196
|
+
baseUrl2 + "deposit/scans/files/upload/"
|
|
198
197
|
);
|
|
199
|
-
var
|
|
200
|
-
var
|
|
198
|
+
var useGetAkbarsDepositScanList = () => useFetch(baseUrl2 + "deposit/scans/files/get_list/");
|
|
199
|
+
var useDeleteAkbarsDepositScan = () => useFetch(baseUrl2 + "deposit/scans/files/delete/");
|
|
201
200
|
|
|
202
201
|
// src/repositories/brokerclient/index.ts
|
|
203
202
|
var baseUrl3 = "brokerclient/";
|
|
@@ -248,7 +247,7 @@ var useUpdateManyUser = () => useFetch(baseUrl5 + "update_many/");
|
|
|
248
247
|
useCloneSalespoint,
|
|
249
248
|
useCloneUser,
|
|
250
249
|
useDeleteAkbars,
|
|
251
|
-
|
|
250
|
+
useDeleteAkbarsDepositScan,
|
|
252
251
|
useDeleteBrokerclient,
|
|
253
252
|
useDeleteGroupUser,
|
|
254
253
|
useDeleteSalespoint,
|
|
@@ -257,8 +256,8 @@ var useUpdateManyUser = () => useFetch(baseUrl5 + "update_many/");
|
|
|
257
256
|
useDeleteUser,
|
|
258
257
|
useGenerateAkbarsScansApplications,
|
|
259
258
|
useGetAkbars,
|
|
260
|
-
|
|
261
|
-
|
|
259
|
+
useGetAkbarsDeposit,
|
|
260
|
+
useGetAkbarsDepositScanList,
|
|
262
261
|
useGetAkbarsDictList,
|
|
263
262
|
useGetAkbarsList,
|
|
264
263
|
useGetAkbarsPrintformList,
|
|
@@ -271,14 +270,14 @@ var useUpdateManyUser = () => useFetch(baseUrl5 + "update_many/");
|
|
|
271
270
|
useLoanerApprovingAkbarsStatus,
|
|
272
271
|
useProcessingAkbars,
|
|
273
272
|
useSendAkbars,
|
|
274
|
-
|
|
273
|
+
useSendAkbarsDeposit,
|
|
275
274
|
useSendAkbarsScans,
|
|
276
275
|
useUpdateAkbars,
|
|
277
|
-
|
|
276
|
+
useUpdateAkbarsDeposit,
|
|
278
277
|
useUpdateBrokerclient,
|
|
279
278
|
useUpdateManySalespoint,
|
|
280
279
|
useUpdateManyUser,
|
|
281
280
|
useUpdateSalespoint,
|
|
282
281
|
useUpdateUser,
|
|
283
|
-
|
|
282
|
+
useUploadAkbarsDepositScan
|
|
284
283
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -58,7 +58,6 @@ function getApiUrl() {
|
|
|
58
58
|
return getMode() === "production" ? "https://portal.simpleloan.ru/api/v1" : "https://slb.medv.ru/api/v1/";
|
|
59
59
|
}
|
|
60
60
|
function getBody(params) {
|
|
61
|
-
console.log("token", localStorage.getItem("token"));
|
|
62
61
|
return JSON.stringify({
|
|
63
62
|
_data: params.body || void 0,
|
|
64
63
|
_searchParams: params.search || void 0,
|
|
@@ -116,14 +115,14 @@ var useProcessingAkbars = () => useFetch(baseUrl2 + "app/processing/");
|
|
|
116
115
|
var useAskAkbarsPrintforms = () => useFetch(baseUrl2 + "printforms/ask/");
|
|
117
116
|
var useLoanerApprovingAkbarsStatus = () => useFetch(baseUrl2 + "loaner_approving/status/");
|
|
118
117
|
var useGetAkbarsPrintformList = () => useFetch(baseUrl2 + "printforms/get_list/");
|
|
119
|
-
var
|
|
120
|
-
var
|
|
121
|
-
var
|
|
122
|
-
var
|
|
123
|
-
baseUrl2 + "
|
|
118
|
+
var useUpdateAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/update/");
|
|
119
|
+
var useGetAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/get/");
|
|
120
|
+
var useSendAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/send/");
|
|
121
|
+
var useUploadAkbarsDepositScan = () => useFetch(
|
|
122
|
+
baseUrl2 + "deposit/scans/files/upload/"
|
|
124
123
|
);
|
|
125
|
-
var
|
|
126
|
-
var
|
|
124
|
+
var useGetAkbarsDepositScanList = () => useFetch(baseUrl2 + "deposit/scans/files/get_list/");
|
|
125
|
+
var useDeleteAkbarsDepositScan = () => useFetch(baseUrl2 + "deposit/scans/files/delete/");
|
|
127
126
|
|
|
128
127
|
// src/repositories/brokerclient/index.ts
|
|
129
128
|
var baseUrl3 = "brokerclient/";
|
|
@@ -173,7 +172,7 @@ export {
|
|
|
173
172
|
useCloneSalespoint,
|
|
174
173
|
useCloneUser,
|
|
175
174
|
useDeleteAkbars,
|
|
176
|
-
|
|
175
|
+
useDeleteAkbarsDepositScan,
|
|
177
176
|
useDeleteBrokerclient,
|
|
178
177
|
useDeleteGroupUser,
|
|
179
178
|
useDeleteSalespoint,
|
|
@@ -182,8 +181,8 @@ export {
|
|
|
182
181
|
useDeleteUser,
|
|
183
182
|
useGenerateAkbarsScansApplications,
|
|
184
183
|
useGetAkbars,
|
|
185
|
-
|
|
186
|
-
|
|
184
|
+
useGetAkbarsDeposit,
|
|
185
|
+
useGetAkbarsDepositScanList,
|
|
187
186
|
useGetAkbarsDictList,
|
|
188
187
|
useGetAkbarsList,
|
|
189
188
|
useGetAkbarsPrintformList,
|
|
@@ -196,14 +195,14 @@ export {
|
|
|
196
195
|
useLoanerApprovingAkbarsStatus,
|
|
197
196
|
useProcessingAkbars,
|
|
198
197
|
useSendAkbars,
|
|
199
|
-
|
|
198
|
+
useSendAkbarsDeposit,
|
|
200
199
|
useSendAkbarsScans,
|
|
201
200
|
useUpdateAkbars,
|
|
202
|
-
|
|
201
|
+
useUpdateAkbarsDeposit,
|
|
203
202
|
useUpdateBrokerclient,
|
|
204
203
|
useUpdateManySalespoint,
|
|
205
204
|
useUpdateManyUser,
|
|
206
205
|
useUpdateSalespoint,
|
|
207
206
|
useUpdateUser,
|
|
208
|
-
|
|
207
|
+
useUploadAkbarsDepositScan
|
|
209
208
|
};
|