@effect-app/vue 4.0.0-beta.27 → 4.0.0-beta.272

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 (111) hide show
  1. package/CHANGELOG.md +2008 -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/{experimental/confirm.d.ts → confirm.d.ts} +6 -4
  6. package/dist/confirm.d.ts.map +1 -0
  7. package/dist/confirm.js +26 -0
  8. package/dist/errorReporter.d.ts +6 -4
  9. package/dist/errorReporter.d.ts.map +1 -1
  10. package/dist/errorReporter.js +14 -19
  11. package/dist/form.d.ts +14 -5
  12. package/dist/form.d.ts.map +1 -1
  13. package/dist/form.js +46 -13
  14. package/dist/intl.d.ts +15 -0
  15. package/dist/intl.d.ts.map +1 -0
  16. package/dist/intl.js +9 -0
  17. package/dist/lib.d.ts +7 -9
  18. package/dist/lib.d.ts.map +1 -1
  19. package/dist/lib.js +35 -10
  20. package/dist/makeClient.d.ts +157 -343
  21. package/dist/makeClient.d.ts.map +1 -1
  22. package/dist/makeClient.js +218 -377
  23. package/dist/makeContext.d.ts.map +1 -1
  24. package/dist/makeIntl.d.ts.map +1 -1
  25. package/dist/{experimental/makeUseCommand.d.ts → makeUseCommand.d.ts} +4 -3
  26. package/dist/makeUseCommand.d.ts.map +1 -0
  27. package/dist/makeUseCommand.js +13 -0
  28. package/dist/mutate.d.ts +96 -38
  29. package/dist/mutate.d.ts.map +1 -1
  30. package/dist/mutate.js +177 -49
  31. package/dist/query.d.ts +23 -38
  32. package/dist/query.d.ts.map +1 -1
  33. package/dist/query.js +156 -78
  34. package/dist/routeParams.d.ts +4 -4
  35. package/dist/routeParams.d.ts.map +1 -1
  36. package/dist/routeParams.js +4 -3
  37. package/dist/runtime.d.ts +1 -14
  38. package/dist/runtime.d.ts.map +1 -1
  39. package/dist/runtime.js +2 -26
  40. package/dist/suspense.d.ts +5 -0
  41. package/dist/suspense.d.ts.map +1 -0
  42. package/dist/suspense.js +12 -0
  43. package/dist/toast.d.ts +2 -0
  44. package/dist/toast.d.ts.map +1 -0
  45. package/dist/toast.js +2 -0
  46. package/dist/withToast.d.ts +2 -0
  47. package/dist/withToast.d.ts.map +1 -0
  48. package/dist/withToast.js +2 -0
  49. package/examples/streamMutation.ts +72 -0
  50. package/package.json +30 -91
  51. package/src/commander.ts +3413 -0
  52. package/src/{experimental/confirm.ts → confirm.ts} +13 -15
  53. package/src/errorReporter.ts +65 -75
  54. package/src/form.ts +61 -18
  55. package/src/index.ts +7 -7
  56. package/src/intl.ts +12 -0
  57. package/src/lib.ts +49 -21
  58. package/src/makeClient.ts +586 -1139
  59. package/src/makeIntl.ts +2 -2
  60. package/src/{experimental/makeUseCommand.ts → makeUseCommand.ts} +9 -6
  61. package/src/mutate.ts +335 -134
  62. package/src/query.ts +241 -183
  63. package/src/routeParams.ts +7 -7
  64. package/src/runtime.ts +1 -31
  65. package/src/suspense.ts +17 -0
  66. package/src/toast.ts +1 -0
  67. package/src/withToast.ts +1 -0
  68. package/test/Mutation.test.ts +181 -24
  69. package/test/dist/form.test.d.ts.map +1 -1
  70. package/test/dist/lib.test.d.ts.map +1 -0
  71. package/test/dist/streamFinal.test.d.ts.map +1 -0
  72. package/test/dist/streamFn.test.d.ts.map +1 -0
  73. package/test/dist/stubs.d.ts +3527 -122
  74. package/test/dist/stubs.d.ts.map +1 -1
  75. package/test/dist/stubs.js +187 -32
  76. package/test/dist/suspense.test.d.ts.map +1 -0
  77. package/test/form-validation-errors.test.ts +25 -20
  78. package/test/form.test.ts +22 -3
  79. package/test/lib.test.ts +240 -0
  80. package/test/makeClient.test.ts +327 -38
  81. package/test/streamFinal.test.ts +64 -0
  82. package/test/streamFn.test.ts +457 -0
  83. package/test/stubs.ts +223 -43
  84. package/test/suspense.test.ts +20 -0
  85. package/tsconfig.examples.json +20 -0
  86. package/tsconfig.json +3 -1
  87. package/tsconfig.json.bak +5 -2
  88. package/tsconfig.src.json +34 -34
  89. package/tsconfig.test.json +2 -2
  90. package/vitest.config.ts +5 -5
  91. package/dist/experimental/commander.d.ts +0 -359
  92. package/dist/experimental/commander.d.ts.map +0 -1
  93. package/dist/experimental/commander.js +0 -557
  94. package/dist/experimental/confirm.d.ts.map +0 -1
  95. package/dist/experimental/confirm.js +0 -28
  96. package/dist/experimental/intl.d.ts +0 -16
  97. package/dist/experimental/intl.d.ts.map +0 -1
  98. package/dist/experimental/intl.js +0 -5
  99. package/dist/experimental/makeUseCommand.d.ts.map +0 -1
  100. package/dist/experimental/makeUseCommand.js +0 -13
  101. package/dist/experimental/toast.d.ts +0 -47
  102. package/dist/experimental/toast.d.ts.map +0 -1
  103. package/dist/experimental/toast.js +0 -41
  104. package/dist/experimental/withToast.d.ts +0 -25
  105. package/dist/experimental/withToast.d.ts.map +0 -1
  106. package/dist/experimental/withToast.js +0 -45
  107. package/eslint.config.mjs +0 -24
  108. package/src/experimental/commander.ts +0 -1835
  109. package/src/experimental/intl.ts +0 -9
  110. package/src/experimental/toast.ts +0 -66
  111. package/src/experimental/withToast.ts +0 -99
