@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 +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
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
|
-
|
|
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, "
|
|
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
|
-
|
|
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, "
|
|
137
|
+
console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
|
|
137
138
|
graylog: logInfo;
|
|
138
139
|
matomo: logInfo;
|
|
139
140
|
};
|