@arki/event-sourcing 0.1.2 → 0.1.4

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/dot.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * single `DotPip`. The pip opens the PostgreSQL event store in
6
6
  * `boot`, attaches command handlers to an in-memory message bus, publishes
7
7
  * both as `services.eventStore` and `services.messageBus`, and closes the
8
- * event store pool in `dispose` (reverse-topological order).
8
+ * event store pool in `dispose` (reverse declaration order).
9
9
  *
10
10
  * @example
11
11
  * ```ts
package/dist/dot.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * single `DotPip`. The pip opens the PostgreSQL event store in
6
6
  * `boot`, attaches command handlers to an in-memory message bus, publishes
7
7
  * both as `services.eventStore` and `services.messageBus`, and closes the
8
- * event store pool in `dispose` (reverse-topological order).
8
+ * event store pool in `dispose` (reverse declaration order).
9
9
  *
10
10
  * @example
11
11
  * ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arki/event-sourcing",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Event sourcing primitives — event store, message bus, projections, process managers — built on Emmett for ARKI.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -93,7 +93,7 @@
93
93
  "drizzle-orm": "1.0.0-rc.1"
94
94
  },
95
95
  "peerDependencies": {
96
- "@arki/dot": "^0.1.2"
96
+ "@arki/dot": "^0.2.0"
97
97
  },
98
98
  "peerDependenciesMeta": {
99
99
  "@arki/dot": {
package/src/dot.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * single `DotPip`. The pip opens the PostgreSQL event store in
6
6
  * `boot`, attaches command handlers to an in-memory message bus, publishes
7
7
  * both as `services.eventStore` and `services.messageBus`, and closes the
8
- * event store pool in `dispose` (reverse-topological order).
8
+ * event store pool in `dispose` (reverse declaration order).
9
9
  *
10
10
  * @example
11
11
  * ```ts