@budibase/worker 3.34.9 → 3.34.11
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 +3 -3
- package/src/index.ts +5 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/worker",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "3.34.
|
|
4
|
+
"version": "3.34.11",
|
|
5
5
|
"description": "Budibase background service",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"scim-patch": "^0.8.1",
|
|
61
61
|
"scim2-parse-filter": "^0.2.8",
|
|
62
62
|
"uuid": "^8.3.2",
|
|
63
|
-
"yaml": "^2.8.
|
|
63
|
+
"yaml": "^2.8.3"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@types/jsonwebtoken": "9.0.3",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"supertest": "6.3.3",
|
|
80
80
|
"timekeeper": "2.2.0"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "4a270722b0744d3bd5b12554afd8f9aaa22e69f5"
|
|
83
83
|
}
|
package/src/index.ts
CHANGED
|
@@ -156,7 +156,10 @@ export default server.listen(parseInt(env.PORT || "4002"), async () => {
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
cache.docWritethrough.init()
|
|
159
|
-
// configure events
|
|
159
|
+
// configure events processors with pro dependencies
|
|
160
160
|
// can't integrate directly into backend-core due to cyclic issues
|
|
161
|
-
await events.processors.init(
|
|
161
|
+
await events.processors.init(
|
|
162
|
+
proSdk.auditLogs.write,
|
|
163
|
+
proSdk.licensing.client.getLicenseKey
|
|
164
|
+
)
|
|
162
165
|
})
|