simpleloan_api 1.1.9 → 1.1.11
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 +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -513,9 +513,11 @@ declare const useGetAkbarsDeposit: () => {
|
|
|
513
513
|
};
|
|
514
514
|
/** Отправить информацию об залоге со сканами в Ак Барс Банк */
|
|
515
515
|
declare const useSendAkbarsDeposit: () => {
|
|
516
|
-
response: vue.Ref<ApiResponse<
|
|
516
|
+
response: vue.Ref<ApiResponse<Akbars> | null>;
|
|
517
517
|
pending: vue.Ref<boolean>;
|
|
518
|
-
post(params?: PostParams<
|
|
518
|
+
post(params?: PostParams<{
|
|
519
|
+
id: number;
|
|
520
|
+
}> | undefined): Promise<ApiResponse<Akbars> | null>;
|
|
519
521
|
};
|
|
520
522
|
/** Загрузить скан депозита в заявку Ак Барс Банка */
|
|
521
523
|
declare const useUploadAkbarsDepositScan: () => {
|
package/dist/index.d.ts
CHANGED
|
@@ -513,9 +513,11 @@ declare const useGetAkbarsDeposit: () => {
|
|
|
513
513
|
};
|
|
514
514
|
/** Отправить информацию об залоге со сканами в Ак Барс Банк */
|
|
515
515
|
declare const useSendAkbarsDeposit: () => {
|
|
516
|
-
response: vue.Ref<ApiResponse<
|
|
516
|
+
response: vue.Ref<ApiResponse<Akbars> | null>;
|
|
517
517
|
pending: vue.Ref<boolean>;
|
|
518
|
-
post(params?: PostParams<
|
|
518
|
+
post(params?: PostParams<{
|
|
519
|
+
id: number;
|
|
520
|
+
}> | undefined): Promise<ApiResponse<Akbars> | null>;
|
|
519
521
|
};
|
|
520
522
|
/** Загрузить скан депозита в заявку Ак Барс Банка */
|
|
521
523
|
declare const useUploadAkbarsDepositScan: () => {
|
package/dist/index.js
CHANGED
|
@@ -185,8 +185,8 @@ var useDeleteAkbars = () => useFetch(baseUrl2 + "delete/");
|
|
|
185
185
|
var useUpdateAkbars = () => useFetch(baseUrl2 + "app/update/");
|
|
186
186
|
var useSendAkbars = () => useFetch(baseUrl2 + "app/send/");
|
|
187
187
|
var useGenerateAkbarsScansApplications = () => useFetch(baseUrl2 + "scans/applications/generate/");
|
|
188
|
-
var useSendAkbarsScans = () => useFetch(baseUrl2 + "
|
|
189
|
-
var useProcessingAkbars = () => useFetch(baseUrl2 + "
|
|
188
|
+
var useSendAkbarsScans = () => useFetch(baseUrl2 + "scans/send/");
|
|
189
|
+
var useProcessingAkbars = () => useFetch(baseUrl2 + "processing/");
|
|
190
190
|
var useAskAkbarsPrintforms = () => useFetch(baseUrl2 + "printforms/ask/");
|
|
191
191
|
var useLoanerApprovingAkbarsStatus = () => useFetch(baseUrl2 + "loaner_approving/status/");
|
|
192
192
|
var useGetAkbarsPrintformList = () => useFetch(baseUrl2 + "printforms/get_list/");
|
package/dist/index.mjs
CHANGED
|
@@ -111,8 +111,8 @@ var useDeleteAkbars = () => useFetch(baseUrl2 + "delete/");
|
|
|
111
111
|
var useUpdateAkbars = () => useFetch(baseUrl2 + "app/update/");
|
|
112
112
|
var useSendAkbars = () => useFetch(baseUrl2 + "app/send/");
|
|
113
113
|
var useGenerateAkbarsScansApplications = () => useFetch(baseUrl2 + "scans/applications/generate/");
|
|
114
|
-
var useSendAkbarsScans = () => useFetch(baseUrl2 + "
|
|
115
|
-
var useProcessingAkbars = () => useFetch(baseUrl2 + "
|
|
114
|
+
var useSendAkbarsScans = () => useFetch(baseUrl2 + "scans/send/");
|
|
115
|
+
var useProcessingAkbars = () => useFetch(baseUrl2 + "processing/");
|
|
116
116
|
var useAskAkbarsPrintforms = () => useFetch(baseUrl2 + "printforms/ask/");
|
|
117
117
|
var useLoanerApprovingAkbarsStatus = () => useFetch(baseUrl2 + "loaner_approving/status/");
|
|
118
118
|
var useGetAkbarsPrintformList = () => useFetch(baseUrl2 + "printforms/get_list/");
|