@effect-agent/storage-cloudflare 0.0.1-beta.6 → 0.1.0-beta.6

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +4 -0
  2. package/package.json +2 -2
package/dist/index.d.mts CHANGED
@@ -615,6 +615,7 @@ declare const encodePortRequest: (input: LedgerAdmitCall | LedgerLookupCall | Le
615
615
  readonly outcome: "aborted" | "completed" | "failed";
616
616
  readonly runId?: string | undefined;
617
617
  readonly result?: Schema.Json | undefined;
618
+ readonly finishReason?: "budget-exhausted" | undefined;
618
619
  } | {
619
620
  readonly _tag: "SubagentRequested";
620
621
  readonly runId: string;
@@ -795,6 +796,7 @@ declare const encodePortRequest: (input: LedgerAdmitCall | LedgerLookupCall | Le
795
796
  readonly outcome: "aborted" | "completed" | "failed";
796
797
  readonly runId?: string | undefined;
797
798
  readonly result?: Schema.Json | undefined;
799
+ readonly finishReason?: "budget-exhausted" | undefined;
798
800
  } | {
799
801
  readonly _tag: "SubagentRequested";
800
802
  readonly runId: string;
@@ -1104,6 +1106,7 @@ declare const encodePortResponse: (input: PortFailed | PortSucceeded, options?:
1104
1106
  readonly outcome: "aborted" | "completed" | "failed";
1105
1107
  readonly runId?: string | undefined;
1106
1108
  readonly result?: Schema.Json | undefined;
1109
+ readonly finishReason?: "budget-exhausted" | undefined;
1107
1110
  } | {
1108
1111
  readonly _tag: "SubagentRequested";
1109
1112
  readonly runId: string;
@@ -1306,6 +1309,7 @@ declare const encodePortResponse: (input: PortFailed | PortSucceeded, options?:
1306
1309
  readonly outcome: "aborted" | "completed" | "failed";
1307
1310
  readonly runId?: string | undefined;
1308
1311
  readonly result?: Schema.Json | undefined;
1312
+ readonly finishReason?: "budget-exhausted" | undefined;
1309
1313
  } | {
1310
1314
  readonly _tag: "SubagentRequested";
1311
1315
  readonly runId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-agent/storage-cloudflare",
3
- "version": "0.0.1-beta.6",
3
+ "version": "0.1.0-beta.6",
4
4
  "description": "Durable Object SQLite storage adapters and the routed port protocol for Effect Agent on Cloudflare.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -28,7 +28,7 @@
28
28
  "test": "vitest run"
29
29
  },
30
30
  "dependencies": {
31
- "@effect-agent/session": "0.0.1-beta.6",
31
+ "@effect-agent/session": "0.1.0-beta.6",
32
32
  "@effect/platform-browser": "4.0.0-beta.107",
33
33
  "@effect/sql-sqlite-do": "4.0.0-beta.107",
34
34
  "effect": "4.0.0-beta.107"