@arsedizioni/ars-utils 18.2.346 → 18.2.347
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/core/definitions.d.ts +3 -2
- package/core/system.d.ts +1 -1
- package/esm2022/clipper.common/common/definitions.mjs +2 -1
- package/esm2022/core/definitions.mjs +1 -1
- package/esm2022/core/system.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +1 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -153,6 +153,7 @@ export declare class ClipperSearchParams {
|
|
|
153
153
|
sector?: string | null;
|
|
154
154
|
sectors?: SectorInfo[] | null;
|
|
155
155
|
topic?: string | null;
|
|
156
|
+
topics?: NameValueItem<string>[] | null;
|
|
156
157
|
taxonomy?: string | null;
|
|
157
158
|
taxonomies?: NameValueItem<string>[] | null;
|
|
158
159
|
taxonomyPath?: string | null;
|
package/core/definitions.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { INode } from './system';
|
|
1
2
|
export interface DoneResult<T> {
|
|
2
3
|
isNew?: boolean | null;
|
|
3
4
|
data?: T;
|
|
@@ -19,8 +20,8 @@ export interface Folder {
|
|
|
19
20
|
itemsCount?: number | null;
|
|
20
21
|
subItemsCount?: number | null;
|
|
21
22
|
}
|
|
22
|
-
export interface FolderTree extends Folder {
|
|
23
|
-
|
|
23
|
+
export interface FolderTree extends Folder, INode {
|
|
24
|
+
children?: FolderTree[] | null;
|
|
24
25
|
path: string;
|
|
25
26
|
}
|
|
26
27
|
export interface File<T> {
|