@c-rex/interfaces 0.0.7 → 0.0.8

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
@@ -43,9 +43,21 @@ interface logInfo {
43
43
  url: string;
44
44
  app: string;
45
45
  }
46
+ interface OIDCInterface {
47
+ enabled: boolean;
48
+ name: string;
49
+ id: string;
50
+ secret: string;
51
+ issuer: string;
52
+ scope?: string;
53
+ }
46
54
  interface ConfigInterface {
47
55
  projectName: string;
48
56
  baseUrl: string;
57
+ OIDC: {
58
+ client: OIDCInterface;
59
+ user: OIDCInterface;
60
+ };
49
61
  search: {
50
62
  fields: string[];
51
63
  tags: string[];
@@ -130,4 +142,4 @@ interface TreeOfContent {
130
142
  children: TreeOfContent[];
131
143
  }
132
144
 
133
- export type { AutocompleteSuggestion, ConfigInterface, DefaultLinksRequest, DefaultPageInfo, DefaultRequest, DirectoryNodes, DocumentTypesItem, Filters, Labels, TreeOfContent, idShortID, informationUnits, informationUnitsDirectories, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, logInfo };
145
+ export type { AutocompleteSuggestion, ConfigInterface, DefaultLinksRequest, DefaultPageInfo, DefaultRequest, DirectoryNodes, DocumentTypesItem, Filters, Labels, OIDCInterface, TreeOfContent, idShortID, informationUnits, informationUnitsDirectories, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, logInfo };
package/dist/index.d.ts CHANGED
@@ -43,9 +43,21 @@ interface logInfo {
43
43
  url: string;
44
44
  app: string;
45
45
  }
46
+ interface OIDCInterface {
47
+ enabled: boolean;
48
+ name: string;
49
+ id: string;
50
+ secret: string;
51
+ issuer: string;
52
+ scope?: string;
53
+ }
46
54
  interface ConfigInterface {
47
55
  projectName: string;
48
56
  baseUrl: string;
57
+ OIDC: {
58
+ client: OIDCInterface;
59
+ user: OIDCInterface;
60
+ };
49
61
  search: {
50
62
  fields: string[];
51
63
  tags: string[];
@@ -130,4 +142,4 @@ interface TreeOfContent {
130
142
  children: TreeOfContent[];
131
143
  }
132
144
 
133
- export type { AutocompleteSuggestion, ConfigInterface, DefaultLinksRequest, DefaultPageInfo, DefaultRequest, DirectoryNodes, DocumentTypesItem, Filters, Labels, TreeOfContent, idShortID, informationUnits, informationUnitsDirectories, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, logInfo };
145
+ export type { AutocompleteSuggestion, ConfigInterface, DefaultLinksRequest, DefaultPageInfo, DefaultRequest, DirectoryNodes, DocumentTypesItem, Filters, Labels, OIDCInterface, TreeOfContent, idShortID, informationUnits, informationUnitsDirectories, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, logInfo };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-rex/interfaces",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "module": "./dist/index.mjs",