@effect-app/vue 4.0.0-beta.24 → 4.0.0-beta.240

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.
Files changed (106) hide show
  1. package/CHANGELOG.md +1757 -0
  2. package/dist/commander.d.ts +634 -0
  3. package/dist/commander.d.ts.map +1 -0
  4. package/dist/commander.js +1070 -0
  5. package/dist/confirm.d.ts +21 -0
  6. package/dist/confirm.d.ts.map +1 -0
  7. package/dist/confirm.js +26 -0
  8. package/dist/errorReporter.d.ts +7 -5
  9. package/dist/errorReporter.d.ts.map +1 -1
  10. package/dist/errorReporter.js +14 -19
  11. package/dist/form.d.ts +15 -6
  12. package/dist/form.d.ts.map +1 -1
  13. package/dist/form.js +46 -13
  14. package/dist/index.d.ts +1 -1
  15. package/dist/intl.d.ts +15 -0
  16. package/dist/intl.d.ts.map +1 -0
  17. package/dist/intl.js +9 -0
  18. package/dist/lib.d.ts +8 -10
  19. package/dist/lib.d.ts.map +1 -1
  20. package/dist/lib.js +35 -10
  21. package/dist/makeClient.d.ts +156 -339
  22. package/dist/makeClient.d.ts.map +1 -1
  23. package/dist/makeClient.js +225 -376
  24. package/dist/makeContext.d.ts +1 -1
  25. package/dist/makeContext.d.ts.map +1 -1
  26. package/dist/makeIntl.d.ts +1 -1
  27. package/dist/makeIntl.d.ts.map +1 -1
  28. package/dist/makeUseCommand.d.ts +9 -0
  29. package/dist/makeUseCommand.d.ts.map +1 -0
  30. package/dist/makeUseCommand.js +13 -0
  31. package/dist/mutate.d.ts +79 -35
  32. package/dist/mutate.d.ts.map +1 -1
  33. package/dist/mutate.js +166 -49
  34. package/dist/query.d.ts +24 -39
  35. package/dist/query.d.ts.map +1 -1
  36. package/dist/query.js +156 -78
  37. package/dist/routeParams.d.ts +3 -2
  38. package/dist/routeParams.d.ts.map +1 -1
  39. package/dist/routeParams.js +4 -3
  40. package/dist/runtime.d.ts +10 -6
  41. package/dist/runtime.d.ts.map +1 -1
  42. package/dist/runtime.js +32 -18
  43. package/dist/toast.d.ts +51 -0
  44. package/dist/toast.d.ts.map +1 -0
  45. package/dist/toast.js +34 -0
  46. package/dist/withToast.d.ts +30 -0
  47. package/dist/withToast.d.ts.map +1 -0
  48. package/dist/withToast.js +64 -0
  49. package/examples/streamMutation.ts +72 -0
  50. package/package.json +48 -50
  51. package/src/commander.ts +3406 -0
  52. package/src/{experimental/confirm.ts → confirm.ts} +12 -14
  53. package/src/errorReporter.ts +65 -75
  54. package/src/form.ts +61 -18
  55. package/src/intl.ts +12 -0
  56. package/src/lib.ts +48 -20
  57. package/src/makeClient.ts +578 -1134
  58. package/src/{experimental/makeUseCommand.ts → makeUseCommand.ts} +8 -5
  59. package/src/mutate.ts +300 -130
  60. package/src/query.ts +241 -183
  61. package/src/routeParams.ts +3 -2
  62. package/src/runtime.ts +46 -21
  63. package/src/{experimental/toast.ts → toast.ts} +15 -27
  64. package/src/{experimental/withToast.ts → withToast.ts} +46 -12
  65. package/test/Mutation.test.ts +181 -24
  66. package/test/dist/form.test.d.ts.map +1 -1
  67. package/test/dist/lib.test.d.ts.map +1 -0
  68. package/test/dist/streamFinal.test.d.ts.map +1 -0
  69. package/test/dist/streamFn.test.d.ts.map +1 -0
  70. package/test/dist/stubs.d.ts +3531 -122
  71. package/test/dist/stubs.d.ts.map +1 -1
  72. package/test/dist/stubs.js +187 -32
  73. package/test/form-validation-errors.test.ts +25 -20
  74. package/test/form.test.ts +22 -3
  75. package/test/lib.test.ts +240 -0
  76. package/test/makeClient.test.ts +327 -38
  77. package/test/streamFinal.test.ts +64 -0
  78. package/test/streamFn.test.ts +457 -0
  79. package/test/stubs.ts +223 -43
  80. package/tsconfig.examples.json +20 -0
  81. package/tsconfig.json +2 -1
  82. package/tsconfig.json.bak +5 -2
  83. package/tsconfig.src.json +34 -34
  84. package/tsconfig.test.json +2 -2
  85. package/vitest.config.ts +5 -5
  86. package/dist/experimental/commander.d.ts +0 -359
  87. package/dist/experimental/commander.d.ts.map +0 -1
  88. package/dist/experimental/commander.js +0 -557
  89. package/dist/experimental/confirm.d.ts +0 -19
  90. package/dist/experimental/confirm.d.ts.map +0 -1
  91. package/dist/experimental/confirm.js +0 -28
  92. package/dist/experimental/intl.d.ts +0 -16
  93. package/dist/experimental/intl.d.ts.map +0 -1
  94. package/dist/experimental/intl.js +0 -5
  95. package/dist/experimental/makeUseCommand.d.ts +0 -8
  96. package/dist/experimental/makeUseCommand.d.ts.map +0 -1
  97. package/dist/experimental/makeUseCommand.js +0 -13
  98. package/dist/experimental/toast.d.ts +0 -47
  99. package/dist/experimental/toast.d.ts.map +0 -1
  100. package/dist/experimental/toast.js +0 -41
  101. package/dist/experimental/withToast.d.ts +0 -25
  102. package/dist/experimental/withToast.d.ts.map +0 -1
  103. package/dist/experimental/withToast.js +0 -45
  104. package/eslint.config.mjs +0 -24
  105. package/src/experimental/commander.ts +0 -1835
  106. package/src/experimental/intl.ts +0 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1762 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 4.0.0-beta.240
