@thi.ng/rstream-log 4.1.48 → 4.1.50
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 +1 -1
- package/format.d.ts +1 -1
- package/logger.d.ts +2 -2
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
package/format.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LogEntry } from "@thi.ng/logger/api";
|
|
1
|
+
import { type LogEntry } from "@thi.ng/logger/api";
|
|
2
2
|
import type { Transducer } from "@thi.ng/transducers";
|
|
3
3
|
import type { BodyFormat, DateFormat, LogEntryObj } from "./api.js";
|
|
4
4
|
export declare const isoDate: (dt: number) => string;
|
package/logger.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ISubscribable } from "@thi.ng/rstream/api";
|
|
1
|
+
import { LogLevel, type LogEntry } from "@thi.ng/logger/api";
|
|
2
|
+
import { type ISubscribable } from "@thi.ng/rstream/api";
|
|
3
3
|
import { StreamMerge } from "@thi.ng/rstream/merge";
|
|
4
4
|
import type { ILogger } from "./api.js";
|
|
5
5
|
export declare class Logger extends StreamMerge<LogEntry, LogEntry> implements ILogger {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream-log",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.50",
|
|
4
4
|
"description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.7.
|
|
38
|
-
"@thi.ng/checks": "^3.3.
|
|
39
|
-
"@thi.ng/errors": "^2.2.
|
|
40
|
-
"@thi.ng/logger": "^1.4.
|
|
41
|
-
"@thi.ng/rstream": "^
|
|
42
|
-
"@thi.ng/strings": "^3.4.
|
|
43
|
-
"@thi.ng/transducers": "^8.4.
|
|
37
|
+
"@thi.ng/api": "^8.7.6",
|
|
38
|
+
"@thi.ng/checks": "^3.3.12",
|
|
39
|
+
"@thi.ng/errors": "^2.2.15",
|
|
40
|
+
"@thi.ng/logger": "^1.4.13",
|
|
41
|
+
"@thi.ng/rstream": "^8.0.0",
|
|
42
|
+
"@thi.ng/strings": "^3.4.4",
|
|
43
|
+
"@thi.ng/transducers": "^8.4.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@microsoft/api-extractor": "^7.34.4",
|
|
47
|
-
"@thi.ng/testament": "^0.3.
|
|
48
|
-
"rimraf": "^4.4.
|
|
47
|
+
"@thi.ng/testament": "^0.3.15",
|
|
48
|
+
"rimraf": "^4.4.1",
|
|
49
49
|
"tools": "^0.0.1",
|
|
50
|
-
"typedoc": "^0.23.
|
|
51
|
-
"typescript": "^
|
|
50
|
+
"typedoc": "^0.23.28",
|
|
51
|
+
"typescript": "^5.0.4"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"datastructure",
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
],
|
|
99
99
|
"year": 2017
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "abcedd9e4e06a4b631f363610eec572f79b571c1\n"
|
|
102
102
|
}
|