@uniformdev/assets 19.55.1-alpha.8 → 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 +5 -11
- package/dist/index.d.ts +5 -11
- package/package.json +3 -3
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
|
|
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
|
-
*
|
|
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
|
|
494
|
-
* @default
|
|
487
|
+
* @description Icon name for the content type (e.g. 'screen')
|
|
488
|
+
* @default file-document
|
|
495
489
|
*/
|
|
496
|
-
|
|
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
|
|
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
|
-
*
|
|
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
|
|
494
|
-
* @default
|
|
487
|
+
* @description Icon name for the content type (e.g. 'screen')
|
|
488
|
+
* @default file-document
|
|
495
489
|
*/
|
|
496
|
-
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.56.0",
|
|
4
4
|
"description": "Uniform Assets",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@uniformdev/context": "19.
|
|
39
|
+
"@uniformdev/context": "19.56.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "56938585920b817df15d278b46cbb3bd56f18790"
|
|
42
42
|
}
|