@jetshop/core 6.1.0 → 6.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.
@@ -3,6 +3,5 @@ mutation SignUp($input: SignUpInput!) {
3
3
  token {
4
4
  value
5
5
  }
6
- customerId
7
6
  }
8
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetshop/core",
3
- "version": "6.1.0",
3
+ "version": "6.1.1",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "**/*.js",
package/types.d.ts CHANGED
@@ -2059,6 +2059,7 @@ export type MutationLoginArgs = {
2059
2059
  memberNumber?: Maybe<Scalars['String']>;
2060
2060
  externalHashId?: Maybe<Scalars['String']>;
2061
2061
  timeStamp?: Maybe<Scalars['String']>;
2062
+ customerId?: Maybe<Scalars['Int']>;
2062
2063
  cartId?: Maybe<Scalars['String']>;
2063
2064
  };
2064
2065