@jetshop/template-trend 5.17.0-alpha.a95a5f55 → 5.17.0-alpha.aa534f7a

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/schema.graphql +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetshop/template-trend",
3
- "version": "5.17.0-alpha.a95a5f55",
3
+ "version": "5.17.0-alpha.aa534f7a",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "build": "react-scripts build",
@@ -45,11 +45,11 @@
45
45
  ]
46
46
  },
47
47
  "dependencies": {
48
- "@jetshop/core": "^5.17.0-alpha.a95a5f55",
48
+ "@jetshop/core": "^5.17.0-alpha.aa534f7a",
49
49
  "@jetshop/flight-shortcodes": "^2.0.10",
50
- "@jetshop/intl": "^5.17.0-alpha.a95a5f55",
51
- "@jetshop/react-scripts": "^5.17.0-alpha.a95a5f55",
52
- "@jetshop/ui": "^5.17.0-alpha.a95a5f55",
50
+ "@jetshop/intl": "^5.17.0-alpha.aa534f7a",
51
+ "@jetshop/react-scripts": "^5.17.0-alpha.aa534f7a",
52
+ "@jetshop/ui": "^5.17.0-alpha.aa534f7a",
53
53
  "@react-google-maps/api": "~1.7.0",
54
54
  "prop-types": "^15.6.2",
55
55
  "react": "^18",
package/schema.graphql CHANGED
@@ -1977,7 +1977,7 @@ type Mutation {
1977
1977
  updateCustomerGroup(customerGroupAccessCode: String!): UpdateCustomerGroupResult
1978
1978
 
1979
1979
  """
1980
- This mutation's purpose is to update a existing customer's information. An authorization token is needed in the request, in order to be able to update the customer.
1980
+ This mutation's purpose is to update an existing customer's information. An authorization token is needed in the request, in order to be able to update the customer.
1981
1981
  """
1982
1982
  updateCustomer(input: CustomerUpdateInput!): CustomerUpdateResponse
1983
1983
 
@@ -2237,6 +2237,7 @@ type CustomerUpdateResponse {
2237
2237
 
2238
2238
  input CustomerUpdateInput {
2239
2239
  pid: String
2240
+ emailAddress: String
2240
2241
  organizationNumber: String
2241
2242
  billingAddress: CustomerUpdateBillingAddressInput!
2242
2243
  deliveryAddresses: [CustomerUpdateDeliveryAddressInput]