@common-stack/core 7.1.1-alpha.62 → 7.2.1-alpha.10

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.
@@ -88,7 +88,7 @@ export interface IRouteModule extends IMenuDataItem, IGeneratedWrapperOptions {
88
88
  * @name Authentication Requirement
89
89
  * @description Indicates if authentication is required for the route.
90
90
  */
91
- auth?: boolean;
91
+ auth?: boolean | 'optional';
92
92
  /**
93
93
  * @name Props
94
94
  * @description Extra properties for the route, including initial parameters and UI options.
@@ -136,7 +136,7 @@ export interface IGeneratedWrapperOptions {
136
136
  * @name Extra Links
137
137
  * @description Additional links for the route.
138
138
  */
139
- extraLink?: any[];
139
+ extraLinks?: any[];
140
140
  /**
141
141
  * @name Authority Configuration
142
142
  * @description Configuration for authority and permission checks.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/core",
3
- "version": "7.1.1-alpha.62",
3
+ "version": "7.2.1-alpha.10",
4
4
  "description": "Common core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -21,12 +21,12 @@
21
21
  "watch": "yarn build:lib:watch"
22
22
  },
23
23
  "devDependencies": {
24
- "common": "7.1.1-alpha.49"
24
+ "common": "7.2.1-alpha.5"
25
25
  },
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "b66c8fc2489ff21628b1b0b0ad2ab9ab27f67d59",
29
+ "gitHead": "05bb2c0157ad3a623351c08994b0eccc2609b7f0",
30
30
  "typescript": {
31
31
  "definition": "lib/index.d.ts"
32
32
  }