@effect-app/infra 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 +15 -0
- package/dist/Model/filter/types.d.ts +4 -4
- package/dist/adapters/logger.d.ts +1 -1
- package/dist/api/routing/middleware.d.ts +2 -2
- package/dist/logger.d.ts +1 -1
- package/package.json +5 -5
- package/src/Model/filter/types.ts +4 -4
- package/src/api/routing/middleware.ts +2 -2
- package/tsconfig.json +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @effect-app/infra
|
|
2
2
|
|
|
3
|
+
## 4.0.0-beta.236
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- effect-app@4.0.0-beta.236
|
|
8
|
+
|
|
9
|
+
## 4.0.0-beta.235
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6cfd83d: update effect to latest beta
|
|
14
|
+
- Updated dependencies [ba4bdc3]
|
|
15
|
+
- Updated dependencies [6cfd83d]
|
|
16
|
+
- effect-app@4.0.0-beta.235
|
|
17
|
+
|
|
3
18
|
## 4.0.0-beta.234
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./types/errors.
|
|
2
|
-
export * from "./types/fields.
|
|
3
|
-
export * from "./types/utils.
|
|
4
|
-
export * from "./types/validator.
|
|
1
|
+
export * from "./types/errors.ts";
|
|
2
|
+
export * from "./types/fields.ts";
|
|
3
|
+
export * from "./types/utils.ts";
|
|
4
|
+
export * from "./types/validator.ts";
|
|
5
5
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZXMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9Nb2RlbC9maWx0ZXIvdHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsY0FBYyxtQkFBbUIsQ0FBQTtBQUNqQyxjQUFjLG1CQUFtQixDQUFBO0FBQ2pDLGNBQWMsa0JBQWtCLENBQUE7QUFDaEMsY0FBYyxzQkFBc0IsQ0FBQSJ9
|
|
@@ -2,7 +2,7 @@ export declare const InfraLogger: {
|
|
|
2
2
|
logWarning: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
3
3
|
logError: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
4
4
|
logFatal: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
5
|
-
logInfo: (...message:
|
|
5
|
+
logInfo: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
6
6
|
logDebug: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
7
7
|
logWithLevel: (level: import("effect/LogLevel").Severity, ...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
8
8
|
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./middleware/middleware.
|
|
2
|
-
export * from "./middleware/RouterMiddleware.
|
|
1
|
+
export * from "./middleware/middleware.ts";
|
|
2
|
+
export * from "./middleware/RouterMiddleware.ts";
|
|
3
3
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlkZGxld2FyZS5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2FwaS9yb3V0aW5nL21pZGRsZXdhcmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsY0FBYyw0QkFBNEIsQ0FBQTtBQUMxQyxjQUFjLGtDQUFrQyxDQUFBIn0=
|
package/dist/logger.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export declare const InfraLogger: {
|
|
|
2
2
|
logWarning: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
3
3
|
logError: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
4
4
|
logFatal: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
5
|
-
logInfo: (...message:
|
|
5
|
+
logInfo: (...message: readonly any[]) => import("effect/Effect").Effect<void, never, never>;
|
|
6
6
|
logDebug: (...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
7
7
|
logWithLevel: (level: import("effect/LogLevel").Severity, ...message: ReadonlyArray<any>) => import("effect/Effect").Effect<void, never, never>;
|
|
8
8
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/infra",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.236",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"proper-lockfile": "^4.1.2",
|
|
14
14
|
"pure-rand": "8.4.0",
|
|
15
15
|
"query-string": "^9.3.1",
|
|
16
|
-
"effect-app": "4.0.0-beta.
|
|
16
|
+
"effect-app": "4.0.0-beta.236"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@azure/cosmos": "^4.9.3",
|
|
20
20
|
"@azure/service-bus": "^7.9.5",
|
|
21
|
-
"@effect/sql-sqlite-node": "4.0.0-beta.
|
|
21
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.68",
|
|
22
22
|
"@sentry/node": "10.51.0",
|
|
23
23
|
"@sentry/opentelemetry": "10.51.0",
|
|
24
24
|
"@types/better-sqlite3": "^7.6.13",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@azure/cosmos": "^4.9.3",
|
|
40
40
|
"@azure/service-bus": "^7.9.5",
|
|
41
|
-
"@effect/vitest": "^4.0.0-beta.
|
|
41
|
+
"@effect/vitest": "^4.0.0-beta.68",
|
|
42
42
|
"@sendgrid/helpers": "^8.0.0",
|
|
43
43
|
"@sendgrid/mail": "^8.1.6",
|
|
44
44
|
"@sentry/node": "10.51.0",
|
|
45
45
|
"@sentry/opentelemetry": "10.51.0",
|
|
46
|
-
"effect": "^4.0.0-beta.
|
|
46
|
+
"effect": "^4.0.0-beta.68",
|
|
47
47
|
"jwt-decode": "^4.0.0",
|
|
48
48
|
"redis": "^3.1.2",
|
|
49
49
|
"redlock": "^4.2.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// codegen:start {preset: barrel, include: ./types/*.ts}
|
|
2
|
-
export * from "./types/errors.
|
|
3
|
-
export * from "./types/fields.
|
|
4
|
-
export * from "./types/utils.
|
|
5
|
-
export * from "./types/validator.
|
|
2
|
+
export * from "./types/errors.ts"
|
|
3
|
+
export * from "./types/fields.ts"
|
|
4
|
+
export * from "./types/utils.ts"
|
|
5
|
+
export * from "./types/validator.ts"
|
|
6
6
|
// codegen:end
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// codegen:start {preset: barrel, include: ./middleware/*.ts, nodir: false }
|
|
2
|
-
export * from "./middleware/middleware.
|
|
3
|
-
export * from "./middleware/RouterMiddleware.
|
|
2
|
+
export * from "./middleware/middleware.ts"
|
|
3
|
+
export * from "./middleware/RouterMiddleware.ts"
|
|
4
4
|
// codegen:end
|