@arsedizioni/ars-utils 18.2.486 → 18.2.488
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 +1 -0
- package/clipper.common/common/services/clipper.service.d.ts +5 -0
- package/esm2022/clipper.common/common/definitions.mjs +1 -1
- package/esm2022/clipper.common/common/services/clipper.service.mjs +8 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +7 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -687,6 +687,7 @@ export interface ClipperArchiveFileInfo {
|
|
|
687
687
|
folderName?: string | null;
|
|
688
688
|
folderItemsCount?: number | null;
|
|
689
689
|
teamId?: string | null;
|
|
690
|
+
teamName?: string | null;
|
|
690
691
|
topicId?: string | null;
|
|
691
692
|
topicPath?: string | null;
|
|
692
693
|
topicName?: string | null;
|
|
@@ -359,6 +359,11 @@ export declare class ClipperService implements OnDestroy {
|
|
|
359
359
|
* @param params : parameters
|
|
360
360
|
*/
|
|
361
361
|
saveArchiveFile(params: ClipperArchiveFileInfo): import("rxjs").Observable<import("@angular/common/http").HttpEvent<unknown>>;
|
|
362
|
+
/**
|
|
363
|
+
* Get file data
|
|
364
|
+
* @param id : the item id
|
|
365
|
+
*/
|
|
366
|
+
getArchiveFile(id: string): import("rxjs").Observable<ApiResult<ClipperArchiveFileInfo>>;
|
|
362
367
|
/**
|
|
363
368
|
* Download file
|
|
364
369
|
* @param id : the binary id to download
|