@jetshop/template-trend 6.1.0-alpha.996f4762 → 6.1.0
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/package.json +5 -5
- package/schema.graphql +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetshop/template-trend",
|
|
3
|
-
"version": "6.1.0
|
|
3
|
+
"version": "6.1.0",
|
|
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": "^6.1.0
|
|
48
|
+
"@jetshop/core": "^6.1.0",
|
|
49
49
|
"@jetshop/flight-shortcodes": "^2.0.10",
|
|
50
|
-
"@jetshop/intl": "^6.1.0
|
|
51
|
-
"@jetshop/react-scripts": "^6.1.0
|
|
52
|
-
"@jetshop/ui": "^6.1.0
|
|
50
|
+
"@jetshop/intl": "^6.1.0",
|
|
51
|
+
"@jetshop/react-scripts": "^6.1.0",
|
|
52
|
+
"@jetshop/ui": "^6.1.0",
|
|
53
53
|
"@react-google-maps/api": "~2.18.1",
|
|
54
54
|
"prop-types": "^15.6.2",
|
|
55
55
|
"react": "^18",
|
package/schema.graphql
CHANGED
|
@@ -1937,7 +1937,7 @@ type Mutation {
|
|
|
1937
1937
|
One of email, pid, externalId, memberNumber or customerId is required, along with a password.
|
|
1938
1938
|
Returns an authorization token if the login was successful.
|
|
1939
1939
|
"""
|
|
1940
|
-
login(password: String, email: String, pid: String, externalId: String, memberNumber: String, externalHashId: String, timeStamp: String,
|
|
1940
|
+
login(password: String, email: String, pid: String, externalId: String, memberNumber: String, externalHashId: String, timeStamp: String, cartId: String): LoginResponse
|
|
1941
1941
|
|
|
1942
1942
|
"""
|
|
1943
1943
|
Requires a valid email and returns boolean value if successful, otherwise an error will be thrown
|
|
@@ -2114,6 +2114,7 @@ The response will contain a authorization token if the login was successful
|
|
|
2114
2114
|
"""
|
|
2115
2115
|
type LoginResponse {
|
|
2116
2116
|
token: Token!
|
|
2117
|
+
customerId: Int
|
|
2117
2118
|
}
|
|
2118
2119
|
|
|
2119
2120
|
type RequestPasswordResetResult {
|