node-cqrs 1.0.0-beta.0 → 1.0.0-beta.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
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
# [1.0.0-beta.
|
|
1
|
+
# [1.0.0-beta.1](https://github.com/snatalenko/node-cqrs/compare/v1.0.0-rc.46...v1.0.0-beta.1) (2026-03-21)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Build System
|
|
5
5
|
|
|
6
6
|
* Refactor NPM publish step to handle pre-release and release tagging dynamically ([3f35a79](https://github.com/snatalenko/node-cqrs/commit/3f35a797785ddbb557c4d4030d7f409e7d9e1a5d))
|
|
7
7
|
* Fix browser build with rollup ([cc70f71](https://github.com/snatalenko/node-cqrs/commit/cc70f71a93d40d00384b79f4ce0da6d1478866ee))
|
|
8
|
+
* Default npm publish tag to "alpha" for numeric pre-ids; rework tag cleanup hierarchy ([6d89e7b](https://github.com/snatalenko/node-cqrs/commit/6d89e7b303213d30adf030015dca839490c69d75))
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
# [1.0.0-rc.46](https://github.com/snatalenko/node-cqrs/compare/v1.0.0-rc.45...v1.0.0-rc.46) (2026-03-19)
|
|
@@ -30,7 +30,7 @@ export declare abstract class AbstractAggregate<TState extends IMutableState | o
|
|
|
30
30
|
* Convenience helper to create an `AggregateCommandHandler` for this aggregate type and
|
|
31
31
|
* subscribe it to the provided `commandBus`.
|
|
32
32
|
*/
|
|
33
|
-
static register<T extends AbstractAggregate
|
|
33
|
+
static register<T extends AbstractAggregate<S>, S extends IMutableState | object | void>(this: IAggregateConstructor<T, S> & (new (options: IAggregateConstructorParams<S>) => T), eventStore: IEventStore, commandBus: ICommandBus): AggregateCommandHandler<T>;
|
|
34
34
|
/** List of emitted events */
|
|
35
35
|
protected changes: IEvent[];
|
|
36
36
|
/** Internal aggregate state */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-cqrs",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
4
|
"description": "TypeScript CQRS/Event Sourcing toolkit for Node.js with DI, sagas, projections, and optional Worker, RabbitMQ, and SQLite adapters",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|