@arsedizioni/ars-utils 18.2.468 → 18.2.469

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.
@@ -680,19 +680,19 @@ export declare enum ClipperArchiveFileStorageType {
680
680
  Binary = 2,
681
681
  Permalink = 3
682
682
  }
683
- export interface ClipperFileInfo {
684
- id: string;
683
+ export declare class ClipperFileInfo {
684
+ id?: string | null;
685
685
  parentFolderId?: string | null;
686
- isFolder: boolean;
687
- folderId: string;
688
- folderName: string;
686
+ isFolder: boolean | null;
687
+ folderId?: string | null;
688
+ folderName: string | null;
689
689
  teamId?: string | null;
690
690
  topicId?: string | null;
691
691
  topicPath?: string | null;
692
- tags?: string;
693
- isPrivate?: boolean;
694
- isFile?: boolean;
695
- fileName?: string;
692
+ tags?: string | null;
693
+ isPrivate?: boolean | null;
694
+ isFile?: boolean | null;
695
+ fileName?: string | null;
696
696
  storageType?: ClipperArchiveFileStorageType | null;
697
697
  isBinary?: boolean | null;
698
698
  binaryId?: number | null;
@@ -714,23 +714,24 @@ export interface ClipperFileInfo {
714
714
  channelName?: string | null;
715
715
  model?: ClipperModel | null;
716
716
  modelName?: string | null;
717
- title1?: string;
718
- title2?: string;
717
+ title1?: string | null;
718
+ title2?: string | null;
719
719
  date?: Date | null;
720
- number?: string;
721
- origin?: string;
722
- originDescription?: string;
723
- documentId?: string;
724
- documentCode?: string;
725
- isDocument?: boolean;
726
- isRead?: boolean;
727
- isJuris?: boolean;
720
+ number?: string | null;
721
+ origin?: string | null;
722
+ originDescription?: string | null;
723
+ documentId?: string | null;
724
+ documentCode?: string | null;
725
+ isDocument?: boolean | null;
726
+ isRead?: boolean | null;
727
+ isJuris?: boolean | null;
728
728
  isMenuOpen?: boolean | null;
729
729
  isOver?: boolean | null;
730
730
  validityState?: number | null;
731
731
  validUntilDate?: Date | null;
732
732
  expiringDate?: Date | null;
733
733
  expiringInfo?: string | null;
734
+ uniqueId: () => string;
734
735
  }
735
736
  export interface ClipperFolderInfo extends Folder {
736
737
  teamId?: string | null;