@effect-app/vue 2.73.2 → 2.74.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 2.74.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a125927: cleanup global setup
8
+
3
9
  ## 2.73.2
4
10
 
5
11
  ### Patch Changes
@@ -18,18 +18,18 @@ export declare const makeUseCommand: <R = never>() => Effect.Effect<{
18
18
  fn: <const Id extends string, const I18nKey_1 extends string = Id>(id: Id | {
19
19
  id: Id;
20
20
  }, customI18nKey?: I18nKey_1 | undefined) => Commander.Gen<R, Id, I18nKey_1> & Commander.NonGen<R, Id, I18nKey_1>;
21
- wrap: <const Id extends string, Args_3 extends Array<unknown>, A_1, E_3, R_4, I18nKey_2 extends string = Id>(mutation: (((...args: Args_3) => Effect.Effect<A_1, E_3, R_4>) & {
22
- id: Id;
23
- }) | {
21
+ wrap: <const Id extends string, Args_3 extends Array<unknown>, A_1, E_3, R_4, I18nKey_2 extends string = Id>(mutation: {
24
22
  mutate: (...args: Args_3) => Effect.Effect<A_1, E_3, R_4>;
25
23
  id: Id;
26
- }, customI18nKey?: I18nKey_2 | undefined) => Commander.CommandContextLocal<Id, I18nKey_2> & Commander.GenWrap<R, Id, I18nKey_2, Args_3, A_1, E_3, R_4> & Commander.NonGenWrap<R, Id, I18nKey_2, Args_3, A_1, E_3, R_4>;
27
- alt2: <const Id extends string, MutArgs extends Array<unknown>, MutA, MutE, MutR, const I18nKey_3 extends string = Id>(id: Id | (((...args: MutArgs) => Effect.Effect<MutA, MutE, MutR>) & {
24
+ } | (((...args: Args_3) => Effect.Effect<A_1, E_3, R_4>) & {
28
25
  id: Id;
29
- }) | {
26
+ }), customI18nKey?: I18nKey_2 | undefined) => Commander.CommandContextLocal<Id, I18nKey_2> & Commander.GenWrap<R, Id, I18nKey_2, Args_3, A_1, E_3, R_4> & Commander.NonGenWrap<R, Id, I18nKey_2, Args_3, A_1, E_3, R_4>;
27
+ alt2: <const Id extends string, MutArgs extends Array<unknown>, MutA, MutE, MutR, const I18nKey_3 extends string = Id>(id: Id | {
30
28
  id: Id;
31
29
  mutate: (...args: MutArgs) => Effect.Effect<MutA, MutE, MutR>;
32
- }, customI18nKey?: I18nKey_3 | undefined) => Commander.CommandContextLocal<Id, I18nKey_3> & (<Args_4 extends Array<unknown>, A_2, E_4, R_5 extends import("./commander.js").CommandContext | R>(handler: (ctx: Effect.fn.Gen & Effect.fn.NonGen & Commander.CommandContextLocal<Id, I18nKey_3> & {
30
+ } | (((...args: MutArgs) => Effect.Effect<MutA, MutE, MutR>) & {
31
+ id: Id;
32
+ }), customI18nKey?: I18nKey_3 | undefined) => Commander.CommandContextLocal<Id, I18nKey_3> & (<Args_4 extends Array<unknown>, A_2, E_4, R_5 extends import("./commander.js").CommandContext | R>(handler: (ctx: Effect.fn.Gen & Effect.fn.NonGen & Commander.CommandContextLocal<Id, I18nKey_3> & {
33
33
  mutate: (...args: MutArgs) => Effect.Effect<MutA, MutE, MutR>;
34
34
  }) => (...args: Args_4) => Effect.Effect<A_2, E_4, R_5>) => Commander.CommandOut<Args_4, A_2, E_4, R_5, Id, I18nKey_3>);
35
35
  _tag: "Commander";