@thi.ng/interceptors 3.2.49 → 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 +1 -1
- package/event-bus.d.ts +1 -1
- package/event-bus.js +1 -1
- package/interceptors.d.ts +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
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
|
|
299
|
+
* @param ctx -
|
|
300
300
|
* @param ret -
|
|
301
301
|
*/
|
|
302
302
|
protected mergeEffects(ctx: InterceptorContext, ret: any): void;
|
package/event-bus.js
CHANGED
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>
|
|
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.
|
|
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.
|
|
43
|
-
"@thi.ng/atom": "^5.2.
|
|
44
|
-
"@thi.ng/checks": "^3.5.
|
|
45
|
-
"@thi.ng/errors": "^2.
|
|
46
|
-
"@thi.ng/logger": "^3.0.
|
|
47
|
-
"@thi.ng/paths": "^5.1.
|
|
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.
|
|
51
|
-
"esbuild": "^0.20.
|
|
50
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
51
|
+
"esbuild": "^0.20.1",
|
|
52
52
|
"rimraf": "^5.0.5",
|
|
53
|
-
"typedoc": "^0.25.
|
|
54
|
-
"typescript": "^5.
|
|
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": "
|
|
98
|
+
"gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
|
|
99
99
|
}
|