@thi.ng/interceptors 3.2.48 → 3.2.50

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,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-07T20:40:47Z
3
+ - **Last updated**: 2024-03-13T14:04:31Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/event-bus.d.ts CHANGED
@@ -296,7 +296,7 @@ export declare class StatelessEventBus implements IDispatch {
296
296
  * Any `null` / `undefined` values directly assigned to a side
297
297
  * effect are ignored and will not trigger the effect.
298
298
  *
299
- * @param fx -
299
+ * @param ctx -
300
300
  * @param ret -
301
301
  */
302
302
  protected mergeEffects(ctx: InterceptorContext, ret: any): void;
package/event-bus.js CHANGED
@@ -440,7 +440,7 @@ class StatelessEventBus {
440
440
  * Any `null` / `undefined` values directly assigned to a side
441
441
  * effect are ignored and will not trigger the effect.
442
442
  *
443
- * @param fx -
443
+ * @param ctx -
444
444
  * @param ret -
445
445
  */
446
446
  mergeEffects(ctx, ret) {
package/interceptors.d.ts CHANGED
@@ -183,7 +183,7 @@ export declare const ensureParamRange: (min: number, max: number, value?: Fn<Eve
183
183
  * @param path -
184
184
  * @param tx -
185
185
  */
186
- export declare const valueSetter: <T>(path: Path, tx?: Fn<T, T> | undefined) => InterceptorFn;
186
+ export declare const valueSetter: <T>(path: Path, tx?: Fn<T, T>) => InterceptorFn;
187
187
  /**
188
188
  * Higher-order interceptor. Returns new interceptor to update state
189
189
  * value at provided path with given function. This allows for dedicated
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/interceptors",
3
- "version": "3.2.48",
3
+ "version": "3.2.50",
4
4
  "description": "Interceptor based event bus, side effect & immutable state handling",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,19 +39,19 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.9.28",
43
- "@thi.ng/atom": "^5.2.36",
44
- "@thi.ng/checks": "^3.5.2",
45
- "@thi.ng/errors": "^2.4.20",
46
- "@thi.ng/logger": "^3.0.5",
47
- "@thi.ng/paths": "^5.1.71"
42
+ "@thi.ng/api": "^8.9.30",
43
+ "@thi.ng/atom": "^5.2.38",
44
+ "@thi.ng/checks": "^3.5.3",
45
+ "@thi.ng/errors": "^2.5.0",
46
+ "@thi.ng/logger": "^3.0.6",
47
+ "@thi.ng/paths": "^5.1.73"
48
48
  },
49
49
  "devDependencies": {
50
- "@microsoft/api-extractor": "^7.40.1",
51
- "esbuild": "^0.20.0",
50
+ "@microsoft/api-extractor": "^7.42.3",
51
+ "esbuild": "^0.20.1",
52
52
  "rimraf": "^5.0.5",
53
- "typedoc": "^0.25.7",
54
- "typescript": "^5.3.3"
53
+ "typedoc": "^0.25.12",
54
+ "typescript": "^5.4.2"
55
55
  },
56
56
  "keywords": [
57
57
  "async",
@@ -95,5 +95,5 @@
95
95
  "status": "completed",
96
96
  "year": 2016
97
97
  },
98
- "gitHead": "a421058a65ba76608d94129ac29451bfedaf201c\n"
98
+ "gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
99
99
  }