@effect-app/infra 1.5.0 → 1.5.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 +9 -0
- package/dist/RequestContext.d.ts +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/RequestContext.d.ts
CHANGED
|
@@ -21,11 +21,11 @@ declare const RequestContextParent_base: S.EnhancedClass<RequestContextParent, {
|
|
|
21
21
|
}, RequestContextParent.From, never, {
|
|
22
22
|
readonly id: NonEmptyString255;
|
|
23
23
|
readonly name: string & S.NonEmptyString255Brand;
|
|
24
|
+
readonly createdAt?: Date;
|
|
24
25
|
readonly userProfile?: {
|
|
25
26
|
readonly sub: string & import("effect-app/ids").UserProfileIdBrand;
|
|
26
27
|
} | undefined;
|
|
27
28
|
readonly locale: "en" | "de";
|
|
28
|
-
readonly createdAt?: Date;
|
|
29
29
|
}, {}, {}>;
|
|
30
30
|
export declare class RequestContextParent extends RequestContextParent_base {
|
|
31
31
|
}
|
|
@@ -44,21 +44,21 @@ declare const RequestContext_base: S.EnhancedClass<RequestContext, {
|
|
|
44
44
|
parent: S.PropertySignature<"?:", RequestContextParent | undefined, never, "?:", RequestContextParent.From | undefined, false, never>;
|
|
45
45
|
namespace: S.PropertySignature<"?:", (string & S.NonEmptyString255Brand) | undefined, never, "?:", string | undefined, false, never>;
|
|
46
46
|
name: S.WithDefaults<S.Schema<string & S.NonEmptyString255Brand, string, never>> & S.Schema<string & S.NonEmptyString255Brand, string, never>;
|
|
47
|
+
createdAt: S.PropertySignature<":", Date, never, ":", string, true, never>;
|
|
47
48
|
userProfile: S.PropertySignature<"?:", {
|
|
48
49
|
readonly sub: string & import("effect-app/ids").UserProfileIdBrand;
|
|
49
50
|
} | undefined, never, "?:", {
|
|
50
51
|
readonly sub: string;
|
|
51
52
|
} | undefined, false, never>;
|
|
52
53
|
locale: S.Literal<["en", "de"]>;
|
|
53
|
-
createdAt: S.PropertySignature<":", Date, never, ":", string, true, never>;
|
|
54
54
|
}, RequestContext.From, never, {
|
|
55
55
|
readonly id?: string & S.NonEmptyString255Brand;
|
|
56
56
|
readonly name: string & S.NonEmptyString255Brand;
|
|
57
|
+
readonly createdAt?: Date;
|
|
57
58
|
readonly userProfile?: {
|
|
58
59
|
readonly sub: string & import("effect-app/ids").UserProfileIdBrand;
|
|
59
60
|
} | undefined;
|
|
60
61
|
readonly locale: "en" | "de";
|
|
61
|
-
readonly createdAt?: Date;
|
|
62
62
|
readonly rootId: NonEmptyString255;
|
|
63
63
|
readonly sourceId?: (string & S.NonEmptyString255Brand) | undefined;
|
|
64
64
|
readonly parent?: RequestContextParent | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/infra",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"pure-rand": "6.1.0",
|
|
20
20
|
"redlock": "^4.2.0",
|
|
21
21
|
"@effect-app/core": "1.2.0",
|
|
22
|
-
"@effect-app/infra-adapters": "1.2.
|
|
23
|
-
"
|
|
24
|
-
"effect-app": "1.
|
|
22
|
+
"@effect-app/infra-adapters": "1.2.1",
|
|
23
|
+
"effect-app": "1.3.1",
|
|
24
|
+
"@effect-app/schema": "1.2.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@babel/cli": "^7.24.5",
|