vona-core 5.0.64 → 5.0.66

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,5 +13,5 @@ export declare class BeanBaseSimple extends BeanSimple {
13
13
  get $beanInstanceKey(): string;
14
14
  protected get $beanOptions(): IDecoratorBeanOptionsBase;
15
15
  get $onionName(): string;
16
- protected get $onionOptions(): unknown | undefined;
16
+ get $onionOptions(): unknown | undefined;
17
17
  }
@@ -1,4 +1,4 @@
1
- export declare enum EnumAppEvent {
2
- AppStarted = "eb:event:appStarted",
3
- AppStartError = "eb:event:appStartError"
4
- }
1
+ export declare const EnumAppEvent: {
2
+ readonly AppStarted: "eb:event:appStarted";
3
+ readonly AppStartError: "eb:event:appStartError";
4
+ };
@@ -1,5 +1,4 @@
1
- export var EnumAppEvent;
2
- (function (EnumAppEvent) {
3
- EnumAppEvent["AppStarted"] = "eb:event:appStarted";
4
- EnumAppEvent["AppStartError"] = "eb:event:appStartError";
5
- })(EnumAppEvent || (EnumAppEvent = {}));
1
+ export const EnumAppEvent = {
2
+ AppStarted: 'eb:event:appStarted',
3
+ AppStartError: 'eb:event:appStartError',
4
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-core",
3
3
  "type": "module",
4
- "version": "5.0.64",
4
+ "version": "5.0.66",
5
5
  "description": "vona",
6
6
  "publishConfig": {
7
7
  "access": "public"