@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.
@@ -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;
@@ -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
- subFolders?: FolderTree[] | null;
23
+ export interface FolderTree extends Folder, INode {
24
+ children?: FolderTree[] | null;
24
25
  path: string;
25
26
  }
26
27
  export interface File<T> {
package/core/system.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { DateInterval } from './definitions';
2
2
  export interface INode {
3
3
  id: string;
4
- name: string;
4
+ name?: string | null;
5
5
  count?: number | null;
6
6
  children?: INode[] | null;
7
7
  parent?: INode | null;