@odg/log 1.1.0 → 1.3.0
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/Interfaces/LogLevel.d.ts +5 -0
- package/dist/Interfaces/LogLevel.js +5 -0
- package/dist/Interfaces/LogLevel.js.map +1 -1
- package/dist/Interfaces/LoggerAwareInterface.d.ts +14 -0
- package/dist/Interfaces/LoggerInterface.d.ts +108 -0
- package/dist/Interfaces/LoggerPluginInterface.d.ts +27 -0
- package/dist/Interfaces/LoggerPluginInterface.js +3 -0
- package/dist/Interfaces/LoggerPluginInterface.js.map +1 -0
- package/dist/Interfaces/index.d.ts +1 -0
- package/dist/Interfaces/index.js +1 -0
- package/dist/Interfaces/index.js.map +1 -1
- package/dist/logs/AbstractLogger.d.ts +116 -1
- package/dist/logs/AbstractLogger.js +126 -0
- package/dist/logs/AbstractLogger.js.map +1 -1
- package/dist/logs/ConsoleLogger.d.ts +20 -1
- package/dist/logs/ConsoleLogger.js +28 -8
- package/dist/logs/ConsoleLogger.js.map +1 -1
- package/dist/logs/NullLogger.d.ts +19 -0
- package/dist/logs/NullLogger.js +19 -0
- package/dist/logs/NullLogger.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +10 -9
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.LogLevel = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Describes log levels.
|
|
6
|
+
*
|
|
7
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
8
|
+
*/
|
|
4
9
|
var LogLevel;
|
|
5
10
|
(function (LogLevel) {
|
|
6
11
|
LogLevel["EMERGENCY"] = "emergency";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LogLevel.js","sourceRoot":"","sources":["../../src/Interfaces/LogLevel.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"LogLevel.js","sourceRoot":"","sources":["../../src/Interfaces/LogLevel.ts"],"names":[],"mappings":";;;AAAA;;;;GAIG;AACH,IAAK,QASJ;AATD,WAAK,QAAQ;IACT,mCAAuB,CAAA;IACvB,2BAAe,CAAA;IACf,iCAAqB,CAAA;IACrB,2BAAe,CAAA;IACf,+BAAmB,CAAA;IACnB,6BAAiB,CAAA;IACjB,yBAAa,CAAA;IACb,2BAAe,CAAA;AACnB,CAAC,EATI,QAAQ,KAAR,QAAQ,QASZ;AAIQ,4BAAQ"}
|
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
import { type LoggerInterface } from "./LoggerInterface";
|
|
2
|
+
/**
|
|
3
|
+
* Describes a logger-aware instance.
|
|
4
|
+
*
|
|
5
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
6
|
+
*/
|
|
2
7
|
interface LoggerAwareInterface {
|
|
8
|
+
/**
|
|
9
|
+
* Logger instance
|
|
10
|
+
*/
|
|
3
11
|
logger?: LoggerInterface;
|
|
12
|
+
/**
|
|
13
|
+
* Sets a logger instance in objet/class
|
|
14
|
+
*
|
|
15
|
+
* @param {LoggerInterface} logger
|
|
16
|
+
* @returns {void}
|
|
17
|
+
*/
|
|
4
18
|
setLogger(logger: LoggerInterface): void;
|
|
5
19
|
}
|
|
6
20
|
export type { LoggerAwareInterface };
|
|
@@ -1,14 +1,122 @@
|
|
|
1
1
|
import { type LogLevel } from "./LogLevel";
|
|
2
|
+
import { type LoggerPluginInterface } from ".";
|
|
3
|
+
/**
|
|
4
|
+
* Content type in context
|
|
5
|
+
*
|
|
6
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
7
|
+
*/
|
|
2
8
|
type ContextTypo = Record<string, string> | undefined;
|
|
9
|
+
/**
|
|
10
|
+
* Describes a logger instance.
|
|
11
|
+
*
|
|
12
|
+
* The message MUST be a string or JSON
|
|
13
|
+
*
|
|
14
|
+
* The message MAY contain placeholders in the form: {foo} where foo
|
|
15
|
+
* will be replaced by the context data in key "foo".
|
|
16
|
+
*
|
|
17
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
18
|
+
*/
|
|
3
19
|
interface LoggerInterface {
|
|
20
|
+
/**
|
|
21
|
+
* System is unusable.
|
|
22
|
+
*
|
|
23
|
+
* @param {unknown} message Message Log
|
|
24
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
25
|
+
*
|
|
26
|
+
* @returns {Promise<void>}
|
|
27
|
+
*/
|
|
4
28
|
emergency(message: unknown, context?: ContextTypo): Promise<void>;
|
|
29
|
+
/**
|
|
30
|
+
* Action must be taken immediately.
|
|
31
|
+
*
|
|
32
|
+
* Example: Entire website down, database unavailable, etc. This should
|
|
33
|
+
* trigger the SMS alerts and wake you up.
|
|
34
|
+
*
|
|
35
|
+
* @param {unknown} message Message Log
|
|
36
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
37
|
+
*
|
|
38
|
+
* @returns {Promise<void>}
|
|
39
|
+
*/
|
|
5
40
|
alert(message: unknown, context?: ContextTypo): Promise<void>;
|
|
41
|
+
/**
|
|
42
|
+
* Critical conditions.
|
|
43
|
+
*
|
|
44
|
+
* Example: Application component unavailable, unexpected exception.
|
|
45
|
+
*
|
|
46
|
+
* @param {unknown} message Message Log
|
|
47
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
48
|
+
*
|
|
49
|
+
* @returns {Promise<void>}
|
|
50
|
+
*/
|
|
6
51
|
critical(message: unknown, context?: ContextTypo): Promise<void>;
|
|
52
|
+
/**
|
|
53
|
+
* Runtime errors that do not require immediate action but should typically
|
|
54
|
+
* be logged and monitored.
|
|
55
|
+
*
|
|
56
|
+
* @param {unknown} message Message Log
|
|
57
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
58
|
+
*
|
|
59
|
+
* @returns {Promise<void>}
|
|
60
|
+
*/
|
|
7
61
|
error(message: unknown, context?: ContextTypo): Promise<void>;
|
|
62
|
+
/**
|
|
63
|
+
* Exceptional occurrences that are not errors.
|
|
64
|
+
*
|
|
65
|
+
* Example: Use of deprecated APIs, poor use of an API, undesirable things
|
|
66
|
+
* that are not necessarily wrong.
|
|
67
|
+
*
|
|
68
|
+
* @param {unknown} message Message Log
|
|
69
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
70
|
+
*
|
|
71
|
+
* @returns {Promise<void>}
|
|
72
|
+
*/
|
|
8
73
|
warning(message: unknown, context?: ContextTypo): Promise<void>;
|
|
74
|
+
/**
|
|
75
|
+
* Normal but significant events.
|
|
76
|
+
*
|
|
77
|
+
* @param {unknown} message Message Log
|
|
78
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
79
|
+
*
|
|
80
|
+
* @returns {Promise<void>}
|
|
81
|
+
*/
|
|
9
82
|
notice(message: unknown, context?: ContextTypo): Promise<void>;
|
|
83
|
+
/**
|
|
84
|
+
* Interesting events.
|
|
85
|
+
*
|
|
86
|
+
* Example: User logs in, SQL logs.
|
|
87
|
+
*
|
|
88
|
+
* @param {unknown} message Message Log
|
|
89
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
90
|
+
*
|
|
91
|
+
* @returns {Promise<void>}
|
|
92
|
+
*/
|
|
10
93
|
info(message: unknown, context?: ContextTypo): Promise<void>;
|
|
94
|
+
/**
|
|
95
|
+
* Detailed debug information.
|
|
96
|
+
*
|
|
97
|
+
* @param {unknown} message Message Log
|
|
98
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
99
|
+
*
|
|
100
|
+
* @returns {Promise<void>}
|
|
101
|
+
*/
|
|
11
102
|
debug(message: unknown, context?: ContextTypo): Promise<void>;
|
|
103
|
+
/**
|
|
104
|
+
* Logs with an arbitrary level.
|
|
105
|
+
*
|
|
106
|
+
* @param {LogLevel} level Log level
|
|
107
|
+
* @param {unknown} message Message Log
|
|
108
|
+
* @param {ContextTypo | undefined} context Context Message replace
|
|
109
|
+
*
|
|
110
|
+
* @returns {Promise<void>}
|
|
111
|
+
*/
|
|
12
112
|
log(level: LogLevel, message: unknown, context?: ContextTypo): Promise<void>;
|
|
113
|
+
/**
|
|
114
|
+
* Use Plugins in logger class
|
|
115
|
+
*
|
|
116
|
+
* @param {LoggerPluginInterface} plugin Plugin to Load
|
|
117
|
+
*
|
|
118
|
+
* @returns {Promise<void>}
|
|
119
|
+
*/
|
|
120
|
+
use(plugin: LoggerPluginInterface): void;
|
|
13
121
|
}
|
|
14
122
|
export type { LoggerInterface, ContextTypo };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { type ContextTypo, type LogLevel } from ".";
|
|
2
|
+
/**
|
|
3
|
+
* Logger Plugin return parser
|
|
4
|
+
*
|
|
5
|
+
* @interface LoggerParserInterface
|
|
6
|
+
*/
|
|
7
|
+
export interface LoggerParserInterface {
|
|
8
|
+
readonly originalMessage: unknown;
|
|
9
|
+
level: LogLevel;
|
|
10
|
+
message: unknown;
|
|
11
|
+
context?: ContextTypo;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Logger Plugin Interface
|
|
15
|
+
*
|
|
16
|
+
* @interface LoggerPluginInterface
|
|
17
|
+
*/
|
|
18
|
+
export interface LoggerPluginInterface {
|
|
19
|
+
/**
|
|
20
|
+
* Parser Logger on called
|
|
21
|
+
*
|
|
22
|
+
* @param {LoggerParserInterface} data Received LogLevel
|
|
23
|
+
* @returns {Promise<LoggerParserInterface>}
|
|
24
|
+
* @memberof LoggerPluginInterface
|
|
25
|
+
*/
|
|
26
|
+
parser(data: LoggerParserInterface): Promise<LoggerParserInterface>;
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LoggerPluginInterface.js","sourceRoot":"","sources":["../../src/Interfaces/LoggerPluginInterface.ts"],"names":[],"mappings":""}
|
package/dist/Interfaces/index.js
CHANGED
|
@@ -17,4 +17,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./LoggerAwareInterface"), exports);
|
|
18
18
|
__exportStar(require("./LoggerInterface"), exports);
|
|
19
19
|
__exportStar(require("./LogLevel"), exports);
|
|
20
|
+
__exportStar(require("./LoggerPluginInterface"), exports);
|
|
20
21
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AAEvC,oDAAkC;AAElC,6CAA2B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AAEvC,oDAAkC;AAElC,6CAA2B;AAE3B,0DAAwC"}
|
|
@@ -1,12 +1,127 @@
|
|
|
1
|
-
import { type LoggerInterface, LogLevel } from "../index";
|
|
1
|
+
import { type LoggerInterface, LogLevel, type ContextTypo } from "../index";
|
|
2
|
+
import { type LoggerParserInterface, type LoggerPluginInterface } from "../Interfaces/LoggerPluginInterface";
|
|
3
|
+
/**
|
|
4
|
+
* Simple logger implementation
|
|
5
|
+
*
|
|
6
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
7
|
+
*/
|
|
2
8
|
export declare abstract class AbstractLogger implements LoggerInterface {
|
|
9
|
+
/**
|
|
10
|
+
* Plugins List
|
|
11
|
+
*
|
|
12
|
+
* @protected
|
|
13
|
+
* @type {LoggerPluginInterface[]}
|
|
14
|
+
* @memberof AbstractLogger
|
|
15
|
+
*/
|
|
16
|
+
protected readonly plugins: LoggerPluginInterface[];
|
|
17
|
+
/**
|
|
18
|
+
* System is unusable.
|
|
19
|
+
*
|
|
20
|
+
* @param {unknown} message Message Log
|
|
21
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
22
|
+
*
|
|
23
|
+
* @returns {Promise<void>}
|
|
24
|
+
*/
|
|
3
25
|
emergency(message: unknown, context?: Record<string, string>): Promise<void>;
|
|
26
|
+
/**
|
|
27
|
+
* Action must be taken immediately.
|
|
28
|
+
*
|
|
29
|
+
* Example: Entire website down, database unavailable, etc. This should
|
|
30
|
+
* trigger the SMS alerts and wake you up.
|
|
31
|
+
*
|
|
32
|
+
* @param {unknown} message Message Log
|
|
33
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
34
|
+
*
|
|
35
|
+
* @returns {Promise<void>}
|
|
36
|
+
*/
|
|
4
37
|
alert(message: unknown, context?: Record<string, string>): Promise<void>;
|
|
38
|
+
/**
|
|
39
|
+
* Critical conditions.
|
|
40
|
+
*
|
|
41
|
+
* Example: Application component unavailable, unexpected exception.
|
|
42
|
+
*
|
|
43
|
+
* @param {unknown} message Message Log
|
|
44
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
45
|
+
*
|
|
46
|
+
* @returns {Promise<void>}
|
|
47
|
+
*/
|
|
5
48
|
critical(message: unknown, context?: Record<string, string>): Promise<void>;
|
|
49
|
+
/**
|
|
50
|
+
* Runtime errors that do not require immediate action but should typically
|
|
51
|
+
* be logged and monitored.
|
|
52
|
+
*
|
|
53
|
+
* @param {unknown} message Message Log
|
|
54
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
55
|
+
*
|
|
56
|
+
* @returns {Promise<void>}
|
|
57
|
+
*/
|
|
6
58
|
error(message: unknown, context?: Record<string, string>): Promise<void>;
|
|
59
|
+
/**
|
|
60
|
+
* Exceptional occurrences that are not errors.
|
|
61
|
+
*
|
|
62
|
+
* Example: Use of deprecated APIs, poor use of an API, undesirable things
|
|
63
|
+
* that are not necessarily wrong.
|
|
64
|
+
*
|
|
65
|
+
* @param {unknown} message Message Log
|
|
66
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
67
|
+
*
|
|
68
|
+
* @returns {Promise<void>}
|
|
69
|
+
*/
|
|
7
70
|
warning(message: unknown, context?: Record<string, string>): Promise<void>;
|
|
71
|
+
/**
|
|
72
|
+
* Normal but significant events.
|
|
73
|
+
*
|
|
74
|
+
* @param {unknown} message Message Log
|
|
75
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
76
|
+
*
|
|
77
|
+
* @returns {Promise<void>}
|
|
78
|
+
*/
|
|
8
79
|
notice(message: unknown, context?: Record<string, string>): Promise<void>;
|
|
80
|
+
/**
|
|
81
|
+
* Interesting events.
|
|
82
|
+
*
|
|
83
|
+
* Example: User logs in, SQL logs.
|
|
84
|
+
*
|
|
85
|
+
* @param {unknown} message Message Log
|
|
86
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
87
|
+
*
|
|
88
|
+
* @returns {Promise<void>}
|
|
89
|
+
*/
|
|
9
90
|
info(message: unknown, context?: Record<string, string>): Promise<void>;
|
|
91
|
+
/**
|
|
92
|
+
* Detailed debug information.
|
|
93
|
+
*
|
|
94
|
+
* @param {unknown} message Message Log
|
|
95
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
96
|
+
*
|
|
97
|
+
* @returns {Promise<void>}
|
|
98
|
+
*/
|
|
10
99
|
debug(message: unknown, context?: Record<string, string>): Promise<void>;
|
|
100
|
+
/**
|
|
101
|
+
* Register Plugin Logger
|
|
102
|
+
*
|
|
103
|
+
* @param {LoggerPluginInterface} plugin Plugin Class
|
|
104
|
+
* @memberof AbstractLogger
|
|
105
|
+
*/
|
|
106
|
+
use(plugin: LoggerPluginInterface): void;
|
|
107
|
+
/**
|
|
108
|
+
* Parser Plugin Logger
|
|
109
|
+
*
|
|
110
|
+
* @param {LogLevel} level Logger
|
|
111
|
+
* @param {unknown} message Message Logger
|
|
112
|
+
* @param {ContextTypo} [context] Context
|
|
113
|
+
* @returns {Promise<LoggerParserInterface>}
|
|
114
|
+
* @memberof AbstractLogger
|
|
115
|
+
*/
|
|
116
|
+
parser(level: LogLevel, message: unknown, context?: ContextTypo): Promise<LoggerParserInterface>;
|
|
117
|
+
/**
|
|
118
|
+
* Logs with an arbitrary level.
|
|
119
|
+
*
|
|
120
|
+
* @param {LogLevel} level Log level
|
|
121
|
+
* @param {unknown} message Message Log
|
|
122
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
123
|
+
*
|
|
124
|
+
* @returns {Promise<void>}
|
|
125
|
+
*/
|
|
11
126
|
abstract log(level: LogLevel, message: unknown, context?: Record<string, string>): Promise<void>;
|
|
12
127
|
}
|
|
@@ -2,31 +2,157 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AbstractLogger = void 0;
|
|
4
4
|
const index_1 = require("../index");
|
|
5
|
+
/**
|
|
6
|
+
* Simple logger implementation
|
|
7
|
+
*
|
|
8
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
9
|
+
*/
|
|
5
10
|
class AbstractLogger {
|
|
11
|
+
constructor() {
|
|
12
|
+
/**
|
|
13
|
+
* Plugins List
|
|
14
|
+
*
|
|
15
|
+
* @protected
|
|
16
|
+
* @type {LoggerPluginInterface[]}
|
|
17
|
+
* @memberof AbstractLogger
|
|
18
|
+
*/
|
|
19
|
+
this.plugins = [];
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* System is unusable.
|
|
23
|
+
*
|
|
24
|
+
* @param {unknown} message Message Log
|
|
25
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
26
|
+
*
|
|
27
|
+
* @returns {Promise<void>}
|
|
28
|
+
*/
|
|
6
29
|
async emergency(message, context) {
|
|
7
30
|
return this.log(index_1.LogLevel.EMERGENCY, message, context);
|
|
8
31
|
}
|
|
32
|
+
/**
|
|
33
|
+
* Action must be taken immediately.
|
|
34
|
+
*
|
|
35
|
+
* Example: Entire website down, database unavailable, etc. This should
|
|
36
|
+
* trigger the SMS alerts and wake you up.
|
|
37
|
+
*
|
|
38
|
+
* @param {unknown} message Message Log
|
|
39
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
40
|
+
*
|
|
41
|
+
* @returns {Promise<void>}
|
|
42
|
+
*/
|
|
9
43
|
async alert(message, context) {
|
|
10
44
|
return this.log(index_1.LogLevel.ALERT, message, context);
|
|
11
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* Critical conditions.
|
|
48
|
+
*
|
|
49
|
+
* Example: Application component unavailable, unexpected exception.
|
|
50
|
+
*
|
|
51
|
+
* @param {unknown} message Message Log
|
|
52
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
53
|
+
*
|
|
54
|
+
* @returns {Promise<void>}
|
|
55
|
+
*/
|
|
12
56
|
async critical(message, context) {
|
|
13
57
|
return this.log(index_1.LogLevel.CRITICAL, message, context);
|
|
14
58
|
}
|
|
59
|
+
/**
|
|
60
|
+
* Runtime errors that do not require immediate action but should typically
|
|
61
|
+
* be logged and monitored.
|
|
62
|
+
*
|
|
63
|
+
* @param {unknown} message Message Log
|
|
64
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
65
|
+
*
|
|
66
|
+
* @returns {Promise<void>}
|
|
67
|
+
*/
|
|
15
68
|
async error(message, context) {
|
|
16
69
|
return this.log(index_1.LogLevel.ERROR, message, context);
|
|
17
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* Exceptional occurrences that are not errors.
|
|
73
|
+
*
|
|
74
|
+
* Example: Use of deprecated APIs, poor use of an API, undesirable things
|
|
75
|
+
* that are not necessarily wrong.
|
|
76
|
+
*
|
|
77
|
+
* @param {unknown} message Message Log
|
|
78
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
79
|
+
*
|
|
80
|
+
* @returns {Promise<void>}
|
|
81
|
+
*/
|
|
18
82
|
async warning(message, context) {
|
|
19
83
|
return this.log(index_1.LogLevel.WARNING, message, context);
|
|
20
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* Normal but significant events.
|
|
87
|
+
*
|
|
88
|
+
* @param {unknown} message Message Log
|
|
89
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
90
|
+
*
|
|
91
|
+
* @returns {Promise<void>}
|
|
92
|
+
*/
|
|
21
93
|
async notice(message, context) {
|
|
22
94
|
return this.log(index_1.LogLevel.NOTICE, message, context);
|
|
23
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* Interesting events.
|
|
98
|
+
*
|
|
99
|
+
* Example: User logs in, SQL logs.
|
|
100
|
+
*
|
|
101
|
+
* @param {unknown} message Message Log
|
|
102
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
103
|
+
*
|
|
104
|
+
* @returns {Promise<void>}
|
|
105
|
+
*/
|
|
24
106
|
async info(message, context) {
|
|
25
107
|
return this.log(index_1.LogLevel.INFO, message, context);
|
|
26
108
|
}
|
|
109
|
+
/**
|
|
110
|
+
* Detailed debug information.
|
|
111
|
+
*
|
|
112
|
+
* @param {unknown} message Message Log
|
|
113
|
+
* @param {Record<string, string> | undefined} context Context Message replace
|
|
114
|
+
*
|
|
115
|
+
* @returns {Promise<void>}
|
|
116
|
+
*/
|
|
27
117
|
async debug(message, context) {
|
|
28
118
|
return this.log(index_1.LogLevel.DEBUG, message, context);
|
|
29
119
|
}
|
|
120
|
+
/**
|
|
121
|
+
* Register Plugin Logger
|
|
122
|
+
*
|
|
123
|
+
* @param {LoggerPluginInterface} plugin Plugin Class
|
|
124
|
+
* @memberof AbstractLogger
|
|
125
|
+
*/
|
|
126
|
+
use(plugin) {
|
|
127
|
+
this.plugins.push(plugin);
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Parser Plugin Logger
|
|
131
|
+
*
|
|
132
|
+
* @param {LogLevel} level Logger
|
|
133
|
+
* @param {unknown} message Message Logger
|
|
134
|
+
* @param {ContextTypo} [context] Context
|
|
135
|
+
* @returns {Promise<LoggerParserInterface>}
|
|
136
|
+
* @memberof AbstractLogger
|
|
137
|
+
*/
|
|
138
|
+
async parser(level, message, context) {
|
|
139
|
+
let newParser = {
|
|
140
|
+
originalMessage: message,
|
|
141
|
+
level: level,
|
|
142
|
+
message: message,
|
|
143
|
+
context: context,
|
|
144
|
+
};
|
|
145
|
+
for (const plugin of this.plugins) {
|
|
146
|
+
const parser = await plugin.parser(newParser);
|
|
147
|
+
newParser = {
|
|
148
|
+
originalMessage: message,
|
|
149
|
+
level: parser.level,
|
|
150
|
+
message: parser.message,
|
|
151
|
+
context: parser.context,
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
return newParser;
|
|
155
|
+
}
|
|
30
156
|
}
|
|
31
157
|
exports.AbstractLogger = AbstractLogger;
|
|
32
158
|
//# sourceMappingURL=AbstractLogger.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbstractLogger.js","sourceRoot":"","sources":["../../src/logs/AbstractLogger.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"AbstractLogger.js","sourceRoot":"","sources":["../../src/logs/AbstractLogger.ts"],"names":[],"mappings":";;;AAAA,oCAA4E;AAG5E;;;;GAIG;AACH,MAAsB,cAAc;IAApC;QAEI;;;;;;WAMG;QACgB,YAAO,GAA4B,EAAE,CAAC;IAoK7D,CAAC;IAlKG;;;;;;;OAOG;IACI,KAAK,CAAC,SAAS,CAAC,OAAgB,EAAE,OAAgC;QACrE,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAQ,CAAC,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IAC1D,CAAC;IAED;;;;;;;;;;OAUG;IACI,KAAK,CAAC,KAAK,CAAC,OAAgB,EAAE,OAAgC;QACjE,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAQ,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACtD,CAAC;IAED;;;;;;;;;OASG;IACI,KAAK,CAAC,QAAQ,CAAC,OAAgB,EAAE,OAAgC;QACpE,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAQ,CAAC,QAAQ,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACzD,CAAC;IAED;;;;;;;;OAQG;IACI,KAAK,CAAC,KAAK,CAAC,OAAgB,EAAE,OAAgC;QACjE,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAQ,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACtD,CAAC;IAED;;;;;;;;;;OAUG;IACI,KAAK,CAAC,OAAO,CAAC,OAAgB,EAAE,OAAgC;QACnE,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAQ,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACxD,CAAC;IAED;;;;;;;OAOG;IACI,KAAK,CAAC,MAAM,CAAC,OAAgB,EAAE,OAAgC;QAClE,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAQ,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACvD,CAAC;IAED;;;;;;;;;OASG;IACI,KAAK,CAAC,IAAI,CAAC,OAAgB,EAAE,OAAgC;QAChE,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAQ,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACrD,CAAC;IAED;;;;;;;OAOG;IACI,KAAK,CAAC,KAAK,CAAC,OAAgB,EAAE,OAAgC;QACjE,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAQ,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;IACtD,CAAC;IAED;;;;;OAKG;IACI,GAAG,CAAC,MAA6B;QACpC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAC9B,CAAC;IAED;;;;;;;;OAQG;IACI,KAAK,CAAC,MAAM,CACf,KAAe,EACf,OAAgB,EAChB,OAAqB;QAErB,IAAI,SAAS,GAA0B;YACnC,eAAe,EAAE,OAAO;YACxB,KAAK,EAAE,KAAK;YACZ,OAAO,EAAE,OAAO;YAChB,OAAO,EAAE,OAAO;SACnB,CAAC;QAEF,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,OAAO,EAAE;YAC/B,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;YAC9C,SAAS,GAAG;gBACR,eAAe,EAAE,OAAO;gBACxB,KAAK,EAAE,MAAM,CAAC,KAAK;gBACnB,OAAO,EAAE,MAAM,CAAC,OAAO;gBACvB,OAAO,EAAE,MAAM,CAAC,OAAO;aAC1B,CAAC;SACL;QAED,OAAO,SAAS,CAAC;IACrB,CAAC;CAaJ;AA7KD,wCA6KC"}
|
|
@@ -1,7 +1,26 @@
|
|
|
1
1
|
import { LogLevel } from "../index";
|
|
2
2
|
import { type ContextTypo } from "../Interfaces/LoggerInterface";
|
|
3
3
|
import { AbstractLogger } from "./AbstractLogger";
|
|
4
|
+
/**
|
|
5
|
+
* This Logger can be used to avoid conditional log calls.
|
|
6
|
+
*
|
|
7
|
+
* Logging should always be optional, and if no logger is provided to your
|
|
8
|
+
* library creating a NullLogger instance to have something to throw logs at
|
|
9
|
+
* is a good way to avoid littering your code with `if ($this->logger) { }`
|
|
10
|
+
* blocks.
|
|
11
|
+
*
|
|
12
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
13
|
+
*/
|
|
4
14
|
export declare class ConsoleLogger extends AbstractLogger {
|
|
5
|
-
|
|
15
|
+
/**
|
|
16
|
+
* Logs with an arbitrary level.
|
|
17
|
+
*
|
|
18
|
+
* @param {LogLevel} level Log level
|
|
19
|
+
* @param {unknown} message Message Log
|
|
20
|
+
* @param {ContextTypo} context Context Message replace
|
|
21
|
+
*
|
|
22
|
+
* @returns {Promise<void>}
|
|
23
|
+
*/
|
|
24
|
+
log(level: LogLevel, message: unknown, context?: ContextTypo): Promise<void>;
|
|
6
25
|
private getLevel;
|
|
7
26
|
}
|
|
@@ -8,21 +8,41 @@ const node_util_1 = __importDefault(require("node:util"));
|
|
|
8
8
|
const chalk_1 = __importDefault(require("chalk"));
|
|
9
9
|
const index_1 = require("../index");
|
|
10
10
|
const AbstractLogger_1 = require("./AbstractLogger");
|
|
11
|
+
/**
|
|
12
|
+
* This Logger can be used to avoid conditional log calls.
|
|
13
|
+
*
|
|
14
|
+
* Logging should always be optional, and if no logger is provided to your
|
|
15
|
+
* library creating a NullLogger instance to have something to throw logs at
|
|
16
|
+
* is a good way to avoid littering your code with `if ($this->logger) { }`
|
|
17
|
+
* blocks.
|
|
18
|
+
*
|
|
19
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
20
|
+
*/
|
|
11
21
|
class ConsoleLogger extends AbstractLogger_1.AbstractLogger {
|
|
12
|
-
|
|
13
|
-
|
|
22
|
+
/**
|
|
23
|
+
* Logs with an arbitrary level.
|
|
24
|
+
*
|
|
25
|
+
* @param {LogLevel} level Log level
|
|
26
|
+
* @param {unknown} message Message Log
|
|
27
|
+
* @param {ContextTypo} context Context Message replace
|
|
28
|
+
*
|
|
29
|
+
* @returns {Promise<void>}
|
|
30
|
+
*/
|
|
31
|
+
async log(level, message, context) {
|
|
32
|
+
const log = await this.parser(level, message, context);
|
|
33
|
+
console.log(this.getLevel(log.level), node_util_1.default.format(log.message));
|
|
14
34
|
}
|
|
15
35
|
getLevel(level) {
|
|
16
|
-
const message =
|
|
36
|
+
const message = ` ${level}: `;
|
|
17
37
|
switch (level) {
|
|
18
38
|
case index_1.LogLevel.EMERGENCY:
|
|
19
|
-
return chalk_1.default.bgBlack.bold.
|
|
39
|
+
return chalk_1.default.bgBlack.bold.red(message);
|
|
20
40
|
case index_1.LogLevel.ALERT:
|
|
21
|
-
return chalk_1.default.bgHex("#
|
|
41
|
+
return chalk_1.default.bgHex("#FFFCCD").bold.white(message);
|
|
22
42
|
case index_1.LogLevel.CRITICAL:
|
|
23
|
-
return chalk_1.default.
|
|
43
|
+
return chalk_1.default.bgHex("#990033").white.bold(message);
|
|
24
44
|
case index_1.LogLevel.ERROR:
|
|
25
|
-
return chalk_1.default.
|
|
45
|
+
return chalk_1.default.bgRed.white.bold(message);
|
|
26
46
|
case index_1.LogLevel.WARNING:
|
|
27
47
|
return chalk_1.default.bgYellow.white(message);
|
|
28
48
|
case index_1.LogLevel.NOTICE:
|
|
@@ -32,7 +52,7 @@ class ConsoleLogger extends AbstractLogger_1.AbstractLogger {
|
|
|
32
52
|
case index_1.LogLevel.DEBUG:
|
|
33
53
|
return chalk_1.default.bgMagenta.white(message);
|
|
34
54
|
default:
|
|
35
|
-
return chalk_1.default.bgGray.white("
|
|
55
|
+
return chalk_1.default.bgGray.white(" unknown: ");
|
|
36
56
|
}
|
|
37
57
|
}
|
|
38
58
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConsoleLogger.js","sourceRoot":"","sources":["../../src/logs/ConsoleLogger.ts"],"names":[],"mappings":";;;;;;AAAA,0DAA6B;AAE7B,kDAA0B;AAE1B,oCAAoC;AAGpC,qDAAkD;
|
|
1
|
+
{"version":3,"file":"ConsoleLogger.js","sourceRoot":"","sources":["../../src/logs/ConsoleLogger.ts"],"names":[],"mappings":";;;;;;AAAA,0DAA6B;AAE7B,kDAA0B;AAE1B,oCAAoC;AAGpC,qDAAkD;AAElD;;;;;;;;;GASG;AACH,MAAa,aAAc,SAAQ,+BAAc;IAE7C;;;;;;;;OAQG;IACI,KAAK,CAAC,GAAG,CAAC,KAAe,EAAE,OAAgB,EAAE,OAAqB;QACrE,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,mBAAI,CAAC,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;IACpE,CAAC;IAEO,QAAQ,CAAC,KAAe;QAC5B,MAAM,OAAO,GAAG,KAAK,KAAK,KAAK,CAAC;QAChC,QAAQ,KAAK,EAAE;YACf,KAAK,gBAAQ,CAAC,SAAS;gBACnB,OAAO,eAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;YAC3C,KAAK,gBAAQ,CAAC,KAAK;gBACf,OAAO,eAAK,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YACtD,KAAK,gBAAQ,CAAC,QAAQ;gBAClB,OAAO,eAAK,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YACtD,KAAK,gBAAQ,CAAC,KAAK;gBACf,OAAO,eAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YAC3C,KAAK,gBAAQ,CAAC,OAAO;gBACjB,OAAO,eAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YACzC,KAAK,gBAAQ,CAAC,MAAM;gBAChB,OAAO,eAAK,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YACvC,KAAK,gBAAQ,CAAC,IAAI;gBACd,OAAO,eAAK,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YACvC,KAAK,gBAAQ,CAAC,KAAK;gBACf,OAAO,eAAK,CAAC,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YAC1C;gBACI,OAAO,eAAK,CAAC,MAAM,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;SAC7C;IACL,CAAC;CAEJ;AAxCD,sCAwCC"}
|
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
import { type LogLevel } from "../index";
|
|
2
2
|
import { type ContextTypo } from "../Interfaces/LoggerInterface";
|
|
3
3
|
import { AbstractLogger } from "./AbstractLogger";
|
|
4
|
+
/**
|
|
5
|
+
* This Logger can be used to avoid conditional log calls.
|
|
6
|
+
*
|
|
7
|
+
* Logging should always be optional, and if no logger is provided to your
|
|
8
|
+
* library creating a NullLogger instance to have something to throw logs at
|
|
9
|
+
* is a good way to avoid littering your code with `if ($this->logger) { }`
|
|
10
|
+
* blocks.
|
|
11
|
+
*
|
|
12
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
13
|
+
*/
|
|
4
14
|
export declare class NullLogger extends AbstractLogger {
|
|
15
|
+
/**
|
|
16
|
+
* Logs with an arbitrary level.
|
|
17
|
+
*
|
|
18
|
+
* @param {LogLevel} _level Log level
|
|
19
|
+
* @param {unknown} _message Message Log
|
|
20
|
+
* @param {ContextTypo} context Context Message replace
|
|
21
|
+
*
|
|
22
|
+
* @returns {Promise<void>}
|
|
23
|
+
*/
|
|
5
24
|
log(_level: LogLevel, _message: unknown, context?: ContextTypo): Promise<void>;
|
|
6
25
|
}
|
package/dist/logs/NullLogger.js
CHANGED
|
@@ -2,7 +2,26 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.NullLogger = void 0;
|
|
4
4
|
const AbstractLogger_1 = require("./AbstractLogger");
|
|
5
|
+
/**
|
|
6
|
+
* This Logger can be used to avoid conditional log calls.
|
|
7
|
+
*
|
|
8
|
+
* Logging should always be optional, and if no logger is provided to your
|
|
9
|
+
* library creating a NullLogger instance to have something to throw logs at
|
|
10
|
+
* is a good way to avoid littering your code with `if ($this->logger) { }`
|
|
11
|
+
* blocks.
|
|
12
|
+
*
|
|
13
|
+
* @author Dragons Gamers <https://github.com/ODGodinho>
|
|
14
|
+
*/
|
|
5
15
|
class NullLogger extends AbstractLogger_1.AbstractLogger {
|
|
16
|
+
/**
|
|
17
|
+
* Logs with an arbitrary level.
|
|
18
|
+
*
|
|
19
|
+
* @param {LogLevel} _level Log level
|
|
20
|
+
* @param {unknown} _message Message Log
|
|
21
|
+
* @param {ContextTypo} context Context Message replace
|
|
22
|
+
*
|
|
23
|
+
* @returns {Promise<void>}
|
|
24
|
+
*/
|
|
6
25
|
async log(_level, _message, context) {
|
|
7
26
|
return void context;
|
|
8
27
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NullLogger.js","sourceRoot":"","sources":["../../src/logs/NullLogger.ts"],"names":[],"mappings":";;;AAGA,qDAAkD;
|
|
1
|
+
{"version":3,"file":"NullLogger.js","sourceRoot":"","sources":["../../src/logs/NullLogger.ts"],"names":[],"mappings":";;;AAGA,qDAAkD;AAElD;;;;;;;;;GASG;AACH,MAAa,UAAW,SAAQ,+BAAc;IAE1C;;;;;;;;OAQG;IACI,KAAK,CAAC,GAAG,CAAC,MAAgB,EAAE,QAAiB,EAAE,OAAqB;QACvE,OAAO,KAAK,OAAO,CAAC;IACxB,CAAC;CAEJ;AAfD,gCAeC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/logs/AbstractLogger.ts","../src/Interfaces/LogLevel.ts","../src/Interfaces/LoggerInterface.ts","../src/logs/NullLogger.ts","../node_modules/chalk/index.d.ts","../src/logs/ConsoleLogger.ts","../src/logs/index.ts","../src/Interfaces/LoggerAwareInterface.ts","../src/Interfaces/index.ts","../node_modules/@odg/exception/dist/exceptions/Exception.d.ts","../node_modules/@odg/exception/dist/exceptions/UnknownException.d.ts","../node_modules/@odg/exception/dist/index.d.ts","../src/Exceptions/InvalidArgumentException.ts","../src/Exceptions/index.ts","../src/index.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"10ef9af07af8f6b4241aa95e35fd6dea1f1a183bb8818cc38b4301d9de4f5d77","signature":"94a321795f01149d9c1dc7e96abd23f95f7f62d49e66fd99fbb22ff00822372f","impliedFormat":1},{"version":"59e95117feacc4595dacc827192549ba7aee5209bbd7e66fc4ee7b64499392e0","signature":"fdd1f4d051df206d8bb7dbdd763bb09a2046ef54c6c7a206ad6d0ed8987c25c8","impliedFormat":1},{"version":"f06beba02cb00bb5ea5a83129d8c49f12d381032691c702f95af53a69bdb894c","signature":"0a8f49b745ab9beb2917bd8f9421a90f0c5461d56f47609e7a64f4b1d7709bff","impliedFormat":1},{"version":"89ec47b29a43cb7fe984503fe3bfe67930adbc038311001a4f3238586541189b","signature":"43d0b4c5e64732cd6e81dcb5b3400b4f4973f49604a15427000f397720449978","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"5c8b7ba409072e5885d82bc47469c83aac4b045d498f2cedbc1066dfe0e69eea","signature":"14189e312152abddb963e338372ff3e9ba6992f7a753f0917af6901669e37c74","impliedFormat":1},{"version":"4c14264476c3b884c937115ed077ef4193a41f6b1a06d7bd92f25ec7a75fdef7","impliedFormat":1},{"version":"8ecf27e29d8d4def06e0c713344ddb1fedf5d8e671113dd306f6e8c37de061d8","signature":"9c90d5c8c2ca7601b8a22865ab1413e1e7ad9d9fd743cbf64dfe5160fc9af825","impliedFormat":1},{"version":"304104cecf10e68397ba1239454d76bdda54dee375e9401dd64d16ce86e7f1ca","signature":"78b0289f08787b34a5158cb4c2d0a14964d05f5a821a4e927e932e9904f2289d","impliedFormat":1},{"version":"4130f986e9133b2a2d80c751ed4b7b3b1f1a93714f0462f7c36e0b32a5c66aca","impliedFormat":1},{"version":"6bb8480771517b68dc8c48553fe615e0bc38d9df1572bfa45e5db9844ef76776","impliedFormat":1},{"version":"1df58ba1cc41c4166dcbe53efd88611b9ddf5a27f33f4eb88a9189ea2ea56473","impliedFormat":1},{"version":"78578c7c32abc4fa1c724f589571c047a9d540ba9c5f10ed3a6027fbcca0c892","signature":"37a843978dfb875ce02c1193f16a228ee42a4d7e30cca6e066be86b4f53c3e31","impliedFormat":1},{"version":"008268eb10d9fae42574458105d571a6af93d529dd377fa2e942763d5d1cc7ba","impliedFormat":1},{"version":"02223fcf090480f55977fbae1bc0ca6694d113e5e2d09adff92e031e6a8ca0f9","impliedFormat":1},{"version":"4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"4f6463a60e5754bbc4a864b2aaf8fecb7706b96a21b88f27b534589b801978b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0","impliedFormat":1},{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true,"impliedFormat":1},{"version":"2534e46a52653b55dfb5a41ce427ec430c4afbaaf3bfcb1ae09b185c5d6bf169","impliedFormat":1},{"version":"afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565","impliedFormat":1},{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"3f2478baf49cf27aa1335ba5299e2394131284e9d50a3845e3f95e52664ff518","impliedFormat":1},{"version":"f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","impliedFormat":1},{"version":"8bd106053ee0345dde7f626ed1f6100a89fb85f13ea65352627cf78c5f30c553","impliedFormat":1},{"version":"76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","impliedFormat":1},{"version":"0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","impliedFormat":1},{"version":"06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25","impliedFormat":1},{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true,"impliedFormat":1},{"version":"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","impliedFormat":1},{"version":"20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","impliedFormat":1},{"version":"4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","impliedFormat":1},{"version":"8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","impliedFormat":1},{"version":"288dd0c774a5c6e3964084c7a2bc8cc6b746d70f44a9892d028d04f915cf7ebc","impliedFormat":1},{"version":"d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"1805e0e4d1ed00f6361db25dff6887c7fa9b5b39f32599a34e8551da7daaa9c2","impliedFormat":1},{"version":"abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","impliedFormat":1},{"version":"fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","impliedFormat":1},{"version":"a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e","impliedFormat":1},{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","impliedFormat":1},{"version":"22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","impliedFormat":1},{"version":"29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","impliedFormat":1},{"version":"0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","impliedFormat":1},{"version":"95518ff86843e226b62a800f679f6968ad8dac8ccbe30fbfe63de3afb13761a2","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","impliedFormat":1},{"version":"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","impliedFormat":1},{"version":"c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","impliedFormat":1},{"version":"a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93","impliedFormat":1},{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","impliedFormat":1},{"version":"998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","impliedFormat":1},{"version":"ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","impliedFormat":1},{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true,"impliedFormat":1},{"version":"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","impliedFormat":1},{"version":"c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","impliedFormat":1},{"version":"235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","impliedFormat":1},{"version":"bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","impliedFormat":1},{"version":"9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","impliedFormat":1},{"version":"c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"88003d9ab15507806f41b120be6d407c1afe566c2f6689ebe3a034dd5ec0c8dc","impliedFormat":1},{"version":"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","impliedFormat":1},{"version":"3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","impliedFormat":1},{"version":"427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","impliedFormat":1},{"version":"bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","impliedFormat":1},{"version":"e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","impliedFormat":1},{"version":"9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","impliedFormat":1},{"version":"ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c","impliedFormat":1},{"version":"0c3b45b6a42c0074fadd59c5d370592ca48c89a706d903452565ca89b1b2c164","affectsGlobalScope":true,"impliedFormat":1}],"options":{"alwaysStrict":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":100,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":5},"fileIdsList":[[115],[115,124],[65,115],[65,66,115],[115,126,129],[71,115],[74,115],[75,80,106,115],[76,86,87,94,103,114,115],[76,77,86,94,115],[78,115],[79,80,87,95,115],[80,103,111,115],[81,83,86,94,115],[82,115],[83,84,115],[85,86,115],[86,115],[86,87,88,103,114,115],[86,87,88,103,115],[89,94,103,114,115],[86,87,89,90,94,103,111,114,115],[89,91,103,111,114,115],[71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[86,92,115],[93,114,115],[83,86,94,103,115],[95,115],[96,115],[74,97,115],[98,113,115,119],[99,115],[100,115],[86,101,115],[101,102,115,117],[75,86,103,104,105,115],[75,103,105,115],[103,104,115],[106,115],[107,115],[86,109,110,115],[109,110,115],[80,94,111,115],[112,115],[94,113,115],[75,89,100,114,115],[80,115],[103,115,116],[115,117],[115,118],[75,80,86,88,97,103,114,115,117,119],[103,115,120],[115,123,128],[115,126],[60,115,127],[115,125],[67,115],[68,115],[58,115],[57,115],[57,58,63,115],[62,64,69,115],[70,115],[56,58,60,70,115],[56,58,70,115],[56,59,61,115],[67],[58],[57],[57,58,63],[70],[56,58,70]],"referencedMap":[[123,1],[125,2],[65,1],[66,3],[67,4],[124,1],[130,5],[71,6],[72,6],[74,7],[75,8],[76,9],[77,10],[78,11],[79,12],[80,13],[81,14],[82,15],[83,16],[84,16],[85,17],[86,18],[87,19],[88,20],[73,1],[121,1],[89,21],[90,22],[91,23],[122,24],[92,25],[93,26],[94,27],[95,28],[96,29],[97,30],[98,31],[99,32],[100,33],[101,34],[102,35],[103,36],[105,37],[104,38],[106,39],[107,40],[108,1],[109,41],[110,42],[111,43],[112,44],[113,45],[114,46],[115,47],[116,48],[117,49],[118,50],[119,51],[120,52],[60,1],[129,53],[127,54],[128,55],[126,56],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[68,57],[69,58],[57,1],[63,59],[58,60],[64,61],[70,62],[56,63],[61,64],[59,65],[62,66]],"exportedModulesMap":[[123,1],[125,2],[65,1],[66,3],[67,4],[124,1],[130,5],[71,6],[72,6],[74,7],[75,8],[76,9],[77,10],[78,11],[79,12],[80,13],[81,14],[82,15],[83,16],[84,16],[85,17],[86,18],[87,19],[88,20],[73,1],[121,1],[89,21],[90,22],[91,23],[122,24],[92,25],[93,26],[94,27],[95,28],[96,29],[97,30],[98,31],[99,32],[100,33],[101,34],[102,35],[103,36],[105,37],[104,38],[106,39],[107,40],[108,1],[109,41],[110,42],[111,43],[112,44],[113,45],[114,46],[115,47],[116,48],[117,49],[118,50],[119,51],[120,52],[60,1],[129,53],[127,54],[128,55],[126,56],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[68,67],[69,58],[63,68],[58,69],[64,70],[70,62],[56,71],[61,72],[59,72],[62,66]],"semanticDiagnosticsPerFile":[123,125,65,66,67,124,130,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,73,121,89,90,91,122,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,60,129,127,128,126,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,68,69,57,63,58,64,70,56,61,59,62]},"version":"4.9.4"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/Interfaces/LogLevel.ts","../src/Interfaces/LoggerInterface.ts","../src/Interfaces/LoggerAwareInterface.ts","../src/Interfaces/index.ts","../src/Interfaces/LoggerPluginInterface.ts","../src/logs/AbstractLogger.ts","../src/logs/NullLogger.ts","../node_modules/chalk/index.d.ts","../src/logs/ConsoleLogger.ts","../src/logs/index.ts","../node_modules/@odg/exception/dist/exceptions/Exception.d.ts","../node_modules/@odg/exception/dist/exceptions/UnknownException.d.ts","../node_modules/@odg/exception/dist/index.d.ts","../src/Exceptions/InvalidArgumentException.ts","../src/Exceptions/index.ts","../src/index.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"59e95117feacc4595dacc827192549ba7aee5209bbd7e66fc4ee7b64499392e0","signature":"f4090ec12a125e50604ff28d3f56b86298de938e8b993509fb4c579654283445","impliedFormat":1},{"version":"0d082e9ac85d7584f904f5b167c3c89dd156fa120390cf51e3139ded75efa326","signature":"fa38f34232cf8f88a7a3b7f89ae50eb6a532d19c70980a2f991178d71d26a9ac","impliedFormat":1},{"version":"8ecf27e29d8d4def06e0c713344ddb1fedf5d8e671113dd306f6e8c37de061d8","signature":"3780d6f73250d8e84041ad49ecddb6eb31c0b9a40ed1fa170778423cf22b39c2","impliedFormat":1},{"version":"15fa5d67fd2b21fb59805ebd7216b251f99e65f981959013b58f5136597847f5","signature":"2a30b6d92bd7796269cab865938a54f6839d1d1785d3228a5de39fc7ce824954","impliedFormat":1},{"version":"e6dfa2b192925a27a26dc7c60be6fb6b6178eeae2c2072f312d5cd3c4c8e8483","signature":"ba93dd8c94e7e0b75709ce189817b1a73aaa7b8c0617565408fccca46623c909","impliedFormat":1},{"version":"b7823c83246cd5f5d43aa1fa58e8a6563a6dfd18abb222f651f28c3bbef5fad3","signature":"b3ae481246823b65e01e193350e6c5863e98a85ede90687097ba32b76962eb23","impliedFormat":1},{"version":"89ec47b29a43cb7fe984503fe3bfe67930adbc038311001a4f3238586541189b","signature":"9259541e65ddea8de40dc4234bfa04ec81484b12025998f72729ac0c63dd3a12","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c3e9872c80fc62e88399a5a541a83ddb3639d64f0bfe3ee997d3019297c56660","signature":"c5e14988d1126010700c0fd062f84ba846ef154c39cbcb935e0362e02f169553","impliedFormat":1},{"version":"4c14264476c3b884c937115ed077ef4193a41f6b1a06d7bd92f25ec7a75fdef7","impliedFormat":1},{"version":"26c73c122a410b363632919067345d82ea5fbff776e063319001f9e714d7de72","impliedFormat":1},{"version":"72b9c9f40c1fe32fa9bd1e1f4546905aafd3275b4053ccea8a223d3134f5d775","impliedFormat":1},{"version":"1df58ba1cc41c4166dcbe53efd88611b9ddf5a27f33f4eb88a9189ea2ea56473","impliedFormat":1},{"version":"78578c7c32abc4fa1c724f589571c047a9d540ba9c5f10ed3a6027fbcca0c892","signature":"37a843978dfb875ce02c1193f16a228ee42a4d7e30cca6e066be86b4f53c3e31","impliedFormat":1},{"version":"008268eb10d9fae42574458105d571a6af93d529dd377fa2e942763d5d1cc7ba","impliedFormat":1},{"version":"02223fcf090480f55977fbae1bc0ca6694d113e5e2d09adff92e031e6a8ca0f9","impliedFormat":1},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"8dbe725f8d237e70310977afcfa011629804d101ebaa0266cafda6b61ad72236","impliedFormat":1},{"version":"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","impliedFormat":1},{"version":"3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","impliedFormat":1},{"version":"427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","impliedFormat":1},{"version":"bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","impliedFormat":1},{"version":"e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","impliedFormat":1},{"version":"9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","impliedFormat":1},{"version":"ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c","impliedFormat":1},{"version":"503000d7f95c87febfba3bdb10c3a01e51552b0fea2b7442cd6d2631ff6cacf5","affectsGlobalScope":true,"impliedFormat":1}],"options":{"alwaysStrict":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":100,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","preserveConstEnums":true,"removeComments":false,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":5},"fileIdsList":[[118],[118,127],[66,118],[66,67,118],[118,129,132],[72,118],[75,118],[76,81,109,118],[77,88,89,96,106,117,118],[77,78,88,96,118],[79,118],[80,81,89,97,118],[81,106,114,118],[82,84,88,96,118],[83,118],[84,85,118],[88,118],[86,88,118],[88,89,90,106,117,118],[88,89,90,103,106,109,118],[118,122],[84,91,96,106,117,118],[88,89,91,92,96,106,114,117,118],[91,93,106,114,117,118],[72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124],[88,94,118],[95,117,118],[84,88,96,106,118],[97,118],[98,118],[75,99,118],[100,116,118,122],[101,118],[102,118],[88,103,104,118],[103,105,118,120],[76,88,106,107,108,109,118],[76,106,108,118],[106,107,118],[109,118],[110,118],[88,112,113,118],[112,113,118],[81,96,106,114,118],[115,118],[96,116,118],[76,91,102,117,118],[81,118],[106,118,119],[118,120],[118,121],[76,81,88,90,99,106,117,118,120,122],[106,118,123],[118,126,131],[118,129],[63,118,130],[118,128],[68,118],[69,118],[57,118],[56,59,118],[59,118],[56,57,58,60,118],[59,65,70,118],[60,71,118],[57,61,63,71,118],[57,61,71,118],[61,62,64,118],[68],[57],[56,59],[59],[56,57,58,60],[60,71],[57,61,71]],"referencedMap":[[126,1],[128,2],[66,1],[67,3],[68,4],[127,1],[133,5],[72,6],[73,6],[75,7],[76,8],[77,9],[78,10],[79,11],[80,12],[81,13],[82,14],[83,15],[84,16],[85,16],[87,17],[86,18],[88,17],[89,19],[90,20],[74,21],[124,1],[91,22],[92,23],[93,24],[125,25],[94,26],[95,27],[96,28],[97,29],[98,30],[99,31],[100,32],[101,33],[102,34],[103,35],[104,35],[105,36],[106,37],[108,38],[107,39],[109,40],[110,41],[111,1],[112,42],[113,43],[114,44],[115,45],[116,46],[117,47],[118,48],[119,49],[120,50],[121,51],[122,52],[123,53],[63,1],[132,54],[130,55],[131,56],[129,57],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[69,58],[70,59],[56,1],[58,60],[57,61],[60,62],[59,63],[71,64],[61,65],[64,66],[62,67],[65,68]],"exportedModulesMap":[[126,1],[128,2],[66,1],[67,3],[68,4],[127,1],[133,5],[72,6],[73,6],[75,7],[76,8],[77,9],[78,10],[79,11],[80,12],[81,13],[82,14],[83,15],[84,16],[85,16],[87,17],[86,18],[88,17],[89,19],[90,20],[74,21],[124,1],[91,22],[92,23],[93,24],[125,25],[94,26],[95,27],[96,28],[97,29],[98,30],[99,31],[100,32],[101,33],[102,34],[103,35],[104,35],[105,36],[106,37],[108,38],[107,39],[109,40],[110,41],[111,1],[112,42],[113,43],[114,44],[115,45],[116,46],[117,47],[118,48],[119,49],[120,50],[121,51],[122,52],[123,53],[63,1],[132,54],[130,55],[131,56],[129,57],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[69,69],[70,59],[58,70],[57,71],[60,72],[59,73],[71,64],[61,74],[64,75],[62,75],[65,68]],"semanticDiagnosticsPerFile":[126,128,66,67,68,127,133,72,73,75,76,77,78,79,80,81,82,83,84,85,87,86,88,89,90,74,124,91,92,93,125,94,95,96,97,98,99,100,101,102,103,104,105,106,108,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,63,132,130,131,129,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,69,70,56,58,57,60,59,71,61,64,62,65]},"version":"4.9.4"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odg/log",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Interface logs types",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"build:watch": "rimraf build && tsc --project ./tsconfig.build.json -w",
|
|
10
10
|
"dev": "ts-node ./src/index.ts",
|
|
11
11
|
"start": "node ./dist/index.ts",
|
|
12
|
-
"lint": "eslint
|
|
13
|
-
"lint:fix": "eslint
|
|
12
|
+
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.jsonc,.json5,.yml,.yaml,.xml,.txt,.svg,.properties,.gradle,.java,.cpp,.c,.cs,.html,.css,.groovy,.gitignore,.npmignore,.toml,.env,.example,.sample,.ini,.php,.bat,.powershell,.ps1,.sh,.bash,.eslintrc",
|
|
13
|
+
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.json,.jsonc,.json5,.yml,.yaml,.xml,.txt,.svg,.properties,.gradle,.java,.cpp,.c,.cs,.html,.css,.groovy,.gitignore,.npmignore,.toml,.env,.example,.sample,.ini,.php,.bat,.powershell,.ps1,.sh,.bash,.eslintrc --fix",
|
|
14
14
|
"test": "jest",
|
|
15
15
|
"test:ci": "jest --ci --passWithNoTests",
|
|
16
16
|
"test:watch": "jest --watchAll"
|
|
@@ -58,14 +58,15 @@
|
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@odg/eslint-config": "*",
|
|
60
60
|
"@odg/tsconfig": "*",
|
|
61
|
-
"@types/jest": "^29.2.
|
|
62
|
-
"@types/node": "^
|
|
61
|
+
"@types/jest": "^29.2.6",
|
|
62
|
+
"@types/node": "^18",
|
|
63
63
|
"eslint": "*",
|
|
64
|
-
"jest": "^29.
|
|
65
|
-
"
|
|
66
|
-
"
|
|
64
|
+
"jest": "^29.3.1",
|
|
65
|
+
"rimraf": "^4.1.1",
|
|
66
|
+
"semantic-release": "^20.0.4",
|
|
67
|
+
"ts-jest": "^29.0.5",
|
|
67
68
|
"ts-node": "^10.9.1",
|
|
68
|
-
"typescript": "^4.
|
|
69
|
+
"typescript": "^4.9.4"
|
|
69
70
|
},
|
|
70
71
|
"dependencies": {
|
|
71
72
|
"@odg/exception": "*",
|