@c-rex/interfaces 0.1.9 → 0.1.11

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
@@ -91,7 +91,8 @@ interface logInfo {
91
91
  silent: boolean;
92
92
  minimumLevel: LogLevelType;
93
93
  categoriesLevel: LogCategoriesType[];
94
- url: string;
94
+ hostname: string;
95
+ port?: number;
95
96
  app: string;
96
97
  }
97
98
  interface OIDCInterface {
@@ -101,10 +102,12 @@ interface OIDCInterface {
101
102
  secret: string;
102
103
  issuer: string;
103
104
  scope?: string;
105
+ userInfoEndPoint?: string;
104
106
  }
105
107
  interface ConfigInterface {
106
108
  projectName: string;
107
109
  baseUrl: string;
110
+ publicNextApiUrl: string;
108
111
  results: {
109
112
  resultViewStyle: ResultViewStyles;
110
113
  disabledResults: ResultTypes[];
@@ -131,7 +134,7 @@ interface ConfigInterface {
131
134
  wildcard: WildCardType;
132
135
  };
133
136
  logs: {
134
- console: Omit<logInfo, "url" | "app" | "categoriesLevel">;
137
+ console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
135
138
  graylog: logInfo;
136
139
  matomo: logInfo;
137
140
  };
@@ -242,7 +245,8 @@ interface CollectionResult {
242
245
  articleInfo?: articleInfoItemType[];
243
246
  documentInfo?: articleInfoItemType[];
244
247
  rootNode: DirectoryNodes;
245
- availableVersions: informationUnitsResponseItem[];
248
+ articleAvailableVersions: informationUnitsResponseItem[];
249
+ documentAvailableVersions: informationUnitsResponseItem[];
246
250
  }
247
251
 
248
252
  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
@@ -91,7 +91,8 @@ interface logInfo {
91
91
  silent: boolean;
92
92
  minimumLevel: LogLevelType;
93
93
  categoriesLevel: LogCategoriesType[];
94
- url: string;
94
+ hostname: string;
95
+ port?: number;
95
96
  app: string;
96
97
  }
97
98
  interface OIDCInterface {
@@ -101,10 +102,12 @@ interface OIDCInterface {
101
102
  secret: string;
102
103
  issuer: string;
103
104
  scope?: string;
105
+ userInfoEndPoint?: string;
104
106
  }
105
107
  interface ConfigInterface {
106
108
  projectName: string;
107
109
  baseUrl: string;
110
+ publicNextApiUrl: string;
108
111
  results: {
109
112
  resultViewStyle: ResultViewStyles;
110
113
  disabledResults: ResultTypes[];
@@ -131,7 +134,7 @@ interface ConfigInterface {
131
134
  wildcard: WildCardType;
132
135
  };
133
136
  logs: {
134
- console: Omit<logInfo, "url" | "app" | "categoriesLevel">;
137
+ console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
135
138
  graylog: logInfo;
136
139
  matomo: logInfo;
137
140
  };
@@ -242,7 +245,8 @@ interface CollectionResult {
242
245
  articleInfo?: articleInfoItemType[];
243
246
  documentInfo?: articleInfoItemType[];
244
247
  rootNode: DirectoryNodes;
245
- availableVersions: informationUnitsResponseItem[];
248
+ articleAvailableVersions: informationUnitsResponseItem[];
249
+ documentAvailableVersions: informationUnitsResponseItem[];
246
250
  }
247
251
 
248
252
  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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-rex/interfaces",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "module": "./dist/index.mjs",