@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/.tsbuildinfo +1 -1
- package/dist/@types/act.d.ts +3 -3
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1967,7 +1967,7 @@ var Act = class {
|
|
|
1967
1967
|
* and projections in one pass.
|
|
1968
1968
|
*
|
|
1969
1969
|
* @param registry Schemas for every event and action across registered states
|
|
1970
|
-
* @param
|
|
1970
|
+
* @param states Merged map of state name → state definition
|
|
1971
1971
|
* @param batchHandlers Static-target projection batch handlers (target → handler)
|
|
1972
1972
|
* @param options Tuning knobs — see {@link ActOptions}
|
|
1973
1973
|
* @param lanes Declared drain lanes (ACT-1103). The builder collects
|
|
@@ -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
|
|
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
|
|
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
|