package/CHANGELOG.md CHANGED
@@ -1,5 +1,2013 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 4.0.0-beta.272
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [21ac90a]
8
+ - effect-app@4.0.0-beta.272
9
+
10
+ ## 4.0.0-beta.271
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [939bebc]
15
+ - effect-app@4.0.0-beta.271
16
+
17
+ ## 4.0.0-beta.270
18
+
19
+ ### Patch Changes
20
+
21
+ - 78d076a: Update effect packages to `4.0.0-beta.84` (`effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/atom-vue`, `@effect/sql-sqlite-node`, `@effect/vitest`).
22
+ - Updated dependencies [78d076a]
23
+ - effect-app@4.0.0-beta.270
24
+
25
+ ## 4.0.0-beta.269
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [50b022e]
30
+ - Updated dependencies [50b022e]
31
+ - effect-app@4.0.0-beta.269
32
+
33
+ ## 4.0.0-beta.268
34
+
35
+ ### Patch Changes
36
+
37
+ - acfdc9e: Point development package exports at TypeScript sources while keeping published exports on compiled dist files.
38
+ - Updated dependencies [acfdc9e]
39
+ - effect-app@4.0.0-beta.268
40
+
41
+ ## 4.0.0-beta.267
42
+
43
+ ### Patch Changes
44
+
45
+ - 1df5cf5: Wait for Vue query result refs to settle after TanStack suspense resolves.
46
+ - Updated dependencies [23a7167]
47
+ - effect-app@4.0.0-beta.267
48
+
49
+ ## 4.0.0-beta.266
50
+
51
+ ### Patch Changes
52
+
53
+ - Updated dependencies [bbaa67e]
54
+ - effect-app@4.0.0-beta.266
55
+
56
+ ## 4.0.0-beta.265
57
+
58
+ ### Patch Changes
59
+
60
+ - 3e855bc: Update Effect packages to `4.0.0-beta.83` (from `beta.74`): `effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/sql-sqlite-node`, `@effect/atom-vue`, `@effect/vitest`.
61
+
62
+ Adapt the infra workflow engines to beta.83 API changes:
63
+
64
+ - `Schema.Defect` is now a constructor function — use `S.Defect()` when building the deferred-exit codec (the bare constant no longer produces a usable schema and crashed `toType`).
65
+ - `Workflow` exposes its name as `_tag` instead of `name`. `WorkflowEngineSqlite`/`WorkflowEngineCosmos` now key the registry, codec caches, and persisted `workflow_name` off `workflow._tag`, fixing crash-recovery (stale-lease re-drive previously registered under an `undefined` key and never matched).
66
+
67
+ - Updated dependencies [3e855bc]
68
+ - effect-app@4.0.0-beta.265
69
+
70
+ ## 4.0.0-beta.264
71
+
72
+ ### Patch Changes
73
+
74
+ - effect-app@4.0.0-beta.264
75
+
76
+ ## 4.0.0-beta.263
77
+
78
+ ### Patch Changes
79
+
80
+ - effect-app@4.0.0-beta.263
81
+
82
+ ## 4.0.0-beta.262
83
+
84
+ ### Patch Changes
85
+
86
+ - 55c6572: update packages
87
+ - Updated dependencies [55c6572]
88
+ - effect-app@4.0.0-beta.262
89
+
90
+ ## 4.0.0-beta.261
91
+
92
+ ### Patch Changes
93
+
94
+ - effect-app@4.0.0-beta.261
95
+
96
+ ## 4.0.0-beta.260
97
+
98
+ ### Patch Changes
99
+
100
+ - bogus
101
+ - Updated dependencies
102
+ - effect-app@4.0.0-beta.260
103
+
104
+ ## 4.0.0-beta.259
105
+
106
+ ### Patch Changes
107
+
108
+ - effect-app@4.0.0-beta.259
109
+
110
+ ## 4.0.0-beta.258
111
+
112
+ ### Patch Changes
113
+
114
+ - effect-app@4.0.0-beta.258
115
+
116
+ ## 4.0.0-beta.257
117
+
118
+ ### Patch Changes
119
+
120
+ - Updated dependencies [e71eb78]
121
+ - effect-app@4.0.0-beta.257
122
+
123
+ ## 4.0.0-beta.256
124
+
125
+ ### Patch Changes
126
+
127
+ - Updated dependencies [347af48]
128
+ - effect-app@4.0.0-beta.256
129
+
130
+ ## 4.0.0-beta.255
131
+
132
+ ### Patch Changes
133
+
134
+ - Updated dependencies [52a31dd]
135
+ - effect-app@4.0.0-beta.255
136
+
137
+ ## 4.0.0-beta.254
138
+
139
+ ### Patch Changes
140
+
141
+ - Updated dependencies [29a1e57]
142
+ - effect-app@4.0.0-beta.254
143
+
144
+ ## 4.0.0-beta.253
145
+
146
+ ### Patch Changes
147
+
148
+ - Updated dependencies [b90fa30]
149
+ - effect-app@4.0.0-beta.253
150
+
151
+ ## 4.0.0-beta.252
152
+
153
+ ### Patch Changes
154
+
155
+ - Updated dependencies [a788432]
156
+ - effect-app@4.0.0-beta.252
157
+
158
+ ## 4.0.0-beta.251
159
+
160
+ ### Patch Changes
161
+
162
+ - Updated dependencies [1c858d3]
163
+ - effect-app@4.0.0-beta.251
164
+
165
+ ## 4.0.0-beta.250
166
+
167
+ ### Patch Changes
168
+
169
+ - Updated dependencies [3053760]
170
+ - effect-app@4.0.0-beta.250
171
+
172
+ ## 4.0.0-beta.249
173
+
174
+ ### Minor Changes
175
+
176
+ - ba789a2: Move core service contracts and runtime-agnostic modules into `effect-app`, keep `infra` and `vue` focused on adapters, and drop the temporary `infra` compatibility re-export paths in favor of the new canonical imports.
177
+
178
+ `@effect-app/infra` no longer re-exports moved core modules such as `./Model`, `./Emailer/service`, `./QueueMaker/service`, `./Store/service`, `./adapters/*`, or `./api/*` entrypoints.
179
+
180
+ ### Patch Changes
181
+
182
+ - Updated dependencies [ba789a2]
183
+ - effect-app@4.0.0-beta.249
184
+
185
+ ## 4.0.0-beta.248
186
+
187
+ ### Patch Changes
188
+
189
+ - 2a86a17: improve tsgo compat: avoid deferred `Schema.Type`/`Codec.Encoded`/`Codec.DecodingServices`/`Codec.EncodingServices` conditional helpers in generic positions where the type parameter is already constrained to `Schema.Top`. Index the property directly (`X["Type"]`, `X["Encoded"]`, `X["DecodingServices"]`, …) so tsgo doesn't leak `unknown` into `Effect` channels (notably `R`).
190
+
191
+ Sites: `client/clientFor.ts` (`RequestHandlerFor`, `FinalTypeOf`, `ExtractResponse`, `ExtractEResponse`), `client/makeClient.ts` (`InputFromPayload`, `OutputFromSuccess`, `InvalidationConfigForCommand`, `TaggedRequestWithMeta` overloads), `rpc/MiddlewareMaker.ts` (`Errors`), `rpc/RpcMiddleware.ts` (`Failure`, `FailureContext`), `Schema/ext.ts` (`ReadonlySetFromArray`, `ReadonlyMapFromArray`), `infra/routing.ts` (`GetSuccessShape`, handlers, route matcher), `vue/makeClient.ts` (`MutationExt.project`, `MutationWithExtensions`, `QueryProjection`), `vue/routeParams.ts` (`parseRouteParams*`).
192
+
193
+ - Updated dependencies [2a86a17]
194
+ - effect-app@4.0.0-beta.248
195
+
196
+ ## 4.0.0-beta.247
197
+
198
+ ### Patch Changes
199
+
200
+ - 01bab22: Work around tsgo failing to reduce `S.Codec.DecodingServices<X>` (`X extends Top ? X["DecodingServices"] : never`) in generic positions, which left `unknown` and polluted the `R` channel of client handlers and RPC middleware failure context. Since the schemas involved are already constrained to `S.Top`, read `["DecodingServices"]` directly in `RequestHandlerFor`, `TagClass.FailureContext`, and the Vue `MutationExt` / `QueryProjection` types.
201
+ - Updated dependencies [01bab22]
202
+ - effect-app@4.0.0-beta.247
203
+
204
+ ## 4.0.0-beta.246
205
+
206
+ ### Patch Changes
207
+
208
+ - effect-app@4.0.0-beta.246
209
+
210
+ ## 4.0.0-beta.245
211
+
212
+ ### Patch Changes
213
+
214
+ - effect-app@4.0.0-beta.245
215
+
216
+ ## 4.0.0-beta.244
217
+
218
+ ### Patch Changes
219
+
220
+ - b8b9080: update packages
221
+ - Updated dependencies [b8b9080]
222
+ - effect-app@4.0.0-beta.244
223
+
224
+ ## 4.0.0-beta.243
225
+
226
+ ### Patch Changes
227
+
228
+ - effect-app@4.0.0-beta.243
229
+
230
+ ## 4.0.0-beta.242
231
+
232
+ ### Patch Changes
233
+
234
+ - da83c1f: Align `InvalidationEntry` (vue) with `InvalidateQueryInstruction` (effect-app).
235
+
236
+ `InvalidateQueryInstruction` is now parametrized over `Filters` / `Options`
237
+ (defaulting to `Record<string, unknown>` so the core stays framework-agnostic).
238
+ `@effect-app/vue` exposes `InvalidationEntry` as a narrowed alias substituting
239
+ `@tanstack/vue-query`'s `InvalidateQueryFilters` and `InvalidateOptions`. Single
240
+ source of truth for the union shape across both packages.
241
+
242
+ - Updated dependencies [da83c1f]
243
+ - Updated dependencies [21017d5]
244
+ - Updated dependencies [2495ace]
245
+ - effect-app@4.0.0-beta.242
246
+
247
+ ## 4.0.0-beta.241
248
+
249
+ ### Patch Changes
250
+
251
+ - 2aa8e5e: `queryInvalidation` accept shorthand entries (per-mutation, Command, and client-level `QueryInvalidation<M>` maps).
252
+
253
+ Each entry returned may now be:
254
+
255
+ - a raw query key (`string[]`)
256
+ - an RPC handler (`{ id, options? }`) — its query key is derived via `makeQueryKey`
257
+ - the existing `{ filters, options }` raw tanstack-query invalidation
258
+
259
+ ```ts
260
+ queryInvalidation: (queryKey) => [queryKey, GetMe, PackListIndex];
261
+ ```
262
+
263
+ equivalent to:
264
+
265
+ ```ts
266
+ queryInvalidation: (queryKey) => [
267
+ { filters: { queryKey } },
268
+ { filters: { queryKey: makeQueryKey(GetMe) } },
269
+ { filters: { queryKey: makeQueryKey(PackListIndex) } },
270
+ ];
271
+ ```
272
+
273
+ - Updated dependencies [b035b1c]
274
+ - effect-app@4.0.0-beta.241
275
+
276
+ ## 4.0.0-beta.240
277
+
278
+ ### Patch Changes
279
+
280
+ - effect-app@4.0.0-beta.240
281
+
282
+ ## 4.0.0-beta.239
283
+
284
+ ### Patch Changes
285
+
286
+ - effect-app@4.0.0-beta.239
287
+
288
+ ## 4.0.0-beta.238
289
+
290
+ ### Patch Changes
291
+
292
+ - effect-app@4.0.0-beta.238
293
+
294
+ ## 4.0.0-beta.237
295
+
296
+ ### Patch Changes
297
+
298
+ - effect-app@4.0.0-beta.237
299
+
300
+ ## 4.0.0-beta.236
301
+
302
+ ### Patch Changes
303
+
304
+ - effect-app@4.0.0-beta.236
305
+
306
+ ## 4.0.0-beta.235
307
+
308
+ ### Patch Changes
309
+
310
+ - 6cfd83d: update effect to latest beta
311
+ - Updated dependencies [ba4bdc3]
312
+ - Updated dependencies [6cfd83d]
313
+ - effect-app@4.0.0-beta.235
314
+
315
+ ## 4.0.0-beta.234
316
+
317
+ ### Patch Changes
318
+
319
+ - effect-app@4.0.0-beta.234
320
+
321
+ ## 4.0.0-beta.233
322
+
323
+ ### Patch Changes
324
+
325
+ - 57a1862: Update to effect 4.0.0-beta.67. Switch deps from `pkg.pr.new` snapshot back to npm beta tag.
326
+ - Updated dependencies [57a1862]
327
+ - effect-app@4.0.0-beta.233
328
+
329
+ ## 4.0.0-beta.232
330
+
331
+ ### Patch Changes
332
+
333
+ - 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.
334
+ - 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).
335
+ - Updated dependencies [0263827]
336
+ - Updated dependencies [0263827]
337
+ - Updated dependencies [0263827]
338
+ - effect-app@4.0.0-beta.232
339
+
340
+ ## 4.0.0-beta.231
341
+
342
+ ### Patch Changes
343
+
344
+ - 7ca66ce: Update to effect 4.0.0-beta.66. Remove `Yieldable` and `asEffect()` (service tags are now `Effect` directly).
345
+ - Updated dependencies [7ca66ce]
346
+ - effect-app@4.0.0-beta.231
347
+
348
+ ## 4.0.0-beta.230
349
+
350
+ ### Patch Changes
351
+
352
+ - effect-app@4.0.0-beta.230
353
+
354
+ ## 4.0.0-beta.229
355
+
356
+ ### Minor Changes
357
+
358
+ - 2b4c324: Make the default mutation invalidation heuristic configurable.
359
+
360
+ 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:
361
+
362
+ ```ts
363
+ import { makeQueryKey, setDefaultGetQueryKey } from "@effect-app/vue";
364
+
365
+ // invalidate the full namespace of the action (no parent collapse)
366
+ setDefaultGetQueryKey((h) => {
367
+ const key = makeQueryKey(h);
368
+ const ns = key.filter((_) => _.startsWith("$"));
369
+ if (!ns.length) throw new Error("empty query key for: " + h.id);
370
+ return ns;
371
+ });
372
+ ```
373
+
374
+ Call at app bootstrap. Pass `undefined` to restore the built-in default. Per-mutation overrides via the existing `queryInvalidation` option still take precedence.
375
+
376
+ ### Patch Changes
377
+
378
+ - effect-app@4.0.0-beta.229
379
+
380
+ ## 4.0.0-beta.228
381
+
382
+ ### Minor Changes
383
+
384
+ - 62dafaa: Default mutation invalidation now scopes to the action's full namespace instead of the parent.
385
+
386
+ 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.
387
+
388
+ 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`.
389
+
390
+ ### Patch Changes
391
+
392
+ - effect-app@4.0.0-beta.228
393
+
394
+ ## 4.0.0-beta.227
395
+
396
+ ### Patch Changes
397
+
398
+ - effect-app@4.0.0-beta.227
399
+
400
+ ## 4.0.0-beta.226
401
+
402
+ ### Patch Changes
403
+
404
+ - effect-app@4.0.0-beta.226
405
+
406
+ ## 4.0.0-beta.225
407
+
408
+ ### Patch Changes
409
+
410
+ - effect-app@4.0.0-beta.225
411
+
412
+ ## 4.0.0-beta.224
413
+
414
+ ### Minor Changes
415
+
416
+ - 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`.
417
+
418
+ ### Patch Changes
419
+
420
+ - effect-app@4.0.0-beta.224
421
+
422
+ ## 4.0.0-beta.223
423
+
424
+ ### Patch Changes
425
+
426
+ - effect-app@4.0.0-beta.223
427
+
428
+ ## 4.0.0-beta.222
429
+
430
+ ### Patch Changes
431
+
432
+ - effect-app@4.0.0-beta.222
433
+
434
+ ## 4.0.0-beta.221
435
+
436
+ ### Patch Changes
437
+
438
+ - 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"`).
439
+ - Updated dependencies [439cbeb]
440
+ - effect-app@4.0.0-beta.221
441
+
442
+ ## 4.0.0-beta.220
443
+
444
+ ### Patch Changes
445
+
446
+ - effect-app@4.0.0-beta.220
447
+
448
+ ## 4.0.0-beta.219
449
+
450
+ ### Patch Changes
451
+
452
+ - Updated dependencies [d738811]
453
+ - effect-app@4.0.0-beta.219
454
+
455
+ ## 4.0.0-beta.218
456
+
457
+ ### Patch Changes
458
+
459
+ - effect-app@4.0.0-beta.218
460
+
461
+ ## 4.0.0-beta.217
462
+
463
+ ### Patch Changes
464
+
465
+ - Updated dependencies [0e824ef]
466
+ - effect-app@4.0.0-beta.217
467
+
468
+ ## 4.0.0-beta.216
469
+
470
+ ### Patch Changes
471
+
472
+ - effect-app@4.0.0-beta.216
473
+
474
+ ## 4.0.0-beta.215
475
+
476
+ ### Patch Changes
477
+
478
+ - effect-app@4.0.0-beta.215
479
+
480
+ ## 4.0.0-beta.214
481
+
482
+ ### Patch Changes
483
+
484
+ - effect-app@4.0.0-beta.214
485
+
486
+ ## 4.0.0-beta.213
487
+
488
+ ### Patch Changes
489
+
490
+ - effect-app@4.0.0-beta.213
491
+
492
+ ## 4.0.0-beta.212
493
+
494
+ ### Patch Changes
495
+
496
+ - Updated dependencies [8792221]
497
+ - effect-app@4.0.0-beta.212
498
+
499
+ ## 4.0.0-beta.211
500
+
501
+ ### Patch Changes
502
+
503
+ - effect-app@4.0.0-beta.211
504
+
505
+ ## 4.0.0-beta.210
506
+
507
+ ### Patch Changes
508
+
509
+ - effect-app@4.0.0-beta.210
510
+
511
+ ## 4.0.0-beta.209
512
+
513
+ ### Patch Changes
514
+
515
+ - c991be1: update packages
516
+ - Updated dependencies [c991be1]
517
+ - Updated dependencies [3bae238]
518
+ - effect-app@4.0.0-beta.209
519
+
520
+ ## 4.0.0-beta.208
521
+
522
+ ### Minor Changes
523
+
524
+ - 0d7d197: Add optional `groupId` and `requestId` to toast options.
525
+
526
+ - `ToastOpts` / `ToastOptsInternal` now accept `groupId?: string` and `requestId?: string`; values pass through the toast wrapper unchanged.
527
+ - `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).
528
+ - `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.
529
+
530
+ ### Patch Changes
531
+
532
+ - effect-app@4.0.0-beta.208
533
+
534
+ ## 4.0.0-beta.207
535
+
536
+ ### Patch Changes
537
+
538
+ - Updated dependencies [8fffc3c]
539
+ - effect-app@4.0.0-beta.207
540
+
541
+ ## 4.0.0-beta.206
542
+
543
+ ### Patch Changes
544
+
545
+ - Updated dependencies [54bfc59]
546
+ - effect-app@4.0.0-beta.206
547
+
548
+ ## 4.0.0-beta.205
549
+
550
+ ### Patch Changes
551
+
552
+ - Updated dependencies [f313973]
553
+ - effect-app@4.0.0-beta.205
554
+
555
+ ## 4.0.0-beta.204
556
+
557
+ ### Patch Changes
558
+
559
+ - Updated dependencies [0a0030f]
560
+ - effect-app@4.0.0-beta.204
561
+
562
+ ## 4.0.0-beta.203
563
+
564
+ ### Patch Changes
565
+
566
+ - Updated dependencies [992d9fa]
567
+ - effect-app@4.0.0-beta.203
568
+
569
+ ## 4.0.0-beta.202
570
+
571
+ ### Patch Changes
572
+
573
+ - Updated dependencies [1186b09]
574
+ - effect-app@4.0.0-beta.202
575
+
576
+ ## 4.0.0-beta.201
577
+
578
+ ### Patch Changes
579
+
580
+ - Updated dependencies [d67d17a]
581
+ - effect-app@4.0.0-beta.201
582
+
583
+ ## 4.0.0-beta.200
584
+
585
+ ### Patch Changes
586
+
587
+ - Updated dependencies [8f1cf6a]
588
+ - Updated dependencies [0cff7c1]
589
+ - effect-app@4.0.0-beta.200
590
+
591
+ ## 4.0.0-beta.199
592
+
593
+ ### Patch Changes
594
+
595
+ - effect-app@4.0.0-beta.199
596
+
597
+ ## 4.0.0-beta.198
598
+
599
+ ### Patch Changes
600
+
601
+ - dd73a4a: fix fn on stream semantics
602
+ - Updated dependencies [32dbc54]
603
+ - effect-app@4.0.0-beta.198
604
+
605
+ ## 4.0.0-beta.197
606
+
607
+ ### Minor Changes
608
+
609
+ - 3dc0d2a: Add streaming as a `stream: true` config option on `Query` / `Command` instead of a separate request type.
610
+
611
+ `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).
612
+
613
+ ```ts
614
+ // Query that streams results
615
+ Req.Query<T>()("Tag", {}, { stream: true, success: ... })
616
+
617
+ // Command that streams results
618
+ Req.Command<T>()("Tag", {}, { stream: true, success: ... })
619
+ ```
620
+
621
+ Vue client mapping (per-handler properties mirror the non-stream API — `.query`, `.fn`, `.mutate`):
622
+
623
+ - `query` + `stream: true` → exposes `.query` (read-only streaming, tracked Vue Query). Helper map key: `${name}Query`.
624
+ - `command` + `stream: true` → exposes `.fn` and `.mutate` (mutating streaming).
625
+ - Plain `query` / `command` unchanged.
626
+
627
+ Server routing dispatches via the new `stream` flag (`makeStreamRpc` for streaming commands/queries, `makeCommandRpc` / `Rpc.make` otherwise).
628
+
629
+ 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.
630
+
631
+ **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.
632
+
633
+ ### Patch Changes
634
+
635
+ - Updated dependencies [3dc0d2a]
636
+ - effect-app@4.0.0-beta.197
637
+
638
+ ## 4.0.0-beta.196
639
+
640
+ ### Patch Changes
641
+
642
+ - 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()`).
643
+ - effect-app@4.0.0-beta.196
644
+
645
+ ## 4.0.0-beta.195
646
+
647
+ ### Patch Changes
648
+
649
+ - Updated dependencies [774a9b3]
650
+ - effect-app@4.0.0-beta.195
651
+
652
+ ## 4.0.0-beta.194
653
+
654
+ ### Patch Changes
655
+
656
+ - refactor(vue): remove 1s waiting toast delay in withDefaultToastStream
657
+ - effect-app@4.0.0-beta.194
658
+
659
+ ## 4.0.0-beta.193
660
+
661
+ ### Patch Changes
662
+
663
+ - effect-app@4.0.0-beta.193
664
+
665
+ ## 4.0.0-beta.192
666
+
667
+ ### Patch Changes
668
+
669
+ - effect-app@4.0.0-beta.192
670
+
671
+ ## 4.0.0-beta.191
672
+
673
+ ### Patch Changes
674
+
675
+ - 50ce7e6: Cleanup after tsgolint + oxlint-codegen-plugin migration:
676
+ - Wire `@effect-app/eslint-codegen-model/oxlint` via `jsPlugins` object form (`{ name: "codegen", specifier: ... }`) so the `codegen/codegen` rule key resolves.
677
+ - Drop `eslint-plugin-codegen` dep, patch, and `augmentedConfig` helper — codegen now runs through oxlint.
678
+ - Break cyclic workspace dep between `eslint-codegen-model` and `eslint-shared-config`; remove dead `eslint.config.mjs` from `eslint-codegen-model`.
679
+ - Switch `@effect-app/vue` to oxlint-only (no `.vue` files in `src`); drop its ESLint config and `eslint-shared-config` devDep.
680
+ - 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).
681
+ - Add `globals.browser` to `vueConfig` so browser globals (`window`, `console`, `URL`, etc.) resolve.
682
+ - 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`.
683
+ - Updated dependencies [50ce7e6]
684
+ - effect-app@4.0.0-beta.191
685
+
686
+ ## 4.0.0-beta.190
687
+
688
+ ### Patch Changes
689
+
690
+ - 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`.
691
+ - Updated dependencies [985176b]
692
+ - effect-app@4.0.0-beta.190
693
+
694
+ ## 4.0.0-beta.189
695
+
696
+ ### Patch Changes
697
+
698
+ - 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.
699
+ - 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.
700
+ - Updated dependencies [ea32222]
701
+ - effect-app@4.0.0-beta.189
702
+
703
+ ## 4.0.0-beta.188
704
+
705
+ ### Minor Changes
706
+
707
+ - 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.
708
+
709
+ ### Patch Changes
710
+
711
+ - 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.
712
+ - b2e438f: Remove Operations service and repo
713
+ - Updated dependencies [b2e438f]
714
+ - effect-app@4.0.0-beta.188
715
+
716
+ ## 4.0.0-beta.187
717
+
718
+ ### Patch Changes
719
+
720
+ - 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.
721
+ - Updated dependencies [0d4e0b8]
722
+ - effect-app@4.0.0-beta.187
723
+
724
+ ## 4.0.0-beta.186
725
+
726
+ ### Patch Changes
727
+
728
+ - 89b7d2f: `Command.withDefaultToastStream`: add `progress` option to update the waiting toast with progress text on each stream element
729
+ - effect-app@4.0.0-beta.186
730
+
731
+ ## 4.0.0-beta.185
732
+
733
+ ### Patch Changes
734
+
735
+ - ddd9505: Rename stream mutation helpers: `mutateStream` → `mutateToResult`, `mutateStream2` → `mutate`.
736
+ - effect-app@4.0.0-beta.185
737
+
738
+ ## 4.0.0-beta.184
739
+
740
+ ### Minor Changes
741
+
742
+ - 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.
743
+
744
+ 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`.
745
+
746
+ ### Patch Changes
747
+
748
+ - effect-app@4.0.0-beta.184
749
+
750
+ ## 4.0.0-beta.183
751
+
752
+ ### Minor Changes
753
+
754
+ - 8ff0bf9: Add `Command.streamFn` — a stream-backed variant of `Command.fn`.
755
+
756
+ 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.
757
+
758
+ Three handler shapes are accepted:
759
+
760
+ 1. **Generator returning a Stream** (primary):
761
+ ```ts
762
+ Command.streamFn("exportData")(function* (arg, ctx) {
763
+ const token = yield* getAuthToken;
764
+ return Stream.fromEffect(startExport(token, arg.id)).pipe(
765
+ Stream.flatMap((job) => pollProgress(job.id))
766
+ );
767
+ });
768
+ ```
769
+ 2. Function returning a `Stream` directly.
770
+ 3. Function returning `Effect<Stream>` (unwrapped automatically).
771
+
772
+ - 8ff0bf9: - `CommandButton`: add optional `:map-progress` prop to compute progress from `command.result` via a custom mapper function
773
+ - `CommandBase`: add optional `result` field exposing reactive `AsyncResult` state
774
+ - Export `Progress` type from `@effect-app/vue`
775
+ - `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
776
+ - Add `makeStreamMutation2`: like `makeStreamMutation` but returns `Effect<Stream>` per invocation (with invalidation via `Stream.ensuring`), for use with `streamFn` combinators
777
+ - Expose `streamFn` on `XClient.Y` stream handlers and on the `Command` object
778
+ - Expose `mutateStream2` on `XClient.Y` stream handlers, with a `wrapStream` helper that calls `streamFn` with the handler and provided combinators
779
+ - 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>`.
780
+
781
+ ### Patch Changes
782
+
783
+ - effect-app@4.0.0-beta.183
784
+
785
+ ## 4.0.0-beta.182
786
+
787
+ ### Minor Changes
788
+
789
+ - b9586f8: Refine `mutateStream` shape and progress reporting.
790
+
791
+ - `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`.
792
+ - `progress` formatter return type widened from `string | undefined` to `Progress | undefined`, where `Progress = string | { text: string; percentage: number }`.
793
+ - 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.
794
+ - `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.
795
+ - Factories and callables are branded with `_streamFactory` / `_streamCallable` so `Command.fn` / `Command.wrap` can disambiguate them from plain mutate functions.
796
+
797
+ ### Patch Changes
798
+
799
+ - effect-app@4.0.0-beta.182
800
+
801
+ ## 4.0.0-beta.181
802
+
803
+ ### Minor Changes
804
+
805
+ - 4bbeb19: Add `wrapStream` support to `Command` with separate `result` and `running` props.
806
+
807
+ **Key design:**
808
+
809
+ - `result` is always the command's own execution outcome (from `asResult`)
810
+ - `running` holds the stream's live `AsyncResult` ref for progress tracking
811
+
812
+ **New behaviour:**
813
+
814
+ - `CommanderImpl.wrapStream(mutation)` returns a callable like `wrap` — `wrapStream(mutation)()` gives `CommandOut`.
815
+ - Accepts either `{ id, mutateStream: [...] }` or the augmented tuple directly (when `.id` is attached).
816
+ - `Command.wrap` now accepts `{ mutateStream, id }` and the augmented tuple — both delegate to `wrapStream`.
817
+ - `FnOptions.progress` — pass a `ComputedRef<AsyncResult>` to any `fn`-created command; surfaces as `running`.
818
+ - `StreamMutationWithExtensions` now includes `.id` on the tuple.
819
+ - Stream client entries expose `wrapStream` (callable), `fn`, and `mutateStream` (with `.id`).
820
+ - Stream mutation helpers also carry `.fn` and `.id`.
821
+
822
+ ```ts
823
+ // Via client entry:
824
+ const exportCmd = Command.wrapStream(client.myExport)();
825
+ // exportCmd.result = own execution result; exportCmd.running = live stream AsyncResult
826
+
827
+ // Via mutateStream tuple (id is attached):
828
+ const exportCmd = Command.wrapStream(client.myExport.mutateStream)();
829
+
830
+ // wrap also accepts the tuple:
831
+ const exportCmd = Command.wrap(client.myExport.mutateStream)();
832
+
833
+ // fn with external progress:
834
+ const cmd = Command.fn({
835
+ id: "myExport",
836
+ progress: client.myExport.mutateStream[0],
837
+ })(function* (arg) {
838
+ yield* client.myExport.mutateStream[1](arg);
839
+ });
840
+ // cmd.running === the stream AsyncResult ref
841
+ ```
842
+
843
+ ### Patch Changes
844
+
845
+ - 583393f: Default the stream `mutateStream` execute resolved value to the request's success type when no `final` schema is declared.
846
+
847
+ 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.
848
+
849
+ - Updated dependencies [583393f]
850
+ - effect-app@4.0.0-beta.181
851
+
852
+ ## 4.0.0-beta.180
853
+
854
+ ### Minor Changes
855
+
856
+ - 7fa3045: V1/V2/V3: stream and command requests carry invalidation metadata
857
+
858
+ **V1** – stream final response includes metadata
859
+
860
+ - `Invalidation.StreamResponseChunk` wraps each stream item as `{ _tag: "value", value }` and appends `{ _tag: "done", metadata }` at the end carrying all accumulated invalidation keys.
861
+
862
+ **V2** – invalidation keys included in failures
863
+
864
+ - `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.
865
+ - `InvalidationMiddlewareLive` wraps command failures; `routing.ts` wraps stream failures.
866
+ - `apiClientFactory.ts` unwraps both on the client side, forwarding keys before re-failing with the original error.
867
+
868
+ **V3** – mid-stream metadata chunks
869
+
870
+ - `Invalidation.StreamResponseChunk` now also includes `{ _tag: "metadata", metadata }` for mid-stream invalidation.
871
+ - 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`).
872
+ - `apiClientFactory.ts` processes "metadata" chunks the same as "done" chunks, forwarding keys to `InvalidationKeysFromServer` immediately.
873
+ - `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.
874
+
875
+ ### Patch Changes
876
+
877
+ - Updated dependencies [7fa3045]
878
+ - effect-app@4.0.0-beta.180
879
+
880
+ ## 4.0.0-beta.179
881
+
882
+ ### Minor Changes
883
+
884
+ - 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`.
885
+
886
+ ```ts
887
+ class MyStream extends SomethingStream<MyStream>()(
888
+ "MyStream",
889
+ { id: S.String },
890
+ {
891
+ success: S.Union([OperationProgress, ExportComplete]),
892
+ final: ExportComplete, // execute now resolves with ExportComplete
893
+ }
894
+ ) {}
895
+ ```
896
+
897
+ ### Patch Changes
898
+
899
+ - Updated dependencies [828d264]
900
+ - effect-app@4.0.0-beta.179
901
+
902
+ ## 4.0.0-beta.178
903
+
904
+ ### Minor Changes
905
+
906
+ - 07dd7b9: Add `asStreamResult` utility and stream-based mutation example.
907
+
908
+ `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`.
909
+
910
+ 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.
911
+
912
+ ### Patch Changes
913
+
914
+ - effect-app@4.0.0-beta.178
915
+
916
+ ## 4.0.0-beta.177
917
+
918
+ ### Patch Changes
919
+
920
+ - Updated dependencies [89d8b3a]
921
+ - effect-app@4.0.0-beta.177
922
+
923
+ ## 4.0.0-beta.176
924
+
925
+ ### Patch Changes
926
+
927
+ - pass options
928
+ - Updated dependencies
929
+ - effect-app@4.0.0-beta.176
930
+
931
+ ## 4.0.0-beta.175
932
+
933
+ ### Minor Changes
934
+
935
+ - 28777c1: Add `select` option to `MutationOptionsBase` for a second cache invalidation after long-running operations.
936
+
937
+ When `select` is provided, cache invalidation fires twice:
938
+
939
+ 1. Immediately when the mutation completes (existing behaviour).
940
+ 2. Again after the `select` effect finishes — useful for polling or waiting for a background job before refreshing data.
941
+
942
+ ```ts
943
+ useMutation(startExportCommand, {
944
+ select: (result) => pollUntilDone(result.jobId),
945
+ });
946
+ ```
947
+
948
+ ### Patch Changes
949
+
950
+ - 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.
951
+ - effect-app@4.0.0-beta.175
952
+
953
+ ## 4.0.0-beta.174
954
+
955
+ ### Minor Changes
956
+
957
+ - 821468d: Add server-driven cache invalidation via RPC response headers.
958
+
959
+ - `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.
960
+ - `effect-app/middleware`: new `InvalidationMiddleware` RPC middleware tag; included in `DefaultGenericMiddlewares`.
961
+ - `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`.
962
+ - `@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.
963
+ - `@effect-app/vue`: `invalidateQueries` / `useMutation` now reads server-provided invalidation keys from `InvalidationKeysFromServer` after each mutation and applies them alongside the client-side invalidation.
964
+
965
+ ### Patch Changes
966
+
967
+ - 1b38043: Fix lint: use typescript ~6.0.3 instead of native-preview for ESLint compatibility; keep tsgo for compilation
968
+ - 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.
969
+ - Updated dependencies [821468d]
970
+ - effect-app@4.0.0-beta.174
971
+
972
+ ## 4.0.0-beta.173
973
+
974
+ ### Patch Changes
975
+
976
+ - 4149577: fix queryresources
977
+ - effect-app@4.0.0-beta.173
978
+
979
+ ## 4.0.0-beta.172
980
+
981
+ ### Patch Changes
982
+
983
+ - effect-app@4.0.0-beta.172
984
+
985
+ ## 4.0.0-beta.171
986
+
987
+ ### Patch Changes
988
+
989
+ - d71d976: fix
990
+ - Updated dependencies [d71d976]
991
+ - effect-app@4.0.0-beta.171
992
+
993
+ ## 4.0.0-beta.170
994
+
995
+ ### Patch Changes
996
+
997
+ - 8f09f77: fix
998
+ - Updated dependencies [8f09f77]
999
+ - effect-app@4.0.0-beta.170
1000
+
1001
+ ## 4.0.0-beta.169
1002
+
1003
+ ### Patch Changes
1004
+
1005
+ - 8ae8b53: input mess
1006
+ - Updated dependencies [8ae8b53]
1007
+ - effect-app@4.0.0-beta.169
1008
+
1009
+ ## 4.0.0-beta.168
1010
+
1011
+ ### Patch Changes
1012
+
1013
+ - Updated dependencies [178480a]
1014
+ - effect-app@4.0.0-beta.168
1015
+
1016
+ ## 4.0.0-beta.167
1017
+
1018
+ ### Patch Changes
1019
+
1020
+ - 140e192: Relax invalidation resource value constraints to allow arbitrary values while preserving query-only filtering in invalidation handling.
1021
+ - Updated dependencies [140e192]
1022
+ - effect-app@4.0.0-beta.167
1023
+
1024
+ ## 4.0.0-beta.166
1025
+
1026
+ ### Patch Changes
1027
+
1028
+ - 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.
1029
+ - Updated dependencies [dbcc53b]
1030
+ - effect-app@4.0.0-beta.166
1031
+
1032
+ ## 4.0.0-beta.165
1033
+
1034
+ ### Patch Changes
1035
+
1036
+ - 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.
1037
+ - 66fd718: Require `clientFor` invalidation resources when any command in the client configures them.
1038
+ - Updated dependencies [f88ea34]
1039
+ - effect-app@4.0.0-beta.165
1040
+
1041
+ ## 4.0.0-beta.164
1042
+
1043
+ ### Minor Changes
1044
+
1045
+ - 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.
1046
+
1047
+ ### Patch Changes
1048
+
1049
+ - Updated dependencies [8cb3de4]
1050
+ - effect-app@4.0.0-beta.164
1051
+
1052
+ ## 4.0.0-beta.163
1053
+
1054
+ ### Patch Changes
1055
+
1056
+ - b952f19: bye cruft
1057
+ - Updated dependencies [b952f19]
1058
+ - effect-app@4.0.0-beta.163
1059
+
1060
+ ## 4.0.0-beta.162
1061
+
1062
+ ### Patch Changes
1063
+
1064
+ - Updated dependencies [b52b424]
1065
+ - effect-app@4.0.0-beta.162
1066
+
1067
+ ## 4.0.0-beta.161
1068
+
1069
+ ### Patch Changes
1070
+
1071
+ - 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.
1072
+ - effect-app@4.0.0-beta.161
1073
+
1074
+ ## 4.0.0-beta.160
1075
+
1076
+ ### Patch Changes
1077
+
1078
+ - 505bfa9: Add concurrent decode helper APIs and migrate decode callsites to use them.
1079
+
1080
+ - Add `withDefaultParseOptions` and keep `DefaultParseOptions` centralized.
1081
+ - Export `decodeEffectConcurrently` and `decodeUnknownEffectConcurrently` from Schema and SchemaParser modules.
1082
+ - Update repository, queue, client, form, and CLI decode paths to use concurrent decode helpers.
1083
+ - Keep schema constructors free of hardcoded parse concurrency overrides.
1084
+
1085
+ - Updated dependencies [505bfa9]
1086
+ - effect-app@4.0.0-beta.160
1087
+
1088
+ ## 4.0.0-beta.159
1089
+
1090
+ ### Patch Changes
1091
+
1092
+ - c1e73de:
1093
+ - Updated dependencies [c1e73de]
1094
+ - effect-app@4.0.0-beta.159
1095
+
1096
+ ## 4.0.0-beta.158
1097
+
1098
+ ### Patch Changes
1099
+
1100
+ - Updated dependencies [3c1f52d]
1101
+ - Updated dependencies [6ae3050]
1102
+ - effect-app@4.0.0-beta.158
1103
+
1104
+ ## 4.0.0-beta.157
1105
+
1106
+ ### Patch Changes
1107
+
1108
+ - Updated dependencies [6fff09c]
1109
+ - effect-app@4.0.0-beta.157
1110
+
1111
+ ## 4.0.0-beta.156
1112
+
1113
+ ### Patch Changes
1114
+
1115
+ - 4bc4a27: Constrain `project` schema to require matching `Encoded` type with original success schema
1116
+ - effect-app@4.0.0-beta.156
1117
+
1118
+ ## 4.0.0-beta.155
1119
+
1120
+ ### Patch Changes
1121
+
1122
+ - 2e4c018: feat: add client projection
1123
+ - Updated dependencies [c215db8]
1124
+ - effect-app@4.0.0-beta.155
1125
+
1126
+ ## 4.0.0-beta.154
1127
+
1128
+ ### Patch Changes
1129
+
1130
+ - 3200fa8: apply the remaining formatting and autofix cleanup across the vue packages
1131
+ - effect-app@4.0.0-beta.154
1132
+
1133
+ ## 4.0.0-beta.153
1134
+
1135
+ ### Patch Changes
1136
+
1137
+ - effect-app@4.0.0-beta.153
1138
+
1139
+ ## 4.0.0-beta.152
1140
+
1141
+ ### Patch Changes
1142
+
1143
+ - effect-app@4.0.0-beta.152
1144
+
1145
+ ## 4.0.0-beta.151
1146
+
1147
+ ### Patch Changes
1148
+
1149
+ - effect-app@4.0.0-beta.151
1150
+
1151
+ ## 4.0.0-beta.150
1152
+
1153
+ ### Patch Changes
1154
+
1155
+ - Updated dependencies [85a8275]
1156
+ - effect-app@4.0.0-beta.150
1157
+
1158
+ ## 4.0.0-beta.149
1159
+
1160
+ ### Patch Changes
1161
+
1162
+ - Updated dependencies [f317c5e]
1163
+ - effect-app@4.0.0-beta.149
1164
+
1165
+ ## 4.0.0-beta.148
1166
+
1167
+ ### Patch Changes
1168
+
1169
+ - Updated dependencies [199e9a5]
1170
+ - effect-app@4.0.0-beta.148
1171
+
1172
+ ## 4.0.0-beta.147
1173
+
1174
+ ### Patch Changes
1175
+
1176
+ - Updated dependencies [47e3742]
1177
+ - effect-app@4.0.0-beta.147
1178
+
1179
+ ## 4.0.0-beta.146
1180
+
1181
+ ### Patch Changes
1182
+
1183
+ - Updated dependencies [a4dff57]
1184
+ - effect-app@4.0.0-beta.146
1185
+
1186
+ ## 4.0.0-beta.145
1187
+
1188
+ ### Patch Changes
1189
+
1190
+ - Updated dependencies [12abb55]
1191
+ - effect-app@4.0.0-beta.145
1192
+
1193
+ ## 4.0.0-beta.144
1194
+
1195
+ ### Patch Changes
1196
+
1197
+ - 11422f8: Update request helper typing and runtime invocation to rely on schema `.make` instead of class constructors, avoiding `new`-based assumptions for request schemas.
1198
+ - Updated dependencies [11422f8]
1199
+ - Updated dependencies [d31253f]
1200
+ - effect-app@4.0.0-beta.144
1201
+
1202
+ ## 4.0.0-beta.143
1203
+
1204
+ ### Patch Changes
1205
+
1206
+ - Updated dependencies [79eb019]
1207
+ - effect-app@4.0.0-beta.143
1208
+
1209
+ ## 4.0.0-beta.142
1210
+
1211
+ ### Patch Changes
1212
+
1213
+ - Updated dependencies [3436d44]
1214
+ - Updated dependencies [025de47]
1215
+ - effect-app@4.0.0-beta.142
1216
+
1217
+ ## 4.0.0-beta.141
1218
+
1219
+ ### Patch Changes
1220
+
1221
+ - Updated dependencies [7c25dbb]
1222
+ - effect-app@4.0.0-beta.141
1223
+
1224
+ ## 4.0.0-beta.140
1225
+
1226
+ ### Patch Changes
1227
+
1228
+ - effect-app@4.0.0-beta.140
1229
+
1230
+ ## 4.0.0-beta.139
1231
+
1232
+ ### Patch Changes
1233
+
1234
+ - ba61aad: raw dog
1235
+ - effect-app@4.0.0-beta.139
1236
+
1237
+ ## 4.0.0-beta.138
1238
+
1239
+ ### Patch Changes
1240
+
1241
+ - 9be71e1: fix: double guard
1242
+ - effect-app@4.0.0-beta.138
1243
+
1244
+ ## 4.0.0-beta.137
1245
+
1246
+ ### Patch Changes
1247
+
1248
+ - effect-app@4.0.0-beta.137
1249
+
1250
+ ## 4.0.0-beta.136
1251
+
1252
+ ### Patch Changes
1253
+
1254
+ - effect-app@4.0.0-beta.136
1255
+
1256
+ ## 4.0.0-beta.135
1257
+
1258
+ ### Patch Changes
1259
+
1260
+ - Updated dependencies [c7bbc41]
1261
+ - effect-app@4.0.0-beta.135
1262
+
1263
+ ## 4.0.0-beta.134
1264
+
1265
+ ### Patch Changes
1266
+
1267
+ - Updated dependencies [9d3495e]
1268
+ - Updated dependencies [f353d48]
1269
+ - effect-app@4.0.0-beta.134
1270
+
1271
+ ## 4.0.0-beta.133
1272
+
1273
+ ### Patch Changes
1274
+
1275
+ - 99a2e9b: Use warning toasts for expected commander failures, while keeping unexpected errors as error toasts.
1276
+ - c3299f7: update packages
1277
+ - Updated dependencies [c3299f7]
1278
+ - effect-app@4.0.0-beta.133
1279
+
1280
+ ## 4.0.0-beta.132
1281
+
1282
+ ### Patch Changes
1283
+
1284
+ - 8753c52: render
1285
+ - effect-app@4.0.0-beta.132
1286
+
1287
+ ## 4.0.0-beta.131
1288
+
1289
+ ### Patch Changes
1290
+
1291
+ - 1b57aa4: Add a `Commander` error-renderer registry via `Context.Reference` and apply registered guarded renderers before default error formatting.
1292
+ - effect-app@4.0.0-beta.131
1293
+
1294
+ ## 4.0.0-beta.130
1295
+
1296
+ ### Patch Changes
1297
+
1298
+ - fc41dcf: add trace id and span id to toasts
1299
+ - Updated dependencies [ea1bd46]
1300
+ - effect-app@4.0.0-beta.130
1301
+
1302
+ ## 4.0.0-beta.129
1303
+
1304
+ ### Patch Changes
1305
+
1306
+ - 34f6a97: fix missing fn
1307
+ - effect-app@4.0.0-beta.129
1308
+
1309
+ ## 4.0.0-beta.128
1310
+
1311
+ ### Patch Changes
1312
+
1313
+ - 57db551: Split `TaggedRequestFor` into `Query` and `Command` factories, and mark generated request classes with `type: "query" | "command"`.
1314
+
1315
+ Vue client helpers now expose query-only helpers (`query`, `suspense`, `fetch`) for query requests and mutation-only helpers (`mutate`, `fetch`) for command requests.
1316
+
1317
+ - Updated dependencies [57db551]
1318
+ - effect-app@4.0.0-beta.128
1319
+
1320
+ ## 4.0.0-beta.127
1321
+
1322
+ ### Minor Changes
1323
+
1324
+ - 6a3d364: Client entries are now plain objects; use `.request` to invoke the request.
1325
+
1326
+ `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.
1327
+
1328
+ ### Patch Changes
1329
+
1330
+ - effect-app@4.0.0-beta.127
1331
+
1332
+ ## 4.0.0-beta.126
1333
+
1334
+ ### Patch Changes
1335
+
1336
+ - Updated dependencies [458bb1b]
1337
+ - effect-app@4.0.0-beta.126
1338
+
1339
+ ## 4.0.0-beta.125
1340
+
1341
+ ### Patch Changes
1342
+
1343
+ - effect-app@4.0.0-beta.125
1344
+
1345
+ ## 4.0.0-beta.124
1346
+
1347
+ ### Patch Changes
1348
+
1349
+ - 256ae85: cleanup
1350
+ - Updated dependencies [256ae85]
1351
+ - effect-app@4.0.0-beta.124
1352
+
1353
+ ## 4.0.0-beta.123
1354
+
1355
+ ### Patch Changes
1356
+
1357
+ - Updated dependencies [14aba14]
1358
+ - effect-app@4.0.0-beta.123
1359
+
1360
+ ## 4.0.0-beta.122
1361
+
1362
+ ### Patch Changes
1363
+
1364
+ - 07a57b6: Limit `client.method.mutate` extensions to only expose the mutation call and `wrap`.
1365
+ - f052d38: Replace `(...) => Effect.gen` with `Effect.fnUntraced` in commander `withDefaultToast`.
1366
+ - Updated dependencies [f052d38]
1367
+ - effect-app@4.0.0-beta.122
1368
+
1369
+ ## 4.0.0-beta.121
1370
+
1371
+ ### Patch Changes
1372
+
1373
+ - Updated dependencies [5ac46cb]
1374
+ - effect-app@4.0.0-beta.121
1375
+
1376
+ ## 4.0.0-beta.120
1377
+
1378
+ ### Patch Changes
1379
+
1380
+ - Updated dependencies [f21190c]
1381
+ - effect-app@4.0.0-beta.120
1382
+
1383
+ ## 4.0.0-beta.119
1384
+
1385
+ ### Patch Changes
1386
+
1387
+ - effect-app@4.0.0-beta.119
1388
+
1389
+ ## 4.0.0-beta.118
1390
+
1391
+ ### Patch Changes
1392
+
1393
+ - Update effect packages to 4.0.0-beta.52
1394
+ - Updated dependencies [bd26832]
1395
+ - Updated dependencies [08d2e70]
1396
+ - Updated dependencies
1397
+ - effect-app@4.0.0-beta.118
1398
+
1399
+ ## 4.0.0-beta.117
1400
+
1401
+ ### Patch Changes
1402
+
1403
+ - effect-app@4.0.0-beta.117
1404
+
1405
+ ## 4.0.0-beta.116
1406
+
1407
+ ### Patch Changes
1408
+
1409
+ - effect-app@4.0.0-beta.116
1410
+
1411
+ ## 4.0.0-beta.115
1412
+
1413
+ ### Patch Changes
1414
+
1415
+ - effect-app@4.0.0-beta.115
1416
+
1417
+ ## 4.0.0-beta.114
1418
+
1419
+ ### Patch Changes
1420
+
1421
+ - effect-app@4.0.0-beta.114
1422
+
1423
+ ## 4.0.0-beta.113
1424
+
1425
+ ### Patch Changes
1426
+
1427
+ - effect-app@4.0.0-beta.113
1428
+
1429
+ ## 4.0.0-beta.112
1430
+
1431
+ ### Patch Changes
1432
+
1433
+ - effect-app@4.0.0-beta.112
1434
+
1435
+ ## 4.0.0-beta.111
1436
+
1437
+ ### Patch Changes
1438
+
1439
+ - Updated dependencies [ca94edf]
1440
+ - effect-app@4.0.0-beta.111
1441
+
1442
+ ## 4.0.0-beta.110
1443
+
1444
+ ### Patch Changes
1445
+
1446
+ - effect-app@4.0.0-beta.110
1447
+
1448
+ ## 4.0.0-beta.109
1449
+
1450
+ ### Patch Changes
1451
+
1452
+ - effect-app@4.0.0-beta.109
1453
+
1454
+ ## 4.0.0-beta.108
1455
+
1456
+ ### Patch Changes
1457
+
1458
+ - Updated dependencies [3e46e7b]
1459
+ - effect-app@4.0.0-beta.108
1460
+
1461
+ ## 4.0.0-beta.107
1462
+
1463
+ ### Patch Changes
1464
+
1465
+ - effect-app@4.0.0-beta.107
1466
+
1467
+ ## 4.0.0-beta.106
1468
+
1469
+ ### Patch Changes
1470
+
1471
+ - effect-app@4.0.0-beta.106
1472
+
1473
+ ## 4.0.0-beta.105
1474
+
1475
+ ### Patch Changes
1476
+
1477
+ - effect-app@4.0.0-beta.105
1478
+
1479
+ ## 4.0.0-beta.104
1480
+
1481
+ ### Patch Changes
1482
+
1483
+ - Updated dependencies [e944bca]
1484
+ - effect-app@4.0.0-beta.104
1485
+
1486
+ ## 4.0.0-beta.103
1487
+
1488
+ ### Patch Changes
1489
+
1490
+ - Updated dependencies [7119320]
1491
+ - effect-app@4.0.0-beta.103
1492
+
1493
+ ## 4.0.0-beta.102
1494
+
1495
+ ### Patch Changes
1496
+
1497
+ - effect-app@4.0.0-beta.102
1498
+
1499
+ ## 4.0.0-beta.101
1500
+
1501
+ ### Patch Changes
1502
+
1503
+ - effect-app@4.0.0-beta.101
1504
+
1505
+ ## 4.0.0-beta.100
1506
+
1507
+ ### Patch Changes
1508
+
1509
+ - effect-app@4.0.0-beta.100
1510
+
1511
+ ## 4.0.0-beta.99
1512
+
1513
+ ### Patch Changes
1514
+
1515
+ - effect-app@4.0.0-beta.99
1516
+
1517
+ ## 4.0.0-beta.98
1518
+
1519
+ ### Patch Changes
1520
+
1521
+ - effect-app@4.0.0-beta.98
1522
+
1523
+ ## 4.0.0-beta.97
1524
+
1525
+ ### Patch Changes
1526
+
1527
+ - effect-app@4.0.0-beta.97
1528
+
1529
+ ## 4.0.0-beta.96
1530
+
1531
+ ### Patch Changes
1532
+
1533
+ - Updated dependencies [5615e47]
1534
+ - effect-app@4.0.0-beta.96
1535
+
1536
+ ## 4.0.0-beta.95
1537
+
1538
+ ### Patch Changes
1539
+
1540
+ - Updated dependencies [88838fb]
1541
+ - effect-app@4.0.0-beta.95
1542
+
1543
+ ## 4.0.0-beta.94
1544
+
1545
+ ### Patch Changes
1546
+
1547
+ - effect-app@4.0.0-beta.94
1548
+
1549
+ ## 4.0.0-beta.93
1550
+
1551
+ ### Patch Changes
1552
+
1553
+ - effect-app@4.0.0-beta.93
1554
+
1555
+ ## 4.0.0-beta.92
1556
+
1557
+ ### Patch Changes
1558
+
1559
+ - effect-app@4.0.0-beta.92
1560
+
1561
+ ## 4.0.0-beta.91
1562
+
1563
+ ### Patch Changes
1564
+
1565
+ - Updated dependencies [738b482]
1566
+ - effect-app@4.0.0-beta.91
1567
+
1568
+ ## 4.0.0-beta.90
1569
+
1570
+ ### Patch Changes
1571
+
1572
+ - effect-app@4.0.0-beta.90
1573
+
1574
+ ## 4.0.0-beta.89
1575
+
1576
+ ### Patch Changes
1577
+
1578
+ - effect-app@4.0.0-beta.89
1579
+
1580
+ ## 4.0.0-beta.88
1581
+
1582
+ ### Patch Changes
1583
+
1584
+ - effect-app@4.0.0-beta.88
1585
+
1586
+ ## 4.0.0-beta.87
1587
+
1588
+ ### Patch Changes
1589
+
1590
+ - effect-app@4.0.0-beta.87
1591
+
1592
+ ## 4.0.0-beta.86
1593
+
1594
+ ### Patch Changes
1595
+
1596
+ - effect-app@4.0.0-beta.86
1597
+
1598
+ ## 4.0.0-beta.85
1599
+
1600
+ ### Patch Changes
1601
+
1602
+ - effect-app@4.0.0-beta.85
1603
+
1604
+ ## 4.0.0-beta.84
1605
+
1606
+ ### Patch Changes
1607
+
1608
+ - effect-app@4.0.0-beta.84
1609
+
1610
+ ## 4.0.0-beta.83
1611
+
1612
+ ### Patch Changes
1613
+
1614
+ - effect-app@4.0.0-beta.83
1615
+
1616
+ ## 4.0.0-beta.82
1617
+
1618
+ ### Patch Changes
1619
+
1620
+ - effect-app@4.0.0-beta.82
1621
+
1622
+ ## 4.0.0-beta.81
1623
+
1624
+ ### Patch Changes
1625
+
1626
+ - effect-app@4.0.0-beta.81
1627
+
1628
+ ## 4.0.0-beta.80
1629
+
1630
+ ### Patch Changes
1631
+
1632
+ - effect-app@4.0.0-beta.80
1633
+
1634
+ ## 4.0.0-beta.79
1635
+
1636
+ ### Patch Changes
1637
+
1638
+ - 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).
1639
+ - Updated dependencies [d16845e]
1640
+ - effect-app@4.0.0-beta.79
1641
+
1642
+ ## 4.0.0-beta.78
1643
+
1644
+ ### Patch Changes
1645
+
1646
+ - effect-app@4.0.0-beta.78
1647
+
1648
+ ## 4.0.0-beta.77
1649
+
1650
+ ### Patch Changes
1651
+
1652
+ - Updated dependencies [3613e87]
1653
+ - effect-app@4.0.0-beta.77
1654
+
1655
+ ## 4.0.0-beta.76
1656
+
1657
+ ### Patch Changes
1658
+
1659
+ - 08d30af: Fix Commander combinator type inference for void Arg and withDefaultToast callbacks
1660
+
1661
+ - Use `ArgForCombinator` helper to properly resolve `void` args to `undefined` in combinator positions, enabling correct type inference for `withDefaultToast` and other curried combinators
1662
+ - Use explicit positional params in `withDefaultToast` options callbacks instead of rest spread, allowing users to omit trailing parameters
1663
+
1664
+ - fac725d: update effect to latest beta
1665
+ - Updated dependencies [a5248a9]
1666
+ - Updated dependencies [fac725d]
1667
+ - effect-app@4.0.0-beta.76
1668
+
1669
+ ## 4.0.0-beta.75
1670
+
1671
+ ### Patch Changes
1672
+
1673
+ - Updated dependencies [24f0a5a]
1674
+ - effect-app@4.0.0-beta.75
1675
+
1676
+ ## 4.0.0-beta.74
1677
+
1678
+ ### Patch Changes
1679
+
1680
+ - Updated dependencies [54ec1ef]
1681
+ - effect-app@4.0.0-beta.74
1682
+
1683
+ ## 4.0.0-beta.73
1684
+
1685
+ ### Patch Changes
1686
+
1687
+ - effect-app@4.0.0-beta.73
1688
+
1689
+ ## 4.0.0-beta.72
1690
+
1691
+ ### Patch Changes
1692
+
1693
+ - Updated dependencies [0541f0d]
1694
+ - effect-app@4.0.0-beta.72
1695
+
1696
+ ## 4.0.0-beta.71
1697
+
1698
+ ### Patch Changes
1699
+
1700
+ - Updated dependencies [beae3a0]
1701
+ - effect-app@4.0.0-beta.71
1702
+
1703
+ ## 4.0.0-beta.70
1704
+
1705
+ ### Patch Changes
1706
+
1707
+ - effect-app@4.0.0-beta.70
1708
+
1709
+ ## 4.0.0-beta.69
1710
+
1711
+ ### Patch Changes
1712
+
1713
+ - dc465e3: update to latest effect beta
1714
+ - Updated dependencies [dc465e3]
1715
+ - effect-app@4.0.0-beta.69
1716
+
1717
+ ## 4.0.0-beta.68
1718
+
1719
+ ### Patch Changes
1720
+
1721
+ - Updated dependencies [e6f2341]
1722
+ - effect-app@4.0.0-beta.68
1723
+
1724
+ ## 4.0.0-beta.67
1725
+
1726
+ ### Patch Changes
1727
+
1728
+ - effect-app@4.0.0-beta.67
1729
+
1730
+ ## 4.0.0-beta.66
1731
+
1732
+ ### Patch Changes
1733
+
1734
+ - Updated dependencies [edc52e4]
1735
+ - effect-app@4.0.0-beta.66
1736
+
1737
+ ## 4.0.0-beta.65
1738
+
1739
+ ### Minor Changes
1740
+
1741
+ - 1f103b2: Replace `proxify` with explicit service accessor helpers: `accessFn`, `accessEffectFn`, `accessCn`, `accessEffectCn`.
1742
+
1743
+ ### Patch Changes
1744
+
1745
+ - Updated dependencies [31739d7]
1746
+ - Updated dependencies [1f103b2]
1747
+ - effect-app@4.0.0-beta.65
1748
+
1749
+ ## 4.0.0-beta.64
1750
+
1751
+ ### Patch Changes
1752
+
1753
+ - Updated dependencies [c1a6fdc]
1754
+ - effect-app@4.0.0-beta.64
1755
+
1756
+ ## 4.0.0-beta.63
1757
+
1758
+ ### Minor Changes
1759
+
1760
+ - b3ed68a: Remove `legacy` from `makeClient` return and clean up `LegacyMutation`, `LegacyMutationImpl`, and related types.
1761
+
1762
+ ### Patch Changes
1763
+
1764
+ - effect-app@4.0.0-beta.63
1765
+
1766
+ ## 4.0.0-beta.62
1767
+
1768
+ ### Patch Changes
1769
+
1770
+ - Updated dependencies [0b21a02]
1771
+ - effect-app@4.0.0-beta.62
1772
+
1773
+ ## 4.0.0-beta.61
1774
+
1775
+ ### Patch Changes
1776
+
1777
+ - effect-app@4.0.0-beta.61
1778
+
1779
+ ## 4.0.0-beta.60
1780
+
1781
+ ### Patch Changes
1782
+
1783
+ - effect-app@4.0.0-beta.60
1784
+
1785
+ ## 4.0.0-beta.59
1786
+
1787
+ ### Patch Changes
1788
+
1789
+ - cec026d: update packages
1790
+ - Updated dependencies [cec026d]
1791
+ - effect-app@4.0.0-beta.59
1792
+
1793
+ ## 4.0.0-beta.58
1794
+
1795
+ ### Patch Changes
1796
+
1797
+ - 7fd35e4: update tanstack/query
1798
+ - effect-app@4.0.0-beta.58
1799
+
1800
+ ## 4.0.0-beta.57
1801
+
1802
+ ### Patch Changes
1803
+
1804
+ - effect-app@4.0.0-beta.57
1805
+
1806
+ ## 4.0.0-beta.56
1807
+
1808
+ ### Patch Changes
1809
+
1810
+ - effect-app@4.0.0-beta.56
1811
+
1812
+ ## 4.0.0-beta.55
1813
+
1814
+ ### Patch Changes
1815
+
1816
+ - eceb3a3: align CauseException
1817
+ - effect-app@4.0.0-beta.55
1818
+
1819
+ ## 4.0.0-beta.54
1820
+
1821
+ ### Patch Changes
1822
+
1823
+ - d867272: the return of `Context`
1824
+ - Updated dependencies [d867272]
1825
+ - effect-app@4.0.0-beta.54
1826
+
1827
+ ## 4.0.0-beta.53
1828
+
1829
+ ### Patch Changes
1830
+
1831
+ - Updated dependencies [ee9694e]
1832
+ - effect-app@4.0.0-beta.53
1833
+
1834
+ ## 4.0.0-beta.52
1835
+
1836
+ ### Patch Changes
1837
+
1838
+ - Updated dependencies [6252808]
1839
+ - effect-app@4.0.0-beta.52
1840
+
1841
+ ## 4.0.0-beta.51
1842
+
1843
+ ### Patch Changes
1844
+
1845
+ - effect-app@4.0.0-beta.51
1846
+
1847
+ ## 4.0.0-beta.50
1848
+
1849
+ ### Patch Changes
1850
+
1851
+ - effect-app@4.0.0-beta.50
1852
+
1853
+ ## 4.0.0-beta.49
1854
+
1855
+ ### Patch Changes
1856
+
1857
+ - Updated dependencies [e585c9c]
1858
+ - effect-app@4.0.0-beta.49
1859
+
1860
+ ## 4.0.0-beta.48
1861
+
1862
+ ### Patch Changes
1863
+
1864
+ - Updated dependencies [0c88f78]
1865
+ - effect-app@4.0.0-beta.48
1866
+
1867
+ ## 4.0.0-beta.47
1868
+
1869
+ ### Patch Changes
1870
+
1871
+ - Updated dependencies [3365758]
1872
+ - effect-app@4.0.0-beta.47
1873
+
1874
+ ## 4.0.0-beta.46
1875
+
1876
+ ### Patch Changes
1877
+
1878
+ - 28a0b29: expose Input
1879
+ - 0c42d67: move out Commander and friends from experimental
1880
+ - effect-app@4.0.0-beta.46
1881
+
1882
+ ## 4.0.0-beta.45
1883
+
1884
+ ### Patch Changes
1885
+
1886
+ - 10b55ff: update packages
1887
+ - Updated dependencies [10b55ff]
1888
+ - effect-app@4.0.0-beta.45
1889
+
1890
+ ## 4.0.0-beta.44
1891
+
1892
+ ### Patch Changes
1893
+
1894
+ - a37aa38: Update to effect beta 43
1895
+ - Updated dependencies [a37aa38]
1896
+ - effect-app@4.0.0-beta.44
1897
+
1898
+ ## 4.0.0-beta.43
1899
+
1900
+ ### Patch Changes
1901
+
1902
+ - effect-app@4.0.0-beta.43
1903
+
1904
+ ## 4.0.0-beta.42
1905
+
1906
+ ### Patch Changes
1907
+
1908
+ - 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.
1909
+ - effect-app@4.0.0-beta.42
1910
+
1911
+ ## 4.0.0-beta.41
1912
+
1913
+ ### Patch Changes
1914
+
1915
+ - 702d51c: also make runSync version available\
1916
+ - effect-app@4.0.0-beta.41
1917
+
1918
+ ## 4.0.0-beta.40
1919
+
1920
+ ### Patch Changes
1921
+
1922
+ - 18fd1df: unify runPromise
1923
+ - effect-app@4.0.0-beta.40
1924
+
1925
+ ## 4.0.0-beta.39
1926
+
1927
+ ### Patch Changes
1928
+
1929
+ - Updated dependencies [10e90d5]
1930
+ - effect-app@4.0.0-beta.39
1931
+
1932
+ ## 4.0.0-beta.38
1933
+
1934
+ ### Patch Changes
1935
+
1936
+ - Updated dependencies [0b3e00e]
1937
+ - effect-app@4.0.0-beta.38
1938
+
1939
+ ## 4.0.0-beta.37
1940
+
1941
+ ### Patch Changes
1942
+
1943
+ - 04fc985: Fixes error handling
1944
+ - Updated dependencies [947fe20]
1945
+ - effect-app@4.0.0-beta.37
1946
+
1947
+ ## 4.0.0-beta.36
1948
+
1949
+ ### Patch Changes
1950
+
1951
+ - effect-app@4.0.0-beta.36
1952
+
1953
+ ## 4.0.0-beta.35
1954
+
1955
+ ### Patch Changes
1956
+
1957
+ - effect-app@4.0.0-beta.35
1958
+
1959
+ ## 4.0.0-beta.34
1960
+
1961
+ ### Patch Changes
1962
+
1963
+ - 8c645d5: update to latest effect
1964
+ - Updated dependencies [8c645d5]
1965
+ - effect-app@4.0.0-beta.34
1966
+
1967
+ ## 4.0.0-beta.33
1968
+
1969
+ ### Patch Changes
1970
+
1971
+ - 4b95009: use Finite instead of Number
1972
+ - 7328c76: add deprecation notices
1973
+ - Updated dependencies [4b95009]
1974
+ - effect-app@4.0.0-beta.33
1975
+
1976
+ ## 4.0.0-beta.32
1977
+
1978
+ ### Patch Changes
1979
+
1980
+ - Updated dependencies [01d862a]
1981
+ - effect-app@4.0.0-beta.32
1982
+
1983
+ ## 4.0.0-beta.31
1984
+
1985
+ ### Patch Changes
1986
+
1987
+ - Updated dependencies [6b6d601]
1988
+ - effect-app@4.0.0-beta.31
1989
+
1990
+ ## 4.0.0-beta.30
1991
+
1992
+ ### Patch Changes
1993
+
1994
+ - Updated dependencies [5ec1f45]
1995
+ - effect-app@4.0.0-beta.30
1996
+
1997
+ ## 4.0.0-beta.29
1998
+
1999
+ ### Patch Changes
2000
+
2001
+ - Updated dependencies [a899d46]
2002
+ - effect-app@4.0.0-beta.29
2003
+
2004
+ ## 4.0.0-beta.28
2005
+
2006
+ ### Patch Changes
2007
+
2008
+ - Updated dependencies [0099208]
2009
+ - effect-app@4.0.0-beta.28
2010
+
3
2011
  ## 4.0.0-beta.27
4
2012
 
5
2013
  ### Patch Changes