@c-rex/interfaces 0.1.9 → 0.1.10
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -101,10 +101,12 @@ interface OIDCInterface {
|
|
|
101
101
|
secret: string;
|
|
102
102
|
issuer: string;
|
|
103
103
|
scope?: string;
|
|
104
|
+
userInfoEndPoint?: string;
|
|
104
105
|
}
|
|
105
106
|
interface ConfigInterface {
|
|
106
107
|
projectName: string;
|
|
107
108
|
baseUrl: string;
|
|
109
|
+
publicNextApiUrl: string;
|
|
108
110
|
results: {
|
|
109
111
|
resultViewStyle: ResultViewStyles;
|
|
110
112
|
disabledResults: ResultTypes[];
|
|
@@ -242,7 +244,8 @@ interface CollectionResult {
|
|
|
242
244
|
articleInfo?: articleInfoItemType[];
|
|
243
245
|
documentInfo?: articleInfoItemType[];
|
|
244
246
|
rootNode: DirectoryNodes;
|
|
245
|
-
|
|
247
|
+
articleAvailableVersions: informationUnitsResponseItem[];
|
|
248
|
+
documentAvailableVersions: informationUnitsResponseItem[];
|
|
246
249
|
}
|
|
247
250
|
|
|
248
251
|
export type { AutocompleteSuggestion, AvailableVersionsInterface, ClassInterface, CollectionContext, CollectionResult, ConfigInterface, DefaultCrexDirectories, DefaultCrexObject, DefaultCrexRenditions, DefaultPageInfo, DefaultRequest, DefaultResponse, DirectoryNodes, DirectoryNodesResponse, DocumentTypesItem, DocumentTypesResponse, Filters, Labels, LanguageAndCountries, Link, OIDCInterface, Tags, TopicsRequestItem, TopicsResponseItem, TreeOfContent, idShortID, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, informationUnitsResponseItem, logInfo };
|
package/dist/index.d.ts
CHANGED
|
@@ -101,10 +101,12 @@ interface OIDCInterface {
|
|
|
101
101
|
secret: string;
|
|
102
102
|
issuer: string;
|
|
103
103
|
scope?: string;
|
|
104
|
+
userInfoEndPoint?: string;
|
|
104
105
|
}
|
|
105
106
|
interface ConfigInterface {
|
|
106
107
|
projectName: string;
|
|
107
108
|
baseUrl: string;
|
|
109
|
+
publicNextApiUrl: string;
|
|
108
110
|
results: {
|
|
109
111
|
resultViewStyle: ResultViewStyles;
|
|
110
112
|
disabledResults: ResultTypes[];
|
|
@@ -242,7 +244,8 @@ interface CollectionResult {
|
|
|
242
244
|
articleInfo?: articleInfoItemType[];
|
|
243
245
|
documentInfo?: articleInfoItemType[];
|
|
244
246
|
rootNode: DirectoryNodes;
|
|
245
|
-
|
|
247
|
+
articleAvailableVersions: informationUnitsResponseItem[];
|
|
248
|
+
documentAvailableVersions: informationUnitsResponseItem[];
|
|
246
249
|
}
|
|
247
250
|
|
|
248
251
|
export type { AutocompleteSuggestion, AvailableVersionsInterface, ClassInterface, CollectionContext, CollectionResult, ConfigInterface, DefaultCrexDirectories, DefaultCrexObject, DefaultCrexRenditions, DefaultPageInfo, DefaultRequest, DefaultResponse, DirectoryNodes, DirectoryNodesResponse, DocumentTypesItem, DocumentTypesResponse, Filters, Labels, LanguageAndCountries, Link, OIDCInterface, Tags, TopicsRequestItem, TopicsResponseItem, TreeOfContent, idShortID, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, informationUnitsResponseItem, logInfo };
|