@effect-app/infra 2.52.3 → 2.52.4
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 +8 -0
- package/dist/Emailer/Sendgrid.d.ts +12 -12
- package/dist/QueueMaker/SQLQueue.d.ts +1 -1
- package/dist/QueueMaker/memQueue.d.ts +1 -1
- package/dist/QueueMaker/sbqueue.d.ts +1 -1
- package/dist/RequestContext.d.ts +1 -1
- package/dist/RequestContext.d.ts.map +1 -1
- package/dist/Store/ContextMapContainer.d.ts +1 -1
- package/dist/api/internal/RequestContextMiddleware.d.ts +1 -1
- package/dist/api/setupRequest.d.ts +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -10,9 +10,6 @@ export declare function renderMessage(forceFake: boolean): (msg: EmailMsg) => {
|
|
|
10
10
|
to: EmailData | EmailData[];
|
|
11
11
|
cc: EmailData | EmailData[];
|
|
12
12
|
bcc: EmailData | EmailData[];
|
|
13
|
-
headers?: {
|
|
14
|
-
[key: string]: string;
|
|
15
|
-
};
|
|
16
13
|
replyTo?: EmailData;
|
|
17
14
|
sendAt?: number;
|
|
18
15
|
subject?: string;
|
|
@@ -26,6 +23,9 @@ export declare function renderMessage(forceFake: boolean): (msg: EmailMsg) => {
|
|
|
26
23
|
sections?: {
|
|
27
24
|
[key: string]: string;
|
|
28
25
|
};
|
|
26
|
+
headers?: {
|
|
27
|
+
[key: string]: string;
|
|
28
|
+
};
|
|
29
29
|
categories?: string[];
|
|
30
30
|
category?: string;
|
|
31
31
|
customArgs?: {
|
|
@@ -49,9 +49,6 @@ export declare function renderMessage(forceFake: boolean): (msg: EmailMsg) => {
|
|
|
49
49
|
to: EmailData | EmailData[];
|
|
50
50
|
cc: EmailData | EmailData[];
|
|
51
51
|
bcc: EmailData | EmailData[];
|
|
52
|
-
headers?: {
|
|
53
|
-
[key: string]: string;
|
|
54
|
-
};
|
|
55
52
|
replyTo?: EmailData;
|
|
56
53
|
sendAt?: number;
|
|
57
54
|
subject?: string;
|
|
@@ -65,6 +62,9 @@ export declare function renderMessage(forceFake: boolean): (msg: EmailMsg) => {
|
|
|
65
62
|
sections?: {
|
|
66
63
|
[key: string]: string;
|
|
67
64
|
};
|
|
65
|
+
headers?: {
|
|
66
|
+
[key: string]: string;
|
|
67
|
+
};
|
|
68
68
|
categories?: string[];
|
|
69
69
|
category?: string;
|
|
70
70
|
customArgs?: {
|
|
@@ -88,9 +88,6 @@ export declare function renderMessage(forceFake: boolean): (msg: EmailMsg) => {
|
|
|
88
88
|
to: EmailData | EmailData[];
|
|
89
89
|
cc: EmailData | EmailData[];
|
|
90
90
|
bcc: EmailData | EmailData[];
|
|
91
|
-
headers?: {
|
|
92
|
-
[key: string]: string;
|
|
93
|
-
};
|
|
94
91
|
replyTo?: EmailData;
|
|
95
92
|
sendAt?: number;
|
|
96
93
|
subject?: string;
|
|
@@ -104,6 +101,9 @@ export declare function renderMessage(forceFake: boolean): (msg: EmailMsg) => {
|
|
|
104
101
|
sections?: {
|
|
105
102
|
[key: string]: string;
|
|
106
103
|
};
|
|
104
|
+
headers?: {
|
|
105
|
+
[key: string]: string;
|
|
106
|
+
};
|
|
107
107
|
categories?: string[];
|
|
108
108
|
category?: string;
|
|
109
109
|
customArgs?: {
|
|
@@ -127,9 +127,6 @@ export declare function renderMessage(forceFake: boolean): (msg: EmailMsg) => {
|
|
|
127
127
|
to: EmailData | EmailData[];
|
|
128
128
|
cc: EmailData | EmailData[];
|
|
129
129
|
bcc: EmailData | EmailData[];
|
|
130
|
-
headers?: {
|
|
131
|
-
[key: string]: string;
|
|
132
|
-
};
|
|
133
130
|
replyTo?: EmailData;
|
|
134
131
|
sendAt?: number;
|
|
135
132
|
subject?: string;
|
|
@@ -143,6 +140,9 @@ export declare function renderMessage(forceFake: boolean): (msg: EmailMsg) => {
|
|
|
143
140
|
sections?: {
|
|
144
141
|
[key: string]: string;
|
|
145
142
|
};
|
|
143
|
+
headers?: {
|
|
144
|
+
[key: string]: string;
|
|
145
|
+
};
|
|
146
146
|
categories?: string[];
|
|
147
147
|
category?: string;
|
|
148
148
|
customArgs?: {
|
|
@@ -13,6 +13,6 @@ export declare function makeSQLQueue<Evt extends {
|
|
|
13
13
|
_tag: string;
|
|
14
14
|
}, EvtE, DrainEvtE>(queueName: NonEmptyString255, queueDrainName: NonEmptyString255, schema: S.Schema<Evt, EvtE>, drainSchema: S.Schema<DrainEvt, DrainEvtE>): Effect.Effect<{
|
|
15
15
|
publish: (messages_0: Evt, ...messages: Evt[]) => Effect.Effect<void, never, never>;
|
|
16
|
-
drain: <DrainE, DrainR>(handleEvent: (ks: DrainEvt) => Effect<void, DrainE, DrainR>, sessionId?: string) => Effect.Effect<never, never, Exclude<Exclude<Exclude<Exclude<DrainR, Tracer.ParentSpan>, import("../RequestContext.js").LocaleRef | import("../Store/
|
|
16
|
+
drain: <DrainE, DrainR>(handleEvent: (ks: DrainEvt) => Effect<void, DrainE, DrainR>, sessionId?: string) => Effect.Effect<never, never, Exclude<Exclude<Exclude<Exclude<DrainR, Tracer.ParentSpan>, import("../RequestContext.js").LocaleRef | import("../Store/ContextMapContainer.js").ContextMapContainer | import("../Store/Memory.js").storeId>, Tracer.ParentSpan>, Tracer.ParentSpan>>;
|
|
17
17
|
}, never, SqlClient.SqlClient>;
|
|
18
18
|
//# sourceMappingURL=SQLQueue.d.ts.map
|
|
@@ -9,6 +9,6 @@ export declare function makeMemQueue<Evt extends {
|
|
|
9
9
|
_tag: string;
|
|
10
10
|
}, EvtE, DrainEvtE>(queueName: string, queueDrainName: string, schema: S.Schema<Evt, EvtE>, drainSchema: S.Schema<DrainEvt, DrainEvtE>): Effect.Effect<{
|
|
11
11
|
publish: (messages_0: Evt, ...messages: Evt[]) => Effect.Effect<void, never, never>;
|
|
12
|
-
drain: <DrainE, DrainR>(handleEvent: (ks: DrainEvt) => Effect<void, DrainE, DrainR>, sessionId?: string) => Effect.Effect<never, never, Exclude<Exclude<Exclude<Exclude<DrainR, Tracer.ParentSpan>, import("../RequestContext.js").LocaleRef | import("../Store/
|
|
12
|
+
drain: <DrainE, DrainR>(handleEvent: (ks: DrainEvt) => Effect<void, DrainE, DrainR>, sessionId?: string) => Effect.Effect<never, never, Exclude<Exclude<Exclude<Exclude<DrainR, Tracer.ParentSpan>, import("../RequestContext.js").LocaleRef | import("../Store/ContextMapContainer.js").ContextMapContainer | import("../Store/Memory.js").storeId>, Tracer.ParentSpan>, Tracer.ParentSpan>>;
|
|
13
13
|
}, never, MemQueue>;
|
|
14
14
|
//# sourceMappingURL=memQueue.d.ts.map
|
|
@@ -9,7 +9,7 @@ export declare function makeServiceBusQueue<Evt extends {
|
|
|
9
9
|
id: StringId;
|
|
10
10
|
_tag: string;
|
|
11
11
|
}, EvtE, DrainEvtE>(queueName: string, queueDrainName: string, schema: S.Schema<Evt, EvtE>, drainSchema: S.Schema<DrainEvt, DrainEvtE>): Effect.Effect<{
|
|
12
|
-
drain: <DrainE, DrainR>(handleEvent: (ks: DrainEvt) => Effect<void, DrainE, DrainR>, sessionId?: string) => Effect.Effect<never, never, import("effect/Scope").Scope | Exclude<Exclude<Exclude<Exclude<DrainR, Tracer.ParentSpan>, import("../RequestContext.js").LocaleRef | import("../Store/
|
|
12
|
+
drain: <DrainE, DrainR>(handleEvent: (ks: DrainEvt) => Effect<void, DrainE, DrainR>, sessionId?: string) => Effect.Effect<never, never, import("effect/Scope").Scope | Exclude<Exclude<Exclude<Exclude<DrainR, Tracer.ParentSpan>, import("../RequestContext.js").LocaleRef | import("../Store/ContextMapContainer.js").ContextMapContainer | import("../Store/Memory.js").storeId>, Tracer.ParentSpan>, ServiceBusReceiverFactory>>;
|
|
13
13
|
publish: (messages_0: Evt, ...messages: Evt[]) => Effect.Effect<void, never, never>;
|
|
14
14
|
}, never, import("@azure/service-bus").ServiceBusSender | ServiceBusReceiverFactory>;
|
|
15
15
|
export declare function makeServiceBusLayers(url: string, queueName: string, queueDrainName: string): Layer.Layer<import("@azure/service-bus").ServiceBusSender | ServiceBusReceiverFactory, never, never>;
|
package/dist/RequestContext.d.ts
CHANGED
|
@@ -27,9 +27,9 @@ declare const RequestContext_base: S.EnhancedClass<RequestContext, {
|
|
|
27
27
|
} & S.WithDefaults<S.Schema<string & S.StringIdBrand & import("effect-app/ids").UserProfileIdBrand, string, never>>;
|
|
28
28
|
}>>;
|
|
29
29
|
}, RequestContext.Encoded, never, {
|
|
30
|
+
readonly name: string & S.NonEmptyString255Brand;
|
|
30
31
|
readonly locale: "en" | "de";
|
|
31
32
|
readonly namespace: string & S.NonEmptyString255Brand;
|
|
32
|
-
readonly name: string & S.NonEmptyString255Brand;
|
|
33
33
|
readonly span: {
|
|
34
34
|
readonly traceId: string;
|
|
35
35
|
readonly spanId: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RequestContext.d.ts","sourceRoot":"","sources":["../src/RequestContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,MAAM,YAAY,CAAA;AAIvC,eAAO,MAAM,MAAM,yBAAwB,CAAA;AAC3C,MAAM,MAAM,MAAM,GAAG,OAAO,MAAM,CAAC,IAAI,CAAA;;AAEvC,qBAAa,SAAU,SAAQ,cAA8E;CAAG;;;;;;;;;;;;;IAe9G,kBAAkB
|
|
1
|
+
{"version":3,"file":"RequestContext.d.ts","sourceRoot":"","sources":["../src/RequestContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,MAAM,YAAY,CAAA;AAIvC,eAAO,MAAM,MAAM,yBAAwB,CAAA;AAC3C,MAAM,MAAM,MAAM,GAAG,OAAO,MAAM,CAAC,IAAI,CAAA;;AAEvC,qBAAa,SAAU,SAAQ,cAA8E;CAAG;;;;;;;;;;;;;IAe9G,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;AAbpB,qBAAa,cAAe,SAAQ,mBAelC;IAGA,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc;;;;CAMrD;AAED,eAAO,MAAM,cAAc,GAAI,KAAK,IAAI,CAAC,cAAc,EAAE,QAAQ,GAAG,WAAW,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;;;;;;;CAgBxG,CAAA;AAKF,yBAAiB,cAAc,CAAC;IAC9B,UAAiB,OAAQ,SAAQ,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,cAAc,CAAC,QAAQ,CAAC,CAAC;KAAG;CACtF"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Context, Effect, Layer } from "effect-app";
|
|
2
2
|
import { ContextMap } from "./service.js";
|
|
3
|
-
declare const ContextMapContainer_base: Context.ReferenceClass<ContextMapContainer, "ContextMapContainer",
|
|
3
|
+
declare const ContextMapContainer_base: Context.ReferenceClass<ContextMapContainer, "ContextMapContainer", "root" | ContextMap>;
|
|
4
4
|
export declare class ContextMapContainer extends ContextMapContainer_base {
|
|
5
5
|
static readonly layer: Layer.Layer<ContextMapContainer, never, never>;
|
|
6
6
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Effect } from "effect-app";
|
|
2
2
|
import { HttpServerRequest, HttpServerResponse } from "effect-app/http";
|
|
3
3
|
import { Locale } from "../../RequestContext.js";
|
|
4
|
-
export declare const RequestContextMiddleware: (defaultLocale?: Locale) => <E, R>(app: import("@effect/platform/HttpApp").Default<E, R>) => Effect.Effect<HttpServerResponse.HttpServerResponse, E, HttpServerRequest.HttpServerRequest | Exclude<Exclude<R, import("effect/Tracer").ParentSpan>, import("../../RequestContext.js").LocaleRef | import("../../Store/
|
|
4
|
+
export declare const RequestContextMiddleware: (defaultLocale?: Locale) => <E, R>(app: import("@effect/platform/HttpApp").Default<E, R>) => Effect.Effect<HttpServerResponse.HttpServerResponse, E, HttpServerRequest.HttpServerRequest | Exclude<Exclude<R, import("effect/Tracer").ParentSpan>, import("../../RequestContext.js").LocaleRef | import("../../Store/ContextMapContainer.js").ContextMapContainer | import("../../Store/Memory.js").storeId>>;
|
|
5
5
|
//# sourceMappingURL=RequestContextMiddleware.d.ts.map
|
|
@@ -9,5 +9,5 @@ export declare const getRC: Effect.Effect<{
|
|
|
9
9
|
namespace: NonEmptyString255;
|
|
10
10
|
}, never, never>;
|
|
11
11
|
export declare const setupRequestContextFromCurrent: (name?: string, options?: Tracer.SpanOptions) => <R, E, A>(self: Effect<A, E, R>) => Effect.Effect<A, E, Exclude<Exclude<R, Tracer.ParentSpan>, ContextMapContainer>>;
|
|
12
|
-
export declare function setupRequestContext<R, E, A>(self: Effect<A, E, R>, requestContext: RequestContext): Effect.Effect<A, E, Exclude<Exclude<R, Tracer.ParentSpan>, LocaleRef |
|
|
12
|
+
export declare function setupRequestContext<R, E, A>(self: Effect<A, E, R>, requestContext: RequestContext): Effect.Effect<A, E, Exclude<Exclude<R, Tracer.ParentSpan>, LocaleRef | ContextMapContainer | storeId>>;
|
|
13
13
|
//# sourceMappingURL=setupRequest.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/infra",
|
|
3
|
-
"version": "2.52.
|
|
3
|
+
"version": "2.52.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"change-case": "^5.4.4",
|
|
9
9
|
"cross-fetch": "^4.1.0",
|
|
10
10
|
"express-oauth2-jwt-bearer": "^1.6.1",
|
|
11
|
-
"fast-check": "~4.0
|
|
11
|
+
"fast-check": "~4.1.0",
|
|
12
12
|
"path-parser": "^6.1.0",
|
|
13
13
|
"proper-lockfile": "^4.1.2",
|
|
14
14
|
"pure-rand": "7.0.1",
|
|
15
15
|
"query-string": "^9.1.1",
|
|
16
|
-
"effect-app": "2.38.
|
|
16
|
+
"effect-app": "2.38.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@azure/cosmos": "^4.3.0",
|
|
@@ -31,23 +31,23 @@
|
|
|
31
31
|
"redis": "^3.1.2",
|
|
32
32
|
"redlock": "^4.2.0",
|
|
33
33
|
"strip-ansi": "^7.1.0",
|
|
34
|
-
"typescript": "^5.8.
|
|
34
|
+
"typescript": "^5.8.3",
|
|
35
35
|
"vitest": "^3.1.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@azure/cosmos": "^4.3.0",
|
|
39
39
|
"@azure/service-bus": "^7.9.5",
|
|
40
|
-
"@effect/experimental": "^0.44.
|
|
41
|
-
"@effect/platform": "^0.80.
|
|
40
|
+
"@effect/experimental": "^0.44.6",
|
|
41
|
+
"@effect/platform": "^0.80.6",
|
|
42
42
|
"@effect/rpc-http": "^0.52.4",
|
|
43
|
-
"@effect/rpc": "^0.55.
|
|
44
|
-
"@effect/sql": "^0.33.
|
|
45
|
-
"@effect/vitest": "^0.20.
|
|
43
|
+
"@effect/rpc": "^0.55.8",
|
|
44
|
+
"@effect/sql": "^0.33.6",
|
|
45
|
+
"@effect/vitest": "^0.20.6",
|
|
46
46
|
"@sendgrid/helpers": "^8.0.0",
|
|
47
47
|
"@sendgrid/mail": "^8.1.4",
|
|
48
48
|
"redis": "^3.1.2",
|
|
49
49
|
"redlock": "^4.2.0",
|
|
50
|
-
"effect": "^3.14.
|
|
50
|
+
"effect": "^3.14.6",
|
|
51
51
|
"express": "^5.1.0"
|
|
52
52
|
},
|
|
53
53
|
"typesVersions": {
|