@abdssamie/adyen-payments 0.1.0 → 0.1.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/component/private.d.ts +14 -14
- package/package.json +4 -4
|
@@ -2,47 +2,47 @@
|
|
|
2
2
|
* Record a newly created checkout session.
|
|
3
3
|
*/
|
|
4
4
|
export declare const insertCheckoutSession: import("convex/server").RegisteredMutation<"public", {
|
|
5
|
+
autoCapture?: boolean | undefined;
|
|
5
6
|
shopperReference?: string | undefined;
|
|
6
7
|
url?: string | undefined;
|
|
7
|
-
autoCapture?: boolean | undefined;
|
|
8
|
-
merchantReference: string;
|
|
9
8
|
amount: number;
|
|
10
9
|
currency: string;
|
|
11
|
-
|
|
10
|
+
merchantReference: string;
|
|
12
11
|
sessionData: string;
|
|
12
|
+
sessionId: string;
|
|
13
13
|
}, Promise<null>>;
|
|
14
14
|
/**
|
|
15
15
|
* Record a payment transaction (e.g. authorization success/failure).
|
|
16
16
|
*/
|
|
17
17
|
export declare const recordPayment: import("convex/server").RegisteredMutation<"public", {
|
|
18
18
|
shopperReference?: string | undefined;
|
|
19
|
-
userId?: string | undefined;
|
|
20
19
|
metadata?: any;
|
|
20
|
+
orgId?: string | undefined;
|
|
21
21
|
originalReference?: string | undefined;
|
|
22
22
|
paymentMethod?: string | undefined;
|
|
23
|
-
|
|
24
|
-
status: string;
|
|
25
|
-
pspReference: string;
|
|
26
|
-
merchantReference: string;
|
|
23
|
+
userId?: string | undefined;
|
|
27
24
|
amount: number;
|
|
28
25
|
currency: string;
|
|
26
|
+
merchantReference: string;
|
|
27
|
+
pspReference: string;
|
|
28
|
+
status: string;
|
|
29
29
|
}, Promise<null>>;
|
|
30
30
|
/**
|
|
31
31
|
* Update the status of a payment transaction (e.g. captured, refunded, cancelled).
|
|
32
32
|
*/
|
|
33
33
|
export declare const updatePaymentStatus: import("convex/server").RegisteredMutation<"public", {
|
|
34
34
|
originalReference?: string | undefined;
|
|
35
|
-
status: string;
|
|
36
35
|
pspReference: string;
|
|
36
|
+
status: string;
|
|
37
37
|
}, Promise<null>>;
|
|
38
38
|
/**
|
|
39
39
|
* Insert or update a single tokenized payment method.
|
|
40
40
|
*/
|
|
41
41
|
export declare const insertPaymentMethod: import("convex/server").RegisteredMutation<"public", {
|
|
42
|
-
metadata?: any;
|
|
43
|
-
cardLast4?: string | undefined;
|
|
44
42
|
cardExpiryMonth?: string | undefined;
|
|
45
43
|
cardExpiryYear?: string | undefined;
|
|
44
|
+
cardLast4?: string | undefined;
|
|
45
|
+
metadata?: any;
|
|
46
46
|
shopperReference: string;
|
|
47
47
|
recurringDetailReference: string;
|
|
48
48
|
variant: string;
|
|
@@ -53,10 +53,10 @@ export declare const insertPaymentMethod: import("convex/server").RegisteredMuta
|
|
|
53
53
|
export declare const syncPaymentMethods: import("convex/server").RegisteredMutation<"public", {
|
|
54
54
|
shopperReference: string;
|
|
55
55
|
paymentMethods: {
|
|
56
|
-
metadata?: any;
|
|
57
|
-
cardLast4?: string | undefined;
|
|
58
56
|
cardExpiryMonth?: string | undefined;
|
|
59
57
|
cardExpiryYear?: string | undefined;
|
|
58
|
+
cardLast4?: string | undefined;
|
|
59
|
+
metadata?: any;
|
|
60
60
|
recurringDetailReference: string;
|
|
61
61
|
variant: string;
|
|
62
62
|
}[];
|
|
@@ -65,7 +65,7 @@ export declare const syncPaymentMethods: import("convex/server").RegisteredMutat
|
|
|
65
65
|
* Update the status of a checkout session.
|
|
66
66
|
*/
|
|
67
67
|
export declare const updateCheckoutSessionStatus: import("convex/server").RegisteredMutation<"public", {
|
|
68
|
-
status: string;
|
|
69
68
|
merchantReference: string;
|
|
69
|
+
status: string;
|
|
70
70
|
}, Promise<null>>;
|
|
71
71
|
//# sourceMappingURL=private.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abdssamie/adyen-payments",
|
|
3
3
|
"description": "A adyen payments component for Convex.",
|
|
4
|
-
"repository": "
|
|
5
|
-
"homepage": "https://
|
|
4
|
+
"repository": "git+https://gitlab.com/Abdssamie/adyen-payments.git",
|
|
5
|
+
"homepage": "https://gitlab.com/Abdssamie/adyen-payments#readme",
|
|
6
6
|
"bugs": {
|
|
7
|
-
"url": "https://
|
|
7
|
+
"url": "https://gitlab.com/Abdssamie/adyen-payments/issues"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"keywords": [
|
|
12
12
|
"convex",
|