@effect-app/vue 0.135.1 → 0.136.1
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 +14 -14
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @effect-app/vue
|
|
2
2
|
|
|
3
|
+
## 0.136.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [47f46f0]
|
|
8
|
+
- effect-app@0.165.0
|
|
9
|
+
- @effect-app/vue@0.136.1
|
|
10
|
+
|
|
11
|
+
## 0.136.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 5f52e06: update packages
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [5f52e06]
|
|
20
|
+
- @effect-app/fluent-extensions@0.134.0
|
|
21
|
+
- effect-app@0.164.0
|
|
22
|
+
- @effect-app/schema@0.192.0
|
|
23
|
+
- @effect-app/core@0.140.0
|
|
24
|
+
- @effect-app/vue@0.136.0
|
|
25
|
+
|
|
3
26
|
## 0.135.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/runtime.d.ts
CHANGED
|
@@ -7,34 +7,34 @@ 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<
|
|
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>;
|
|
14
14
|
runPromiseExit: <A_2, E_2>(effect: Effect.Effect<A_2, E_2, A>) => Promise<Exit.Exit<A_2, E_2>>;
|
|
15
15
|
runSync: <A_3, E_3>(effect: Effect.Effect<A_3, E_3, A>) => A_3;
|
|
16
16
|
runSyncExit: <A_4, E_4>(effect: Effect.Effect<A_4, E_4, A>) => Exit.Exit<A_4, E_4>;
|
|
17
|
-
runFork: <
|
|
17
|
+
runFork: <A_5, E_5>(self: Effect.Effect<A_5, E_5, A>, options?: Runtime.RunForkOptions | undefined) => import("effect/Fiber").RuntimeFiber<A_5, E_5>;
|
|
18
18
|
};
|
|
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<
|
|
23
|
-
runPromise: <A_1, E_1>(effect: Effect.Effect<A_1, E_1,
|
|
24
|
-
runPromiseExit: <A_2, E_2>(effect: Effect.Effect<A_2, E_2,
|
|
25
|
-
runSync: <A_3, E_3>(effect: Effect.Effect<A_3, E_3,
|
|
26
|
-
runSyncExit: <A_4, E_4>(effect: Effect.Effect<A_4, E_4,
|
|
27
|
-
runFork: <
|
|
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<
|
|
33
|
-
runPromise: <A_1, E_1>(effect: Effect.Effect<A_1, E_1,
|
|
34
|
-
runPromiseExit: <A_2, E_2>(effect: Effect.Effect<A_2, E_2,
|
|
35
|
-
runSync: <A_3, E_3>(effect: Effect.Effect<A_3, E_3,
|
|
36
|
-
runSyncExit: <A_4, E_4>(effect: Effect.Effect<A_4, E_4,
|
|
37
|
-
runFork: <
|
|
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,32 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/vue",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.136.1",
|
|
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.45.
|
|
9
|
-
"@effect/platform-browser": "^0.30.
|
|
10
|
-
"@effect/schema": "^0.62.
|
|
8
|
+
"@effect/platform": "^0.45.3",
|
|
9
|
+
"@effect/platform-browser": "^0.30.3",
|
|
10
|
+
"@effect/schema": "^0.62.7",
|
|
11
11
|
"@formatjs/intl": "^2.10.0",
|
|
12
12
|
"@tanstack/vue-query": "^5.20.5",
|
|
13
|
-
"effect": "^2.3.
|
|
13
|
+
"effect": "^2.3.6",
|
|
14
14
|
"query-string": "^8.2.0",
|
|
15
15
|
"vue": "^3.4.19",
|
|
16
|
-
"@effect-app/
|
|
17
|
-
"@effect-app/
|
|
18
|
-
"effect-app": "0.
|
|
19
|
-
"@effect-app/
|
|
20
|
-
"
|
|
16
|
+
"@effect-app/fluent-extensions": "0.134.0",
|
|
17
|
+
"@effect-app/core": "0.140.0",
|
|
18
|
+
"@effect-app/vue": "0.136.1",
|
|
19
|
+
"@effect-app/schema": "0.192.0",
|
|
20
|
+
"effect-app": "0.165.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@babel/cli": "^7.23.9",
|
|
24
24
|
"@rollup/pluginutils": "^5.1.0",
|
|
25
|
-
"@types/node": "~20.11.
|
|
25
|
+
"@types/node": "~20.11.19",
|
|
26
26
|
"json5": "^2.2.3",
|
|
27
27
|
"ts-node": "^10.9.2",
|
|
28
28
|
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.20240124",
|
|
29
|
-
"vite": "^5.1.
|
|
29
|
+
"vite": "^5.1.3",
|
|
30
30
|
"vitest": "^1.2.2",
|
|
31
31
|
"@effect-app/compiler": "0.64.0"
|
|
32
32
|
},
|