@effect/cluster 0.56.4 → 0.58.0
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/dist/dts/Message.d.ts +5 -5
- package/dist/dts/Reply.d.ts +3 -3
- package/package.json +6 -6
package/dist/dts/Message.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export type IncomingLocal<R extends Rpc.Any> = IncomingRequestLocal<R> | Incomin
|
|
|
26
26
|
* @category incoming
|
|
27
27
|
*/
|
|
28
28
|
export declare const incomingLocalFromOutgoing: <R extends Rpc.Any>(self: Outgoing<R>) => IncomingLocal<R>;
|
|
29
|
-
declare const IncomingRequest_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
29
|
+
declare const IncomingRequest_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => Readonly<A> & {
|
|
30
30
|
readonly _tag: "IncomingRequest";
|
|
31
31
|
};
|
|
32
32
|
/**
|
|
@@ -39,7 +39,7 @@ export declare class IncomingRequest<R extends Rpc.Any> extends IncomingRequest_
|
|
|
39
39
|
readonly respond: (reply: Reply.ReplyWithContext<R>) => Effect.Effect<void, MalformedMessage | PersistenceError>;
|
|
40
40
|
}> {
|
|
41
41
|
}
|
|
42
|
-
declare const IncomingRequestLocal_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
42
|
+
declare const IncomingRequestLocal_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => Readonly<A> & {
|
|
43
43
|
readonly _tag: "IncomingRequestLocal";
|
|
44
44
|
};
|
|
45
45
|
/**
|
|
@@ -52,7 +52,7 @@ export declare class IncomingRequestLocal<R extends Rpc.Any> extends IncomingReq
|
|
|
52
52
|
readonly respond: (reply: Reply.Reply<R>) => Effect.Effect<void, MalformedMessage | PersistenceError>;
|
|
53
53
|
}> {
|
|
54
54
|
}
|
|
55
|
-
declare const IncomingEnvelope_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
55
|
+
declare const IncomingEnvelope_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => Readonly<A> & {
|
|
56
56
|
readonly _tag: "IncomingEnvelope";
|
|
57
57
|
};
|
|
58
58
|
/**
|
|
@@ -69,7 +69,7 @@ export declare class IncomingEnvelope extends IncomingEnvelope_base<{
|
|
|
69
69
|
* @category outgoing
|
|
70
70
|
*/
|
|
71
71
|
export type Outgoing<R extends Rpc.Any> = OutgoingRequest<R> | OutgoingEnvelope;
|
|
72
|
-
declare const OutgoingRequest_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
72
|
+
declare const OutgoingRequest_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => Readonly<A> & {
|
|
73
73
|
readonly _tag: "OutgoingRequest";
|
|
74
74
|
};
|
|
75
75
|
/**
|
|
@@ -88,7 +88,7 @@ export declare class OutgoingRequest<R extends Rpc.Any> extends OutgoingRequest_
|
|
|
88
88
|
*/
|
|
89
89
|
encodedCache?: Envelope.Request.PartialEncoded;
|
|
90
90
|
}
|
|
91
|
-
declare const OutgoingEnvelope_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
91
|
+
declare const OutgoingEnvelope_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => Readonly<A> & {
|
|
92
92
|
readonly _tag: "OutgoingEnvelope";
|
|
93
93
|
};
|
|
94
94
|
/**
|
package/dist/dts/Reply.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const isReply: (u: unknown) => u is Reply<Rpc.Any>;
|
|
|
30
30
|
* @category models
|
|
31
31
|
*/
|
|
32
32
|
export type Reply<R extends Rpc.Any> = WithExit<R> | Chunk<R>;
|
|
33
|
-
declare const ReplyWithContext_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
33
|
+
declare const ReplyWithContext_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => Readonly<A> & {
|
|
34
34
|
readonly _tag: "ReplyWithContext";
|
|
35
35
|
};
|
|
36
36
|
/**
|
|
@@ -105,7 +105,7 @@ export declare const Encoded: Schema.Union<[Schema.Struct<{
|
|
|
105
105
|
sequence: typeof Schema.Number;
|
|
106
106
|
values: Schema.Array$<typeof Schema.Unknown>;
|
|
107
107
|
}>]>;
|
|
108
|
-
declare const Chunk_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
108
|
+
declare const Chunk_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => Readonly<A> & {
|
|
109
109
|
readonly _tag: "Chunk";
|
|
110
110
|
};
|
|
111
111
|
/**
|
|
@@ -139,7 +139,7 @@ export declare class Chunk<R extends Rpc.Any> extends Chunk_base<{
|
|
|
139
139
|
*/
|
|
140
140
|
withRequestId(requestId: Snowflake): Chunk<R>;
|
|
141
141
|
}
|
|
142
|
-
declare const WithExit_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
142
|
+
declare const WithExit_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => Readonly<A> & {
|
|
143
143
|
readonly _tag: "WithExit";
|
|
144
144
|
};
|
|
145
145
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/cluster",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.58.0",
|
|
4
4
|
"description": "Unified interfaces for common cluster-specific services",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"kubernetes-types": "^1.30.0"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@effect/platform": "^0.
|
|
18
|
-
"@effect/rpc": "^0.
|
|
19
|
-
"@effect/sql": "^0.
|
|
20
|
-
"@effect/workflow": "^0.
|
|
21
|
-
"effect": "^3.
|
|
17
|
+
"@effect/platform": "^0.96.0",
|
|
18
|
+
"@effect/rpc": "^0.75.0",
|
|
19
|
+
"@effect/sql": "^0.51.0",
|
|
20
|
+
"@effect/workflow": "^0.18.0",
|
|
21
|
+
"effect": "^3.21.0"
|
|
22
22
|
},
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"provenance": true
|