simpleloan_api 1.1.10 → 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/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: () => {
|