@c-rex/interfaces 0.1.10 → 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 {
@@ -133,7 +134,7 @@ interface ConfigInterface {
133
134
  wildcard: WildCardType;
134
135
  };
135
136
  logs: {
136
- console: Omit<logInfo, "url" | "app" | "categoriesLevel">;
137
+ console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
137
138
  graylog: logInfo;
138
139
  matomo: logInfo;
139
140
  };
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 {
@@ -133,7 +134,7 @@ interface ConfigInterface {
133
134
  wildcard: WildCardType;
134
135
  };
135
136
  logs: {
136
- console: Omit<logInfo, "url" | "app" | "categoriesLevel">;
137
+ console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
137
138
  graylog: logInfo;
138
139
  matomo: logInfo;
139
140
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-rex/interfaces",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "module": "./dist/index.mjs",