@arsedizioni/ars-utils 18.2.461 → 18.2.463

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 ClipperUserFileType {
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 enum ClipperUserFileStorageType {
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?: ClipperUserFileStorageType | null;
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?: ClipperUserFileType | null;
701
+ fileType?: ClipperArchiveFileType | null;
699
702
  notes?: string | null;
700
703
  position?: number | null;
701
704
  documentIds?: string | null;
@@ -721,6 +724,8 @@ export interface ClipperFileInfo {
721
724
  isDocument?: boolean;
722
725
  isRead?: boolean;
723
726
  isJuris?: boolean;
727
+ isMenuOpen?: boolean | null;
728
+ isOver?: boolean | null;
724
729
  validityState?: number | null;
725
730
  validUntilDate?: Date | null;
726
731
  expiringDate?: Date | null;
@@ -729,14 +734,16 @@ export interface ClipperFileInfo {
729
734
  export interface ClipperFolderInfo extends Folder {
730
735
  teamId?: string | null;
731
736
  isPrivate?: boolean | null;
737
+ isMenuOpen?: boolean | null;
738
+ isOver?: boolean | null;
732
739
  files: ClipperFileInfo[];
733
740
  subFolders: ClipperFolderInfo[];
734
741
  }
735
- export interface ClipperSearchFoldersParams {
742
+ export interface ClipperSearchArchiveParams {
736
743
  teamId?: string | null;
737
744
  privateOnly?: boolean | null;
738
745
  }
739
- export interface ClipperSearchFoldersResult extends ClipperFolderInfo {
746
+ export interface ClipperSearchArchiveResult extends ClipperFolderInfo {
740
747
  teams: NameValueItem<string>[];
741
748
  }
742
749
  export declare class ClipperUtils {