@c-rex/interfaces 0.1.6 → 0.1.7

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/dist/index.d.mts CHANGED
@@ -27,6 +27,20 @@ interface DefaultLinksRequest {
27
27
  }
28
28
  interface DefaultRequest<T> {
29
29
  items: T[];
30
+ tags?: {
31
+ [key: string]: {
32
+ labels: string[];
33
+ items: {
34
+ hits: number;
35
+ total: number;
36
+ labels: {
37
+ language?: string;
38
+ value: string;
39
+ }[];
40
+ shortId?: string;
41
+ }[];
42
+ };
43
+ };
30
44
  links: DefaultLinksRequest[];
31
45
  pageInfo: DefaultPageInfo;
32
46
  }
@@ -141,6 +155,7 @@ interface informationUnitsResponseItem {
141
155
  }
142
156
  interface informationUnitsResponse {
143
157
  items: informationUnitsResponseItem[];
158
+ tags: any;
144
159
  pageInfo: DefaultPageInfo;
145
160
  }
146
161
  interface informationUnits {
package/dist/index.d.ts CHANGED
@@ -27,6 +27,20 @@ interface DefaultLinksRequest {
27
27
  }
28
28
  interface DefaultRequest<T> {
29
29
  items: T[];
30
+ tags?: {
31
+ [key: string]: {
32
+ labels: string[];
33
+ items: {
34
+ hits: number;
35
+ total: number;
36
+ labels: {
37
+ language?: string;
38
+ value: string;
39
+ }[];
40
+ shortId?: string;
41
+ }[];
42
+ };
43
+ };
30
44
  links: DefaultLinksRequest[];
31
45
  pageInfo: DefaultPageInfo;
32
46
  }
@@ -141,6 +155,7 @@ interface informationUnitsResponseItem {
141
155
  }
142
156
  interface informationUnitsResponse {
143
157
  items: informationUnitsResponseItem[];
158
+ tags: any;
144
159
  pageInfo: DefaultPageInfo;
145
160
  }
146
161
  interface informationUnits {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-rex/interfaces",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "module": "./dist/index.mjs",