@rsdk/logging 4.0.8-next.2 → 4.0.8-next.4

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.0.8-next.4](https://github.com/R-Vision/rsdk/compare/v4.0.8-next.3...v4.0.8-next.4) (2024-01-17)
7
+
8
+ ### Bug Fixes
9
+
10
+ * strict tsconfig ([38625f8](https://github.com/R-Vision/rsdk/commit/38625f805b213c00b1865f3f3650ca941b141293))
11
+
12
+ ## [4.0.8-next.3](https://github.com/R-Vision/rsdk/compare/v4.0.8-next.2...v4.0.8-next.3) (2024-01-17)
13
+
14
+ **Note:** Version bump only for package @rsdk/logging
15
+
6
16
  ## [4.0.8-next.2](https://github.com/R-Vision/rsdk/compare/v4.0.8-next.1...v4.0.8-next.2) (2023-12-28)
7
17
 
8
18
  **Note:** Version bump only for package @rsdk/logging
package/dist/types.d.ts CHANGED
@@ -15,4 +15,4 @@ export interface LoggerOptions {
15
15
  stream: pino.DestinationStream;
16
16
  }
17
17
  export type LoggingContext = string | Constructor;
18
- export type OnMessage = (level: LogLevel, data: object) => void;
18
+ export type OnMessage = (level: LogLevel, data: Record<string, unknown>) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/logging",
3
- "version": "4.0.8-next.2",
3
+ "version": "4.0.8-next.4",
4
4
  "description": "Base framework independent logging functionality",
5
5
  "license": "Apache License 2.0",
6
6
  "publishConfig": {
@@ -18,7 +18,7 @@
18
18
  "rxjs": "^7.8.1"
19
19
  },
20
20
  "peerDependencies": {
21
- "@rsdk/common": "^4.0.8-next.2"
21
+ "@rsdk/common": "^4.0.8-next.4"
22
22
  },
23
- "gitHead": "176cd91c00ed89e587ef3faae026c88ddada55b8"
23
+ "gitHead": "31bb0b8be6afa649d1bca8bd344695f75f0e061a"
24
24
  }
package/src/types.ts CHANGED
@@ -20,4 +20,7 @@ export interface LoggerOptions {
20
20
 
21
21
  export type LoggingContext = string | Constructor;
22
22
 
23
- export type OnMessage = (level: LogLevel, data: object) => void;
23
+ export type OnMessage = (
24
+ level: LogLevel,
25
+ data: Record<string, unknown>,
26
+ ) => void;