@uniformdev/assets 19.96.1-alpha.13 → 19.99.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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -521,6 +521,13 @@ interface external {
|
|
|
521
521
|
* @enum {string}
|
|
522
522
|
*/
|
|
523
523
|
type?: "contentType" | "block";
|
|
524
|
+
/**
|
|
525
|
+
* @description if this content type uses team permissions or custom permissions
|
|
526
|
+
* @default true
|
|
527
|
+
*/
|
|
528
|
+
useTeamPermissions?: boolean;
|
|
529
|
+
/** @description Custom role permissions for this content type */
|
|
530
|
+
permissions?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionPermission"][];
|
|
524
531
|
};
|
|
525
532
|
/** @description Defines an editable parameter on a component. */
|
|
526
533
|
ComponentParameter: {
|
package/dist/index.d.ts
CHANGED
|
@@ -521,6 +521,13 @@ interface external {
|
|
|
521
521
|
* @enum {string}
|
|
522
522
|
*/
|
|
523
523
|
type?: "contentType" | "block";
|
|
524
|
+
/**
|
|
525
|
+
* @description if this content type uses team permissions or custom permissions
|
|
526
|
+
* @default true
|
|
527
|
+
*/
|
|
528
|
+
useTeamPermissions?: boolean;
|
|
529
|
+
/** @description Custom role permissions for this content type */
|
|
530
|
+
permissions?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionPermission"][];
|
|
524
531
|
};
|
|
525
532
|
/** @description Defines an editable parameter on a component. */
|
|
526
533
|
ComponentParameter: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.99.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.99.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "f867c1229e8dc020c099534be72396792748c300"
|
|
42
42
|
}
|