@thi.ng/interceptors 3.2.9 → 3.2.10
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/interceptors.d.ts +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
package/event-bus.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { IDeref, IObjectOf } from "@thi.ng/api";
|
|
2
2
|
import type { IAtom } from "@thi.ng/atom";
|
|
3
|
-
import { EffectDef, EffectPriority, Event, EventDef, IDispatch, Interceptor, InterceptorContext, InterceptorFn, SideEffect } from "./api.js";
|
|
3
|
+
import { type EffectDef, type EffectPriority, type Event, type EventDef, type IDispatch, type Interceptor, type InterceptorContext, type InterceptorFn, type SideEffect } from "./api.js";
|
|
4
4
|
/**
|
|
5
5
|
* Batched event processor for using composable interceptors for event
|
|
6
6
|
* handling and side effects to execute the result of handled events.
|
package/interceptors.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Fn, FnO, Path } from "@thi.ng/api";
|
|
2
|
-
import { Event, InterceptorFn, InterceptorPredicate } from "./api.js";
|
|
2
|
+
import { type Event, type InterceptorFn, type InterceptorPredicate } from "./api.js";
|
|
3
3
|
/**
|
|
4
4
|
* Debug interceptor to log the current event to the console.
|
|
5
5
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/interceptors",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.10",
|
|
4
4
|
"description": "Interceptor based event bus, side effect & immutable state handling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,20 +37,20 @@
|
|
|
37
37
|
"test": "testament test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@thi.ng/api": "^8.7.
|
|
41
|
-
"@thi.ng/atom": "^5.1.
|
|
42
|
-
"@thi.ng/checks": "^3.3.
|
|
43
|
-
"@thi.ng/errors": "^2.2.
|
|
44
|
-
"@thi.ng/logger": "^1.4.
|
|
45
|
-
"@thi.ng/paths": "^5.1.
|
|
40
|
+
"@thi.ng/api": "^8.7.5",
|
|
41
|
+
"@thi.ng/atom": "^5.1.34",
|
|
42
|
+
"@thi.ng/checks": "^3.3.11",
|
|
43
|
+
"@thi.ng/errors": "^2.2.14",
|
|
44
|
+
"@thi.ng/logger": "^1.4.12",
|
|
45
|
+
"@thi.ng/paths": "^5.1.34"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@microsoft/api-extractor": "^7.34.4",
|
|
49
|
-
"@thi.ng/testament": "^0.3.
|
|
50
|
-
"rimraf": "^4.4.
|
|
49
|
+
"@thi.ng/testament": "^0.3.14",
|
|
50
|
+
"rimraf": "^4.4.1",
|
|
51
51
|
"tools": "^0.0.1",
|
|
52
|
-
"typedoc": "^0.23.
|
|
53
|
-
"typescript": "^
|
|
52
|
+
"typedoc": "^0.23.28",
|
|
53
|
+
"typescript": "^5.0.2"
|
|
54
54
|
},
|
|
55
55
|
"keywords": [
|
|
56
56
|
"async",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"status": "completed",
|
|
95
95
|
"year": 2016
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
|
|
98
98
|
}
|