@trii/types 2.10.631 → 2.10.633
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.
|
@@ -131,6 +131,11 @@ export interface INodeHandle {
|
|
|
131
131
|
* Same tags must be present in the target node.
|
|
132
132
|
*/
|
|
133
133
|
tags?: string[];
|
|
134
|
+
/**
|
|
135
|
+
* Condiciones para mostrar u ocultar el handle, basadas en los valores de las propiedades del nodo
|
|
136
|
+
*/
|
|
137
|
+
show?: INodeDisplay;
|
|
138
|
+
hide?: INodeDisplay;
|
|
134
139
|
}
|
|
135
140
|
export interface INodeProperty {
|
|
136
141
|
/**
|
package/dist/Docs/Document.d.ts
CHANGED
|
@@ -2,12 +2,12 @@ export interface Document {
|
|
|
2
2
|
spaceId: string | "";
|
|
3
3
|
id?: string | null;
|
|
4
4
|
storeId?: string | null;
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
parentId?: string | null;
|
|
6
|
+
isFolder?: boolean | false;
|
|
7
|
+
path: string | '';
|
|
7
8
|
name: string | "";
|
|
8
|
-
fileName: string | "";
|
|
9
9
|
fileSize: number | 0;
|
|
10
|
-
|
|
10
|
+
fileName: string | "";
|
|
11
11
|
fileUrl: string | "";
|
|
12
12
|
status: DocumentStatus | DocumentStatus.SYNCING;
|
|
13
13
|
blobVersionId?: string | null;
|