@effect-app/vue 0.127.1 → 0.127.3
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 +23 -0
- package/dist/runtime.d.ts +13 -13
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @effect-app/vue
|
|
2
2
|
|
|
3
|
+
## 0.127.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7c28686: update packages
|
|
8
|
+
- Updated dependencies [7c28686]
|
|
9
|
+
- @effect-app/fluent-extensions@0.128.3
|
|
10
|
+
- effect-app@0.156.3
|
|
11
|
+
- @effect-app/schema@0.187.3
|
|
12
|
+
- @effect-app/core@0.133.3
|
|
13
|
+
- @effect-app/vue@0.127.3
|
|
14
|
+
|
|
15
|
+
## 0.127.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [963b8d0]
|
|
20
|
+
- @effect-app/core@0.133.2
|
|
21
|
+
- @effect-app/fluent-extensions@0.128.2
|
|
22
|
+
- effect-app@0.156.2
|
|
23
|
+
- @effect-app/schema@0.187.2
|
|
24
|
+
- @effect-app/vue@0.127.2
|
|
25
|
+
|
|
3
26
|
## 0.127.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/runtime.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const DefaultApiConfig: import("effect/Config").Config<{
|
|
|
6
6
|
apiUrl: string;
|
|
7
7
|
headers: import("effect/Option").Option<import("effect/HashMap").HashMap<string, string>>;
|
|
8
8
|
}>;
|
|
9
|
-
export declare function makeApiLayers(config: ApiConfig): import("effect/Layer").Layer<HttpClient.Client.Default
|
|
9
|
+
export declare function makeApiLayers(config: ApiConfig): import("effect/Layer").Layer<ApiConfig | HttpClient.Client.Default, never, never>;
|
|
10
10
|
export declare function makeAppRuntime<R, E, A>(layer: Layer<A, E, R>): import("effect/Effect").Effect<{
|
|
11
11
|
runtime: import("effect/Runtime").Runtime<A> & {
|
|
12
12
|
runPromise: <A_1, E_1>(effect: import("effect/Effect").Effect<A_1, E_1, A>) => Promise<A_1>;
|
|
@@ -18,22 +18,22 @@ export declare function makeAppRuntime<R, E, A>(layer: Layer<A, E, R>): import("
|
|
|
18
18
|
clean: import("effect/Effect").Effect<void, never, never>;
|
|
19
19
|
}, E, R>;
|
|
20
20
|
export declare function initializeSync<E, A>(layer: Layer<A | ApiConfig | HttpClient.Client.Default, E, never>): {
|
|
21
|
-
runtime: import("effect/Runtime").Runtime<HttpClient.Client.Default |
|
|
22
|
-
runPromise: <A_1, E_1>(effect: import("effect/Effect").Effect<A_1, E_1, HttpClient.Client.Default |
|
|
23
|
-
runPromiseExit: <A_2, E_2>(effect: import("effect/Effect").Effect<A_2, E_2, HttpClient.Client.Default |
|
|
24
|
-
runSync: <A_3, E_3>(effect: import("effect/Effect").Effect<A_3, E_3, HttpClient.Client.Default |
|
|
25
|
-
runSyncExit: <A_4, E_4>(effect: import("effect/Effect").Effect<A_4, E_4, HttpClient.Client.Default |
|
|
26
|
-
runFork: <A_5, E_5>(self: import("effect/Effect").Effect<A_5, E_5, HttpClient.Client.Default |
|
|
21
|
+
runtime: import("effect/Runtime").Runtime<ApiConfig | HttpClient.Client.Default | A> & {
|
|
22
|
+
runPromise: <A_1, E_1>(effect: import("effect/Effect").Effect<A_1, E_1, ApiConfig | HttpClient.Client.Default | A>) => Promise<A_1>;
|
|
23
|
+
runPromiseExit: <A_2, E_2>(effect: import("effect/Effect").Effect<A_2, E_2, ApiConfig | HttpClient.Client.Default | A>) => Promise<import("effect/Exit").Exit<A_2, E_2>>;
|
|
24
|
+
runSync: <A_3, E_3>(effect: import("effect/Effect").Effect<A_3, E_3, ApiConfig | HttpClient.Client.Default | A>) => A_3;
|
|
25
|
+
runSyncExit: <A_4, E_4>(effect: import("effect/Effect").Effect<A_4, E_4, ApiConfig | HttpClient.Client.Default | A>) => import("effect/Exit").Exit<A_4, E_4>;
|
|
26
|
+
runFork: <A_5, E_5>(self: import("effect/Effect").Effect<A_5, E_5, ApiConfig | HttpClient.Client.Default | A>, options?: import("effect/Runtime").RunForkOptions | undefined) => import("effect/Fiber").RuntimeFiber<A_5, E_5>;
|
|
27
27
|
};
|
|
28
28
|
clean: () => void;
|
|
29
29
|
};
|
|
30
30
|
export declare function initializeAsync<E, A>(layer: Layer<A | ApiConfig | HttpClient.Client.Default, E, never>): Promise<{
|
|
31
|
-
runtime: import("effect/Runtime").Runtime<HttpClient.Client.Default |
|
|
32
|
-
runPromise: <A_1, E_1>(effect: import("effect/Effect").Effect<A_1, E_1, HttpClient.Client.Default |
|
|
33
|
-
runPromiseExit: <A_2, E_2>(effect: import("effect/Effect").Effect<A_2, E_2, HttpClient.Client.Default |
|
|
34
|
-
runSync: <A_3, E_3>(effect: import("effect/Effect").Effect<A_3, E_3, HttpClient.Client.Default |
|
|
35
|
-
runSyncExit: <A_4, E_4>(effect: import("effect/Effect").Effect<A_4, E_4, HttpClient.Client.Default |
|
|
36
|
-
runFork: <A_5, E_5>(self: import("effect/Effect").Effect<A_5, E_5, HttpClient.Client.Default |
|
|
31
|
+
runtime: import("effect/Runtime").Runtime<ApiConfig | HttpClient.Client.Default | A> & {
|
|
32
|
+
runPromise: <A_1, E_1>(effect: import("effect/Effect").Effect<A_1, E_1, ApiConfig | HttpClient.Client.Default | A>) => Promise<A_1>;
|
|
33
|
+
runPromiseExit: <A_2, E_2>(effect: import("effect/Effect").Effect<A_2, E_2, ApiConfig | HttpClient.Client.Default | A>) => Promise<import("effect/Exit").Exit<A_2, E_2>>;
|
|
34
|
+
runSync: <A_3, E_3>(effect: import("effect/Effect").Effect<A_3, E_3, ApiConfig | HttpClient.Client.Default | A>) => A_3;
|
|
35
|
+
runSyncExit: <A_4, E_4>(effect: import("effect/Effect").Effect<A_4, E_4, ApiConfig | HttpClient.Client.Default | A>) => import("effect/Exit").Exit<A_4, E_4>;
|
|
36
|
+
runFork: <A_5, E_5>(self: import("effect/Effect").Effect<A_5, E_5, ApiConfig | HttpClient.Client.Default | A>, options?: import("effect/Runtime").RunForkOptions | undefined) => import("effect/Fiber").RuntimeFiber<A_5, E_5>;
|
|
37
37
|
};
|
|
38
38
|
clean: () => Promise<void>;
|
|
39
39
|
}>;
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/vue",
|
|
3
|
-
"version": "0.127.
|
|
3
|
+
"version": "0.127.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/vue",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@effect/platform": "^0.44.
|
|
9
|
-
"@effect/platform-browser": "^0.29.
|
|
10
|
-
"@effect/schema": "^0.62.
|
|
8
|
+
"@effect/platform": "^0.44.5",
|
|
9
|
+
"@effect/platform-browser": "^0.29.5",
|
|
10
|
+
"@effect/schema": "^0.62.4",
|
|
11
11
|
"@formatjs/intl": "^2.10.0",
|
|
12
12
|
"effect": "^2.3.3",
|
|
13
13
|
"query-string": "^8.2.0",
|
|
14
14
|
"swrv": "^1.0.4",
|
|
15
15
|
"vue": "^3.4.18",
|
|
16
|
-
"effect-app": "0.
|
|
17
|
-
"@effect-app/
|
|
18
|
-
"@effect-app/
|
|
19
|
-
"@effect-app/
|
|
20
|
-
"
|
|
16
|
+
"@effect-app/core": "0.133.3",
|
|
17
|
+
"@effect-app/fluent-extensions": "0.128.3",
|
|
18
|
+
"@effect-app/vue": "0.127.3",
|
|
19
|
+
"@effect-app/schema": "0.187.3",
|
|
20
|
+
"effect-app": "0.156.3"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@rollup/pluginutils": "^5.1.0",
|