@uniformdev/assets 19.54.3-alpha.5 → 19.56.0

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
@@ -127,7 +127,7 @@ interface components {
127
127
  schemas: {
128
128
  /** @description Defines the shape of the asset */
129
129
  Asset: {
130
- /** @description Content type of the asset. */
130
+ /** @description Asset type of the asset. */
131
131
  type: string;
132
132
  /**
133
133
  * Format: uuid
@@ -479,21 +479,15 @@ interface external {
479
479
  /** @description The fields for this content type. Fields are key-value pairs that can be text, numbers, JSON objects, etc. */
480
480
  fields?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionParameter"][];
481
481
  /**
482
- * Format: uuid
483
- * @description Reference to the category this component definition belongs to
484
- * @default null
485
- */
486
- categoryId?: string | null;
487
- /**
488
- * @description Description of the component definition
482
+ * @description Description of the content type
489
483
  * @default null
490
484
  */
491
485
  description?: string;
492
486
  /**
493
- * @description Description of the component definition
494
- * @default null
487
+ * @description Icon name for the content type (e.g. 'screen')
488
+ * @default file-document
495
489
  */
496
- previewImageUrl?: string;
490
+ icon?: string;
497
491
  /** @description Created date string for this content type (ignored for writes) */
498
492
  created?: string;
499
493
  /** @description Last modified date string for this content type (ignored for writes) */
package/dist/index.d.ts CHANGED
@@ -127,7 +127,7 @@ interface components {
127
127
  schemas: {
128
128
  /** @description Defines the shape of the asset */
129
129
  Asset: {
130
- /** @description Content type of the asset. */
130
+ /** @description Asset type of the asset. */
131
131
  type: string;
132
132
  /**
133
133
  * Format: uuid
@@ -479,21 +479,15 @@ interface external {
479
479
  /** @description The fields for this content type. Fields are key-value pairs that can be text, numbers, JSON objects, etc. */
480
480
  fields?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionParameter"][];
481
481
  /**
482
- * Format: uuid
483
- * @description Reference to the category this component definition belongs to
484
- * @default null
485
- */
486
- categoryId?: string | null;
487
- /**
488
- * @description Description of the component definition
482
+ * @description Description of the content type
489
483
  * @default null
490
484
  */
491
485
  description?: string;
492
486
  /**
493
- * @description Description of the component definition
494
- * @default null
487
+ * @description Icon name for the content type (e.g. 'screen')
488
+ * @default file-document
495
489
  */
496
- previewImageUrl?: string;
490
+ icon?: string;
497
491
  /** @description Created date string for this content type (ignored for writes) */
498
492
  created?: string;
499
493
  /** @description Last modified date string for this content type (ignored for writes) */
package/package.json CHANGED
@@ -1,11 +1,20 @@
1
1
  {
2
2
  "name": "@uniformdev/assets",
3
- "version": "19.54.3-alpha.5+014bd6280",
3
+ "version": "19.56.0",
4
4
  "description": "Uniform Assets",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.esm.js",
6
8
  "exports": {
7
- "import": "./dist/index.mjs",
8
- "require": "./dist/index.js"
9
+ "import": {
10
+ "types": "./dist/index.d.ts",
11
+ "node": "./dist/index.mjs",
12
+ "default": "./dist/index.esm.js"
13
+ },
14
+ "require": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ }
9
18
  },
10
19
  "types": "./dist/index.d.ts",
11
20
  "sideEffects": false,
@@ -27,7 +36,7 @@
27
36
  "access": "public"
28
37
  },
29
38
  "dependencies": {
30
- "@uniformdev/context": "19.54.3-alpha.5+014bd6280"
39
+ "@uniformdev/context": "19.56.0"
31
40
  },
32
- "gitHead": "014bd628043639e39e853dfdc2a7f1d2da340854"
41
+ "gitHead": "56938585920b817df15d278b46cbb3bd56f18790"
33
42
  }