@quanticjs/events-core 6.1.0 → 6.1.1
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/DomainEvent.js
CHANGED
|
@@ -21,7 +21,7 @@ const IEventPublisher_1 = require("./IEventPublisher");
|
|
|
21
21
|
const POLL_INTERVAL_MS = 100;
|
|
22
22
|
const BATCH_SIZE = 50;
|
|
23
23
|
const MAX_PUBLISH_ATTEMPTS = 5;
|
|
24
|
-
const DLQ_DESTINATION = '
|
|
24
|
+
const DLQ_DESTINATION = 'quantic.events.dlq';
|
|
25
25
|
let OutboxPublisherService = OutboxPublisherService_1 = class OutboxPublisherService {
|
|
26
26
|
dataSource;
|
|
27
27
|
publisher;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quanticjs/events-core",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "Transport-agnostic domain event abstractions — DomainEvent, OutboxEvent, IEventPublisher, outbox services",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"clean": "rm -rf dist"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@quanticjs/core": "^6.1.
|
|
21
|
+
"@quanticjs/core": "^6.1.1",
|
|
22
22
|
"uuid": "^11.1.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|