@arsedizioni/ars-utils 18.2.478 → 18.2.480
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 +3 -2
- package/clipper.common/common/services/clipper.service.d.ts +5 -4
- package/esm2022/clipper.common/common/definitions.mjs +1 -1
- package/esm2022/clipper.common/common/services/clipper.service.mjs +9 -8
- package/esm2022/help/components/help-viewer/help-viewer.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/select-tree/select-tree-dialog.component.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +8 -7
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -683,9 +683,10 @@ export declare enum ClipperArchiveFileStorageType {
|
|
|
683
683
|
export interface ClipperArchiveFileInfo {
|
|
684
684
|
id?: string | null;
|
|
685
685
|
parentFolderId?: string | null;
|
|
686
|
-
isFolder
|
|
686
|
+
isFolder?: boolean | null;
|
|
687
687
|
folderId?: string | null;
|
|
688
|
-
folderName
|
|
688
|
+
folderName?: string | null;
|
|
689
|
+
folderItemsCount?: number | null;
|
|
689
690
|
teamId?: string | null;
|
|
690
691
|
topicId?: string | null;
|
|
691
692
|
topicPath?: string | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, Signal } from '@angular/core';
|
|
2
|
-
import { ApiResult, FolderTree, NameValueItem } from '@arsedizioni/ars-utils/core';
|
|
2
|
+
import { ApiResult, Folder, FolderTree, NameValueItem } from '@arsedizioni/ars-utils/core';
|
|
3
3
|
import { RecoverPasswordDialogData, RecoverPasswordDialogResult, ResetPasswordDialogResult } from '@arsedizioni/ars-utils/ui';
|
|
4
4
|
import { LoginOAuthType } from '@arsedizioni/ars-utils/ui.oauth';
|
|
5
5
|
import { Subscription } from 'rxjs';
|
|
@@ -327,12 +327,13 @@ export declare class ClipperService implements OnDestroy {
|
|
|
327
327
|
* Save folder
|
|
328
328
|
* @param params : parameters
|
|
329
329
|
*/
|
|
330
|
-
saveArchiveFolder(params:
|
|
330
|
+
saveArchiveFolder(params: Folder): import("rxjs").Observable<ApiResult<Folder>>;
|
|
331
331
|
/**
|
|
332
332
|
* Export folders
|
|
333
|
-
* @param
|
|
333
|
+
* @param id: the folder id or null to export all folders
|
|
334
|
+
* @param teamId: the optional team id. Default null (personal)
|
|
334
335
|
*/
|
|
335
|
-
exportArchiveFolders(
|
|
336
|
+
exportArchiveFolders(id?: string | null, teamId?: string | null): import("rxjs").Observable<Blob>;
|
|
336
337
|
/**
|
|
337
338
|
* Import folders
|
|
338
339
|
* @param params : parameters
|