vona-module-a-version 5.0.37 → 5.0.39

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.
@@ -8,7 +8,7 @@ export * from '../entity/viewRecord.ts';
8
8
  import type { IEntityOptionsVersion } from '../entity/version.ts';
9
9
  import type { IEntityOptionsVersionInit } from '../entity/versionInit.ts';
10
10
  import type { IEntityOptionsViewRecord } from '../entity/viewRecord.ts';
11
- import 'vona';
11
+ import 'vona-module-a-orm';
12
12
  declare module 'vona-module-a-orm' {
13
13
  interface IEntityRecord {
14
14
  'a-version:version': IEntityOptionsVersion;
@@ -62,7 +62,7 @@ export * from '../model/viewRecord.ts';
62
62
  import type { IModelOptionsVersion } from '../model/version.ts';
63
63
  import type { IModelOptionsVersionInit } from '../model/versionInit.ts';
64
64
  import type { IModelOptionsViewRecord } from '../model/viewRecord.ts';
65
- import 'vona';
65
+ import 'vona-module-a-orm';
66
66
  declare module 'vona-module-a-orm' {
67
67
  interface IModelRecord {
68
68
  'a-version:version': IModelOptionsVersion;
@@ -76,18 +76,21 @@ declare module 'vona-module-a-version' {
76
76
  interface ModelVersion {
77
77
  get $beanFullName(): 'a-version.model.version';
78
78
  get $onionName(): 'a-version:version';
79
+ get $onionOptions(): IModelOptionsVersion;
79
80
  }
80
81
  interface ModelVersionInit {
81
82
  }
82
83
  interface ModelVersionInit {
83
84
  get $beanFullName(): 'a-version.model.versionInit';
84
85
  get $onionName(): 'a-version:versionInit';
86
+ get $onionOptions(): IModelOptionsVersionInit;
85
87
  }
86
88
  interface ModelViewRecord {
87
89
  }
88
90
  interface ModelViewRecord {
89
91
  get $beanFullName(): 'a-version.model.viewRecord';
90
92
  get $onionName(): 'a-version:viewRecord';
93
+ get $onionOptions(): IModelOptionsViewRecord;
91
94
  }
92
95
  }
93
96
  /** model: end */
@@ -196,7 +199,7 @@ declare module 'vona-module-a-orm' {
196
199
  /** service: begin */
197
200
  export * from '../service/database.ts';
198
201
  export * from '../service/version.ts';
199
- import 'vona';
202
+ import 'vona-module-a-bean';
200
203
  declare module 'vona-module-a-bean' {
201
204
  interface IServiceRecord {
202
205
  'a-version:database': never;
@@ -266,8 +269,8 @@ declare module 'vona-module-a-event' {
266
269
  /** event: end */
267
270
  /** meta: begin */
268
271
  export * from '../bean/meta.version.ts';
269
- import 'vona';
270
- declare module 'vona' {
272
+ import 'vona-module-a-meta';
273
+ declare module 'vona-module-a-meta' {
271
274
  interface IMetaRecord {
272
275
  'a-version:version': never;
273
276
  }
@@ -299,18 +302,21 @@ declare module 'vona-module-a-version' {
299
302
  interface StartupDatabaseInit {
300
303
  get $beanFullName(): 'a-version.startup.databaseInit';
301
304
  get $onionName(): 'a-version:databaseInit';
305
+ get $onionOptions(): IDecoratorStartupOptions;
302
306
  }
303
307
  interface StartupDatabaseName {
304
308
  }
305
309
  interface StartupDatabaseName {
306
310
  get $beanFullName(): 'a-version.startup.databaseName';
307
311
  get $onionName(): 'a-version:databaseName';
312
+ get $onionOptions(): IDecoratorStartupOptions;
308
313
  }
309
314
  interface StartupInstanceInit {
310
315
  }
311
316
  interface StartupInstanceInit {
312
317
  get $beanFullName(): 'a-version.startup.instanceInit';
313
318
  get $onionName(): 'a-version:instanceInit';
319
+ get $onionOptions(): IDecoratorStartupOptions;
314
320
  }
315
321
  }
316
322
  export declare const locales: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-module-a-version",
3
3
  "type": "module",
4
- "version": "5.0.37",
4
+ "version": "5.0.39",
5
5
  "vonaModule": {
6
6
  "fileVersion": 1,
7
7
  "dependencies": {},