@graphcommerce/magento-customer 6.2.0-canary.73 → 6.2.0-canary.74

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,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.2.0-canary.74
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2006](https://github.com/graphcommerce-org/graphcommerce/pull/2006) [`80b60cb40`](https://github.com/graphcommerce-org/graphcommerce/commit/80b60cb404882260bd0e8184f3e54f4720925c96) - Bugfix for unintentionally overriding the billing address even if a default address was set. Also made prefix optional when creating an address ([@Jessevdpoel](https://github.com/Jessevdpoel))
8
+
3
9
  ## 6.2.0-canary.73
4
10
 
5
11
  ## 6.2.0-canary.72
@@ -1,5 +1,5 @@
1
1
  mutation CreateCustomerAddress(
2
- $prefix: String!
2
+ $prefix: String
3
3
  $firstname: String!
4
4
  $middlename: String
5
5
  $lastname: String!
@@ -2,6 +2,7 @@ fragment CustomerInfo on Customer {
2
2
  default_billing
3
3
  default_shipping
4
4
  addresses {
5
+ default_billing
5
6
  ...CustomerAddress
6
7
  }
7
8
  email
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-customer",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "6.2.0-canary.73",
5
+ "version": "6.2.0-canary.74",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,20 +12,20 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "6.2.0-canary.73",
16
- "@graphcommerce/prettier-config-pwa": "6.2.0-canary.73",
17
- "@graphcommerce/typescript-config-pwa": "6.2.0-canary.73"
15
+ "@graphcommerce/eslint-config-pwa": "6.2.0-canary.74",
16
+ "@graphcommerce/prettier-config-pwa": "6.2.0-canary.74",
17
+ "@graphcommerce/typescript-config-pwa": "6.2.0-canary.74"
18
18
  },
19
19
  "dependencies": {
20
- "@graphcommerce/ecommerce-ui": "6.2.0-canary.73",
21
- "@graphcommerce/framer-utils": "6.2.0-canary.73",
22
- "@graphcommerce/graphql": "6.2.0-canary.73",
23
- "@graphcommerce/graphql-mesh": "6.2.0-canary.73",
24
- "@graphcommerce/image": "6.2.0-canary.73",
25
- "@graphcommerce/magento-graphql": "6.2.0-canary.73",
26
- "@graphcommerce/magento-store": "6.2.0-canary.73",
27
- "@graphcommerce/next-ui": "6.2.0-canary.73",
28
- "@graphcommerce/react-hook-form": "6.2.0-canary.73"
20
+ "@graphcommerce/ecommerce-ui": "6.2.0-canary.74",
21
+ "@graphcommerce/framer-utils": "6.2.0-canary.74",
22
+ "@graphcommerce/graphql": "6.2.0-canary.74",
23
+ "@graphcommerce/graphql-mesh": "6.2.0-canary.74",
24
+ "@graphcommerce/image": "6.2.0-canary.74",
25
+ "@graphcommerce/magento-graphql": "6.2.0-canary.74",
26
+ "@graphcommerce/magento-store": "6.2.0-canary.74",
27
+ "@graphcommerce/next-ui": "6.2.0-canary.74",
28
+ "@graphcommerce/react-hook-form": "6.2.0-canary.74"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "@lingui/react": "^4.2.1",