effect-app 4.0.0-beta.235 → 4.0.0-beta.237

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,9 @@
1
1
  # @effect-app/prelude
2
2
 
3
+ ## 4.0.0-beta.237
4
+
5
+ ## 4.0.0-beta.236
6
+
3
7
  ## 4.0.0-beta.235
4
8
 
5
9
  ### Patch Changes
package/dist/client.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- export * from "./client/apiClientFactory.js";
2
- export * from "./client/clientFor.js";
3
- export * from "./client/errors.js";
4
- export * from "./client/InvalidationKeys.js";
5
- export * from "./client/makeClient.js";
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.js";
7
- export * from "./utils/extend.js";
8
- export * from "./utils/gen.js";
9
- export * from "./utils/logger.js";
10
- export * from "./utils/logLevel.js";
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.235",
3
+ "version": "4.0.0-beta.237",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "dependencies": {
package/src/client.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // codegen:start {preset: barrel, include: ./client/*.ts}
2
- export * from "./client/apiClientFactory.js"
3
- export * from "./client/clientFor.js"
4
- export * from "./client/errors.js"
5
- export * from "./client/InvalidationKeys.js"
6
- export * from "./client/makeClient.js"
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.js"
18
- export * from "./utils/extend.js"
19
- export * from "./utils/gen.js"
20
- export * from "./utils/logger.js"
21
- export * from "./utils/logLevel.js"
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"