@effect-app/vue 4.0.0-beta.26 → 4.0.0-beta.260

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