@longvansoftware/storefront-js-client 3.0.8 → 3.0.9
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.
|
@@ -121,8 +121,8 @@ exports.LINKING_USER_LOGIN_AND_USER_DETAIL_MUTATION = (0, graphql_tag_1.gql) `
|
|
|
121
121
|
}
|
|
122
122
|
`;
|
|
123
123
|
exports.CREATE_USER_DETAIL_MUTATION = (0, graphql_tag_1.gql) `
|
|
124
|
-
mutation CreateUserDetail($userLoginId: String!, $
|
|
125
|
-
createUserDetail(userLoginId: $userLoginId,
|
|
124
|
+
mutation CreateUserDetail($userLoginId: String!, $orgId: String!) {
|
|
125
|
+
createUserDetail(userLoginId: $userLoginId, orgId: $orgId) {
|
|
126
126
|
partyId
|
|
127
127
|
orgId
|
|
128
128
|
fullName
|
|
@@ -162,7 +162,7 @@ class AuthService extends serviceSDK_1.Service {
|
|
|
162
162
|
return __awaiter(this, void 0, void 0, function* () {
|
|
163
163
|
const variables = {
|
|
164
164
|
userLoginId,
|
|
165
|
-
|
|
165
|
+
orgId: this.orgId,
|
|
166
166
|
};
|
|
167
167
|
try {
|
|
168
168
|
const response = yield this.graphqlMutation(mutations_1.CREATE_USER_DETAIL_MUTATION, variables);
|