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 CHANGED
@@ -513,9 +513,11 @@ declare const useGetAkbarsDeposit: () => {
513
513
  };
514
514
  /** Отправить информацию об залоге со сканами в Ак Барс Банк */
515
515
  declare const useSendAkbarsDeposit: () => {
516
- response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
516
+ response: vue.Ref<ApiResponse<Akbars> | null>;
517
517
  pending: vue.Ref<boolean>;
518
- post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
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<AkbarsDeposit> | null>;
516
+ response: vue.Ref<ApiResponse<Akbars> | null>;
517
517
  pending: vue.Ref<boolean>;
518
- post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
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 + "app/scans/send/");
189
- var useProcessingAkbars = () => useFetch(baseUrl2 + "app/processing/");
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 + "app/scans/send/");
115
- var useProcessingAkbars = () => useFetch(baseUrl2 + "app/processing/");
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/");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",