@common-stack/core 7.1.1-alpha.14 → 7.1.1-alpha.32

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,3 +1,4 @@
1
+ import { ContributionExtensionName, ContributionSechemaId } from 'common';
1
2
  import { IAuthorityConfig } from './authority';
2
3
  import { IRollupBuildGenerated } from './rollupRouteGenerated';
3
4
  import { IViteSettings } from './viteSettings';
@@ -38,6 +39,16 @@ export interface IResourceParams {
38
39
  * @description Path related to the resource.
39
40
  */
40
41
  path?: string;
42
+ /**
43
+ * @name Extension Name
44
+ * @description Name of the extension for resource identification in dataLoader.
45
+ */
46
+ extensionName?: ContributionExtensionName;
47
+ /**
48
+ * @name Schema ID
49
+ * @description Schema identifier for configuration and preferences input.
50
+ */
51
+ schemaId?: ContributionSechemaId;
41
52
  isExternal?: boolean;
42
53
  organization?: string;
43
54
  resourceGroup?: string;
@@ -77,8 +88,9 @@ export interface IGeneratedWrapperOptions {
77
88
  /**
78
89
  * @name Resource Parameters
79
90
  * @description Parameters specific to resource handling.
91
+ * Can be a single IResourceParams object or an array of IResourceParams objects.
80
92
  */
81
- resourceParams?: IResourceParams;
93
+ resourceParams?: IResourceParams | IResourceParams[];
82
94
  };
83
95
  /**
84
96
  * @name Configurations
@@ -130,6 +142,16 @@ export interface IGeneratedWrapperOptions {
130
142
  * @description Configuration for authority and permission checks.
131
143
  */
132
144
  authorityConfig?: IAuthorityConfig;
145
+ /**
146
+ * @name Extension Name
147
+ * @description Name of the extension for resource identification in dataLoader.
148
+ */
149
+ extensionName?: string;
150
+ /**
151
+ * @name Schema ID
152
+ * @description Schema identifier for configuration and preferences input.
153
+ */
154
+ schemaId?: string;
133
155
  /**
134
156
  * @name _useFutureCommonPackage Configuration
135
157
  * @description Whether the package is using `common` package or not
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/core",
3
- "version": "7.1.1-alpha.14",
3
+ "version": "7.1.1-alpha.32",
4
4
  "description": "Common core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -20,10 +20,13 @@
20
20
  "test:watch": "npm test -- --watch",
21
21
  "watch": "yarn build:lib:watch"
22
22
  },
23
+ "devDependencies": {
24
+ "common": "7.1.1-alpha.32"
25
+ },
23
26
  "publishConfig": {
24
27
  "access": "public"
25
28
  },
26
- "gitHead": "7786ecfaab0098f0bbd2f0ee6979ae1cb2da89e1",
29
+ "gitHead": "621d7ee57d96fa90e78d8431e8491beb1ed70088",
27
30
  "typescript": {
28
31
  "definition": "lib/index.d.ts"
29
32
  }