@arsedizioni/ars-utils 18.2.502 → 18.2.504
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 +5 -5
- package/esm2022/clipper.common/common/definitions.mjs +1 -2
- package/esm2022/evolution.common/common/interceptors/auth.interceptor.mjs +2 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +0 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +1 -0
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/package.json +11 -11
|
@@ -530,7 +530,7 @@ export declare class ClipperDashboard {
|
|
|
530
530
|
}
|
|
531
531
|
export declare class ClipperTeamMemberInfo {
|
|
532
532
|
id: number;
|
|
533
|
-
teamId
|
|
533
|
+
teamId: string;
|
|
534
534
|
name?: string | null;
|
|
535
535
|
email?: string | null;
|
|
536
536
|
isAdmin?: boolean | null;
|
|
@@ -613,7 +613,7 @@ export interface ClipperDeadlineInfo {
|
|
|
613
613
|
id?: string | null;
|
|
614
614
|
companyId?: number | null;
|
|
615
615
|
userId?: number | null;
|
|
616
|
-
teamId
|
|
616
|
+
teamId: string;
|
|
617
617
|
teamName?: string | null;
|
|
618
618
|
group?: string | null;
|
|
619
619
|
description?: string | null;
|
|
@@ -686,7 +686,7 @@ export interface ClipperArchiveFileInfo {
|
|
|
686
686
|
folderId?: string | null;
|
|
687
687
|
folderName?: string | null;
|
|
688
688
|
folderItemsCount?: number | null;
|
|
689
|
-
teamId
|
|
689
|
+
teamId: string;
|
|
690
690
|
teamName?: string | null;
|
|
691
691
|
topicId?: string | null;
|
|
692
692
|
topicPath?: string | null;
|
|
@@ -772,7 +772,7 @@ export interface ClipperArchiveFilesSearchResult {
|
|
|
772
772
|
total: number;
|
|
773
773
|
}
|
|
774
774
|
export interface ClipperArchiveFoldersImportParams {
|
|
775
|
-
teamId
|
|
775
|
+
teamId: string;
|
|
776
776
|
destFolderId?: string | null;
|
|
777
777
|
sourcePath?: string | null;
|
|
778
778
|
sourceFileName?: string | null;
|
|
@@ -785,7 +785,7 @@ export declare enum ClipperArchiveCopyMode {
|
|
|
785
785
|
Move = 2
|
|
786
786
|
}
|
|
787
787
|
export interface ClipperArchiveFilesCopyParams {
|
|
788
|
-
destTeamId
|
|
788
|
+
destTeamId: string;
|
|
789
789
|
destFolderId?: string | null;
|
|
790
790
|
files?: ClipperArchiveFileInfo[] | null;
|
|
791
791
|
mode?: ClipperArchiveCopyMode | null;
|