simpleloan_api 1.2.8 → 1.2.9

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
@@ -1672,7 +1672,7 @@ declare const useGetMortgageLimits: () => {
1672
1672
  };
1673
1673
  /** Получить лимиты банковских продуктов */
1674
1674
  declare const usePrintMortgageForm: () => {
1675
- readonly response: vue.Ref<ApiResponse<MortgageProgramsLimits> | null>;
1675
+ readonly response: vue.Ref<Blob | null>;
1676
1676
  readonly pending: vue.Ref<boolean>;
1677
1677
  post(params: PostParams<{
1678
1678
  template: "soglasieipoteka" | "soglasierosbankdom" | "soglasieakbars";
@@ -1680,7 +1680,7 @@ declare const usePrintMortgageForm: () => {
1680
1680
  context?: {
1681
1681
  customer_id?: string;
1682
1682
  };
1683
- }>): Promise<ApiResponse<MortgageProgramsLimits> | null>;
1683
+ }>): Promise<Blob | null>;
1684
1684
  };
1685
1685
 
1686
1686
  type RosbankDomUpdate = Partial<RosbankDom> & {
package/dist/index.d.ts CHANGED
@@ -1672,7 +1672,7 @@ declare const useGetMortgageLimits: () => {
1672
1672
  };
1673
1673
  /** Получить лимиты банковских продуктов */
1674
1674
  declare const usePrintMortgageForm: () => {
1675
- readonly response: vue.Ref<ApiResponse<MortgageProgramsLimits> | null>;
1675
+ readonly response: vue.Ref<Blob | null>;
1676
1676
  readonly pending: vue.Ref<boolean>;
1677
1677
  post(params: PostParams<{
1678
1678
  template: "soglasieipoteka" | "soglasierosbankdom" | "soglasieakbars";
@@ -1680,7 +1680,7 @@ declare const usePrintMortgageForm: () => {
1680
1680
  context?: {
1681
1681
  customer_id?: string;
1682
1682
  };
1683
- }>): Promise<ApiResponse<MortgageProgramsLimits> | null>;
1683
+ }>): Promise<Blob | null>;
1684
1684
  };
1685
1685
 
1686
1686
  type RosbankDomUpdate = Partial<RosbankDom> & {
package/dist/index.js CHANGED
@@ -416,7 +416,7 @@ var useUpdateMortgageProgram = () => useFetch(baseUrl9 + "mortgagedictprogramcod
416
416
  var useDeleteMortgageProgram = () => useFetch(baseUrl9 + "mortgagedictprogramcode/delete/");
417
417
  var useCalculateMortgage = () => useFetch(baseUrl9 + "calculate/");
418
418
  var useGetMortgageLimits = () => useFetch(baseUrl9 + "limits/");
419
- var usePrintMortgageForm = () => useFetch(baseUrl9 + "print_form/");
419
+ var usePrintMortgageForm = () => useFetch(baseUrl9 + "print_form/", true);
420
420
 
421
421
  // src/repositories/rosbankdom/index.ts
422
422
  var baseUrl10 = "rosbankdom/";
package/dist/index.mjs CHANGED
@@ -237,7 +237,7 @@ var useUpdateMortgageProgram = () => useFetch(baseUrl9 + "mortgagedictprogramcod
237
237
  var useDeleteMortgageProgram = () => useFetch(baseUrl9 + "mortgagedictprogramcode/delete/");
238
238
  var useCalculateMortgage = () => useFetch(baseUrl9 + "calculate/");
239
239
  var useGetMortgageLimits = () => useFetch(baseUrl9 + "limits/");
240
- var usePrintMortgageForm = () => useFetch(baseUrl9 + "print_form/");
240
+ var usePrintMortgageForm = () => useFetch(baseUrl9 + "print_form/", true);
241
241
 
242
242
  // src/repositories/rosbankdom/index.ts
243
243
  var baseUrl10 = "rosbankdom/";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",