vona-core 5.0.41 → 5.0.42

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.
@@ -13,7 +13,7 @@ export declare class AppMeta extends BeanSimple {
13
13
  ctxCounter: CtxCounter;
14
14
  isProd: boolean;
15
15
  isTest: boolean;
16
- isLocal: boolean;
16
+ isDev: boolean;
17
17
  error: ErrorClass;
18
18
  logger: AppLogger;
19
19
  locale: AppLocale;
@@ -12,7 +12,7 @@ export class AppMeta extends BeanSimple {
12
12
  ctxCounter;
13
13
  isProd;
14
14
  isTest;
15
- isLocal;
15
+ isDev;
16
16
  error;
17
17
  logger;
18
18
  locale;
@@ -65,7 +65,7 @@ export class AppMeta extends BeanSimple {
65
65
  const mode = this.app.config.meta.mode;
66
66
  this.isProd = mode === 'prod';
67
67
  this.isTest = mode === 'test';
68
- this.isLocal = mode === 'dev';
68
+ this.isDev = mode === 'dev';
69
69
  }
70
70
  async waitAppStarted() {
71
71
  return new Promise((resolve, reject) => {
@@ -3,7 +3,7 @@ export interface IInstanceRecord {
3
3
  '': never;
4
4
  }
5
5
  export interface ConfigInstanceBase {
6
- instanceName: keyof IInstanceRecord;
6
+ name: keyof IInstanceRecord;
7
7
  password?: string;
8
8
  title?: string;
9
9
  config?: VonaConfigOptional;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-core",
3
3
  "type": "module",
4
- "version": "5.0.41",
4
+ "version": "5.0.42",
5
5
  "description": "vona",
6
6
  "publishConfig": {
7
7
  "access": "public"