@arsedizioni/ars-utils 18.2.459 → 18.2.461
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.
- package/clipper.common/common/definitions.d.ts +79 -1
- package/esm2022/clipper.common/common/definitions.mjs +19 -1
- package/esm2022/ui.application/ui/components/file-input/file-input.component.mjs +10 -4
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +19 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +8 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +11 -11
- package/ui.application/ui/components/file-input/file-input.component.d.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SendToDialogResult } from '@arsedizioni/ars-utils/ui.application';
|
|
2
|
-
import { LoginResult, NameValueItem } from '@arsedizioni/ars-utils/core';
|
|
2
|
+
import { Folder, LoginResult, NameValueItem } from '@arsedizioni/ars-utils/core';
|
|
3
3
|
import { LoginOAuthType } from '@arsedizioni/ars-utils/ui.oauth';
|
|
4
4
|
import { Signal } from '@angular/core';
|
|
5
5
|
export declare enum ClipperServiceFlags {
|
|
@@ -661,6 +661,84 @@ export interface ClipperCalendarCopyDeadlinesParams {
|
|
|
661
661
|
teamId: string;
|
|
662
662
|
mode: ClipperCalendarCopyMode;
|
|
663
663
|
}
|
|
664
|
+
export declare enum ClipperUserFileType {
|
|
665
|
+
None = 0,
|
|
666
|
+
Procedure = 1,
|
|
667
|
+
OperatingInstructions = 2,
|
|
668
|
+
TechnicalReport = 3,
|
|
669
|
+
AdministrativeDocument = 4,
|
|
670
|
+
Document = 5,
|
|
671
|
+
OtherApplicableRules = 6,
|
|
672
|
+
Other = 7
|
|
673
|
+
}
|
|
674
|
+
export declare enum ClipperUserFileStorageType {
|
|
675
|
+
None = 0,
|
|
676
|
+
Share = 1,
|
|
677
|
+
Binary = 2,
|
|
678
|
+
Permalink = 3
|
|
679
|
+
}
|
|
680
|
+
export interface ClipperFileInfo {
|
|
681
|
+
id: string;
|
|
682
|
+
parentFolderId?: string | null;
|
|
683
|
+
isFolder: boolean;
|
|
684
|
+
folderId: string;
|
|
685
|
+
folderName: string;
|
|
686
|
+
teamId?: string | null;
|
|
687
|
+
topicId?: string | null;
|
|
688
|
+
topicPath?: string | null;
|
|
689
|
+
tags?: string;
|
|
690
|
+
isPrivate?: boolean;
|
|
691
|
+
isFile?: boolean;
|
|
692
|
+
fileName?: string;
|
|
693
|
+
storageType?: ClipperUserFileStorageType | null;
|
|
694
|
+
isBinary?: boolean | null;
|
|
695
|
+
binaryId?: number | null;
|
|
696
|
+
binaryFilePath?: string | null;
|
|
697
|
+
isPermalink?: boolean | null;
|
|
698
|
+
fileType?: ClipperUserFileType | null;
|
|
699
|
+
notes?: string | null;
|
|
700
|
+
position?: number | null;
|
|
701
|
+
documentIds?: string | null;
|
|
702
|
+
documentLastChangedBy?: string | null;
|
|
703
|
+
documentLastChangedById?: string | null;
|
|
704
|
+
documentLastChangedReasonDescription?: string | null;
|
|
705
|
+
documentLastChanged?: Date | null;
|
|
706
|
+
documentUpdateState?: number | null;
|
|
707
|
+
isDocumentChanged?: boolean | null;
|
|
708
|
+
canPreview?: boolean | null;
|
|
709
|
+
canEmbed?: boolean | null;
|
|
710
|
+
channelName?: string | null;
|
|
711
|
+
model?: ClipperModel | null;
|
|
712
|
+
modelName?: string | null;
|
|
713
|
+
title1?: string;
|
|
714
|
+
title2?: string;
|
|
715
|
+
date?: Date | null;
|
|
716
|
+
number?: string;
|
|
717
|
+
origin?: string;
|
|
718
|
+
originDescription?: string;
|
|
719
|
+
documentId?: string;
|
|
720
|
+
documentCode?: string;
|
|
721
|
+
isDocument?: boolean;
|
|
722
|
+
isRead?: boolean;
|
|
723
|
+
isJuris?: boolean;
|
|
724
|
+
validityState?: number | null;
|
|
725
|
+
validUntilDate?: Date | null;
|
|
726
|
+
expiringDate?: Date | null;
|
|
727
|
+
expiringInfo?: string | null;
|
|
728
|
+
}
|
|
729
|
+
export interface ClipperFolderInfo extends Folder {
|
|
730
|
+
teamId?: string | null;
|
|
731
|
+
isPrivate?: boolean | null;
|
|
732
|
+
files: ClipperFileInfo[];
|
|
733
|
+
subFolders: ClipperFolderInfo[];
|
|
734
|
+
}
|
|
735
|
+
export interface ClipperSearchFoldersParams {
|
|
736
|
+
teamId?: string | null;
|
|
737
|
+
privateOnly?: boolean | null;
|
|
738
|
+
}
|
|
739
|
+
export interface ClipperSearchFoldersResult extends ClipperFolderInfo {
|
|
740
|
+
teams: NameValueItem<string>[];
|
|
741
|
+
}
|
|
664
742
|
export declare class ClipperUtils {
|
|
665
743
|
/**
|
|
666
744
|
* Check if a model is readable
|