@nxtedition/lib 27.1.7 → 27.1.8

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 -2
  2. package/package.json +2 -2
package/app.d.ts CHANGED
@@ -12,11 +12,11 @@ export function makeApp<
12
12
  Config = Record<string, unknown>,
13
13
  >(
14
14
  appConfig: AppConfig<Config>,
15
- onTerminate?: (logger: Logger) => Promise<void>,
15
+ meta?: (logger: Logger) => Promise<void> | { name: string; version: string }
16
16
  ): App<Records, RpcMethods, Config>
17
17
 
18
18
  export interface AppConfig<Config = Record<string, unknown>> {
19
- name: string
19
+ name?: string
20
20
  module?: string
21
21
  version?: string
22
22
  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.8",
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": "bf74c9ba8ce2b9771a306c9c010534ff2aba78d1"
96
96
  }