@uniformdev/canvas 18.26.0 → 18.27.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.ts +20 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
@@ -1178,6 +1178,11 @@ interface paths$3 {
|
|
1178
1178
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
1179
1179
|
*/
|
1180
1180
|
uiStatus?: components$1["parameters"]["uiStatus"];
|
1181
|
+
/**
|
1182
|
+
* Filters out compositions without attached node or filters out compositions with attached nodes
|
1183
|
+
* in case of FALSE. If not specified - no filtration applied.
|
1184
|
+
*/
|
1185
|
+
attachedToProjectMap?: components$1["parameters"]["attachedToProjectMap"];
|
1181
1186
|
/** Filters composition lists by the user who last updated them. The user is specified by their identity subject. */
|
1182
1187
|
updatedBy?: components$1["parameters"]["updatedBy"];
|
1183
1188
|
/**
|
@@ -1405,6 +1410,11 @@ interface components$1 {
|
|
1405
1410
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
1406
1411
|
*/
|
1407
1412
|
uiStatus: ("Draft" | "Modified" | "Published" | "Orphan")[];
|
1413
|
+
/**
|
1414
|
+
* @description Filters out compositions without attached node or filters out compositions with attached nodes
|
1415
|
+
* in case of FALSE. If not specified - no filtration applied.
|
1416
|
+
*/
|
1417
|
+
attachedToProjectMap: boolean;
|
1408
1418
|
/** @description Includes project map node information in the composition results */
|
1409
1419
|
withProjectMapNodes: boolean;
|
1410
1420
|
/** @description Filters composition lists by the user who created them. The user is specified by their identity subject. */
|
@@ -2645,6 +2655,11 @@ interface external$3 {
|
|
2645
2655
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
2646
2656
|
*/
|
2647
2657
|
uiStatus?: external$3["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["parameters"]["uiStatus"];
|
2658
|
+
/**
|
2659
|
+
* Filters out compositions without attached node or filters out compositions with attached nodes
|
2660
|
+
* in case of FALSE. If not specified - no filtration applied.
|
2661
|
+
*/
|
2662
|
+
attachedToProjectMap?: external$3["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["parameters"]["attachedToProjectMap"];
|
2648
2663
|
/** Filters composition lists by the user who last updated them. The user is specified by their identity subject. */
|
2649
2664
|
updatedBy?: external$3["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["parameters"]["updatedBy"];
|
2650
2665
|
/**
|
@@ -2872,6 +2887,11 @@ interface external$3 {
|
|
2872
2887
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
2873
2888
|
*/
|
2874
2889
|
uiStatus: ("Draft" | "Modified" | "Published" | "Orphan")[];
|
2890
|
+
/**
|
2891
|
+
* @description Filters out compositions without attached node or filters out compositions with attached nodes
|
2892
|
+
* in case of FALSE. If not specified - no filtration applied.
|
2893
|
+
*/
|
2894
|
+
attachedToProjectMap: boolean;
|
2875
2895
|
/** @description Includes project map node information in the composition results */
|
2876
2896
|
withProjectMapNodes: boolean;
|
2877
2897
|
/** @description Filters composition lists by the user who created them. The user is specified by their identity subject. */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.27.0",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -47,7 +47,7 @@
|
|
47
47
|
"pusher-js": "8.0.1"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@uniformdev/context": "18.
|
50
|
+
"@uniformdev/context": "18.27.0"
|
51
51
|
},
|
52
52
|
"files": [
|
53
53
|
"/dist"
|
@@ -55,5 +55,5 @@
|
|
55
55
|
"publishConfig": {
|
56
56
|
"access": "public"
|
57
57
|
},
|
58
|
-
"gitHead": "
|
58
|
+
"gitHead": "2f40af577d2f8ce537e857f8fbc08b4030e73cd1"
|
59
59
|
}
|