4
+
5
+ ### Patch Changes
6
+
7
+ - effect-app@4.0.0-beta.240
8
+
9
+ ## 4.0.0-beta.239
10
+
11
+ ### Patch Changes
12
+
13
+ - effect-app@4.0.0-beta.239
14
+
15
+ ## 4.0.0-beta.238
16
+
17
+ ### Patch Changes
18
+
19
+ - effect-app@4.0.0-beta.238
20
+
21
+ ## 4.0.0-beta.237
22
+
23
+ ### Patch Changes
24
+
25
+ - effect-app@4.0.0-beta.237
26
+
27
+ ## 4.0.0-beta.236
28
+
29
+ ### Patch Changes
30
+
31
+ - effect-app@4.0.0-beta.236
32
+
33
+ ## 4.0.0-beta.235
34
+
35
+ ### Patch Changes
36
+
37
+ - 6cfd83d: update effect to latest beta
38
+ - Updated dependencies [ba4bdc3]
39
+ - Updated dependencies [6cfd83d]
40
+ - effect-app@4.0.0-beta.235
41
+
42
+ ## 4.0.0-beta.234
43
+
44
+ ### Patch Changes
45
+
46
+ - effect-app@4.0.0-beta.234
47
+
48
+ ## 4.0.0-beta.233
49
+
50
+ ### Patch Changes
51
+
52
+ - 57a1862: Update to effect 4.0.0-beta.67. Switch deps from `pkg.pr.new` snapshot back to npm beta tag.
53
+ - Updated dependencies [57a1862]
54
+ - effect-app@4.0.0-beta.233
55
+
56
+ ## 4.0.0-beta.232
57
+
58
+ ### Patch Changes
59
+
60
+ - 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.
61
+ - 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).
62
+ - Updated dependencies [0263827]
63
+ - Updated dependencies [0263827]
64
+ - Updated dependencies [0263827]
65
+ - effect-app@4.0.0-beta.232
66
+
67
+ ## 4.0.0-beta.231
68
+
69
+ ### Patch Changes
70
+
71
+ - 7ca66ce: Update to effect 4.0.0-beta.66. Remove `Yieldable` and `asEffect()` (service tags are now `Effect` directly).
72
+ - Updated dependencies [7ca66ce]
73
+ - effect-app@4.0.0-beta.231
74
+
75
+ ## 4.0.0-beta.230
76
+
77
+ ### Patch Changes
78
+
79
+ - effect-app@4.0.0-beta.230
80
+
81
+ ## 4.0.0-beta.229
82
+
83
+ ### Minor Changes
84
+
85
+ - 2b4c324: Make the default mutation invalidation heuristic configurable.
86
+
87
+ The built-in default is unchanged (collapse one namespace level: `Foo/Bar.x` invalidates `["$Foo"]`, `Foo/Bar/Baz.x` invalidates `["$Foo","$Bar"]`). Client projects can now override it globally:
88
+
89
+ ```ts
90
+ import { makeQueryKey, setDefaultGetQueryKey } from "@effect-app/vue";
91
+
92
+ // invalidate the full namespace of the action (no parent collapse)
93
+ setDefaultGetQueryKey((h) => {
94
+ const key = makeQueryKey(h);
95
+ const ns = key.filter((_) => _.startsWith("$"));
96
+ if (!ns.length) throw new Error("empty query key for: " + h.id);
97
+ return ns;
98
+ });
99
+ ```
100
+
101
+ Call at app bootstrap. Pass `undefined` to restore the built-in default. Per-mutation overrides via the existing `queryInvalidation` option still take precedence.
102
+
103
+ ### Patch Changes
104
+
105
+ - effect-app@4.0.0-beta.229
106
+
107
+ ## 4.0.0-beta.228
108
+
109
+ ### Minor Changes
110
+
111
+ - 62dafaa: Default mutation invalidation now scopes to the action's full namespace instead of the parent.
112
+
113
+ For `Foo/Bar.SaveItems` we previously invalidated `["$Foo"]` (every query under `Foo/*`); now we invalidate `["$Foo","$Bar"]` (only queries under `Foo/Bar`). This avoids accidentally refetching unrelated sibling groups when one group mutates.
114
+
115
+ If you relied on cross-group invalidation (e.g. `Project/Configuration.save` refreshing `Project/Other.list`), opt in explicitly via the `queryInvalidation` mutation option or emit the appropriate keys server-side through `InvalidationSet`.
116
+
117
+ ### Patch Changes
118
+
119
+ - effect-app@4.0.0-beta.228
120
+
121
+ ## 4.0.0-beta.227
122
+
123
+ ### Patch Changes
124
+
125
+ - effect-app@4.0.0-beta.227
126
+
127
+ ## 4.0.0-beta.226
128
+
129
+ ### Patch Changes
130
+
131
+ - effect-app@4.0.0-beta.226
132
+
133
+ ## 4.0.0-beta.225
134
+
135
+ ### Patch Changes
136
+
137
+ - effect-app@4.0.0-beta.225
138
+
139
+ ## 4.0.0-beta.224
140
+
141
+ ### Minor Changes
142
+
143
+ - 1e4c989: Add `mode: "optional"` overload for queries. When `mode: "optional"` is set, the `arg` must be a `WatchSource<Option<I>>`. The query is disabled (`enabled: false`) when the option is `None`, and enabled with the unwrapped value when `Some`.
144
+
145
+ ### Patch Changes
146
+
147
+ - effect-app@4.0.0-beta.224
148
+
149
+ ## 4.0.0-beta.223
150
+
151
+ ### Patch Changes
152
+
153
+ - effect-app@4.0.0-beta.223
154
+
155
+ ## 4.0.0-beta.222
156
+
157
+ ### Patch Changes
158
+
159
+ - effect-app@4.0.0-beta.222
160
+
161
+ ## 4.0.0-beta.221
162
+
163
+ ### Patch Changes
164
+
165
+ - 439cbeb: Adopt module system from effect-smol: replace barrel imports with specific submodule imports (`import * as X from "effect-app/X"` / `import * as X from "effect/X"`).
166
+ - Updated dependencies [439cbeb]
167
+ - effect-app@4.0.0-beta.221
168
+
169
+ ## 4.0.0-beta.220
170
+
171
+ ### Patch Changes
172
+
173
+ - effect-app@4.0.0-beta.220
174
+
175
+ ## 4.0.0-beta.219
176
+
177
+ ### Patch Changes
178
+
179
+ - Updated dependencies [d738811]
180
+ - effect-app@4.0.0-beta.219
181
+
182
+ ## 4.0.0-beta.218
183
+
184
+ ### Patch Changes
185
+
186
+ - effect-app@4.0.0-beta.218
187
+
188
+ ## 4.0.0-beta.217
189
+
190
+ ### Patch Changes
191
+
192
+ - Updated dependencies [0e824ef]
193
+ - effect-app@4.0.0-beta.217
194
+
195
+ ## 4.0.0-beta.216
196
+
197
+ ### Patch Changes
198
+
199
+ - effect-app@4.0.0-beta.216
200
+
201
+ ## 4.0.0-beta.215
202
+
203
+ ### Patch Changes
204
+
205
+ - effect-app@4.0.0-beta.215
206
+
207
+ ## 4.0.0-beta.214
208
+
209
+ ### Patch Changes
210
+
211
+ - effect-app@4.0.0-beta.214
212
+
213
+ ## 4.0.0-beta.213
214
+
215
+ ### Patch Changes
216
+
217
+ - effect-app@4.0.0-beta.213
218
+
219
+ ## 4.0.0-beta.212
220
+
221
+ ### Patch Changes
222
+
223
+ - Updated dependencies [8792221]
224
+ - effect-app@4.0.0-beta.212
225
+
226
+ ## 4.0.0-beta.211
227
+
228
+ ### Patch Changes
229
+
230
+ - effect-app@4.0.0-beta.211
231
+
232
+ ## 4.0.0-beta.210
233
+
234
+ ### Patch Changes
235
+
236
+ - effect-app@4.0.0-beta.210
237
+
238
+ ## 4.0.0-beta.209
239
+
240
+ ### Patch Changes
241
+
242
+ - c991be1: update packages
243
+ - Updated dependencies [c991be1]
244
+ - Updated dependencies [3bae238]
245
+ - effect-app@4.0.0-beta.209
246
+
247
+ ## 4.0.0-beta.208
248
+
249
+ ### Minor Changes
250
+
251
+ - 0d7d197: Add optional `groupId` and `requestId` to toast options.
252
+
253
+ - `ToastOpts` / `ToastOptsInternal` now accept `groupId?: string` and `requestId?: string`; values pass through the toast wrapper unchanged.
254
+ - `WithToast` / `withToast` accept `groupId` and auto-derive `requestId` once per invocation (current Effect span `traceId`, fallback `S.StringId.make()`); both are attached to every emitted toast (waiting/success/warning/error).
255
+ - `Command.withDefaultToast` and `Command.withDefaultToastStream` set `groupId: cc.id` automatically; the stream variant also computes `requestId` once and threads it through progress, success, and failure toasts.
256
+
257
+ ### Patch Changes
258
+
259
+ - effect-app@4.0.0-beta.208
260
+
261
+ ## 4.0.0-beta.207
262
+
263
+ ### Patch Changes
264
+
265
+ - Updated dependencies [8fffc3c]
266
+ - effect-app@4.0.0-beta.207
267
+
268
+ ## 4.0.0-beta.206
269
+
270
+ ### Patch Changes
271
+
272
+ - Updated dependencies [54bfc59]
273
+ - effect-app@4.0.0-beta.206
274
+
275
+ ## 4.0.0-beta.205
276
+
277
+ ### Patch Changes
278
+
279
+ - Updated dependencies [f313973]
280
+ - effect-app@4.0.0-beta.205
281
+
282
+ ## 4.0.0-beta.204
283
+
284
+ ### Patch Changes
285
+
286
+ - Updated dependencies [0a0030f]
287
+ - effect-app@4.0.0-beta.204
288
+
289
+ ## 4.0.0-beta.203
290
+
291
+ ### Patch Changes
292
+
293
+ - Updated dependencies [992d9fa]
294
+ - effect-app@4.0.0-beta.203
295
+
296
+ ## 4.0.0-beta.202
297
+
298
+ ### Patch Changes
299
+
300
+ - Updated dependencies [1186b09]
301
+ - effect-app@4.0.0-beta.202
302
+
303
+ ## 4.0.0-beta.201
304
+
305
+ ### Patch Changes
306
+
307
+ - Updated dependencies [d67d17a]
308
+ - effect-app@4.0.0-beta.201
309
+
310
+ ## 4.0.0-beta.200
311
+
312
+ ### Patch Changes
313
+
314
+ - Updated dependencies [8f1cf6a]
315
+ - Updated dependencies [0cff7c1]
316
+ - effect-app@4.0.0-beta.200
317
+
318
+ ## 4.0.0-beta.199
319
+
320
+ ### Patch Changes
321
+
322
+ - effect-app@4.0.0-beta.199
323
+
324
+ ## 4.0.0-beta.198
325
+
326
+ ### Patch Changes
327
+
328
+ - dd73a4a: fix fn on stream semantics
329
+ - Updated dependencies [32dbc54]
330
+ - effect-app@4.0.0-beta.198
331
+
332
+ ## 4.0.0-beta.197
333
+
334
+ ### Minor Changes
335
+
336
+ - 3dc0d2a: Add streaming as a `stream: true` config option on `Query` / `Command` instead of a separate request type.
337
+
338
+ `TaggedRequestFor` now exposes only `Query` and `Command` factories — the standalone `Stream` factory is removed. To produce a Stream of `success` values, pass `stream: true` in the request config. The request `type` field stays `"command" | "query"`; a new `stream: boolean` field carries the streaming flag (stripped from the stored handler config).
339
+
340
+ ```ts
341
+ // Query that streams results
342
+ Req.Query<T>()("Tag", {}, { stream: true, success: ... })
343
+
344
+ // Command that streams results
345
+ Req.Command<T>()("Tag", {}, { stream: true, success: ... })
346
+ ```
347
+
348
+ Vue client mapping (per-handler properties mirror the non-stream API — `.query`, `.fn`, `.mutate`):
349
+
350
+ - `query` + `stream: true` → exposes `.query` (read-only streaming, tracked Vue Query). Helper map key: `${name}Query`.
351
+ - `command` + `stream: true` → exposes `.fn` and `.mutate` (mutating streaming).
352
+ - Plain `query` / `command` unchanged.
353
+
354
+ Server routing dispatches via the new `stream` flag (`makeStreamRpc` for streaming commands/queries, `makeCommandRpc` / `Rpc.make` otherwise).
355
+
356
+ Also lifts the `Struct` / `TaggedStruct` and `Opaque` definitions in `effect-app/Schema` to use `S.Bottom` / `S.Opaque` directly, exposing `fields`, `mapFields`, and a `MakeIn` that allows `void` when all fields are optional. `TaggedRequestFor` request classes now use `Opaque(TaggedStruct(...))` instead of `TaggedClass`, and decoding/encoding services are derived from `success` / `error` rather than stored on the request.
357
+
358
+ **Migration**: replace `Req.Stream` with `Req.Query` or `Req.Command` and add `stream: true` to the config — `Query` for read-only streams, `Command` for mutating streams.
359
+
360
+ ### Patch Changes
361
+
362
+ - Updated dependencies [3dc0d2a]
363
+ - effect-app@4.0.0-beta.197
364
+
365
+ ## 4.0.0-beta.196
366
+
367
+ ### Patch Changes
368
+
369
+ - c7fbd58: `handle`, `mutate`, and `request` are now always functions, never a raw Effect or Stream. For no-input handlers the first argument is omitted (`handle()`, `request()`, `mutate()`).
370
+ - effect-app@4.0.0-beta.196
371
+
372
+ ## 4.0.0-beta.195
373
+
374
+ ### Patch Changes
375
+
376
+ - Updated dependencies [774a9b3]
377
+ - effect-app@4.0.0-beta.195
378
+
379
+ ## 4.0.0-beta.194
380
+
381
+ ### Patch Changes
382
+
383
+ - refactor(vue): remove 1s waiting toast delay in withDefaultToastStream
384
+ - effect-app@4.0.0-beta.194
385
+
386
+ ## 4.0.0-beta.193
387
+
388
+ ### Patch Changes
389
+
390
+ - effect-app@4.0.0-beta.193
391
+
392
+ ## 4.0.0-beta.192
393
+
394
+ ### Patch Changes
395
+
396
+ - effect-app@4.0.0-beta.192
397
+
398
+ ## 4.0.0-beta.191
399
+
400
+ ### Patch Changes
401
+
402
+ - 50ce7e6: Cleanup after tsgolint + oxlint-codegen-plugin migration:
403
+ - Wire `@effect-app/eslint-codegen-model/oxlint` via `jsPlugins` object form (`{ name: "codegen", specifier: ... }`) so the `codegen/codegen` rule key resolves.
404
+ - Drop `eslint-plugin-codegen` dep, patch, and `augmentedConfig` helper — codegen now runs through oxlint.
405
+ - Break cyclic workspace dep between `eslint-codegen-model` and `eslint-shared-config`; remove dead `eslint.config.mjs` from `eslint-codegen-model`.
406
+ - Switch `@effect-app/vue` to oxlint-only (no `.vue` files in `src`); drop its ESLint config and `eslint-shared-config` devDep.
407
+ - Restore `@typescript-eslint` plugin and rules in shared `baseConfig` so inline `eslint-disable @typescript-eslint/...` directives resolve in `@effect-app/vue-components` (the only remaining ESLint consumer, for `.vue` files).
408
+ - Add `globals.browser` to `vueConfig` so browser globals (`window`, `console`, `URL`, etc.) resolve.
409
+ - 50ce7e6: Replace typescript-eslint with oxlint-tsgolint for type-aware lint. Drop ESLint entirely from non-vue packages (cli, effect-app, infra) — they now use only `oxlint --type-aware`. Vue packages keep ESLint to run `@effect-app/no-await-effect` (no tsgolint equivalent) via `@typescript-eslint/parser` + `vue-eslint-parser`.
410
+ - Updated dependencies [50ce7e6]
411
+ - effect-app@4.0.0-beta.191
412
+
413
+ ## 4.0.0-beta.190
414
+
415
+ ### Patch Changes
416
+
417
+ - 985176b: Align request handler input typing with the request's `make` signature. Handlers are now classified as no-input only when the request schema declares no payload fields; any payload (even fully-optional) yields a function handler whose input matches `make`'s first parameter. Adds `HandlerInput<I>` and threads it through `CommandFromRequest`.
418
+ - Updated dependencies [985176b]
419
+ - effect-app@4.0.0-beta.190
420
+
421
+ ## 4.0.0-beta.189
422
+
423
+ ### Patch Changes
424
+
425
+ - d23e3f6: Delay the in-progress (waiting) toast by 1 second in `withToast` and `withDefaultToastStream`. Fast operations that produce a success/failure (or, for streams, a progress event or terminal state) within the delay window never show a waiting toast at all. Any subsequent waiting/progress/success/failure toast aborts the pending delayed toast so it never flashes after the terminal state.
426
+ - f44800c: In-progress toasts (`withToast` waiting toast and `withDefaultToastStream` waiting/progress toasts) now persist indefinitely (`timeout: Infinity`) until replaced by the success/failure toast or dismissed. Previously they used the underlying toast adapter's default duration and could disappear before the operation finished.
427
+ - Updated dependencies [ea32222]
428
+ - effect-app@4.0.0-beta.189
429
+
430
+ ## 4.0.0-beta.188
431
+
432
+ ### Minor Changes
433
+
434
+ - f16e766: Remove legacy `mutateToResult` stream mutation factory, `wrapStream` command builder, and standard command progress reporting (`running`/`progress` from the old stream factory path). Keep only the `mutate` path for use with `streamFn` combinators. Remove obsolete types (`StreamMutationWithExtensions`, `StreamCommandWithExtensions`, `StreamFnExtension`, `MutateStreamCallOptions`) and the internal `makeStreamMutation` function. Rename `mutate.wrapStream` shorthand to `mutate.wrap` to match the non-stream convention.
435
+
436
+ ### Patch Changes
437
+
438
+ - ed1b8a9: `mutate.wrap` on stream handlers now works the same as on command/query handlers: it can be called without arguments or with only combinators, with the underlying stream handler pre-baked in.
439
+ - b2e438f: Remove Operations service and repo
440
+ - Updated dependencies [b2e438f]
441
+ - effect-app@4.0.0-beta.188
442
+
443
+ ## 4.0.0-beta.187
444
+
445
+ ### Patch Changes
446
+
447
+ - 0d4e0b8: Fix `isGeneratorFunction` using `isObject` instead of `isFunction`: generator functions have `typeof === "function"`, not `"object"`, so the check always returned `false`. This caused `Command.streamFn` generator-form handlers to silently pass a raw `Generator` object rather than an `Effect<Stream>`, meaning the mutation was never executed.
448
+ - Updated dependencies [0d4e0b8]
449
+ - effect-app@4.0.0-beta.187
450
+
451
+ ## 4.0.0-beta.186
452
+
453
+ ### Patch Changes
454
+
455
+ - 89b7d2f: `Command.withDefaultToastStream`: add `progress` option to update the waiting toast with progress text on each stream element
456
+ - effect-app@4.0.0-beta.186
457
+
458
+ ## 4.0.0-beta.185
459
+
460
+ ### Patch Changes
461
+
462
+ - ddd9505: Rename stream mutation helpers: `mutateStream` → `mutateToResult`, `mutateStream2` → `mutate`.
463
+ - effect-app@4.0.0-beta.185
464
+
465
+ ## 4.0.0-beta.184
466
+
467
+ ### Minor Changes
468
+
469
+ - d4bf24a: Add `Command.withDefaultToastStream` — a stream-aware combinator for `streamFn` that properly handles the full stream lifecycle (waiting/success/failure toasts). Unlike `withDefaultToast`, it waits for the stream to drain before showing the success toast and correctly handles stream errors.
470
+
471
+ Strongly type `CommandBase` with `RA`/`RE` type params for `result`, and update `CommandButton`'s `mapProgress` prop to be typed as `(result: AsyncResult<RA, RE>) => Progress | undefined`.
472
+
473
+ ### Patch Changes
474
+
475
+ - effect-app@4.0.0-beta.184
476
+
477
+ ## 4.0.0-beta.183
478
+
479
+ ### Minor Changes
480
+
481
+ - 8ff0bf9: Add `Command.streamFn` — a stream-backed variant of `Command.fn`.
482
+
483
+ The body generator (or plain function) returns a `Stream` instead of an `Effect`. The command's `waiting` state stays `true` while the stream is running and updates the reactive `result` ref for every emitted value.
484
+
485
+ Three handler shapes are accepted:
486
+
487
+ 1. **Generator returning a Stream** (primary):
488
+ ```ts
489
+ Command.streamFn("exportData")(function* (arg, ctx) {
490
+ const token = yield* getAuthToken;
491
+ return Stream.fromEffect(startExport(token, arg.id)).pipe(
492
+ Stream.flatMap((job) => pollProgress(job.id))
493
+ );
494
+ });
495
+ ```
496
+ 2. Function returning a `Stream` directly.
497
+ 3. Function returning `Effect<Stream>` (unwrapped automatically).
498
+
499
+ - 8ff0bf9: - `CommandButton`: add optional `:map-progress` prop to compute progress from `command.result` via a custom mapper function
500
+ - `CommandBase`: add optional `result` field exposing reactive `AsyncResult` state
501
+ - Export `Progress` type from `@effect-app/vue`
502
+ - `streamFn`: pipe operators now receive the initial `Effect<Stream>` (or `Stream`) value unchanged; `Stream.unwrap` is deferred until after all combinators, enabling use of `withDefaultToast` and other Effect-level combinators
503
+ - Add `makeStreamMutation2`: like `makeStreamMutation` but returns `Effect<Stream>` per invocation (with invalidation via `Stream.ensuring`), for use with `streamFn` combinators
504
+ - Expose `streamFn` on `XClient.Y` stream handlers and on the `Command` object
505
+ - Expose `mutateStream2` on `XClient.Y` stream handlers, with a `wrapStream` helper that calls `streamFn` with the handler and provided combinators
506
+ - fc98fb7: Add `streamQuery` support for stream-type Rpc handlers. When an Rpc is of type `"stream"`, the client now exposes a `.streamQuery` property (and `...StreamQuery` in helpers) that uses `streamedQuery` from `@tanstack/query-core` to accumulate chunks reactively as an `AsyncResult<A[], E>`.
507
+
508
+ ### Patch Changes
509
+
510
+ - effect-app@4.0.0-beta.183
511
+
512
+ ## 4.0.0-beta.182
513
+
514
+ ### Minor Changes
515
+
516
+ - b9586f8: Refine `mutateStream` shape and progress reporting.
517
+
518
+ - `mutateStream(options?)` now returns the `execute` callable directly, with `id`, `running?`, and `progress?` attached as properties. Tuple form `[ref, execute]` is gone — invoke the callable to run the stream, or pass it (or the factory) to `Command.fn` / `Command.wrap` / `Command.wrapStream`.
519
+ - `progress` formatter return type widened from `string | undefined` to `Progress | undefined`, where `Progress = string | { text: string; percentage: number }`.
520
+ - Stream failures now bubble through the execute effect's typed error channel `E` instead of being swallowed. The reactive `AsyncResult` ref still mirrors the failure for live progress UI.
521
+ - `CommandBase.progress?: Progress` replaces `progressText?: string`. `CommandButton` overrides the Vuetify `loader` slot when `progress` is set, rendering a `v-progress-circular` (bound to `model-value` when a `percentage` is supplied, otherwise `indeterminate`) alongside the formatted text.
522
+ - Factories and callables are branded with `_streamFactory` / `_streamCallable` so `Command.fn` / `Command.wrap` can disambiguate them from plain mutate functions.
523
+
524
+ ### Patch Changes
525
+
526
+ - effect-app@4.0.0-beta.182
527
+
528
+ ## 4.0.0-beta.181
529
+
530
+ ### Minor Changes
531
+
532
+ - 4bbeb19: Add `wrapStream` support to `Command` with separate `result` and `running` props.
533
+
534
+ **Key design:**
535
+
536
+ - `result` is always the command's own execution outcome (from `asResult`)
537
+ - `running` holds the stream's live `AsyncResult` ref for progress tracking
538
+
539
+ **New behaviour:**
540
+
541
+ - `CommanderImpl.wrapStream(mutation)` returns a callable like `wrap` — `wrapStream(mutation)()` gives `CommandOut`.
542
+ - Accepts either `{ id, mutateStream: [...] }` or the augmented tuple directly (when `.id` is attached).
543
+ - `Command.wrap` now accepts `{ mutateStream, id }` and the augmented tuple — both delegate to `wrapStream`.
544
+ - `FnOptions.progress` — pass a `ComputedRef<AsyncResult>` to any `fn`-created command; surfaces as `running`.
545
+ - `StreamMutationWithExtensions` now includes `.id` on the tuple.
546
+ - Stream client entries expose `wrapStream` (callable), `fn`, and `mutateStream` (with `.id`).
547
+ - Stream mutation helpers also carry `.fn` and `.id`.
548
+
549
+ ```ts
550
+ // Via client entry:
551
+ const exportCmd = Command.wrapStream(client.myExport)();
552
+ // exportCmd.result = own execution result; exportCmd.running = live stream AsyncResult
553
+
554
+ // Via mutateStream tuple (id is attached):
555
+ const exportCmd = Command.wrapStream(client.myExport.mutateStream)();
556
+
557
+ // wrap also accepts the tuple:
558
+ const exportCmd = Command.wrap(client.myExport.mutateStream)();
559
+
560
+ // fn with external progress:
561
+ const cmd = Command.fn({
562
+ id: "myExport",
563
+ progress: client.myExport.mutateStream[0],
564
+ })(function* (arg) {
565
+ yield* client.myExport.mutateStream[1](arg);
566
+ });
567
+ // cmd.running === the stream AsyncResult ref
568
+ ```
569
+
570
+ ### Patch Changes
571
+
572
+ - 583393f: Default the stream `mutateStream` execute resolved value to the request's success type when no `final` schema is declared.
573
+
574
+ Previously the type defaulted to `void`, but the runtime already resolves with the last emitted value. Types now match runtime behaviour: `execute` returns `Final` if a `final` schema is set, otherwise the success type.
575
+
576
+ - Updated dependencies [583393f]
577
+ - effect-app@4.0.0-beta.181
578
+
579
+ ## 4.0.0-beta.180
580
+
581
+ ### Minor Changes
582
+
583
+ - 7fa3045: V1/V2/V3: stream and command requests carry invalidation metadata
584
+
585
+ **V1** – stream final response includes metadata
586
+
587
+ - `Invalidation.StreamResponseChunk` wraps each stream item as `{ _tag: "value", value }` and appends `{ _tag: "done", metadata }` at the end carrying all accumulated invalidation keys.
588
+
589
+ **V2** – invalidation keys included in failures
590
+
591
+ - `Invalidation.CommandFailureWithMetaData` and `Invalidation.StreamFailureChunk` carry keys accumulated up to the point of failure, so clients can invalidate queries even when a command or stream errors.
592
+ - `InvalidationMiddlewareLive` wraps command failures; `routing.ts` wraps stream failures.
593
+ - `apiClientFactory.ts` unwraps both on the client side, forwarding keys before re-failing with the original error.
594
+
595
+ **V3** – mid-stream metadata chunks
596
+
597
+ - `Invalidation.StreamResponseChunk` now also includes `{ _tag: "metadata", metadata }` for mid-stream invalidation.
598
+ - After each emitted value, the server drains accumulated keys and emits a "metadata" chunk if any keys were collected since the last drain (bucket reset via `InvalidationSet.drain`).
599
+ - `apiClientFactory.ts` processes "metadata" chunks the same as "done" chunks, forwarding keys to `InvalidationKeysFromServer` immediately.
600
+ - `makeInvalidationKeysService` accepts an optional `onAdded` callback that fires after each key addition, enabling `mutate.ts` to trigger query invalidation mid-stream without waiting for the stream to complete.
601
+
602
+ ### Patch Changes
603
+
604
+ - Updated dependencies [7fa3045]
605
+ - effect-app@4.0.0-beta.180
606
+
607
+ ## 4.0.0-beta.179
608
+
609
+ ### Minor Changes
610
+
611
+ - 828d264: Stream requests now support an optional `final` schema that models the final success type of the stream. When declared, `mutateStream`'s execute effect resolves with the last emitted value typed as `Final` instead of `void`.
612
+
613
+ ```ts
614
+ class MyStream extends SomethingStream<MyStream>()(
615
+ "MyStream",
616
+ { id: S.String },
617
+ {
618
+ success: S.Union([OperationProgress, ExportComplete]),
619
+ final: ExportComplete, // execute now resolves with ExportComplete
620
+ }
621
+ ) {}
622
+ ```
623
+
624
+ ### Patch Changes
625
+
626
+ - Updated dependencies [828d264]
627
+ - effect-app@4.0.0-beta.179
628
+
629
+ ## 4.0.0-beta.178
630
+
631
+ ### Minor Changes
632
+
633
+ - 07dd7b9: Add `asStreamResult` utility and stream-based mutation example.
634
+
635
+ `asStreamResult` mirrors `asResult` but accepts a `Stream<A, E, R>` (or a factory function that returns one). The reactive ref is updated with each emitted value (`waiting: true`) and finalised once the stream ends (`waiting: false`). Errors surface as `AsyncResult.failure`.
636
+
637
+ The included example (`examples/streamMutation.ts`) shows how to model a long-running export operation that streams `OperationProgress | ExportComplete` events into a readonly Vue ref.
638
+
639
+ ### Patch Changes
640
+
641
+ - effect-app@4.0.0-beta.178
642
+
643
+ ## 4.0.0-beta.177
644
+
645
+ ### Patch Changes
646
+
647
+ - Updated dependencies [89d8b3a]
648
+ - effect-app@4.0.0-beta.177
649
+
650
+ ## 4.0.0-beta.176
651
+
652
+ ### Patch Changes
653
+
654
+ - pass options
655
+ - Updated dependencies
656
+ - effect-app@4.0.0-beta.176
657
+
658
+ ## 4.0.0-beta.175
659
+
660
+ ### Minor Changes
661
+
662
+ - 28777c1: Add `select` option to `MutationOptionsBase` for a second cache invalidation after long-running operations.
663
+
664
+ When `select` is provided, cache invalidation fires twice:
665
+
666
+ 1. Immediately when the mutation completes (existing behaviour).
667
+ 2. Again after the `select` effect finishes — useful for polling or waiting for a background job before refreshing data.
668
+
669
+ ```ts
670
+ useMutation(startExportCommand, {
671
+ select: (result) => pollUntilDone(result.jobId),
672
+ });
673
+ ```
674
+
675
+ ### Patch Changes
676
+
677
+ - 37089ea: Consolidate multiple `invalidateQueries` calls into a single call per group using a `predicate`, reducing the number of TanStack Query invalidation calls in the common case from N to 1.
678
+ - effect-app@4.0.0-beta.175
679
+
680
+ ## 4.0.0-beta.174
681
+
682
+ ### Minor Changes
683
+
684
+ - 821468d: Add server-driven cache invalidation via RPC response headers.
685
+
686
+ - `effect-app/rpc`: new `Invalidation` module with `InvalidationKey` / `InvalidationKeys` schemas, `Invalidates` annotation (for declaring static invalidation on Rpc definitions), `InvalidationSet` reference (request-scoped accumulator), and `makeInvalidationSet` helper.
687
+ - `effect-app/middleware`: new `InvalidationMiddleware` RPC middleware tag; included in `DefaultGenericMiddlewares`.
688
+ - `effect-app/client`: new `InvalidationKeys` module with `InvalidationKeysFromServer` reference and `makeInvalidationKeysService` helper; `apiClientFactory` now taps HTTP responses to read the `x-invalidate` header and forward keys to `InvalidationKeysFromServer`.
689
+ - `@effect-app/infra`: new `InvalidationMiddlewareLive` RPC middleware implementation that owns the full lifecycle — creates a request-scoped `InvalidationSet` (backed by a `Ref`), pre-populates it from the `Invalidates` annotation, provides it to the handler, and after the handler completes registers an HTTP pre-response handler (via `appendPreResponseHandlerUnsafe`) to write the accumulated keys as an `x-invalidate` response header. No separate HTTP middleware is needed.
690
+ - `@effect-app/vue`: `invalidateQueries` / `useMutation` now reads server-provided invalidation keys from `InvalidationKeysFromServer` after each mutation and applies them alongside the client-side invalidation.
691
+
692
+ ### Patch Changes
693
+
694
+ - 1b38043: Fix lint: use typescript ~6.0.3 instead of native-preview for ESLint compatibility; keep tsgo for compilation
695
+ - b241ae5: Merge client and server-driven cache invalidation keys into a single `Effect.forEach` pass so server keys always run regardless of whether client targets are empty or custom invalidation options are used.
696
+ - Updated dependencies [821468d]
697
+ - effect-app@4.0.0-beta.174
698
+
699
+ ## 4.0.0-beta.173
700
+
701
+ ### Patch Changes
702
+
703
+ - 4149577: fix queryresources
704
+ - effect-app@4.0.0-beta.173
705
+
706
+ ## 4.0.0-beta.172
707
+
708
+ ### Patch Changes
709
+
710
+ - effect-app@4.0.0-beta.172
711
+
712
+ ## 4.0.0-beta.171
713
+
714
+ ### Patch Changes
715
+
716
+ - d71d976: fix
717
+ - Updated dependencies [d71d976]
718
+ - effect-app@4.0.0-beta.171
719
+
720
+ ## 4.0.0-beta.170
721
+
722
+ ### Patch Changes
723
+
724
+ - 8f09f77: fix
725
+ - Updated dependencies [8f09f77]
726
+ - effect-app@4.0.0-beta.170
727
+
728
+ ## 4.0.0-beta.169
729
+
730
+ ### Patch Changes
731
+
732
+ - 8ae8b53: input mess
733
+ - Updated dependencies [8ae8b53]
734
+ - effect-app@4.0.0-beta.169
735
+
736
+ ## 4.0.0-beta.168
737
+
738
+ ### Patch Changes
739
+
740
+ - Updated dependencies [178480a]
741
+ - effect-app@4.0.0-beta.168
742
+
743
+ ## 4.0.0-beta.167
744
+
745
+ ### Patch Changes
746
+
747
+ - 140e192: Relax invalidation resource value constraints to allow arbitrary values while preserving query-only filtering in invalidation handling.
748
+ - Updated dependencies [140e192]
749
+ - effect-app@4.0.0-beta.167
750
+
751
+ ## 4.0.0-beta.166
752
+
753
+ ### Patch Changes
754
+
755
+ - dbcc53b: Refactor command invalidation typing: declare resources via `Command<Self, Resources>()`, pass `invalidatesQueries` as the optional 4th argument, and enforce exact `clientFor` invalidation resources when required.
756
+ - Updated dependencies [dbcc53b]
757
+ - effect-app@4.0.0-beta.166
758
+
759
+ ## 4.0.0-beta.165
760
+
761
+ ### Patch Changes
762
+
763
+ - f88ea34: Move `makeQueryKey` into `effect-app/client` and update Vue source and tests to import it from the shared client module. Vue still re-exports `makeQueryKey` from `src/lib` for compatibility.
764
+ - 66fd718: Require `clientFor` invalidation resources when any command in the client configures them.
765
+ - Updated dependencies [f88ea34]
766
+ - effect-app@4.0.0-beta.165
767
+
768
+ ## 4.0.0-beta.164
769
+
770
+ ### Minor Changes
771
+
772
+ - 8cb3de4: Add command invalidation helpers that preserve query-only resource types and pass mutation input and `Exit` results into invalidation callbacks. Update Vue `clientFor` to merge request-level invalidation config with call-site invalidation and require matching invalidation resources.
773
+
774
+ ### Patch Changes
775
+
776
+ - Updated dependencies [8cb3de4]
777
+ - effect-app@4.0.0-beta.164
778
+
779
+ ## 4.0.0-beta.163
780
+
781
+ ### Patch Changes
782
+
783
+ - b952f19: bye cruft
784
+ - Updated dependencies [b952f19]
785
+ - effect-app@4.0.0-beta.163
786
+
787
+ ## 4.0.0-beta.162
788
+
789
+ ### Patch Changes
790
+
791
+ - Updated dependencies [b52b424]
792
+ - effect-app@4.0.0-beta.162
793
+
794
+ ## 4.0.0-beta.161
795
+
796
+ ### Patch Changes
797
+
798
+ - aa5ef5c: Improve `deepToRaw` to support any root input type, correctly unwrap refs/computed values, and preserve collection/date shapes (`Array`, `Map`, `Set`, `Date`) while deeply removing Vue reactivity wrappers.
799
+ - effect-app@4.0.0-beta.161
800
+
801
+ ## 4.0.0-beta.160
802
+
803
+ ### Patch Changes
804
+
805
+ - 505bfa9: Add concurrent decode helper APIs and migrate decode callsites to use them.
806
+
807
+ - Add `withDefaultParseOptions` and keep `DefaultParseOptions` centralized.
808
+ - Export `decodeEffectConcurrently` and `decodeUnknownEffectConcurrently` from Schema and SchemaParser modules.
809
+ - Update repository, queue, client, form, and CLI decode paths to use concurrent decode helpers.
810
+ - Keep schema constructors free of hardcoded parse concurrency overrides.
811
+
812
+ - Updated dependencies [505bfa9]
813
+ - effect-app@4.0.0-beta.160
814
+
815
+ ## 4.0.0-beta.159
816
+
817
+ ### Patch Changes
818
+
819
+ - c1e73de:
820
+ - Updated dependencies [c1e73de]
821
+ - effect-app@4.0.0-beta.159
822
+
823
+ ## 4.0.0-beta.158
824
+
825
+ ### Patch Changes
826
+
827
+ - Updated dependencies [3c1f52d]
828
+ - Updated dependencies [6ae3050]
829
+ - effect-app@4.0.0-beta.158
830
+
831
+ ## 4.0.0-beta.157
832
+
833
+ ### Patch Changes
834
+
835
+ - Updated dependencies [6fff09c]
836
+ - effect-app@4.0.0-beta.157
837
+
838
+ ## 4.0.0-beta.156
839
+
840
+ ### Patch Changes
841
+
842
+ - 4bc4a27: Constrain `project` schema to require matching `Encoded` type with original success schema
843
+ - effect-app@4.0.0-beta.156
844
+
845
+ ## 4.0.0-beta.155
846
+
847
+ ### Patch Changes
848
+
849
+ - 2e4c018: feat: add client projection
850
+ - Updated dependencies [c215db8]
851
+ - effect-app@4.0.0-beta.155
852
+
853
+ ## 4.0.0-beta.154
854
+
855
+ ### Patch Changes
856
+
857
+ - 3200fa8: apply the remaining formatting and autofix cleanup across the vue packages
858
+ - effect-app@4.0.0-beta.154
859
+
860
+ ## 4.0.0-beta.153
861
+
862
+ ### Patch Changes
863
+
864
+ - effect-app@4.0.0-beta.153
865
+
866
+ ## 4.0.0-beta.152
867
+
868
+ ### Patch Changes
869
+
870
+ - effect-app@4.0.0-beta.152
871
+
872
+ ## 4.0.0-beta.151
873
+
874
+ ### Patch Changes
875
+
876
+ - effect-app@4.0.0-beta.151
877
+
878
+ ## 4.0.0-beta.150
879
+
880
+ ### Patch Changes
881
+
882
+ - Updated dependencies [85a8275]
883
+ - effect-app@4.0.0-beta.150
884
+
885
+ ## 4.0.0-beta.149
886
+
887
+ ### Patch Changes
888
+
889
+ - Updated dependencies [f317c5e]
890
+ - effect-app@4.0.0-beta.149
891
+
892
+ ## 4.0.0-beta.148
893
+
894
+ ### Patch Changes
895
+
896
+ - Updated dependencies [199e9a5]
897
+ - effect-app@4.0.0-beta.148
898
+
899
+ ## 4.0.0-beta.147
900
+
901
+ ### Patch Changes
902
+
903
+ - Updated dependencies [47e3742]
904
+ - effect-app@4.0.0-beta.147
905
+
906
+ ## 4.0.0-beta.146
907
+
908
+ ### Patch Changes
909
+
910
+ - Updated dependencies [a4dff57]
911
+ - effect-app@4.0.0-beta.146
912
+
913
+ ## 4.0.0-beta.145
914
+
915
+ ### Patch Changes
916
+
917
+ - Updated dependencies [12abb55]
918
+ - effect-app@4.0.0-beta.145
919
+
920
+ ## 4.0.0-beta.144
921
+
922
+ ### Patch Changes
923
+
924
+ - 11422f8: Update request helper typing and runtime invocation to rely on schema `.make` instead of class constructors, avoiding `new`-based assumptions for request schemas.
925
+ - Updated dependencies [11422f8]
926
+ - Updated dependencies [d31253f]
927
+ - effect-app@4.0.0-beta.144
928
+
929
+ ## 4.0.0-beta.143
930
+
931
+ ### Patch Changes
932
+
933
+ - Updated dependencies [79eb019]
934
+ - effect-app@4.0.0-beta.143
935
+
936
+ ## 4.0.0-beta.142
937
+
938
+ ### Patch Changes
939
+
940
+ - Updated dependencies [3436d44]
941
+ - Updated dependencies [025de47]
942
+ - effect-app@4.0.0-beta.142
943
+
944
+ ## 4.0.0-beta.141
945
+
946
+ ### Patch Changes
947
+
948
+ - Updated dependencies [7c25dbb]
949
+ - effect-app@4.0.0-beta.141
950
+
951
+ ## 4.0.0-beta.140
952
+
953
+ ### Patch Changes
954
+
955
+ - effect-app@4.0.0-beta.140
956
+
957
+ ## 4.0.0-beta.139
958
+
959
+ ### Patch Changes
960
+
961
+ - ba61aad: raw dog
962
+ - effect-app@4.0.0-beta.139
963
+
964
+ ## 4.0.0-beta.138
965
+
966
+ ### Patch Changes
967
+
968
+ - 9be71e1: fix: double guard
969
+ - effect-app@4.0.0-beta.138
970
+
971
+ ## 4.0.0-beta.137
972
+
973
+ ### Patch Changes
974
+
975
+ - effect-app@4.0.0-beta.137
976
+
977
+ ## 4.0.0-beta.136
978
+
979
+ ### Patch Changes
980
+
981
+ - effect-app@4.0.0-beta.136
982
+
983
+ ## 4.0.0-beta.135
984
+
985
+ ### Patch Changes
986
+
987
+ - Updated dependencies [c7bbc41]
988
+ - effect-app@4.0.0-beta.135
989
+
990
+ ## 4.0.0-beta.134
991
+
992
+ ### Patch Changes
993
+
994
+ - Updated dependencies [9d3495e]
995
+ - Updated dependencies [f353d48]
996
+ - effect-app@4.0.0-beta.134
997
+
998
+ ## 4.0.0-beta.133
999
+
1000
+ ### Patch Changes
1001
+
1002
+ - 99a2e9b: Use warning toasts for expected commander failures, while keeping unexpected errors as error toasts.
1003
+ - c3299f7: update packages
1004
+ - Updated dependencies [c3299f7]
1005
+ - effect-app@4.0.0-beta.133
1006
+
1007
+ ## 4.0.0-beta.132
1008
+
1009
+ ### Patch Changes
1010
+
1011
+ - 8753c52: render
1012
+ - effect-app@4.0.0-beta.132
1013
+
1014
+ ## 4.0.0-beta.131
1015
+
1016
+ ### Patch Changes
1017
+
1018
+ - 1b57aa4: Add a `Commander` error-renderer registry via `Context.Reference` and apply registered guarded renderers before default error formatting.
1019
+ - effect-app@4.0.0-beta.131
1020
+
1021
+ ## 4.0.0-beta.130
1022
+
1023
+ ### Patch Changes
1024
+
1025
+ - fc41dcf: add trace id and span id to toasts
1026
+ - Updated dependencies [ea1bd46]
1027
+ - effect-app@4.0.0-beta.130
1028
+
1029
+ ## 4.0.0-beta.129
1030
+
1031
+ ### Patch Changes
1032
+
1033
+ - 34f6a97: fix missing fn
1034
+ - effect-app@4.0.0-beta.129
1035
+
1036
+ ## 4.0.0-beta.128
1037
+
1038
+ ### Patch Changes
1039
+
1040
+ - 57db551: Split `TaggedRequestFor` into `Query` and `Command` factories, and mark generated request classes with `type: "query" | "command"`.
1041
+
1042
+ Vue client helpers now expose query-only helpers (`query`, `suspense`, `fetch`) for query requests and mutation-only helpers (`mutate`, `fetch`) for command requests.
1043
+
1044
+ - Updated dependencies [57db551]
1045
+ - effect-app@4.0.0-beta.128
1046
+
1047
+ ## 4.0.0-beta.127
1048
+
1049
+ ### Minor Changes
1050
+
1051
+ - 6a3d364: Client entries are now plain objects; use `.request` to invoke the request.
1052
+
1053
+ `client.Xxx` no longer is callable or an `Effect` itself. Call `client.Xxx.request(input)` (or `client.Xxx.request` for input-less requests) instead. `.mutate`, `.query`, `.suspense`, `.wrap`, and `.fn` are unchanged.
1054
+
1055
+ ### Patch Changes
1056
+
1057
+ - effect-app@4.0.0-beta.127
1058
+
1059
+ ## 4.0.0-beta.126
1060
+
1061
+ ### Patch Changes
1062
+
1063
+ - Updated dependencies [458bb1b]
1064
+ - effect-app@4.0.0-beta.126
1065
+
1066
+ ## 4.0.0-beta.125
1067
+
1068
+ ### Patch Changes
1069
+
1070
+ - effect-app@4.0.0-beta.125
1071
+
1072
+ ## 4.0.0-beta.124
1073
+
1074
+ ### Patch Changes
1075
+
1076
+ - 256ae85: cleanup
1077
+ - Updated dependencies [256ae85]
1078
+ - effect-app@4.0.0-beta.124
1079
+
1080
+ ## 4.0.0-beta.123
1081
+
1082
+ ### Patch Changes
1083
+
1084
+ - Updated dependencies [14aba14]
1085
+ - effect-app@4.0.0-beta.123
1086
+
1087
+ ## 4.0.0-beta.122
1088
+
1089
+ ### Patch Changes
1090
+
1091
+ - 07a57b6: Limit `client.method.mutate` extensions to only expose the mutation call and `wrap`.
1092
+ - f052d38: Replace `(...) => Effect.gen` with `Effect.fnUntraced` in commander `withDefaultToast`.
1093
+ - Updated dependencies [f052d38]
1094
+ - effect-app@4.0.0-beta.122
1095
+
1096
+ ## 4.0.0-beta.121
1097
+
1098
+ ### Patch Changes
1099
+
1100
+ - Updated dependencies [5ac46cb]
1101
+ - effect-app@4.0.0-beta.121
1102
+
1103
+ ## 4.0.0-beta.120
1104
+
1105
+ ### Patch Changes
1106
+
1107
+ - Updated dependencies [f21190c]
1108
+ - effect-app@4.0.0-beta.120
1109
+
1110
+ ## 4.0.0-beta.119
1111
+
1112
+ ### Patch Changes
1113
+
1114
+ - effect-app@4.0.0-beta.119
1115
+
1116
+ ## 4.0.0-beta.118
1117
+
1118
+ ### Patch Changes
1119
+
1120
+ - Update effect packages to 4.0.0-beta.52
1121
+ - Updated dependencies [bd26832]
1122
+ - Updated dependencies [08d2e70]
1123
+ - Updated dependencies
1124
+ - effect-app@4.0.0-beta.118
1125
+
1126
+ ## 4.0.0-beta.117
1127
+
1128
+ ### Patch Changes
1129
+
1130
+ - effect-app@4.0.0-beta.117
1131
+
1132
+ ## 4.0.0-beta.116
1133
+
1134
+ ### Patch Changes
1135
+
1136
+ - effect-app@4.0.0-beta.116
1137
+
1138
+ ## 4.0.0-beta.115
1139
+
1140
+ ### Patch Changes
1141
+
1142
+ - effect-app@4.0.0-beta.115
1143
+
1144
+ ## 4.0.0-beta.114
1145
+
1146
+ ### Patch Changes
1147
+
1148
+ - effect-app@4.0.0-beta.114
1149
+
1150
+ ## 4.0.0-beta.113
1151
+
1152
+ ### Patch Changes
1153
+
1154
+ - effect-app@4.0.0-beta.113
1155
+
1156
+ ## 4.0.0-beta.112
1157
+
1158
+ ### Patch Changes
1159
+
1160
+ - effect-app@4.0.0-beta.112
1161
+
1162
+ ## 4.0.0-beta.111
1163
+
1164
+ ### Patch Changes
1165
+
1166
+ - Updated dependencies [ca94edf]
1167
+ - effect-app@4.0.0-beta.111
1168
+
1169
+ ## 4.0.0-beta.110
1170
+
1171
+ ### Patch Changes
1172
+
1173
+ - effect-app@4.0.0-beta.110
1174
+
1175
+ ## 4.0.0-beta.109
1176
+
1177
+ ### Patch Changes
1178
+
1179
+ - effect-app@4.0.0-beta.109
1180
+
1181
+ ## 4.0.0-beta.108
1182
+
1183
+ ### Patch Changes
1184
+
1185
+ - Updated dependencies [3e46e7b]
1186
+ - effect-app@4.0.0-beta.108
1187
+
1188
+ ## 4.0.0-beta.107
1189
+
1190
+ ### Patch Changes
1191
+
1192
+ - effect-app@4.0.0-beta.107
1193
+
1194
+ ## 4.0.0-beta.106
1195
+
1196
+ ### Patch Changes
1197
+
1198
+ - effect-app@4.0.0-beta.106
1199
+
1200
+ ## 4.0.0-beta.105
1201
+
1202
+ ### Patch Changes
1203
+
1204
+ - effect-app@4.0.0-beta.105
1205
+
1206
+ ## 4.0.0-beta.104
1207
+
1208
+ ### Patch Changes
1209
+
1210
+ - Updated dependencies [e944bca]
1211
+ - effect-app@4.0.0-beta.104
1212
+
1213
+ ## 4.0.0-beta.103
1214
+
1215
+ ### Patch Changes
1216
+
1217
+ - Updated dependencies [7119320]
1218
+ - effect-app@4.0.0-beta.103
1219
+
1220
+ ## 4.0.0-beta.102
1221
+
1222
+ ### Patch Changes
1223
+
1224
+ - effect-app@4.0.0-beta.102
1225
+
1226
+ ## 4.0.0-beta.101
1227
+
1228
+ ### Patch Changes
1229
+
1230
+ - effect-app@4.0.0-beta.101
1231
+
1232
+ ## 4.0.0-beta.100
1233
+
1234
+ ### Patch Changes
1235
+
1236
+ - effect-app@4.0.0-beta.100
1237
+
1238
+ ## 4.0.0-beta.99
1239
+
1240
+ ### Patch Changes
1241
+
1242
+ - effect-app@4.0.0-beta.99
1243
+
1244
+ ## 4.0.0-beta.98
1245
+
1246
+ ### Patch Changes
1247
+
1248
+ - effect-app@4.0.0-beta.98
1249
+
1250
+ ## 4.0.0-beta.97
1251
+
1252
+ ### Patch Changes
1253
+
1254
+ - effect-app@4.0.0-beta.97
1255
+
1256
+ ## 4.0.0-beta.96
1257
+
1258
+ ### Patch Changes
1259
+
1260
+ - Updated dependencies [5615e47]
1261
+ - effect-app@4.0.0-beta.96
1262
+
1263
+ ## 4.0.0-beta.95
1264
+
1265
+ ### Patch Changes
1266
+
1267
+ - Updated dependencies [88838fb]
1268
+ - effect-app@4.0.0-beta.95
1269
+
1270
+ ## 4.0.0-beta.94
1271
+
1272
+ ### Patch Changes
1273
+
1274
+ - effect-app@4.0.0-beta.94
1275
+
1276
+ ## 4.0.0-beta.93
1277
+
1278
+ ### Patch Changes
1279
+
1280
+ - effect-app@4.0.0-beta.93
1281
+
1282
+ ## 4.0.0-beta.92
1283
+
1284
+ ### Patch Changes
1285
+
1286
+ - effect-app@4.0.0-beta.92
1287
+
1288
+ ## 4.0.0-beta.91
1289
+
1290
+ ### Patch Changes
1291
+
1292
+ - Updated dependencies [738b482]
1293
+ - effect-app@4.0.0-beta.91
1294
+
1295
+ ## 4.0.0-beta.90
1296
+
1297
+ ### Patch Changes
1298
+
1299
+ - effect-app@4.0.0-beta.90
1300
+
1301
+ ## 4.0.0-beta.89
1302
+
1303
+ ### Patch Changes
1304
+
1305
+ - effect-app@4.0.0-beta.89
1306
+
1307
+ ## 4.0.0-beta.88
1308
+
1309
+ ### Patch Changes
1310
+
1311
+ - effect-app@4.0.0-beta.88
1312
+
1313
+ ## 4.0.0-beta.87
1314
+
1315
+ ### Patch Changes
1316
+
1317
+ - effect-app@4.0.0-beta.87
1318
+
1319
+ ## 4.0.0-beta.86
1320
+
1321
+ ### Patch Changes
1322
+
1323
+ - effect-app@4.0.0-beta.86
1324
+
1325
+ ## 4.0.0-beta.85
1326
+
1327
+ ### Patch Changes
1328
+
1329
+ - effect-app@4.0.0-beta.85
1330
+
1331
+ ## 4.0.0-beta.84
1332
+
1333
+ ### Patch Changes
1334
+
1335
+ - effect-app@4.0.0-beta.84
1336
+
1337
+ ## 4.0.0-beta.83
1338
+
1339
+ ### Patch Changes
1340
+
1341
+ - effect-app@4.0.0-beta.83
1342
+
1343
+ ## 4.0.0-beta.82
1344
+
1345
+ ### Patch Changes
1346
+
1347
+ - effect-app@4.0.0-beta.82
1348
+
1349
+ ## 4.0.0-beta.81
1350
+
1351
+ ### Patch Changes
1352
+
1353
+ - effect-app@4.0.0-beta.81
1354
+
1355
+ ## 4.0.0-beta.80
1356
+
1357
+ ### Patch Changes
1358
+
1359
+ - effect-app@4.0.0-beta.80
1360
+
1361
+ ## 4.0.0-beta.79
1362
+
1363
+ ### Patch Changes
1364
+
1365
+ - d16845e: Remove `TaggedRequest` from `makeRpcClient`, now only `TaggedRequestFor` is returned. Remove all legacy `meta.moduleName` support — `id` and `moduleName` are now required on `Req` type. Remove `makeRpcGroup` (use `makeRpcGroupFromRequestsAndModuleName` instead).
1366
+ - Updated dependencies [d16845e]
1367
+ - effect-app@4.0.0-beta.79
1368
+
1369
+ ## 4.0.0-beta.78
1370
+
1371
+ ### Patch Changes
1372
+
1373
+ - effect-app@4.0.0-beta.78
1374
+
1375
+ ## 4.0.0-beta.77
1376
+
1377
+ ### Patch Changes
1378
+
1379
+ - Updated dependencies [3613e87]
1380
+ - effect-app@4.0.0-beta.77
1381
+
1382
+ ## 4.0.0-beta.76
1383
+
1384
+ ### Patch Changes
1385
+
1386
+ - 08d30af: Fix Commander combinator type inference for void Arg and withDefaultToast callbacks
1387
+
1388
+ - Use `ArgForCombinator` helper to properly resolve `void` args to `undefined` in combinator positions, enabling correct type inference for `withDefaultToast` and other curried combinators
1389
+ - Use explicit positional params in `withDefaultToast` options callbacks instead of rest spread, allowing users to omit trailing parameters
1390
+
1391
+ - fac725d: update effect to latest beta
1392
+ - Updated dependencies [a5248a9]
1393
+ - Updated dependencies [fac725d]
1394
+ - effect-app@4.0.0-beta.76
1395
+
1396
+ ## 4.0.0-beta.75
1397
+
1398
+ ### Patch Changes
1399
+
1400
+ - Updated dependencies [24f0a5a]
1401
+ - effect-app@4.0.0-beta.75
1402
+
1403
+ ## 4.0.0-beta.74
1404
+
1405
+ ### Patch Changes
1406
+
1407
+ - Updated dependencies [54ec1ef]
1408
+ - effect-app@4.0.0-beta.74
1409
+
1410
+ ## 4.0.0-beta.73
1411
+
1412
+ ### Patch Changes
1413
+
1414
+ - effect-app@4.0.0-beta.73
1415
+
1416
+ ## 4.0.0-beta.72
1417
+
1418
+ ### Patch Changes
1419
+
1420
+ - Updated dependencies [0541f0d]
1421
+ - effect-app@4.0.0-beta.72
1422
+
1423
+ ## 4.0.0-beta.71
1424
+
1425
+ ### Patch Changes
1426
+
1427
+ - Updated dependencies [beae3a0]
1428
+ - effect-app@4.0.0-beta.71
1429
+
1430
+ ## 4.0.0-beta.70
1431
+
1432
+ ### Patch Changes
1433
+
1434
+ - effect-app@4.0.0-beta.70
1435
+
1436
+ ## 4.0.0-beta.69
1437
+
1438
+ ### Patch Changes
1439
+
1440
+ - dc465e3: update to latest effect beta
1441
+ - Updated dependencies [dc465e3]
1442
+ - effect-app@4.0.0-beta.69
1443
+
1444
+ ## 4.0.0-beta.68
1445
+
1446
+ ### Patch Changes
1447
+
1448
+ - Updated dependencies [e6f2341]
1449
+ - effect-app@4.0.0-beta.68
1450
+
1451
+ ## 4.0.0-beta.67
1452
+
1453
+ ### Patch Changes
1454
+
1455
+ - effect-app@4.0.0-beta.67
1456
+
1457
+ ## 4.0.0-beta.66
1458
+
1459
+ ### Patch Changes
1460
+
1461
+ - Updated dependencies [edc52e4]
1462
+ - effect-app@4.0.0-beta.66
1463
+
1464
+ ## 4.0.0-beta.65
1465
+
1466
+ ### Minor Changes
1467
+
1468
+ - 1f103b2: Replace `proxify` with explicit service accessor helpers: `accessFn`, `accessEffectFn`, `accessCn`, `accessEffectCn`.
1469
+
1470
+ ### Patch Changes
1471
+
1472
+ - Updated dependencies [31739d7]
1473
+ - Updated dependencies [1f103b2]
1474
+ - effect-app@4.0.0-beta.65
1475
+
1476
+ ## 4.0.0-beta.64
1477
+
1478
+ ### Patch Changes
1479
+
1480
+ - Updated dependencies [c1a6fdc]
1481
+ - effect-app@4.0.0-beta.64
1482
+
1483
+ ## 4.0.0-beta.63
1484
+
1485
+ ### Minor Changes
1486
+
1487
+ - b3ed68a: Remove `legacy` from `makeClient` return and clean up `LegacyMutation`, `LegacyMutationImpl`, and related types.
1488
+
1489
+ ### Patch Changes
1490
+
1491
+ - effect-app@4.0.0-beta.63
1492
+
1493
+ ## 4.0.0-beta.62
1494
+
1495
+ ### Patch Changes
1496
+
1497
+ - Updated dependencies [0b21a02]
1498
+ - effect-app@4.0.0-beta.62
1499
+
1500
+ ## 4.0.0-beta.61
1501
+
1502
+ ### Patch Changes
1503
+
1504
+ - effect-app@4.0.0-beta.61
1505
+
1506
+ ## 4.0.0-beta.60
1507
+
1508
+ ### Patch Changes
1509
+
1510
+ - effect-app@4.0.0-beta.60
1511
+
1512
+ ## 4.0.0-beta.59
1513
+
1514
+ ### Patch Changes
1515
+
1516
+ - cec026d: update packages
1517
+ - Updated dependencies [cec026d]
1518
+ - effect-app@4.0.0-beta.59
1519
+
1520
+ ## 4.0.0-beta.58
1521
+
1522
+ ### Patch Changes
1523
+
1524
+ - 7fd35e4: update tanstack/query
1525
+ - effect-app@4.0.0-beta.58
1526
+
1527
+ ## 4.0.0-beta.57
1528
+
1529
+ ### Patch Changes
1530
+
1531
+ - effect-app@4.0.0-beta.57
1532
+
1533
+ ## 4.0.0-beta.56
1534
+
1535
+ ### Patch Changes
1536
+
1537
+ - effect-app@4.0.0-beta.56
1538
+
1539
+ ## 4.0.0-beta.55
1540
+
1541
+ ### Patch Changes
1542
+
1543
+ - eceb3a3: align CauseException
1544
+ - effect-app@4.0.0-beta.55
1545
+
1546
+ ## 4.0.0-beta.54
1547
+
1548
+ ### Patch Changes
1549
+
1550
+ - d867272: the return of `Context`
1551
+ - Updated dependencies [d867272]
1552
+ - effect-app@4.0.0-beta.54
1553
+
1554
+ ## 4.0.0-beta.53
1555
+
1556
+ ### Patch Changes
1557
+
1558
+ - Updated dependencies [ee9694e]
1559
+ - effect-app@4.0.0-beta.53
1560
+
1561
+ ## 4.0.0-beta.52
1562
+
1563
+ ### Patch Changes
1564
+
1565
+ - Updated dependencies [6252808]
1566
+ - effect-app@4.0.0-beta.52
1567
+
1568
+ ## 4.0.0-beta.51
1569
+
1570
+ ### Patch Changes
1571
+
1572
+ - effect-app@4.0.0-beta.51
1573
+
1574
+ ## 4.0.0-beta.50
1575
+
1576
+ ### Patch Changes
1577
+
1578
+ - effect-app@4.0.0-beta.50
1579
+
1580
+ ## 4.0.0-beta.49
1581
+
1582
+ ### Patch Changes
1583
+
1584
+ - Updated dependencies [e585c9c]
1585
+ - effect-app@4.0.0-beta.49
1586
+
1587
+ ## 4.0.0-beta.48
1588
+
1589
+ ### Patch Changes
1590
+
1591
+ - Updated dependencies [0c88f78]
1592
+ - effect-app@4.0.0-beta.48
1593
+
1594
+ ## 4.0.0-beta.47
1595
+
1596
+ ### Patch Changes
1597
+
1598
+ - Updated dependencies [3365758]
1599
+ - effect-app@4.0.0-beta.47
1600
+
1601
+ ## 4.0.0-beta.46
1602
+
1603
+ ### Patch Changes
1604
+
1605
+ - 28a0b29: expose Input
1606
+ - 0c42d67: move out Commander and friends from experimental
1607
+ - effect-app@4.0.0-beta.46
1608
+
1609
+ ## 4.0.0-beta.45
1610
+
1611
+ ### Patch Changes
1612
+
1613
+ - 10b55ff: update packages
1614
+ - Updated dependencies [10b55ff]
1615
+ - effect-app@4.0.0-beta.45
1616
+
1617
+ ## 4.0.0-beta.44
1618
+
1619
+ ### Patch Changes
1620
+
1621
+ - a37aa38: Update to effect beta 43
1622
+ - Updated dependencies [a37aa38]
1623
+ - effect-app@4.0.0-beta.44
1624
+
1625
+ ## 4.0.0-beta.43
1626
+
1627
+ ### Patch Changes
1628
+
1629
+ - effect-app@4.0.0-beta.43
1630
+
1631
+ ## 4.0.0-beta.42
1632
+
1633
+ ### Patch Changes
1634
+
1635
+ - d195003: Fix numeric field type detection in `getMetadataFromSchema` for Effect v4 JSON schema output. `S.Number` now emits `anyOf` instead of a top-level `type: "number"`, causing fields to fall back to `"text"`. Detection now recurses through `anyOf`/`oneOf`/`allOf` to find the underlying numeric type.
1636
+ - effect-app@4.0.0-beta.42
1637
+
1638
+ ## 4.0.0-beta.41
1639
+
1640
+ ### Patch Changes
1641
+
1642
+ - 702d51c: also make runSync version available\
1643
+ - effect-app@4.0.0-beta.41
1644
+
1645
+ ## 4.0.0-beta.40
1646
+
1647
+ ### Patch Changes
1648
+
1649
+ - 18fd1df: unify runPromise
1650
+ - effect-app@4.0.0-beta.40
1651
+
1652
+ ## 4.0.0-beta.39
1653
+
1654
+ ### Patch Changes
1655
+
1656
+ - Updated dependencies [10e90d5]
1657
+ - effect-app@4.0.0-beta.39
1658
+
1659
+ ## 4.0.0-beta.38
1660
+
1661
+ ### Patch Changes
1662
+
1663
+ - Updated dependencies [0b3e00e]
1664
+ - effect-app@4.0.0-beta.38
1665
+
1666
+ ## 4.0.0-beta.37
1667
+
1668
+ ### Patch Changes
1669
+
1670
+ - 04fc985: Fixes error handling
1671
+ - Updated dependencies [947fe20]
1672
+ - effect-app@4.0.0-beta.37
1673
+
1674
+ ## 4.0.0-beta.36
1675
+
1676
+ ### Patch Changes
1677
+
1678
+ - effect-app@4.0.0-beta.36
1679
+
1680
+ ## 4.0.0-beta.35
1681
+
1682
+ ### Patch Changes
1683
+
1684
+ - effect-app@4.0.0-beta.35
1685
+
1686
+ ## 4.0.0-beta.34
1687
+
1688
+ ### Patch Changes
1689
+
1690
+ - 8c645d5: update to latest effect
1691
+ - Updated dependencies [8c645d5]
1692
+ - effect-app@4.0.0-beta.34
1693
+
1694
+ ## 4.0.0-beta.33
1695
+
1696
+ ### Patch Changes
1697
+
1698
+ - 4b95009: use Finite instead of Number
1699
+ - 7328c76: add deprecation notices
1700
+ - Updated dependencies [4b95009]
1701
+ - effect-app@4.0.0-beta.33
1702
+
1703
+ ## 4.0.0-beta.32
1704
+
1705
+ ### Patch Changes
1706
+
1707
+ - Updated dependencies [01d862a]
1708
+ - effect-app@4.0.0-beta.32
1709
+
1710
+ ## 4.0.0-beta.31
1711
+
1712
+ ### Patch Changes
1713
+
1714
+ - Updated dependencies [6b6d601]
1715
+ - effect-app@4.0.0-beta.31
1716
+
1717
+ ## 4.0.0-beta.30
1718
+
1719
+ ### Patch Changes
1720
+
1721
+ - Updated dependencies [5ec1f45]
1722
+ - effect-app@4.0.0-beta.30
1723
+
1724
+ ## 4.0.0-beta.29
1725
+
1726
+ ### Patch Changes
1727
+
1728
+ - Updated dependencies [a899d46]
1729
+ - effect-app@4.0.0-beta.29
1730
+
1731
+ ## 4.0.0-beta.28
1732
+
1733
+ ### Patch Changes
1734
+
1735
+ - Updated dependencies [0099208]
1736
+ - effect-app@4.0.0-beta.28
1737
+
1738
+ ## 4.0.0-beta.27
1739
+
1740
+ ### Patch Changes
1741
+
1742
+ - 601a1ff: update effect to 4.0.0-beta.37 and drop the Schema Class disableValidation workaround now that the patched effect schema covers it
1743
+ - Updated dependencies [601a1ff]
1744
+ - effect-app@4.0.0-beta.27
1745
+
1746
+ ## 4.0.0-beta.26
1747
+
1748
+ ### Patch Changes
1749
+
1750
+ - Updated dependencies [4da28e2]
1751
+ - effect-app@4.0.0-beta.26
1752
+
1753
+ ## 4.0.0-beta.25
1754
+
1755
+ ### Patch Changes
1756
+
1757
+ - Updated dependencies [6282d4b]
1758
+ - effect-app@4.0.0-beta.25
1759
+
3
1760
  ## 4.0.0-beta.24
4
1761
 
5
1762
  ### Patch Changes