@ubercode/chronicler 1.0.0 → 1.0.2
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/README.md +282 -149
- package/dist/cli.js +35 -6076
- package/dist/cli.js.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -424,4 +424,4 @@ declare class ChroniclerError extends Error {
|
|
|
424
424
|
constructor(code: ChroniclerErrorCode, message: string);
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
-
export { type BackendRoute, type Chronicler, type ChroniclerConfig, ChroniclerError, type ChroniclerErrorCode, type ChroniclerLimits, type ContextCollisionDetail, type ContextRecord, type ContextValidationResult, type CorrelationChronicle, type CorrelationEventGroup, type EventDefinition, type EventFields, type FieldBuilder, type InferFieldType, type InferFields, type LogBackend, type LogLevel, type LogPayload, type SystemEventGroup, createBackend, createChronicle, createConsoleBackend, createRouterBackend, defineCorrelationGroup, defineEvent, defineEventGroup, field };
|
|
427
|
+
export { type BackendRoute, type Chronicler, type ChroniclerConfig, ChroniclerError, type ChroniclerErrorCode, type ChroniclerLimits, type ContextCollisionDetail, type ContextRecord, type ContextValidationResult, type CorrelationChronicle, type CorrelationEventGroup, type EventDefinition, type EventFields, type FieldBuilder, type InferFieldType, type InferFields, type LogBackend, type LogLevel, type LogPayload, type OptionalFieldBuilder, type RequiredFieldBuilder, type SystemEventGroup, createBackend, createChronicle, createConsoleBackend, createRouterBackend, defineCorrelationGroup, defineEvent, defineEventGroup, field };
|
package/dist/index.d.ts
CHANGED
|
@@ -424,4 +424,4 @@ declare class ChroniclerError extends Error {
|
|
|
424
424
|
constructor(code: ChroniclerErrorCode, message: string);
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
-
export { type BackendRoute, type Chronicler, type ChroniclerConfig, ChroniclerError, type ChroniclerErrorCode, type ChroniclerLimits, type ContextCollisionDetail, type ContextRecord, type ContextValidationResult, type CorrelationChronicle, type CorrelationEventGroup, type EventDefinition, type EventFields, type FieldBuilder, type InferFieldType, type InferFields, type LogBackend, type LogLevel, type LogPayload, type SystemEventGroup, createBackend, createChronicle, createConsoleBackend, createRouterBackend, defineCorrelationGroup, defineEvent, defineEventGroup, field };
|
|
427
|
+
export { type BackendRoute, type Chronicler, type ChroniclerConfig, ChroniclerError, type ChroniclerErrorCode, type ChroniclerLimits, type ContextCollisionDetail, type ContextRecord, type ContextValidationResult, type CorrelationChronicle, type CorrelationEventGroup, type EventDefinition, type EventFields, type FieldBuilder, type InferFieldType, type InferFields, type LogBackend, type LogLevel, type LogPayload, type OptionalFieldBuilder, type RequiredFieldBuilder, type SystemEventGroup, createBackend, createChronicle, createConsoleBackend, createRouterBackend, defineCorrelationGroup, defineEvent, defineEventGroup, field };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ubercode/chronicler",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Type-safe structured logging with event definitions, correlations, and field validation for Node.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logging",
|
|
@@ -101,12 +101,12 @@
|
|
|
101
101
|
"prettier": "3.6.2",
|
|
102
102
|
"rimraf": "6.1.0",
|
|
103
103
|
"tsup": "8.5.1",
|
|
104
|
-
"tsx": "4.20.6",
|
|
105
104
|
"typescript": "5.9.3",
|
|
106
105
|
"vitest": "4.0.9"
|
|
107
106
|
},
|
|
108
107
|
"dependencies": {
|
|
109
|
-
"commander": "14.0.2"
|
|
108
|
+
"commander": "14.0.2",
|
|
109
|
+
"tsx": "^4.20.6"
|
|
110
110
|
},
|
|
111
111
|
"packageManager": "pnpm@10.18.0"
|
|
112
112
|
}
|