@effect-agent/platform-cloudflare 0.1.0-beta.28 → 0.1.0-beta.29
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/index.d.mts +8 -8
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -989,6 +989,14 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
989
989
|
} | {
|
|
990
990
|
readonly _tag: "HostFailed";
|
|
991
991
|
readonly failure: {
|
|
992
|
+
readonly _tag: "HostProtocolError";
|
|
993
|
+
readonly message: string;
|
|
994
|
+
} | {
|
|
995
|
+
readonly _tag: "AdmissionLimitExceeded";
|
|
996
|
+
readonly limit: "database-bytes" | "input-bytes" | "queue-depth";
|
|
997
|
+
readonly actual: number;
|
|
998
|
+
readonly maximum: number;
|
|
999
|
+
} | {
|
|
992
1000
|
readonly _tag: "OperationDenied";
|
|
993
1001
|
readonly operation: "explain" | "observe" | "resolveApproval" | "resolveUnknown" | "retry" | "scanObligations" | "verify" | "wake";
|
|
994
1002
|
readonly reason: string;
|
|
@@ -1036,19 +1044,11 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1036
1044
|
} | {
|
|
1037
1045
|
readonly _tag: "DurableRuntimeFailpointError";
|
|
1038
1046
|
readonly location: "abort:after-intent" | "approval:after-request-append" | "approval:after-suspend" | "claim:after-claim" | "compaction:after-canonical-append" | "input:after-canonical-append" | "join:after-canonical-append" | "join:after-claim" | "resolve:after-intent" | "step:after-step-append" | "subagent:after-admit" | "subagent:after-child-abort-intent" | "subagent:after-child-ready" | "subagent:after-join-append" | "subagent:after-release" | "subagent:after-release-pending" | "subagent:after-request-append" | "subagent:after-reserve" | "subagent:after-sibling-settle" | "subagent:after-start-append" | "subagent:after-suspend" | "submit:after-admit" | "submit:after-materialize" | "terminalize:after-canonical-append" | "terminalize:after-reserve" | "tools:after-prepared-append" | "turn:after-canonical-append" | "turn:after-response-append" | "turn:after-results-append";
|
|
1039
|
-
} | {
|
|
1040
|
-
readonly _tag: "AdmissionLimitExceeded";
|
|
1041
|
-
readonly limit: "database-bytes" | "input-bytes" | "queue-depth";
|
|
1042
|
-
readonly actual: number;
|
|
1043
|
-
readonly maximum: number;
|
|
1044
1047
|
} | {
|
|
1045
1048
|
readonly _tag: "DurableAlarmError";
|
|
1046
1049
|
readonly operation: string;
|
|
1047
1050
|
readonly message: string;
|
|
1048
1051
|
readonly cause?: Schema.Json | undefined;
|
|
1049
|
-
} | {
|
|
1050
|
-
readonly _tag: "HostProtocolError";
|
|
1051
|
-
readonly message: string;
|
|
1052
1052
|
} | {
|
|
1053
1053
|
readonly _tag: "SettlementConflict";
|
|
1054
1054
|
readonly submissionId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-agent/platform-cloudflare",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.29",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.mts",
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@effect-agent/core": "0.1.0-beta.
|
|
16
|
-
"@effect-agent/engine": "0.1.0-beta.
|
|
17
|
-
"@effect-agent/sandbox": "0.1.0-beta.
|
|
18
|
-
"@effect-agent/session": "0.1.0-beta.
|
|
19
|
-
"@effect-agent/storage-cloudflare": "0.1.0-beta.
|
|
15
|
+
"@effect-agent/core": "0.1.0-beta.29",
|
|
16
|
+
"@effect-agent/engine": "0.1.0-beta.29",
|
|
17
|
+
"@effect-agent/sandbox": "0.1.0-beta.29",
|
|
18
|
+
"@effect-agent/session": "0.1.0-beta.29",
|
|
19
|
+
"@effect-agent/storage-cloudflare": "0.1.0-beta.29",
|
|
20
20
|
"@effect/platform-browser": "4.0.0-rc.110",
|
|
21
21
|
"@effect/sql-sqlite-do": "4.0.0-rc.110",
|
|
22
22
|
"effect": "4.0.0-rc.110"
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@cloudflare/vitest-pool-workers": "0.21.3",
|
|
49
49
|
"@cloudflare/workers-types": "5.20260813.1",
|
|
50
|
-
"@effect-agent/capabilities": "0.1.0-beta.
|
|
51
|
-
"@effect-agent/testing": "0.1.0-beta.
|
|
50
|
+
"@effect-agent/capabilities": "0.1.0-beta.28",
|
|
51
|
+
"@effect-agent/testing": "0.1.0-beta.28",
|
|
52
52
|
"@effect/vitest": "4.0.0-rc.110",
|
|
53
53
|
"effect-cf": "0.27.0",
|
|
54
54
|
"esbuild": "0.28.1",
|