@seidor-cloud-produtos/orbit-backend-lib 2.0.13 → 2.0.14
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.
|
@@ -7,7 +7,7 @@ export type LogPayload = Omit<LogProperties, 'expirationHours'> & {
|
|
|
7
7
|
};
|
|
8
8
|
export default class LogEvent implements DomainEvent {
|
|
9
9
|
readonly input: LogPayload;
|
|
10
|
-
readonly name = "
|
|
10
|
+
readonly name = "log-service.log.created";
|
|
11
11
|
readonly eventDate: Date;
|
|
12
12
|
constructor(input: LogPayload);
|
|
13
13
|
}
|
|
@@ -8,7 +8,7 @@ const log_error_1 = tslib_1.__importDefault(require("../../domain/errors/log-err
|
|
|
8
8
|
const types_1 = require("../environment/types");
|
|
9
9
|
class LogEvent {
|
|
10
10
|
input;
|
|
11
|
-
name = '
|
|
11
|
+
name = 'log-service.log.created';
|
|
12
12
|
eventDate = new Date();
|
|
13
13
|
constructor(input) {
|
|
14
14
|
this.input = input;
|