@arsedizioni/ars-utils 18.2.462 → 18.2.464
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.
|
@@ -724,6 +724,8 @@ export interface ClipperFileInfo {
|
|
|
724
724
|
isDocument?: boolean;
|
|
725
725
|
isRead?: boolean;
|
|
726
726
|
isJuris?: boolean;
|
|
727
|
+
isMenuOpen?: boolean | null;
|
|
728
|
+
isOver?: boolean | null;
|
|
727
729
|
validityState?: number | null;
|
|
728
730
|
validUntilDate?: Date | null;
|
|
729
731
|
expiringDate?: Date | null;
|
|
@@ -732,6 +734,8 @@ export interface ClipperFileInfo {
|
|
|
732
734
|
export interface ClipperFolderInfo extends Folder {
|
|
733
735
|
teamId?: string | null;
|
|
734
736
|
isPrivate?: boolean | null;
|
|
737
|
+
isMenuOpen?: boolean | null;
|
|
738
|
+
isOver?: boolean | null;
|
|
735
739
|
files: ClipperFileInfo[];
|
|
736
740
|
subFolders: ClipperFolderInfo[];
|
|
737
741
|
}
|