@volontariapp/messaging 2.10.0-snap-8e4f7a0 → 2.10.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/CHANGELOG.md +10 -0
- package/README.md +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ The **LOB (Local Outbox)** pattern is used to ensure reliable message delivery b
|
|
|
13
13
|
3. **Outbox Table**: The `event_queue` (or `jobs_outbox`) table stores the event with its payload (`before`/`after`) and status (`PENDING`).
|
|
14
14
|
4. **Dispatcher**: A background worker polls the outbox table, sends the message to the broker (RabbitMQ/Kafka), and marks the record as `COMPLETED`.
|
|
15
15
|
|
|
16
|
-
###
|
|
16
|
+
### Package Structure
|
|
17
17
|
|
|
18
18
|
This package centralizes all message definitions to ensure type safety across the monorepo.
|
|
19
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volontariapp/messaging",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"test": "echo \"No tests yet\""
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@volontariapp/testing": "1.0.
|
|
36
|
+
"@volontariapp/testing": "1.0.2",
|
|
37
37
|
"typescript": "5.7.3"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@volontariapp/contracts": "4.3.
|
|
41
|
-
"@volontariapp/shared": "0.8.
|
|
40
|
+
"@volontariapp/contracts": "4.3.2",
|
|
41
|
+
"@volontariapp/shared": "0.8.1"
|
|
42
42
|
}
|
|
43
43
|
}
|