@pinerohit11/testwidget 0.1.72 → 0.1.73
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 +21 -5
- package/dist/index.d.ts +21 -5
- package/dist/index.js +710 -38
- package/dist/index.mjs +708 -37
- package/global.d.ts +2 -2
- package/next.config.ts +7 -7
- package/package.json +59 -59
package/dist/index.d.mts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
|
3
|
-
interface Props$
|
3
|
+
interface Props$2 {
|
4
4
|
fractalpayClientKey: string;
|
5
5
|
customerId?: string;
|
6
6
|
orderID?: string;
|
@@ -14,9 +14,9 @@ interface Props$1 {
|
|
14
14
|
tax?: string;
|
15
15
|
surcharge?: string;
|
16
16
|
}
|
17
|
-
declare function RequestPayment(props: Props$
|
17
|
+
declare function RequestPayment(props: Props$2): React.JSX.Element;
|
18
18
|
|
19
|
-
interface Props {
|
19
|
+
interface Props$1 {
|
20
20
|
fractalpayClientKey: string;
|
21
21
|
customerId?: string;
|
22
22
|
orderID?: string;
|
@@ -30,6 +30,22 @@ interface Props {
|
|
30
30
|
tax?: string;
|
31
31
|
surcharge?: string;
|
32
32
|
}
|
33
|
-
declare function RequestPreAuthPayment(props: Props): React.JSX.Element;
|
33
|
+
declare function RequestPreAuthPayment(props: Props$1): React.JSX.Element;
|
34
|
+
|
35
|
+
type Props = {
|
36
|
+
fractalpayClientKey: string;
|
37
|
+
customerId?: string;
|
38
|
+
orderID?: string;
|
39
|
+
name?: string;
|
40
|
+
email?: string;
|
41
|
+
phone?: string;
|
42
|
+
from?: string;
|
43
|
+
amount: string;
|
44
|
+
webname?: string;
|
45
|
+
discount?: string;
|
46
|
+
tax?: string;
|
47
|
+
surcharge?: string;
|
48
|
+
};
|
49
|
+
declare function GetPaymentPage({}: Props): React.JSX.Element;
|
34
50
|
|
35
|
-
export { RequestPayment, RequestPreAuthPayment };
|
51
|
+
export { GetPaymentPage, RequestPayment, RequestPreAuthPayment };
|
package/dist/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
|
3
|
-
interface Props$
|
3
|
+
interface Props$2 {
|
4
4
|
fractalpayClientKey: string;
|
5
5
|
customerId?: string;
|
6
6
|
orderID?: string;
|
@@ -14,9 +14,9 @@ interface Props$1 {
|
|
14
14
|
tax?: string;
|
15
15
|
surcharge?: string;
|
16
16
|
}
|
17
|
-
declare function RequestPayment(props: Props$
|
17
|
+
declare function RequestPayment(props: Props$2): React.JSX.Element;
|
18
18
|
|
19
|
-
interface Props {
|
19
|
+
interface Props$1 {
|
20
20
|
fractalpayClientKey: string;
|
21
21
|
customerId?: string;
|
22
22
|
orderID?: string;
|
@@ -30,6 +30,22 @@ interface Props {
|
|
30
30
|
tax?: string;
|
31
31
|
surcharge?: string;
|
32
32
|
}
|
33
|
-
declare function RequestPreAuthPayment(props: Props): React.JSX.Element;
|
33
|
+
declare function RequestPreAuthPayment(props: Props$1): React.JSX.Element;
|
34
|
+
|
35
|
+
type Props = {
|
36
|
+
fractalpayClientKey: string;
|
37
|
+
customerId?: string;
|
38
|
+
orderID?: string;
|
39
|
+
name?: string;
|
40
|
+
email?: string;
|
41
|
+
phone?: string;
|
42
|
+
from?: string;
|
43
|
+
amount: string;
|
44
|
+
webname?: string;
|
45
|
+
discount?: string;
|
46
|
+
tax?: string;
|
47
|
+
surcharge?: string;
|
48
|
+
};
|
49
|
+
declare function GetPaymentPage({}: Props): React.JSX.Element;
|
34
50
|
|
35
|
-
export { RequestPayment, RequestPreAuthPayment };
|
51
|
+
export { GetPaymentPage, RequestPayment, RequestPreAuthPayment };
|