@effect-app/vue 0.133.0 → 0.134.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,20 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 0.134.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bs
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @effect-app/core@0.138.0
13
+ - @effect-app/fluent-extensions@0.132.0
14
+ - effect-app@0.162.0
15
+ - @effect-app/schema@0.190.0
16
+ - @effect-app/vue@0.134.0
17
+
3
18
  ## 0.133.0
4
19
 
5
20
  ### Minor Changes
package/dist/runtime.d.ts CHANGED
@@ -7,7 +7,7 @@ export declare const DefaultApiConfig: Config.Config<{
7
7
  apiUrl: string;
8
8
  headers: import("effect/Option").Option<import("effect/HashMap").HashMap<string, string>>;
9
9
  }>;
10
- export declare function makeApiLayers(config: ApiConfig): Layer.Layer<ApiConfig | HttpClient.Client.Default, never, never>;
10
+ export declare function makeApiLayers(config: ApiConfig): Layer.Layer<HttpClient.Client.Default | ApiConfig, never, never>;
11
11
  export declare function makeAppRuntime<R, E, A>(layer: Layer<A, E, R>): Effect.Effect<{
12
12
  runtime: Runtime.Runtime<A> & {
13
13
  runPromise: <A_1, E_1>(effect: Effect.Effect<A_1, E_1, A>) => Promise<A_1>;
@@ -19,22 +19,22 @@ export declare function makeAppRuntime<R, E, A>(layer: Layer<A, E, R>): Effect.E
19
19
  clean: Effect.Effect<void, never, never>;
20
20
  }, E, R>;
21
21
  export declare function initializeSync<E, A>(layer: Layer<A | ApiConfig | HttpClient.Client.Default, E, never>): {
22
- runtime: Runtime.Runtime<ApiConfig | HttpClient.Client.Default | A> & {
23
- runPromise: <A_1, E_1>(effect: Effect.Effect<A_1, E_1, ApiConfig | HttpClient.Client.Default | A>) => Promise<A_1>;
24
- runPromiseExit: <A_2, E_2>(effect: Effect.Effect<A_2, E_2, ApiConfig | HttpClient.Client.Default | A>) => Promise<Exit.Exit<A_2, E_2>>;
25
- runSync: <A_3, E_3>(effect: Effect.Effect<A_3, E_3, ApiConfig | HttpClient.Client.Default | A>) => A_3;
26
- runSyncExit: <A_4, E_4>(effect: Effect.Effect<A_4, E_4, ApiConfig | HttpClient.Client.Default | A>) => Exit.Exit<A_4, E_4>;
27
- runFork: <A_5, E_5>(self: Effect.Effect<A_5, E_5, ApiConfig | HttpClient.Client.Default | A>, options?: Runtime.RunForkOptions | undefined) => import("effect/Fiber").RuntimeFiber<A_5, E_5>;
22
+ runtime: Runtime.Runtime<HttpClient.Client.Default | ApiConfig | A> & {
23
+ runPromise: <A_1, E_1>(effect: Effect.Effect<A_1, E_1, HttpClient.Client.Default | ApiConfig | A>) => Promise<A_1>;
24
+ runPromiseExit: <A_2, E_2>(effect: Effect.Effect<A_2, E_2, HttpClient.Client.Default | ApiConfig | A>) => Promise<Exit.Exit<A_2, E_2>>;
25
+ runSync: <A_3, E_3>(effect: Effect.Effect<A_3, E_3, HttpClient.Client.Default | ApiConfig | A>) => A_3;
26
+ runSyncExit: <A_4, E_4>(effect: Effect.Effect<A_4, E_4, HttpClient.Client.Default | ApiConfig | A>) => Exit.Exit<A_4, E_4>;
27
+ runFork: <A_5, E_5>(self: Effect.Effect<A_5, E_5, HttpClient.Client.Default | ApiConfig | A>, options?: Runtime.RunForkOptions | undefined) => import("effect/Fiber").RuntimeFiber<A_5, E_5>;
28
28
  };
29
29
  clean: () => void;
30
30
  };
31
31
  export declare function initializeAsync<E, A>(layer: Layer<A | ApiConfig | HttpClient.Client.Default, E, never>): Promise<{
32
- runtime: Runtime.Runtime<ApiConfig | HttpClient.Client.Default | A> & {
33
- runPromise: <A_1, E_1>(effect: Effect.Effect<A_1, E_1, ApiConfig | HttpClient.Client.Default | A>) => Promise<A_1>;
34
- runPromiseExit: <A_2, E_2>(effect: Effect.Effect<A_2, E_2, ApiConfig | HttpClient.Client.Default | A>) => Promise<Exit.Exit<A_2, E_2>>;
35
- runSync: <A_3, E_3>(effect: Effect.Effect<A_3, E_3, ApiConfig | HttpClient.Client.Default | A>) => A_3;
36
- runSyncExit: <A_4, E_4>(effect: Effect.Effect<A_4, E_4, ApiConfig | HttpClient.Client.Default | A>) => Exit.Exit<A_4, E_4>;
37
- runFork: <A_5, E_5>(self: Effect.Effect<A_5, E_5, ApiConfig | HttpClient.Client.Default | A>, options?: Runtime.RunForkOptions | undefined) => import("effect/Fiber").RuntimeFiber<A_5, E_5>;
32
+ runtime: Runtime.Runtime<HttpClient.Client.Default | ApiConfig | A> & {
33
+ runPromise: <A_1, E_1>(effect: Effect.Effect<A_1, E_1, HttpClient.Client.Default | ApiConfig | A>) => Promise<A_1>;
34
+ runPromiseExit: <A_2, E_2>(effect: Effect.Effect<A_2, E_2, HttpClient.Client.Default | ApiConfig | A>) => Promise<Exit.Exit<A_2, E_2>>;
35
+ runSync: <A_3, E_3>(effect: Effect.Effect<A_3, E_3, HttpClient.Client.Default | ApiConfig | A>) => A_3;
36
+ runSyncExit: <A_4, E_4>(effect: Effect.Effect<A_4, E_4, HttpClient.Client.Default | ApiConfig | A>) => Exit.Exit<A_4, E_4>;
37
+ runFork: <A_5, E_5>(self: Effect.Effect<A_5, E_5, HttpClient.Client.Default | ApiConfig | A>, options?: Runtime.RunForkOptions | undefined) => import("effect/Fiber").RuntimeFiber<A_5, E_5>;
38
38
  };
39
39
  clean: () => Promise<void>;
40
40
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-app/vue",
3
- "version": "0.133.0",
3
+ "version": "0.134.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/vue",
@@ -13,11 +13,11 @@
13
13
  "effect": "^2.3.5",
14
14
  "query-string": "^8.2.0",
15
15
  "vue": "^3.4.19",
16
- "@effect-app/core": "0.137.0",
17
- "@effect-app/fluent-extensions": "0.131.0",
18
- "@effect-app/vue": "0.133.0",
19
- "@effect-app/schema": "0.189.1",
20
- "effect-app": "0.161.0"
16
+ "@effect-app/core": "0.138.0",
17
+ "@effect-app/fluent-extensions": "0.132.0",
18
+ "@effect-app/vue": "0.134.0",
19
+ "@effect-app/schema": "0.190.0",
20
+ "effect-app": "0.162.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@babel/cli": "^7.23.9",
@@ -28,7 +28,7 @@
28
28
  "typescript": "npm:@effect-app/typescript@5.4.0-tsplus.20240124",
29
29
  "vite": "^5.1.1",
30
30
  "vitest": "^1.2.2",
31
- "@effect-app/compiler": "0.62.0"
31
+ "@effect-app/compiler": "0.63.0"
32
32
  },
33
33
  "typesVersions": {
34
34
  "*": {