@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 +15 -0
- package/dist/index.d.ts +15 -0
- package/package.json +1 -1
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 {
|