@arsedizioni/ars-utils 18.2.461 → 18.2.462
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.
|
@@ -661,7 +661,7 @@ export interface ClipperCalendarCopyDeadlinesParams {
|
|
|
661
661
|
teamId: string;
|
|
662
662
|
mode: ClipperCalendarCopyMode;
|
|
663
663
|
}
|
|
664
|
-
export declare enum
|
|
664
|
+
export declare enum ClipperArchiveFileType {
|
|
665
665
|
None = 0,
|
|
666
666
|
Procedure = 1,
|
|
667
667
|
OperatingInstructions = 2,
|
|
@@ -669,9 +669,12 @@ export declare enum ClipperUserFileType {
|
|
|
669
669
|
AdministrativeDocument = 4,
|
|
670
670
|
Document = 5,
|
|
671
671
|
OtherApplicableRules = 6,
|
|
672
|
-
Other = 7
|
|
672
|
+
Other = 7,
|
|
673
|
+
File = 101,
|
|
674
|
+
Image = 102
|
|
673
675
|
}
|
|
674
|
-
export declare
|
|
676
|
+
export declare const ClipperArchiveFileTypes: NameValueItem<ClipperArchiveFileType>[];
|
|
677
|
+
export declare enum ClipperArchiveFileStorageType {
|
|
675
678
|
None = 0,
|
|
676
679
|
Share = 1,
|
|
677
680
|
Binary = 2,
|
|
@@ -690,12 +693,12 @@ export interface ClipperFileInfo {
|
|
|
690
693
|
isPrivate?: boolean;
|
|
691
694
|
isFile?: boolean;
|
|
692
695
|
fileName?: string;
|
|
693
|
-
storageType?:
|
|
696
|
+
storageType?: ClipperArchiveFileStorageType | null;
|
|
694
697
|
isBinary?: boolean | null;
|
|
695
698
|
binaryId?: number | null;
|
|
696
699
|
binaryFilePath?: string | null;
|
|
697
700
|
isPermalink?: boolean | null;
|
|
698
|
-
fileType?:
|
|
701
|
+
fileType?: ClipperArchiveFileType | null;
|
|
699
702
|
notes?: string | null;
|
|
700
703
|
position?: number | null;
|
|
701
704
|
documentIds?: string | null;
|
|
@@ -732,11 +735,11 @@ export interface ClipperFolderInfo extends Folder {
|
|
|
732
735
|
files: ClipperFileInfo[];
|
|
733
736
|
subFolders: ClipperFolderInfo[];
|
|
734
737
|
}
|
|
735
|
-
export interface
|
|
738
|
+
export interface ClipperSearchArchiveParams {
|
|
736
739
|
teamId?: string | null;
|
|
737
740
|
privateOnly?: boolean | null;
|
|
738
741
|
}
|
|
739
|
-
export interface
|
|
742
|
+
export interface ClipperSearchArchiveResult extends ClipperFolderInfo {
|
|
740
743
|
teams: NameValueItem<string>[];
|
|
741
744
|
}
|
|
742
745
|
export declare class ClipperUtils {
|