@effect-app/vue 4.0.0-beta.230 → 4.0.0-beta.232
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 +19 -0
- package/dist/commander.d.ts +33 -33
- package/dist/commander.d.ts.map +1 -1
- package/dist/makeClient.d.ts +2 -2
- package/dist/makeClient.d.ts.map +1 -1
- package/dist/makeClient.js +1 -1
- package/package.json +6 -6
- package/src/commander.ts +36 -36
- package/src/makeClient.ts +5 -1
- package/test/dist/stubs.d.ts +3 -3
- package/test/makeClient.test.ts +35 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @effect-app/vue
|
|
2
2
|
|
|
3
|
+
## 4.0.0-beta.232
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1176240: Fix `client[Key].Input` resolving to `never` for stream request handlers. The extractor only matched `RequestHandlerWithInput`, so any `RequestStreamHandlerWithInput` entry fell through to the `never` branch. Added a parallel `RequestStreamHandlerWithInput` extract so stream Inputs surface the handler's input type.
|
|
8
|
+
- 0263827: Update to effect `pkg.pr.new` snapshot at `a42ef66` (4.0.0-beta.66). Remove `Yieldable` and `asEffect()` (service tags are now `Effect` directly).
|
|
9
|
+
- Updated dependencies [0263827]
|
|
10
|
+
- Updated dependencies [0263827]
|
|
11
|
+
- Updated dependencies [0263827]
|
|
12
|
+
- effect-app@4.0.0-beta.232
|
|
13
|
+
|
|
14
|
+
## 4.0.0-beta.231
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 7ca66ce: Update to effect 4.0.0-beta.66. Remove `Yieldable` and `asEffect()` (service tags are now `Effect` directly).
|
|
19
|
+
- Updated dependencies [7ca66ce]
|
|
20
|
+
- effect-app@4.0.0-beta.231
|
|
21
|
+
|
|
3
22
|
## 4.0.0-beta.230
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|