@c-rex/interfaces 0.1.5 → 0.1.6
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LogLevelType, LogCategoriesType, ResultViewStyles, ResultTypes, FilesExtensions } from '@c-rex/types';
|
|
1
|
+
import { LogLevelType, LogCategoriesType, ResultViewStyles, ResultTypes, FilesExtensions, WildCardType } from '@c-rex/types';
|
|
2
2
|
|
|
3
3
|
interface DefaultPageInfo {
|
|
4
4
|
pageNumber: number;
|
|
@@ -82,6 +82,7 @@ interface ConfigInterface {
|
|
|
82
82
|
restrict?: Filters[];
|
|
83
83
|
filter?: Filters[];
|
|
84
84
|
sparqlWhere?: string;
|
|
85
|
+
wildcard: WildCardType;
|
|
85
86
|
};
|
|
86
87
|
logs: {
|
|
87
88
|
console: Omit<logInfo, "url" | "app" | "categoriesLevel">;
|
|
@@ -110,6 +111,7 @@ interface informationUnitsItems extends idShortID {
|
|
|
110
111
|
labels: Labels[];
|
|
111
112
|
titles: Labels[];
|
|
112
113
|
versionOf: idShortID;
|
|
114
|
+
packages: idShortID[];
|
|
113
115
|
links: DefaultLinksRequest[];
|
|
114
116
|
renditions: informationUnitsRenditions[];
|
|
115
117
|
iirdsVersion: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LogLevelType, LogCategoriesType, ResultViewStyles, ResultTypes, FilesExtensions } from '@c-rex/types';
|
|
1
|
+
import { LogLevelType, LogCategoriesType, ResultViewStyles, ResultTypes, FilesExtensions, WildCardType } from '@c-rex/types';
|
|
2
2
|
|
|
3
3
|
interface DefaultPageInfo {
|
|
4
4
|
pageNumber: number;
|
|
@@ -82,6 +82,7 @@ interface ConfigInterface {
|
|
|
82
82
|
restrict?: Filters[];
|
|
83
83
|
filter?: Filters[];
|
|
84
84
|
sparqlWhere?: string;
|
|
85
|
+
wildcard: WildCardType;
|
|
85
86
|
};
|
|
86
87
|
logs: {
|
|
87
88
|
console: Omit<logInfo, "url" | "app" | "categoriesLevel">;
|
|
@@ -110,6 +111,7 @@ interface informationUnitsItems extends idShortID {
|
|
|
110
111
|
labels: Labels[];
|
|
111
112
|
titles: Labels[];
|
|
112
113
|
versionOf: idShortID;
|
|
114
|
+
packages: idShortID[];
|
|
113
115
|
links: DefaultLinksRequest[];
|
|
114
116
|
renditions: informationUnitsRenditions[];
|
|
115
117
|
iirdsVersion: {
|