@arsedizioni/ars-utils 18.2.467 → 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.
- package/clipper.common/common/definitions.d.ts +20 -19
- package/clipper.common/common/services/clipper.service.d.ts +5 -5
- package/esm2022/clipper.common/common/definitions.mjs +57 -1
- package/esm2022/clipper.common/common/services/clipper.service.mjs +10 -9
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +66 -10
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/package.json +11 -11
|
@@ -680,19 +680,19 @@ export declare enum ClipperArchiveFileStorageType {
|
|
|
680
680
|
Binary = 2,
|
|
681
681
|
Permalink = 3
|
|
682
682
|
}
|
|
683
|
-
export
|
|
684
|
-
id
|
|
683
|
+
export declare class ClipperFileInfo {
|
|
684
|
+
id?: string | null;
|
|
685
685
|
parentFolderId?: string | null;
|
|
686
|
-
isFolder: boolean;
|
|
687
|
-
folderId
|
|
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;
|
|
@@ -329,15 +329,15 @@ export declare class ClipperService implements OnDestroy {
|
|
|
329
329
|
*/
|
|
330
330
|
saveArchiveFolder(params: ClipperFileInfo): import("rxjs").Observable<ApiResult<ClipperFileInfo>>;
|
|
331
331
|
/**
|
|
332
|
-
* Export
|
|
333
|
-
* @param item : the folder to export
|
|
332
|
+
* Export folders
|
|
333
|
+
* @param item : the folder to export or null to export all folders
|
|
334
334
|
*/
|
|
335
|
-
|
|
335
|
+
exportArchiveFolders(item: ClipperFileInfo | null): import("rxjs").Observable<Blob>;
|
|
336
336
|
/**
|
|
337
|
-
* Import
|
|
337
|
+
* Import folders
|
|
338
338
|
* @param params : parameters
|
|
339
339
|
*/
|
|
340
|
-
|
|
340
|
+
importArchiveFolders(params: ClipperArchiveFoldersImportParams): import("rxjs").Observable<import("@angular/common/http").HttpEvent<unknown>>;
|
|
341
341
|
/**
|
|
342
342
|
* Get files and folders
|
|
343
343
|
* @param params : parameters
|