@unchainedshop/api 2.5.4 → 2.5.5
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.
|
@@ -4,7 +4,7 @@ export default async function processNextWork(root, data, context) {
|
|
|
4
4
|
log(`mutation processNextWork ${worker}`, {
|
|
5
5
|
userId: context.userId,
|
|
6
6
|
});
|
|
7
|
-
const work = await context.modules.worker.processNextWork(
|
|
7
|
+
const work = await context.modules.worker.processNextWork(context, worker);
|
|
8
8
|
return work;
|
|
9
9
|
}
|
|
10
10
|
//# sourceMappingURL=processNextWork.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"processNextWork.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/worker/processNextWork.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,eAAe,CAC3C,IAAU,EACV,IAEC,EACD,OAAgB;IAEhB,MAAM,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAExB,GAAG,CAAC,4BAA4B,MAAM,EAAE,EAAE;QACxC,MAAM,EAAE,OAAO,CAAC,MAAM;KACvB,CAAC,CAAC;IAEH,MAAM,IAAI,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,
|
|
1
|
+
{"version":3,"file":"processNextWork.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/worker/processNextWork.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,eAAe,CAC3C,IAAU,EACV,IAEC,EACD,OAAgB;IAEhB,MAAM,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAExB,GAAG,CAAC,4BAA4B,MAAM,EAAE,EAAE;QACxC,MAAM,EAAE,OAAO,CAAC,MAAM;KACvB,CAAC,CAAC;IAEH,MAAM,IAAI,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;IAE3E,OAAO,IAAI,CAAC;AACd,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unchainedshop/api",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.5",
|
|
4
4
|
"main": "lib/api-index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./lib/api-index.js",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@metamask/eth-sig-util": "^7.0.0",
|
|
52
|
-
"@unchainedshop/core": "^2.5.
|
|
53
|
-
"@unchainedshop/events": "^2.5.
|
|
54
|
-
"@unchainedshop/logger": "^2.5.
|
|
55
|
-
"@unchainedshop/roles": "^2.5.
|
|
56
|
-
"@unchainedshop/utils": "^2.5.
|
|
52
|
+
"@unchainedshop/core": "^2.5.5",
|
|
53
|
+
"@unchainedshop/events": "^2.5.5",
|
|
54
|
+
"@unchainedshop/logger": "^2.5.5",
|
|
55
|
+
"@unchainedshop/roles": "^2.5.5",
|
|
56
|
+
"@unchainedshop/utils": "^2.5.5",
|
|
57
57
|
"accounting": "0.4.1",
|
|
58
58
|
"dataloader": "^2.2.2",
|
|
59
59
|
"graphql-scalars": "^1.22.2",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@types/graphql-upload": "^16.0.2",
|
|
67
67
|
"@types/locale": "^0.1.2",
|
|
68
68
|
"@types/node": "^18.18.0",
|
|
69
|
-
"@unchainedshop/types": "^2.5.
|
|
69
|
+
"@unchainedshop/types": "^2.5.5",
|
|
70
70
|
"express": "^4.18.2",
|
|
71
71
|
"graphql": "^16.8.1",
|
|
72
72
|
"jest": "^29.7.0",
|
|
@@ -14,7 +14,7 @@ export default async function processNextWork(
|
|
|
14
14
|
userId: context.userId,
|
|
15
15
|
});
|
|
16
16
|
|
|
17
|
-
const work = await context.modules.worker.processNextWork(
|
|
17
|
+
const work = await context.modules.worker.processNextWork(context, worker);
|
|
18
18
|
|
|
19
19
|
return work;
|
|
20
20
|
}
|