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

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