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

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