simpleloan_api 1.2.21 → 1.2.23

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
@@ -1546,11 +1546,19 @@ declare const useUpdateCommondictsPassportFms: () => {
1546
1546
  };
1547
1547
  /** Справочник банков */
1548
1548
  declare const useGetCommondictsBanks: () => {
1549
- readonly response: vue.Ref<ApiResponse<GetFmsResponse> | null>;
1549
+ readonly response: vue.Ref<ApiResponse<Record<MortgageBankNames, {
1550
+ code: string;
1551
+ title: string;
1552
+ verbose: string;
1553
+ }>> | null>;
1550
1554
  readonly pending: vue.Ref<boolean>;
1551
1555
  post(params: PostParams<{
1552
1556
  bankm: boolean;
1553
- }>): Promise<ApiResponse<GetFmsResponse> | null>;
1557
+ }>): Promise<ApiResponse<Record<MortgageBankNames, {
1558
+ code: string;
1559
+ title: string;
1560
+ verbose: string;
1561
+ }>> | null>;
1554
1562
  };
1555
1563
 
1556
1564
  type CustomerUpdate = Partial<CustomerFields> & {
package/dist/index.d.ts CHANGED
@@ -1546,11 +1546,19 @@ declare const useUpdateCommondictsPassportFms: () => {
1546
1546
  };
1547
1547
  /** Справочник банков */
1548
1548
  declare const useGetCommondictsBanks: () => {
1549
- readonly response: vue.Ref<ApiResponse<GetFmsResponse> | null>;
1549
+ readonly response: vue.Ref<ApiResponse<Record<MortgageBankNames, {
1550
+ code: string;
1551
+ title: string;
1552
+ verbose: string;
1553
+ }>> | null>;
1550
1554
  readonly pending: vue.Ref<boolean>;
1551
1555
  post(params: PostParams<{
1552
1556
  bankm: boolean;
1553
- }>): Promise<ApiResponse<GetFmsResponse> | null>;
1557
+ }>): Promise<ApiResponse<Record<MortgageBankNames, {
1558
+ code: string;
1559
+ title: string;
1560
+ verbose: string;
1561
+ }>> | null>;
1554
1562
  };
1555
1563
 
1556
1564
  type CustomerUpdate = Partial<CustomerFields> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.2.21",
3
+ "version": "1.2.23",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -25,4 +25,4 @@
25
25
  "typescript": "^5.5.4",
26
26
  "vue": "^3.2.13"
27
27
  }
28
- }
28
+ }