@monei-js/components 1.5.0 → 1.5.1
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/api.d.ts +4 -1
- package/dist/cofidisLoan/index.d.ts +1 -0
- package/dist/cofidisLoan/modal.d.ts +1 -0
- package/dist/cofidisLoan/widget.d.ts +1 -0
- package/dist/components.cjs.development.js +35 -2
- package/dist/components.cjs.development.js.map +1 -1
- package/dist/components.cjs.production.min.js +1 -1
- package/dist/components.cjs.production.min.js.map +1 -1
- package/dist/components.esm.js +33 -3
- package/dist/components.esm.js.map +1 -1
- package/dist/types.d.ts +6 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ export declare type CalculateFinancingRequest = {
|
|
|
137
137
|
accountId: string;
|
|
138
138
|
paymentMethod?: string;
|
|
139
139
|
};
|
|
140
|
-
export declare type CalculateFinancingResponse = {
|
|
140
|
+
export declare type CalculateFinancingResponse = Array<{
|
|
141
141
|
financingAmount: number;
|
|
142
142
|
tin: number;
|
|
143
143
|
interestAmount: number;
|
|
@@ -148,4 +148,9 @@ export declare type CalculateFinancingResponse = {
|
|
|
148
148
|
legalPhrase: string;
|
|
149
149
|
capEuros: number;
|
|
150
150
|
capPercent: number;
|
|
151
|
+
}>;
|
|
152
|
+
export declare type ValidateBizumPhoneRequest = {
|
|
153
|
+
accountId?: string;
|
|
154
|
+
paymentId?: string;
|
|
155
|
+
phoneNumber: string;
|
|
151
156
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monei-js/components",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"author": "MONEI <support@monei.com> (https://monei.com)",
|
|
5
5
|
"description": "MONEI UI Components enable you to collect sensitive payment information using customizable UI components.",
|
|
6
6
|
"homepage": "https://monei.com",
|