@nxtedition/lib 27.1.7 → 27.1.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.
Files changed (2) hide show
  1. package/app.d.ts +2 -5
  2. package/package.json +2 -2
package/app.d.ts CHANGED
@@ -10,13 +10,10 @@ export function makeApp<
10
10
  Records extends Record<string, unknown> = Record<string, unknown>,
11
11
  RpcMethods extends Record<string, RpcMethodDef> = Record<string, RpcMethodDef>,
12
12
  Config = Record<string, unknown>,
13
- >(
14
- appConfig: AppConfig<Config>,
15
- onTerminate?: (logger: Logger) => Promise<void>,
16
- ): App<Records, RpcMethods, Config>
13
+ >(appConfig: AppConfig<Config>, meta?: { url: URL }): App<Records, RpcMethods, Config>
17
14
 
18
15
  export interface AppConfig<Config = Record<string, unknown>> {
19
- name: string
16
+ name?: string
20
17
  module?: string
21
18
  version?: string
22
19
  config: Config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "27.1.7",
3
+ "version": "27.1.9",
4
4
  "license": "UNLICENSED",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",
@@ -92,5 +92,5 @@
92
92
  "pino": ">=7.0.0",
93
93
  "rxjs": "^7.0.0"
94
94
  },
95
- "gitHead": "f2cf9a710d64115dcdb6dbf57b7876d2a30fa0e2"
95
+ "gitHead": "b9f4002d3dae6b3fd6c05c53d72d66653a697637"
96
96
  }