@things-factory/shell 8.0.61 → 8.0.63

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/shell",
3
- "version": "8.0.61",
3
+ "version": "8.0.63",
4
4
  "description": "Core module for framework",
5
5
  "bin": {
6
6
  "things-factory": "bin/things-factory",
@@ -134,5 +134,5 @@
134
134
  "pg": "^8.7.3",
135
135
  "sqlite3": "^5.0.8"
136
136
  },
137
- "gitHead": "72a14cc70333dcba45b4c1a6ca8140a8dc1c87a5"
137
+ "gitHead": "24ba37efe2e871175a9e4fd816d02d9807491b91"
138
138
  }
@@ -139,7 +139,7 @@ const bootstrap = async () => {
139
139
  })
140
140
 
141
141
  var subscriptionMiddleware = []
142
- process.emit('bootstrap-module-subscription' as any, app, subscriptionMiddleware)
142
+ process.emit('bootstrap-module-subscription' as any, app, subscriptionMiddleware as any)
143
143
 
144
144
  const builtSchema = await schema()
145
145
 
@@ -253,7 +253,7 @@ const bootstrap = async () => {
253
253
 
254
254
  /* routers */
255
255
  const ssoMiddlewares = []
256
- process.emit('bootstrap-collect-sso-middleware' as any, null, ssoMiddlewares)
256
+ process.emit('bootstrap-collect-sso-middleware' as any, null, ssoMiddlewares as any)
257
257
  app.ssoMiddlewares = ssoMiddlewares
258
258
 
259
259
  process.emit('bootstrap-module-global-public-route' as any, app, globalPublicRouter)
package/server/server.ts CHANGED
@@ -115,7 +115,7 @@ const bootstrap = async () => {
115
115
  })
116
116
 
117
117
  var subscriptionMiddleware = []
118
- process.emit('bootstrap-module-subscription' as any, app, subscriptionMiddleware)
118
+ process.emit('bootstrap-module-subscription' as any, app, subscriptionMiddleware as any)
119
119
 
120
120
  const builtSchema = await schema()
121
121
 
@@ -223,7 +223,7 @@ const bootstrap = async () => {
223
223
 
224
224
  /* routers */
225
225
  const ssoMiddlewares = []
226
- process.emit('bootstrap-collect-sso-middleware' as any, null, ssoMiddlewares)
226
+ process.emit('bootstrap-collect-sso-middleware' as any, null, ssoMiddlewares as any)
227
227
  app.ssoMiddlewares = ssoMiddlewares
228
228
 
229
229
  process.emit('bootstrap-module-global-public-route' as any, app, globalPublicRouter)