@graphcommerce/docs 6.0.0-canary.41 → 6.0.0-canary.43

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.0.0-canary.43
4
+
5
+ ## 6.0.0-canary.42
6
+
3
7
  ## 6.0.0-canary.41
4
8
 
5
9
  ## 6.0.0-canary.40
@@ -39,7 +39,7 @@ const variables = {
39
39
  ```
40
40
 
41
41
  ```graphql
42
- mutation MyGatewayPaymentOptionsAndPlaceOrder(
42
+ mutation MyGatewayPaymentOptions(
43
43
  $cartId: String!
44
44
  $paymentMethod: PaymentMethodInput!
45
45
  ) {
@@ -47,11 +47,14 @@ mutation MyGatewayPaymentOptionsAndPlaceOrder(
47
47
  input: { cart_id: $cartId, payment_method: $paymentMethod }
48
48
  ) {
49
49
  cart {
50
- selected_payment_method {
51
- ...SelectedPaymentMethod
52
- }
50
+ ...PaymentMethodUpdated
53
51
  }
54
52
  }
53
+ }
54
+ ```
55
+
56
+ ```graphql
57
+ mutation MyGatewayPaymentOptionsAndPlaceOrder($cartId: String!) {
55
58
  placeOrder(input: { cart_id: $cartId }) {
56
59
  order {
57
60
  order_number
package/package.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "name": "@graphcommerce/docs",
3
3
  "homepage": "https://www.graphcommerce.org/docs",
4
4
  "repository": "github:graphcommerce-org/graphcommerce/docs",
5
- "version": "6.0.0-canary.41",
5
+ "version": "6.0.0-canary.43",
6
6
  "sideEffects": true,
7
7
  "devDependencies": {
8
- "@graphcommerce/prettier-config-pwa": "6.0.0-canary.41"
8
+ "@graphcommerce/prettier-config-pwa": "6.0.0-canary.43"
9
9
  },
10
10
  "prettier": "@graphcommerce/prettier-config-pwa"
11
11
  }