effect-app 4.0.0-beta.234 → 4.0.0-beta.236
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 +9 -0
- package/dist/client.d.ts +5 -5
- package/dist/utils.d.ts +5 -5
- package/package.json +2 -2
- package/src/client.ts +5 -5
- package/src/utils.ts +5 -5
- package/tsconfig.base.json +3 -1
- package/tsconfig.json +2 -0
package/CHANGELOG.md
CHANGED
package/dist/client.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./client/apiClientFactory.
|
|
2
|
-
export * from "./client/clientFor.
|
|
3
|
-
export * from "./client/errors.
|
|
4
|
-
export * from "./client/InvalidationKeys.
|
|
5
|
-
export * from "./client/makeClient.
|
|
1
|
+
export * from "./client/apiClientFactory.ts";
|
|
2
|
+
export * from "./client/clientFor.ts";
|
|
3
|
+
export * from "./client/errors.ts";
|
|
4
|
+
export * from "./client/InvalidationKeys.ts";
|
|
5
|
+
export * from "./client/makeClient.ts";
|
|
6
6
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpZW50LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvY2xpZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLGNBQWMsOEJBQThCLENBQUE7QUFDNUMsY0FBYyx1QkFBdUIsQ0FBQTtBQUNyQyxjQUFjLG9CQUFvQixDQUFBO0FBQ2xDLGNBQWMsOEJBQThCLENBQUE7QUFDNUMsY0FBYyx3QkFBd0IsQ0FBQSJ9
|
package/dist/utils.d.ts
CHANGED
|
@@ -3,11 +3,11 @@ import * as Fiber from "effect/Fiber";
|
|
|
3
3
|
import * as Option from "effect/Option";
|
|
4
4
|
import * as Result from "effect/Result";
|
|
5
5
|
import type { DeepMutable, Equals, Mutable } from "./Types.js";
|
|
6
|
-
export * from "./utils/effectify.
|
|
7
|
-
export * from "./utils/extend.
|
|
8
|
-
export * from "./utils/gen.
|
|
9
|
-
export * from "./utils/logger.
|
|
10
|
-
export * from "./utils/logLevel.
|
|
6
|
+
export * from "./utils/effectify.ts";
|
|
7
|
+
export * from "./utils/extend.ts";
|
|
8
|
+
export * from "./utils/gen.ts";
|
|
9
|
+
export * from "./utils/logger.ts";
|
|
10
|
+
export * from "./utils/logLevel.ts";
|
|
11
11
|
export * from "effect/Utils";
|
|
12
12
|
export declare const cloneTrait: unique symbol;
|
|
13
13
|
export interface Clone {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "effect-app",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.236",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"vitest": "^4.1.5"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"effect": "^4.0.0-beta.
|
|
27
|
+
"effect": "^4.0.0-beta.68"
|
|
28
28
|
},
|
|
29
29
|
"typesVersions": {
|
|
30
30
|
"*": {
|
package/src/client.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// codegen:start {preset: barrel, include: ./client/*.ts}
|
|
2
|
-
export * from "./client/apiClientFactory.
|
|
3
|
-
export * from "./client/clientFor.
|
|
4
|
-
export * from "./client/errors.
|
|
5
|
-
export * from "./client/InvalidationKeys.
|
|
6
|
-
export * from "./client/makeClient.
|
|
2
|
+
export * from "./client/apiClientFactory.ts"
|
|
3
|
+
export * from "./client/clientFor.ts"
|
|
4
|
+
export * from "./client/errors.ts"
|
|
5
|
+
export * from "./client/InvalidationKeys.ts"
|
|
6
|
+
export * from "./client/makeClient.ts"
|
|
7
7
|
// codegen:end
|
package/src/utils.ts
CHANGED
|
@@ -14,11 +14,11 @@ import { identity, pipe } from "./Function.js"
|
|
|
14
14
|
import type { DeepMutable, Equals, Mutable } from "./Types.js"
|
|
15
15
|
|
|
16
16
|
// codegen:start {preset: barrel, include: ./utils/*.ts, nodir: false }
|
|
17
|
-
export * from "./utils/effectify.
|
|
18
|
-
export * from "./utils/extend.
|
|
19
|
-
export * from "./utils/gen.
|
|
20
|
-
export * from "./utils/logger.
|
|
21
|
-
export * from "./utils/logLevel.
|
|
17
|
+
export * from "./utils/effectify.ts"
|
|
18
|
+
export * from "./utils/extend.ts"
|
|
19
|
+
export * from "./utils/gen.ts"
|
|
20
|
+
export * from "./utils/logger.ts"
|
|
21
|
+
export * from "./utils/logLevel.ts"
|
|
22
22
|
// codegen:end
|
|
23
23
|
|
|
24
24
|
export * from "effect/Utils"
|
package/tsconfig.base.json
CHANGED
|
@@ -22,7 +22,9 @@
|
|
|
22
22
|
"resolveJsonModule": true,
|
|
23
23
|
"moduleResolution": "Node16",
|
|
24
24
|
"noErrorTruncation": true,
|
|
25
|
-
"forceConsistentCasingInFileNames": true
|
|
25
|
+
"forceConsistentCasingInFileNames": true,
|
|
26
|
+
"rewriteRelativeImportExtensions": true,
|
|
27
|
+
"allowImportingTsExtensions": true
|
|
26
28
|
},
|
|
27
29
|
"watchOptions": {
|
|
28
30
|
// Use native file system events for files and directories
|