@fractalpay/fractalpay-next-dev 0.0.50 → 0.0.52
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +8 -8
- package/dist/index.mjs +10 -10
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -72,7 +72,7 @@ type Props$1 = {
|
|
|
72
72
|
showChecks: boolean;
|
|
73
73
|
merchantName: string;
|
|
74
74
|
};
|
|
75
|
-
declare function
|
|
75
|
+
declare function CardOnFile({ session_token, callback, isloading, onCancel, showChecks, merchantName }: Props$1): React.JSX.Element;
|
|
76
76
|
|
|
77
77
|
type Props = {
|
|
78
78
|
session_token: string;
|
|
@@ -86,6 +86,6 @@ type Props = {
|
|
|
86
86
|
isPreAuth: boolean;
|
|
87
87
|
submitBtnIcon?: any;
|
|
88
88
|
};
|
|
89
|
-
declare const
|
|
89
|
+
declare const PaymentWidget: ({ amount, submitBtnText, session_token, customerId, callback, merchantName, isPreAuth, surcharge, submitBtnClass, submitBtnIcon }: Props) => React.JSX.Element;
|
|
90
90
|
|
|
91
|
-
export { AddCardEasyPay as AddCard,
|
|
91
|
+
export { AddCardEasyPay as AddCard, CardOnFile, GetPaymentPage, PaymentWidget, PreAuthPayment, RequestPayment, RequestPreAuthPayment };
|
package/dist/index.d.ts
CHANGED
|
@@ -72,7 +72,7 @@ type Props$1 = {
|
|
|
72
72
|
showChecks: boolean;
|
|
73
73
|
merchantName: string;
|
|
74
74
|
};
|
|
75
|
-
declare function
|
|
75
|
+
declare function CardOnFile({ session_token, callback, isloading, onCancel, showChecks, merchantName }: Props$1): React.JSX.Element;
|
|
76
76
|
|
|
77
77
|
type Props = {
|
|
78
78
|
session_token: string;
|
|
@@ -86,6 +86,6 @@ type Props = {
|
|
|
86
86
|
isPreAuth: boolean;
|
|
87
87
|
submitBtnIcon?: any;
|
|
88
88
|
};
|
|
89
|
-
declare const
|
|
89
|
+
declare const PaymentWidget: ({ amount, submitBtnText, session_token, customerId, callback, merchantName, isPreAuth, surcharge, submitBtnClass, submitBtnIcon }: Props) => React.JSX.Element;
|
|
90
90
|
|
|
91
|
-
export { AddCardEasyPay as AddCard,
|
|
91
|
+
export { AddCardEasyPay as AddCard, CardOnFile, GetPaymentPage, PaymentWidget, PreAuthPayment, RequestPayment, RequestPreAuthPayment };
|