@pinerohit11/testwidget 0.1.67 → 0.1.68
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 +12 -45
- package/dist/index.d.ts +12 -45
- package/dist/index.js +186 -2527
- package/dist/index.mjs +186 -2526
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
|
3
|
-
interface Props {
|
3
|
+
interface Props$1 {
|
4
4
|
fractalpayClientKey: string;
|
5
5
|
customerId?: string;
|
6
6
|
orderID?: string;
|
@@ -11,52 +11,19 @@ interface Props {
|
|
11
11
|
amount: string;
|
12
12
|
webname?: string;
|
13
13
|
}
|
14
|
-
declare function RequestPayment(props: Props): React.JSX.Element;
|
15
|
-
|
16
|
-
interface RequestPaymentAllInputProps {
|
17
|
-
fractalpayClientKey: string;
|
18
|
-
}
|
19
|
-
declare function RequestPaymentAllInput({ fractalpayClientKey }: RequestPaymentAllInputProps): React.JSX.Element;
|
20
|
-
|
21
|
-
interface RequestPaymentDynamicProps {
|
22
|
-
fractalpayClientKey: string;
|
23
|
-
amount: string;
|
24
|
-
phone_number: string;
|
25
|
-
orderID: string;
|
26
|
-
}
|
27
|
-
declare function RequestPaymentDynamic({ fractalpayClientKey, amount, phone_number, orderID }: RequestPaymentDynamicProps): React.JSX.Element;
|
14
|
+
declare function RequestPayment(props: Props$1): React.JSX.Element;
|
28
15
|
|
29
|
-
interface
|
30
|
-
fractalpayClientKey: string;
|
31
|
-
amount: string;
|
32
|
-
phone_number: string;
|
33
|
-
orderID: string;
|
34
|
-
onSuccess?: string;
|
35
|
-
onError?: string;
|
36
|
-
}
|
37
|
-
declare function RequestPaymentonClick(props: PaymentRequestProps): React.JSX.Element;
|
38
|
-
|
39
|
-
interface RequestPaymentProps {
|
40
|
-
fractalpayClientKey: string;
|
41
|
-
amount: string;
|
42
|
-
orderID: string;
|
43
|
-
}
|
44
|
-
declare function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }: RequestPaymentProps): React.JSX.Element;
|
45
|
-
|
46
|
-
declare function Payment(): React.JSX.Element;
|
47
|
-
|
48
|
-
interface CompletedTransactionsProps {
|
16
|
+
interface Props {
|
49
17
|
fractalpayClientKey: string;
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
18
|
+
customerId?: string;
|
19
|
+
orderID?: string;
|
20
|
+
name?: string;
|
21
|
+
email?: string;
|
22
|
+
phone?: string;
|
23
|
+
from?: string;
|
56
24
|
amount: string;
|
57
|
-
|
58
|
-
orderID: string;
|
25
|
+
webname?: string;
|
59
26
|
}
|
60
|
-
declare function
|
27
|
+
declare function RequestPreAuthPayment(props: Props): React.JSX.Element;
|
61
28
|
|
62
|
-
export {
|
29
|
+
export { 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$1 {
|
4
4
|
fractalpayClientKey: string;
|
5
5
|
customerId?: string;
|
6
6
|
orderID?: string;
|
@@ -11,52 +11,19 @@ interface Props {
|
|
11
11
|
amount: string;
|
12
12
|
webname?: string;
|
13
13
|
}
|
14
|
-
declare function RequestPayment(props: Props): React.JSX.Element;
|
15
|
-
|
16
|
-
interface RequestPaymentAllInputProps {
|
17
|
-
fractalpayClientKey: string;
|
18
|
-
}
|
19
|
-
declare function RequestPaymentAllInput({ fractalpayClientKey }: RequestPaymentAllInputProps): React.JSX.Element;
|
20
|
-
|
21
|
-
interface RequestPaymentDynamicProps {
|
22
|
-
fractalpayClientKey: string;
|
23
|
-
amount: string;
|
24
|
-
phone_number: string;
|
25
|
-
orderID: string;
|
26
|
-
}
|
27
|
-
declare function RequestPaymentDynamic({ fractalpayClientKey, amount, phone_number, orderID }: RequestPaymentDynamicProps): React.JSX.Element;
|
14
|
+
declare function RequestPayment(props: Props$1): React.JSX.Element;
|
28
15
|
|
29
|
-
interface
|
30
|
-
fractalpayClientKey: string;
|
31
|
-
amount: string;
|
32
|
-
phone_number: string;
|
33
|
-
orderID: string;
|
34
|
-
onSuccess?: string;
|
35
|
-
onError?: string;
|
36
|
-
}
|
37
|
-
declare function RequestPaymentonClick(props: PaymentRequestProps): React.JSX.Element;
|
38
|
-
|
39
|
-
interface RequestPaymentProps {
|
40
|
-
fractalpayClientKey: string;
|
41
|
-
amount: string;
|
42
|
-
orderID: string;
|
43
|
-
}
|
44
|
-
declare function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }: RequestPaymentProps): React.JSX.Element;
|
45
|
-
|
46
|
-
declare function Payment(): React.JSX.Element;
|
47
|
-
|
48
|
-
interface CompletedTransactionsProps {
|
16
|
+
interface Props {
|
49
17
|
fractalpayClientKey: string;
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
18
|
+
customerId?: string;
|
19
|
+
orderID?: string;
|
20
|
+
name?: string;
|
21
|
+
email?: string;
|
22
|
+
phone?: string;
|
23
|
+
from?: string;
|
56
24
|
amount: string;
|
57
|
-
|
58
|
-
orderID: string;
|
25
|
+
webname?: string;
|
59
26
|
}
|
60
|
-
declare function
|
27
|
+
declare function RequestPreAuthPayment(props: Props): React.JSX.Element;
|
61
28
|
|
62
|
-
export {
|
29
|
+
export { RequestPayment, RequestPreAuthPayment };
|