@rotorsoft/act 1.5.0 → 1.5.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/dist/index.cjs CHANGED
@@ -3217,7 +3217,7 @@ var Act = class {
3217
3217
  * and projections in one pass.
3218
3218
  *
3219
3219
  * @param registry Schemas for every event and action across registered states
3220
- * @param _states Merged map of state name → state definition
3220
+ * @param states Merged map of state name → state definition
3221
3221
  * @param batchHandlers Static-target projection batch handlers (target → handler)
3222
3222
  * @param options Tuning knobs — see {@link ActOptions}
3223
3223
  * @param lanes Declared drain lanes (ACT-1103). The builder collects
@@ -3828,7 +3828,7 @@ var Act = class {
3828
3828
  * fully catches up paginated streams without forcing callers to roll
3829
3829
  * their own loop.
3830
3830
  *
3831
- * @param streams - Reaction target streams (e.g., projection names) to reset
3831
+ * @param input - Reaction target streams (e.g., projection names) to reset, or a {@link StreamFilter} for bulk operations
3832
3832
  * @returns Count of streams that were actually reset
3833
3833
  *
3834
3834
  * @example Rebuild a projection (production)
@@ -3868,7 +3868,7 @@ var Act = class {
3868
3868
  * directly, but `store().unblock(...)` alone leaves the flag
3869
3869
  * untouched.
3870
3870
  *
3871
- * @param streams - Stream names to unblock
3871
+ * @param input - Stream names to unblock, or a {@link StreamFilter} for bulk recovery
3872
3872
  * @returns Count of streams that were actually flipped (were blocked)
3873
3873
  *
3874
3874
  * @example Recover from a 4xx webhook after fixing the bug