@restorecommerce/facade 0.3.9 → 0.3.12
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 +33 -0
- package/dist/gql/protos/graphql.js +6 -5
- package/dist/gql/protos/registry.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,39 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [0.3.12](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@0.3.11...@restorecommerce/facade@0.3.12) (2022-03-23)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **facade:** include scope for traversal operation as well ([cf57b73](https://github.com/restorecommerce/libs/commit/cf57b733f1788fd07d8a63ca0c9614c954b577d9))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
## [0.3.11](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@0.3.10...@restorecommerce/facade@0.3.11) (2022-03-15)
|
18
|
+
|
19
|
+
|
20
|
+
### Bug Fixes
|
21
|
+
|
22
|
+
* decode only if data exists (prevent undefined error) ([3137108](https://github.com/restorecommerce/libs/commit/3137108e2524596628663ea2a81cdb24b46c1ee3))
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
## [0.3.10](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@0.3.9...@restorecommerce/facade@0.3.10) (2022-03-15)
|
29
|
+
|
30
|
+
|
31
|
+
### Bug Fixes
|
32
|
+
|
33
|
+
* **facade:** set target scope if it exists ([0597107](https://github.com/restorecommerce/libs/commit/0597107001e68fcbe19a51a8621e603e9a7610ad))
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
6
39
|
## [0.3.9](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@0.3.8...@restorecommerce/facade@0.3.9) (2022-03-14)
|
7
40
|
|
8
41
|
**Note:** Version bump only for package @restorecommerce/facade
|
@@ -117,7 +117,7 @@ const recursiveBufferToValue = (data, model) => {
|
|
117
117
|
return data;
|
118
118
|
}
|
119
119
|
if (model instanceof graphql_1.GraphQLObjectType) {
|
120
|
-
if (model.name === 'GoogleProtobufAny') {
|
120
|
+
if (model.name === 'GoogleProtobufAny' && (data === null || data === void 0 ? void 0 : data.value)) {
|
121
121
|
// TODO Use encoded once resource base supports it
|
122
122
|
const decoded = JSON.parse(data.value.toString());
|
123
123
|
return {
|
@@ -178,11 +178,12 @@ const getGQLResolverFunctions = (service, key, serviceKey, grpcClientConfig) =>
|
|
178
178
|
return obj;
|
179
179
|
}
|
180
180
|
obj[methodName] = async (args, context) => {
|
181
|
-
var _a;
|
181
|
+
var _a, _b;
|
182
182
|
const client = context[key].client;
|
183
183
|
const service = client[serviceKey];
|
184
184
|
try {
|
185
185
|
const converted = await (0, exports.recursiveUploadToBuffer)(args.input, typing.input);
|
186
|
+
const scope = (_a = args === null || args === void 0 ? void 0 : args.input) === null || _a === void 0 ? void 0 : _a.scope;
|
186
187
|
let req = typing.processor.fromPartial(converted);
|
187
188
|
// convert enum strings to integers
|
188
189
|
req = (0, utils_1.convertEnumToInt)(typing, req);
|
@@ -192,13 +193,13 @@ const getGQLResolverFunctions = (service, key, serviceKey, grpcClientConfig) =>
|
|
192
193
|
if (authToken && authToken.startsWith('Bearer ')) {
|
193
194
|
req.subject.token = authToken.split(' ')[1];
|
194
195
|
}
|
195
|
-
if (
|
196
|
-
req.subject.scope =
|
196
|
+
if (scope) {
|
197
|
+
req.subject.scope = scope;
|
197
198
|
}
|
198
199
|
}
|
199
200
|
let realMethod = method.name;
|
200
201
|
if (Mutate.indexOf(method.name) > -1) {
|
201
|
-
const mode = (
|
202
|
+
const mode = (_b = args === null || args === void 0 ? void 0 : args.input) === null || _b === void 0 ? void 0 : _b.mode;
|
202
203
|
if (!mode) {
|
203
204
|
throw new Error('Please specify mode');
|
204
205
|
}
|
@@ -35,7 +35,7 @@ exports.IGoogleProtobufAny = new definition_1.GraphQLInputObjectType({
|
|
35
35
|
});
|
36
36
|
const googleProtobufAnyName = '.google.protobuf.Any';
|
37
37
|
const Mutate = ['Create', 'Update', 'Upsert'];
|
38
|
-
const
|
38
|
+
const CRUD_TRAVERSAL_OP_NAMES = ['Cretae', 'Update', 'Upsert', 'Delete', 'Read', 'Traversal'];
|
39
39
|
const TodoScalar = new definition_1.GraphQLScalarType({
|
40
40
|
name: 'TodoScalar',
|
41
41
|
serialize: () => {
|
@@ -150,7 +150,7 @@ const registerTyping = (protoPackage, message, methodDef, opts, inputOpts) => {
|
|
150
150
|
insertMode = true;
|
151
151
|
}
|
152
152
|
// add scope
|
153
|
-
if ((
|
153
|
+
if ((CRUD_TRAVERSAL_OP_NAMES.indexOf(method.name) > -1) && type === method.inputType) {
|
154
154
|
crudOperation = true;
|
155
155
|
}
|
156
156
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@restorecommerce/facade",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.12",
|
4
4
|
"description": "Facade for Restorecommerce microservices",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -108,5 +108,5 @@
|
|
108
108
|
"publishConfig": {
|
109
109
|
"access": "public"
|
110
110
|
},
|
111
|
-
"gitHead": "
|
111
|
+
"gitHead": "b2dfd584e322bd76fa4c78f1aa7f1893607f3fca"
|
112
112
|
}
|