@arsedizioni/ars-utils 18.2.475 → 18.2.477
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 -3
- package/core/definitions.d.ts +2 -5
- package/esm2022/clipper.common/common/definitions.mjs +1 -4
- package/esm2022/core/definitions.mjs +1 -3
- package/esm2022/help/definitions.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +2 -4
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +1 -3
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -734,9 +734,7 @@ export interface ClipperFileInfo {
|
|
|
734
734
|
expiringInfo?: string | null;
|
|
735
735
|
uniqueId: string;
|
|
736
736
|
}
|
|
737
|
-
export
|
|
738
|
-
teamId?: string | null;
|
|
739
|
-
isPrivate?: boolean | null;
|
|
737
|
+
export interface ClipperFolderInfo extends Folder {
|
|
740
738
|
isMenuOpen?: boolean | null;
|
|
741
739
|
isOver?: boolean | null;
|
|
742
740
|
items: ClipperFileInfo[];
|
package/core/definitions.d.ts
CHANGED
|
@@ -10,19 +10,16 @@ export interface ApiResponse {
|
|
|
10
10
|
export interface ApiResult<T> extends ApiResponse {
|
|
11
11
|
value: T;
|
|
12
12
|
}
|
|
13
|
-
export
|
|
14
|
-
id: string | null;
|
|
13
|
+
export interface Folder extends INode {
|
|
15
14
|
teamId?: string | null;
|
|
16
15
|
parentId?: string | null;
|
|
17
|
-
parent?: INode | null;
|
|
18
16
|
position?: number | null;
|
|
19
|
-
name?: string | null;
|
|
20
17
|
isPrivate?: boolean | null;
|
|
21
18
|
itemsCount?: number | null;
|
|
22
19
|
subItemsCount?: number | null;
|
|
23
20
|
}
|
|
24
21
|
export interface FolderTree extends Folder {
|
|
25
|
-
children?:
|
|
22
|
+
children?: Folder[] | null;
|
|
26
23
|
path: string;
|
|
27
24
|
}
|
|
28
25
|
export interface File<T> {
|