@uniformdev/assets 20.9.0 → 20.9.1-alpha.16

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.
package/dist/index.d.mts CHANGED
@@ -219,6 +219,27 @@ interface components$1 {
219
219
  * @description ID of the workflow that instances of this content type will use by default. When not set, no workflow is attached
220
220
  */
221
221
  workflowId?: string;
222
+ /** @description Configurations for previewing an entry on a consuming pattern or composition. */
223
+ previewConfigurations?: components$1["schemas"]["ContentTypePreviewConfiguration"][];
224
+ };
225
+ /** @description Defines a configuration for previewing an entry on a consuming pattern or composition. */
226
+ ContentTypePreviewConfiguration: {
227
+ /**
228
+ * @description The type of preview configuration
229
+ * @enum {string}
230
+ */
231
+ type: "pattern" | "project-map";
232
+ /** @description Display label for the preview configuration */
233
+ label: string;
234
+ /**
235
+ * Format: uuid
236
+ * @description Target preview entity ID (project map node ID or pattern ID)
237
+ */
238
+ id: string;
239
+ /** @description Optional mapping of dynamic input names to their values */
240
+ dynamicInputs?: {
241
+ [key: string]: string;
242
+ };
222
243
  };
223
244
  /** @description Defines an editable parameter on a component */
224
245
  ComponentParameter: {
package/dist/index.d.ts CHANGED
@@ -219,6 +219,27 @@ interface components$1 {
219
219
  * @description ID of the workflow that instances of this content type will use by default. When not set, no workflow is attached
220
220
  */
221
221
  workflowId?: string;
222
+ /** @description Configurations for previewing an entry on a consuming pattern or composition. */
223
+ previewConfigurations?: components$1["schemas"]["ContentTypePreviewConfiguration"][];
224
+ };
225
+ /** @description Defines a configuration for previewing an entry on a consuming pattern or composition. */
226
+ ContentTypePreviewConfiguration: {
227
+ /**
228
+ * @description The type of preview configuration
229
+ * @enum {string}
230
+ */
231
+ type: "pattern" | "project-map";
232
+ /** @description Display label for the preview configuration */
233
+ label: string;
234
+ /**
235
+ * Format: uuid
236
+ * @description Target preview entity ID (project map node ID or pattern ID)
237
+ */
238
+ id: string;
239
+ /** @description Optional mapping of dynamic input names to their values */
240
+ dynamicInputs?: {
241
+ [key: string]: string;
242
+ };
222
243
  };
223
244
  /** @description Defines an editable parameter on a component */
224
245
  ComponentParameter: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/assets",
3
- "version": "20.9.0",
3
+ "version": "20.9.1-alpha.16+5d93781920",
4
4
  "description": "Uniform Assets",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -36,10 +36,10 @@
36
36
  "access": "public"
37
37
  },
38
38
  "dependencies": {
39
- "@uniformdev/context": "20.9.0"
39
+ "@uniformdev/context": "20.9.1-alpha.16+5d93781920"
40
40
  },
41
41
  "devDependencies": {
42
42
  "ts-xor": "^1.3.0"
43
43
  },
44
- "gitHead": "47e2e9af8e7e56d2c524c6057920fe6a9480a4a9"
44
+ "gitHead": "5d937819205e0fe171a5b51f2e204cddc910cbf3"
45
45
  }