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 +10 -2
- package/dist/index.d.ts +10 -2
- package/package.json +2 -2
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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