rsl-api-106 106.291.0 → 106.291.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.
|
@@ -5,14 +5,16 @@ const client_1 = require("@apollo/client");
|
|
|
5
5
|
const cart_1 = require("../outputs/cart");
|
|
6
6
|
const saveSepteoPaymentsTransactionMutation = () => {
|
|
7
7
|
return (0, client_1.gql) `
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
8
|
+
mutation saveSepteoPaymentsTransaction($session: Session!, $input: SaveSepteoPaymentsTransactionInput!) {
|
|
9
|
+
saveSepteoPaymentsTransaction(
|
|
10
|
+
session: $session,
|
|
11
|
+
input: $input
|
|
12
|
+
) {
|
|
13
|
+
cart {
|
|
14
|
+
${cart_1.cartOutput}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
`;
|
|
17
19
|
};
|
|
18
20
|
exports.saveSepteoPaymentsTransactionMutation = saveSepteoPaymentsTransactionMutation;
|