@common-stack/core
Advanced tools
Comparing version 6.0.6-alpha.91 to 6.0.6-alpha.104
@@ -19,2 +19,3 @@ export interface IRoutePageExportFlags { | ||
hasHeaders?: boolean; | ||
disableQueryGenerator?: boolean; | ||
} | ||
@@ -21,0 +22,0 @@ export interface ILoaderReturnInfo { |
@@ -20,2 +20,29 @@ import { IAuthorityConfig } from './authority'; | ||
} | ||
export interface IResourceParams { | ||
/** | ||
* @name Fragment | ||
* @description Fragment of the resource path. | ||
*/ | ||
fragment?: string; | ||
/** | ||
* @name Query Parameters | ||
* @description Query parameters for resource handling. | ||
*/ | ||
query?: Record<string, string>; | ||
/** | ||
* @name Configuration Key | ||
* @description Configuration key for resource parameters. | ||
*/ | ||
configKey?: string; | ||
/** | ||
* @name Resource Path | ||
* @description Path related to the resource. | ||
*/ | ||
path?: string; | ||
isExternal: boolean; | ||
organization?: string; | ||
projectId?: string; | ||
resourceType?: string; | ||
resourceId?: string; | ||
} | ||
/** | ||
@@ -55,24 +82,3 @@ * @name IMissingWrapperOptions | ||
*/ | ||
resourceParams?: { | ||
/** | ||
* @name Fragment | ||
* @description Fragment of the resource path. | ||
*/ | ||
fragment?: string; | ||
/** | ||
* @name Query Parameters | ||
* @description Query parameters for resource handling. | ||
*/ | ||
query?: Record<string, string>; | ||
/** | ||
* @name Configuration Key | ||
* @description Configuration key for resource parameters. | ||
*/ | ||
configKey?: string; | ||
/** | ||
* @name Resource Path | ||
* @description Path related to the resource. | ||
*/ | ||
path?: string; | ||
}; | ||
resourceParams?: IResourceParams; | ||
}; | ||
@@ -79,0 +85,0 @@ /** |
{ | ||
"name": "@common-stack/core", | ||
"version": "6.0.6-alpha.91", | ||
"version": "6.0.6-alpha.104", | ||
"description": "Common core for higher packages to depend on", | ||
@@ -29,3 +29,3 @@ "license": "ISC", | ||
}, | ||
"gitHead": "e961c194190a018fca6bcc40999e431f57430c4c" | ||
"gitHead": "b0c1313acf4b328cbd1df20c9648b4415104ae81" | ||
} |
22865
613