@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.
@@ -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: boolean | null;
686
+ isFolder?: boolean | null;
687
687
  folderId?: string | null;
688
- folderName: string | null;
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: ClipperArchiveFileInfo): import("rxjs").Observable<ApiResult<ClipperArchiveFileInfo>>;
330
+ saveArchiveFolder(params: Folder): import("rxjs").Observable<ApiResult<Folder>>;
331
331
  /**
332
332
  * Export folders
333
- * @param item : the folder to export or null to export all folders
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(item: ClipperArchiveFileInfo | null): import("rxjs").Observable<Blob>;
336
+ exportArchiveFolders(id?: string | null, teamId?: string | null): import("rxjs").Observable<Blob>;
336
337
  /**
337
338
  * Import folders
338
339
  * @param params : parameters