@arsedizioni/ars-utils 18.2.463 → 18.2.465
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.
|
@@ -736,16 +736,39 @@ export interface ClipperFolderInfo extends Folder {
|
|
|
736
736
|
isPrivate?: boolean | null;
|
|
737
737
|
isMenuOpen?: boolean | null;
|
|
738
738
|
isOver?: boolean | null;
|
|
739
|
-
|
|
739
|
+
items: ClipperFileInfo[];
|
|
740
740
|
subFolders: ClipperFolderInfo[];
|
|
741
741
|
}
|
|
742
|
-
export interface
|
|
742
|
+
export interface ClipperSearchArchiveFoldersParams {
|
|
743
743
|
teamId?: string | null;
|
|
744
744
|
privateOnly?: boolean | null;
|
|
745
745
|
}
|
|
746
|
-
export interface
|
|
746
|
+
export interface ClipperSearchArchiveFoldersResult extends ClipperFolderInfo {
|
|
747
747
|
teams: NameValueItem<string>[];
|
|
748
748
|
}
|
|
749
|
+
export interface ClipperSearchArchiveFilesParams {
|
|
750
|
+
teamId?: string | null;
|
|
751
|
+
folderId?: string | null;
|
|
752
|
+
folderName?: string | null;
|
|
753
|
+
fileType?: ClipperArchiveFileType | null;
|
|
754
|
+
fromDate?: Date | null;
|
|
755
|
+
toDate?: Date | null;
|
|
756
|
+
topicPath?: string | null;
|
|
757
|
+
titlesOnly?: boolean | null;
|
|
758
|
+
text?: string | null;
|
|
759
|
+
changedFromDate?: Date | null;
|
|
760
|
+
changeReason?: number | null;
|
|
761
|
+
changeState?: number | null;
|
|
762
|
+
documentNumber?: string | null;
|
|
763
|
+
documentYear?: number | null;
|
|
764
|
+
first?: number | null;
|
|
765
|
+
count?: number | null;
|
|
766
|
+
}
|
|
767
|
+
export interface ClipperSearchArchiveFilesResult {
|
|
768
|
+
items: ClipperFileInfo[];
|
|
769
|
+
folderName?: string | null;
|
|
770
|
+
total: number;
|
|
771
|
+
}
|
|
749
772
|
export declare class ClipperUtils {
|
|
750
773
|
/**
|
|
751
774
|
* Check if a model is readable
|