@common-stack/core 8.1.1-alpha.2 → 8.1.1-alpha.3
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.
|
@@ -77,6 +77,18 @@ export interface IGeneratedWrapperOptions {
|
|
|
77
77
|
* @description Array of middleware functions for the route.
|
|
78
78
|
*/
|
|
79
79
|
middlewares?: any[];
|
|
80
|
+
/**
|
|
81
|
+
* @name Has Middleware
|
|
82
|
+
* @description Indicates if the route has middleware conditions that require execution.
|
|
83
|
+
* Calculated from requireAuth, middlewares, authority, configurations, and extraPermissions.
|
|
84
|
+
*/
|
|
85
|
+
hasMiddleware?: boolean;
|
|
86
|
+
/**
|
|
87
|
+
* @name Has Queries
|
|
88
|
+
* @description Indicates if the route has GraphQL queries defined.
|
|
89
|
+
* Calculated from the queries object.
|
|
90
|
+
*/
|
|
91
|
+
hasQueries?: boolean;
|
|
80
92
|
/**
|
|
81
93
|
* @name Client Middlewares
|
|
82
94
|
* @description Array of client-side middleware paths applied to the route.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/core",
|
|
3
|
-
"version": "8.1.1-alpha.
|
|
3
|
+
"version": "8.1.1-alpha.3",
|
|
4
4
|
"description": "Common core for higher packages to depend on",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"typescript": {
|
|
30
30
|
"definition": "lib/index.d.ts"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "a0fd29583e729bd7d90ee599ddf2b3d0c9b057bc"
|
|
33
33
|
}
|