@effect-app/vue 4.0.0-beta.25 → 4.0.0-beta.251

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