@c-rex/interfaces 0.1.2 → 0.1.3
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 +34 -10
- package/dist/index.d.ts +34 -10
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LogLevelType, LogCategoriesType, ResultViewStyles } from '@c-rex/types';
|
|
1
|
+
import { LogLevelType, LogCategoriesType, ResultViewStyles, ResultTypes, FilesExtensions } from '@c-rex/types';
|
|
2
2
|
|
|
3
3
|
interface DefaultPageInfo {
|
|
4
4
|
pageNumber: number;
|
|
@@ -59,7 +59,13 @@ interface OIDCInterface {
|
|
|
59
59
|
interface ConfigInterface {
|
|
60
60
|
projectName: string;
|
|
61
61
|
baseUrl: string;
|
|
62
|
-
|
|
62
|
+
results: {
|
|
63
|
+
resultViewStyle: ResultViewStyles;
|
|
64
|
+
disabledResults: ResultTypes[];
|
|
65
|
+
filesEnabledToDownload?: FilesExtensions[];
|
|
66
|
+
filesEnabledToOpen?: FilesExtensions[];
|
|
67
|
+
resultsToHide?: ResultTypes[];
|
|
68
|
+
};
|
|
63
69
|
OIDC: {
|
|
64
70
|
client: OIDCInterface;
|
|
65
71
|
user: OIDCInterface;
|
|
@@ -113,15 +119,26 @@ interface informationUnitsItems extends idShortID {
|
|
|
113
119
|
directoryNodes: DirectoryNodes[];
|
|
114
120
|
languages: string[];
|
|
115
121
|
}
|
|
116
|
-
interface
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
122
|
+
interface informationUnitsResponseItems {
|
|
123
|
+
language: string;
|
|
124
|
+
title: string;
|
|
125
|
+
type: string;
|
|
126
|
+
shortId: string;
|
|
127
|
+
localeType: string;
|
|
128
|
+
link: string;
|
|
129
|
+
disabled: boolean;
|
|
130
|
+
filesToOpen: {
|
|
121
131
|
format: string;
|
|
122
|
-
type: string;
|
|
123
132
|
link: string;
|
|
124
133
|
}[];
|
|
134
|
+
filesToDownload: {
|
|
135
|
+
format: string;
|
|
136
|
+
link: string;
|
|
137
|
+
}[];
|
|
138
|
+
}
|
|
139
|
+
interface informationUnitsResponse {
|
|
140
|
+
items: informationUnitsResponseItems[];
|
|
141
|
+
pageInfo: DefaultPageInfo;
|
|
125
142
|
}
|
|
126
143
|
interface informationUnits {
|
|
127
144
|
items: informationUnitsItems[];
|
|
@@ -137,7 +154,13 @@ interface AutocompleteSuggestion {
|
|
|
137
154
|
interface DirectoryNodes extends informationUnitsDirectories {
|
|
138
155
|
childNodes: informationUnitsDirectories[];
|
|
139
156
|
parents: idShortID[];
|
|
140
|
-
informationUnits: idShortID
|
|
157
|
+
informationUnits: (idShortID & {
|
|
158
|
+
labels: Labels[];
|
|
159
|
+
})[];
|
|
160
|
+
}
|
|
161
|
+
interface DirectoryNodesResponse {
|
|
162
|
+
items: DirectoryNodes[];
|
|
163
|
+
pageInfo: DefaultPageInfo;
|
|
141
164
|
}
|
|
142
165
|
|
|
143
166
|
interface DocumentTypesItem extends idShortID {
|
|
@@ -155,9 +178,10 @@ interface TreeOfContent {
|
|
|
155
178
|
}
|
|
156
179
|
interface SidebarAvailableVersionsInterface {
|
|
157
180
|
shortId: string;
|
|
181
|
+
active: boolean;
|
|
158
182
|
lang: string;
|
|
159
183
|
country: string;
|
|
160
184
|
link: string;
|
|
161
185
|
}
|
|
162
186
|
|
|
163
|
-
export type { AutocompleteSuggestion, ConfigInterface, DefaultLinksRequest, DefaultPageInfo, DefaultRequest, DirectoryNodes, DocumentTypesItem, Filters, Labels, LanguageAndCountries, OIDCInterface, SidebarAvailableVersionsInterface, TreeOfContent, idShortID, informationUnits, informationUnitsClass, informationUnitsDirectories, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, logInfo };
|
|
187
|
+
export type { AutocompleteSuggestion, ConfigInterface, DefaultLinksRequest, DefaultPageInfo, DefaultRequest, DirectoryNodes, DirectoryNodesResponse, DocumentTypesItem, Filters, Labels, LanguageAndCountries, OIDCInterface, SidebarAvailableVersionsInterface, TreeOfContent, idShortID, informationUnits, informationUnitsClass, informationUnitsDirectories, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, informationUnitsResponseItems, logInfo };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LogLevelType, LogCategoriesType, ResultViewStyles } from '@c-rex/types';
|
|
1
|
+
import { LogLevelType, LogCategoriesType, ResultViewStyles, ResultTypes, FilesExtensions } from '@c-rex/types';
|
|
2
2
|
|
|
3
3
|
interface DefaultPageInfo {
|
|
4
4
|
pageNumber: number;
|
|
@@ -59,7 +59,13 @@ interface OIDCInterface {
|
|
|
59
59
|
interface ConfigInterface {
|
|
60
60
|
projectName: string;
|
|
61
61
|
baseUrl: string;
|
|
62
|
-
|
|
62
|
+
results: {
|
|
63
|
+
resultViewStyle: ResultViewStyles;
|
|
64
|
+
disabledResults: ResultTypes[];
|
|
65
|
+
filesEnabledToDownload?: FilesExtensions[];
|
|
66
|
+
filesEnabledToOpen?: FilesExtensions[];
|
|
67
|
+
resultsToHide?: ResultTypes[];
|
|
68
|
+
};
|
|
63
69
|
OIDC: {
|
|
64
70
|
client: OIDCInterface;
|
|
65
71
|
user: OIDCInterface;
|
|
@@ -113,15 +119,26 @@ interface informationUnitsItems extends idShortID {
|
|
|
113
119
|
directoryNodes: DirectoryNodes[];
|
|
114
120
|
languages: string[];
|
|
115
121
|
}
|
|
116
|
-
interface
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
122
|
+
interface informationUnitsResponseItems {
|
|
123
|
+
language: string;
|
|
124
|
+
title: string;
|
|
125
|
+
type: string;
|
|
126
|
+
shortId: string;
|
|
127
|
+
localeType: string;
|
|
128
|
+
link: string;
|
|
129
|
+
disabled: boolean;
|
|
130
|
+
filesToOpen: {
|
|
121
131
|
format: string;
|
|
122
|
-
type: string;
|
|
123
132
|
link: string;
|
|
124
133
|
}[];
|
|
134
|
+
filesToDownload: {
|
|
135
|
+
format: string;
|
|
136
|
+
link: string;
|
|
137
|
+
}[];
|
|
138
|
+
}
|
|
139
|
+
interface informationUnitsResponse {
|
|
140
|
+
items: informationUnitsResponseItems[];
|
|
141
|
+
pageInfo: DefaultPageInfo;
|
|
125
142
|
}
|
|
126
143
|
interface informationUnits {
|
|
127
144
|
items: informationUnitsItems[];
|
|
@@ -137,7 +154,13 @@ interface AutocompleteSuggestion {
|
|
|
137
154
|
interface DirectoryNodes extends informationUnitsDirectories {
|
|
138
155
|
childNodes: informationUnitsDirectories[];
|
|
139
156
|
parents: idShortID[];
|
|
140
|
-
informationUnits: idShortID
|
|
157
|
+
informationUnits: (idShortID & {
|
|
158
|
+
labels: Labels[];
|
|
159
|
+
})[];
|
|
160
|
+
}
|
|
161
|
+
interface DirectoryNodesResponse {
|
|
162
|
+
items: DirectoryNodes[];
|
|
163
|
+
pageInfo: DefaultPageInfo;
|
|
141
164
|
}
|
|
142
165
|
|
|
143
166
|
interface DocumentTypesItem extends idShortID {
|
|
@@ -155,9 +178,10 @@ interface TreeOfContent {
|
|
|
155
178
|
}
|
|
156
179
|
interface SidebarAvailableVersionsInterface {
|
|
157
180
|
shortId: string;
|
|
181
|
+
active: boolean;
|
|
158
182
|
lang: string;
|
|
159
183
|
country: string;
|
|
160
184
|
link: string;
|
|
161
185
|
}
|
|
162
186
|
|
|
163
|
-
export type { AutocompleteSuggestion, ConfigInterface, DefaultLinksRequest, DefaultPageInfo, DefaultRequest, DirectoryNodes, DocumentTypesItem, Filters, Labels, LanguageAndCountries, OIDCInterface, SidebarAvailableVersionsInterface, TreeOfContent, idShortID, informationUnits, informationUnitsClass, informationUnitsDirectories, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, logInfo };
|
|
187
|
+
export type { AutocompleteSuggestion, ConfigInterface, DefaultLinksRequest, DefaultPageInfo, DefaultRequest, DirectoryNodes, DirectoryNodesResponse, DocumentTypesItem, Filters, Labels, LanguageAndCountries, OIDCInterface, SidebarAvailableVersionsInterface, TreeOfContent, idShortID, informationUnits, informationUnitsClass, informationUnitsDirectories, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, informationUnitsResponseItems, logInfo };
|