@rotorsoft/act 1.5.1 → 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.js CHANGED
@@ -2578,7 +2578,7 @@ var Act = class {
2578
2578
  * fully catches up paginated streams without forcing callers to roll
2579
2579
  * their own loop.
2580
2580
  *
2581
- * @param streams - Reaction target streams (e.g., projection names) to reset
2581
+ * @param input - Reaction target streams (e.g., projection names) to reset, or a {@link StreamFilter} for bulk operations
2582
2582
  * @returns Count of streams that were actually reset
2583
2583
  *
2584
2584
  * @example Rebuild a projection (production)
@@ -2618,7 +2618,7 @@ var Act = class {
2618
2618
  * directly, but `store().unblock(...)` alone leaves the flag
2619
2619
  * untouched.
2620
2620
  *
2621
- * @param streams - Stream names to unblock
2621
+ * @param input - Stream names to unblock, or a {@link StreamFilter} for bulk recovery
2622
2622
  * @returns Count of streams that were actually flipped (were blocked)
2623
2623
  *
2624
2624
  * @example Recover from a 4xx webhook after fixing the bug