@cabloy/module-info 1.2.4 → 1.2.6

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.
@@ -3,6 +3,13 @@ import { ZovaOnionOptionsMeta } from './zova.js';
3
3
  export type TypeProjectMode = 'front' | 'api' | 'zova' | 'vona';
4
4
  export type TypeProjectEntityType = 'module' | 'suite';
5
5
  export type TypeBrandName = 'zova' | 'vona';
6
+ export interface ICapabilitiesAop {
7
+ enable?: boolean;
8
+ meta?: ZovaOnionOptionsMeta;
9
+ match?: string | string[];
10
+ ignore?: string | string[];
11
+ }
12
+ export type TypeCapabilitiesAops = Record<string, ICapabilitiesAop>;
6
13
  export interface IModuleCapabilities {
7
14
  monkey?: boolean;
8
15
  sync?: boolean;
@@ -10,6 +17,7 @@ export interface IModuleCapabilities {
10
17
  theme?: boolean;
11
18
  locale?: boolean;
12
19
  preload?: boolean;
20
+ aops?: TypeCapabilitiesAops;
13
21
  }
14
22
  export interface IModuleCapabilitiesZova extends IModuleCapabilities {
15
23
  meta?: ZovaOnionOptionsMeta;
@@ -97,6 +105,8 @@ export interface IModulePackage {
97
105
  dependencies: Record<string, string>;
98
106
  }
99
107
  export interface IGlobBeanFile {
108
+ sceneName: string;
109
+ sceneNameCapitalize: string;
100
110
  file: string;
101
111
  fileContent: string;
102
112
  fileName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/module-info",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "cabloy module-info",
5
5
  "publishConfig": {
6
6
  "access": "public"