@effect-app/infra 1.13.3 → 1.13.5

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,25 @@
1
1
  # @effect-app/infra
2
2
 
3
+ ## 1.13.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [056f293]
8
+ - effect-app@1.12.0
9
+ - @effect-app/schema@1.9.0
10
+ - @effect-app/infra-adapters@1.8.7
11
+
12
+ ## 1.13.4
13
+
14
+ ### Patch Changes
15
+
16
+ - fix
17
+ - Updated dependencies
18
+ - @effect-app/core@1.7.2
19
+ - @effect-app/infra-adapters@1.8.6
20
+ - effect-app@1.11.3
21
+ - @effect-app/schema@1.8.1
22
+
3
23
  ## 1.13.3
4
24
 
5
25
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  import { NonEmptyString255 } from "@effect-app/schema";
2
2
  import { S } from "effect-app";
3
3
  declare const RequestContextParent_base: S.EnhancedClass<RequestContextParent, {
4
- readonly _tag: S.Literal<["RequestContext"]>;
4
+ readonly _tag: S.tag<"RequestContext">;
5
5
  } & {
6
6
  id: S.WithDefaults<S.Schema<NonEmptyString255, string, never> & {
7
7
  make: () => NonEmptyString255;
@@ -34,7 +34,7 @@ declare const RequestContextParent_base: S.EnhancedClass<RequestContextParent, {
34
34
  export declare class RequestContextParent extends RequestContextParent_base {
35
35
  }
36
36
  declare const RequestContext_base: S.EnhancedClass<RequestContext, {
37
- readonly _tag: S.Literal<["RequestContext"]>;
37
+ readonly _tag: S.tag<"RequestContext">;
38
38
  } & {
39
39
  id: S.PropertySignature<":", string & S.NonEmptyString255Brand, never, ":", string, true, never>;
40
40
  rootId: S.WithDefaults<S.Schema<NonEmptyString255, string, never> & {
@@ -13,7 +13,7 @@ export declare function makeServiceBusQueue<Evt extends {
13
13
  id: StringId;
14
14
  _tag: string;
15
15
  }, EvtE, DrainEvtE>(queueName: string, queueDrainName: string, schema: S.Schema<Evt, EvtE>, drainSchema: S.Schema<DrainEvt, DrainEvtE>): Effect.Effect<{
16
- drain: <DrainE, DrainR>(handleEvent: (ks: DrainEvt) => Effect<void, DrainE, DrainR>, sessionId?: string) => Effect.Effect<never, never, RequestContextContainer | import("effect/Scope").Scope | import("../Store/ContextMapContainer.js").ContextMapContainer | Exclude<Exclude<Exclude<Exclude<DrainR, Tracer.ParentSpan>, never>, Tracer.ParentSpan>, ServiceBusReceiverFactory>>;
16
+ drain: <DrainE, DrainR>(handleEvent: (ks: DrainEvt) => Effect<void, DrainE, DrainR>, sessionId?: string) => Effect.Effect<never, never, import("effect/Scope").Scope | RequestContextContainer | import("../Store/ContextMapContainer.js").ContextMapContainer | Exclude<Exclude<Exclude<Exclude<DrainR, Tracer.ParentSpan>, never>, Tracer.ParentSpan>, ServiceBusReceiverFactory>>;
17
17
  publish: (messages_0: Evt, ...messages_1: Evt[]) => Effect.Effect<void, never, never>;
18
18
  }, never, RequestContextContainer | ServiceBusReceiverFactory | import("@azure/service-bus").ServiceBusSender>;
19
19
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-app/infra",
3
- "version": "1.13.3",
3
+ "version": "1.13.5",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "dependencies": {
@@ -18,10 +18,10 @@
18
18
  "proper-lockfile": "^4.1.2",
19
19
  "pure-rand": "6.1.0",
20
20
  "redlock": "^4.2.0",
21
- "@effect-app/core": "1.7.1",
22
- "@effect-app/infra-adapters": "1.8.5",
23
- "effect-app": "1.11.2",
24
- "@effect-app/schema": "1.8.0"
21
+ "@effect-app/core": "1.7.2",
22
+ "effect-app": "1.12.0",
23
+ "@effect-app/schema": "1.9.0",
24
+ "@effect-app/infra-adapters": "1.8.7"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@babel/cli": "^7.25.6",