@effect-app/vue 4.0.0-beta.24 → 4.0.0-beta.241

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