@common-stack/core 8.3.1-alpha.11 → 8.3.1-alpha.13

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.
@@ -1,4 +1,4 @@
1
- import { ContributionExtensionName, ContributionSchemaId, IPermissionsFlattenedKeys, IConfigurationsFlattenedKeys, ConfigurationTarget } from 'common';
1
+ import { ContributionExtensionName, ContributionSchemaId, IPermissionsFlattenedKeys, IConfigurationsFlattenedKeys, IPageSettingsOptionsInput } from 'common';
2
2
  import { IAuthorityConfig } from './authority';
3
3
  import { IRollupBuildGenerated } from './rollupRouteGenerated';
4
4
  import { IViteSettings } from './viteSettings';
@@ -34,32 +34,59 @@ export interface IResourceParams {
34
34
  /**
35
35
  * @name Configuration Key
36
36
  * @description Configuration key for resource parameters.
37
+ * @deprecated Use configKey in options instead.
37
38
  */
38
39
  configKey?: string;
39
40
  /**
40
41
  * @name Resource Path
41
42
  * @description Path related to the resource.
43
+ * @deprecated Use resourceType instead.
42
44
  */
43
45
  path?: string;
44
46
  /**
45
47
  * @name Extension Name
46
48
  * @description Name of the extension for resource identification in dataLoader.
49
+ * @deprecated Use options.extensionName instead.
47
50
  */
48
51
  extensionName?: ContributionExtensionName;
49
52
  /**
50
53
  * @name Schema ID
51
54
  * @description Schema identifier for configuration and preferences input.
55
+ * @deprecated Use options.schemaId instead.
52
56
  */
53
57
  schemaId?: ContributionSchemaId;
54
58
  /**
55
- * @name Target
56
- * @description Configuration target for determining the configuration scope.
59
+ * @name Options
60
+ * @description Page settings options that control configuration fetching.
61
+ * This provides a structured way to pass all configuration options together.
62
+ * When both top-level fields (schemaId, target, extensionName, configKey) and options are provided,
63
+ * the options field takes precedence. These options can also be encoded in URI query params with 'meta_' prefix.
64
+ */
65
+ options?: IPageSettingsOptionsInput;
66
+ /**
67
+ * @deprecated @name Is External
68
+ * @description Indicates if the resource is external.
57
69
  */
58
- target?: ConfigurationTarget;
59
70
  isExternal?: boolean;
71
+ /**
72
+ * @name Organization
73
+ * @description Organization identifier for resource scoping.
74
+ */
60
75
  organization?: string;
76
+ /**
77
+ * @name Resource Group
78
+ * @description Group identifier for resource categorization.
79
+ */
61
80
  resourceGroup?: string;
81
+ /**
82
+ * @name Resource Type
83
+ * @description Type of the resource for identification.
84
+ */
62
85
  resourceType?: string;
86
+ /**
87
+ * @name Resource ID
88
+ * @description Unique identifier for the resource.
89
+ */
63
90
  resourceId?: string;
64
91
  }
65
92
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/core",
3
- "version": "8.3.1-alpha.11",
3
+ "version": "8.3.1-alpha.13",
4
4
  "description": "Common core for higher packages to depend on",
5
5
  "license": "UNLICENSED",
6
6
  "author": "CDMBase LLC",
@@ -21,7 +21,7 @@
21
21
  "watch": "yarn build:lib:watch"
22
22
  },
23
23
  "devDependencies": {
24
- "common": "8.3.1-alpha.7"
24
+ "common": "8.3.1-alpha.12"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "@cdm-logger/core": ">=9.0.17"
@@ -29,7 +29,7 @@
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "gitHead": "e8fa6b1a137cc051b6f013026564d526739d7b0c",
32
+ "gitHead": "cfa241bc137e9a9aa6ed811496737585c133f870",
33
33
  "typescript": {
34
34
  "definition": "lib/index.d.ts"
35
35
  }