@monei-js/components 1.4.0 → 1.5.0
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/cofidis/types.d.ts +5 -0
- package/dist/cofidisLoan/container.d.ts +4 -0
- package/dist/cofidisLoan/index.d.ts +6 -0
- package/dist/cofidisLoan/modal.d.ts +3 -0
- package/dist/cofidisLoan/types.d.ts +44 -0
- package/dist/cofidisLoan/widget.d.ts +3 -0
- package/dist/components.cjs.development.js +318 -3
- 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 +316 -4
- package/dist/components.esm.js.map +1 -1
- package/dist/config.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/paymentRequest/types.d.ts +1 -1
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -12,6 +12,9 @@ declare type Config = {
|
|
|
12
12
|
cofidisUrl: string;
|
|
13
13
|
cofidisButtonUrl: string;
|
|
14
14
|
cofidisWidgetUrl: string;
|
|
15
|
+
cofidisLoanUrl: string;
|
|
16
|
+
cofidisLoanButtonUrl: string;
|
|
17
|
+
cofidisLoanWidgetUrl: string;
|
|
15
18
|
paypalUrl: string;
|
|
16
19
|
apiUrl: string;
|
|
17
20
|
googlePayUrl: string;
|
package/dist/index.d.ts
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ export declare type CreateApplePaySessionRequest = {
|
|
|
135
135
|
export declare type CalculateFinancingRequest = {
|
|
136
136
|
amount: number;
|
|
137
137
|
accountId: string;
|
|
138
|
+
paymentMethod?: string;
|
|
138
139
|
};
|
|
139
140
|
export declare type CalculateFinancingResponse = {
|
|
140
141
|
financingAmount: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monei-js/components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
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",
|