@effect-agent/storage-cloudflare 0.1.0-beta.12 → 0.1.0-beta.14
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 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -621,6 +621,8 @@ declare const encodePortRequest: (input: LedgerAdmitCall | LedgerLookupCall | Le
|
|
|
621
621
|
readonly runId?: string | undefined;
|
|
622
622
|
readonly result?: Schema.Json | undefined;
|
|
623
623
|
readonly finishReason?: "budget-exhausted" | undefined;
|
|
624
|
+
readonly exhausted?: "tokens" | "tool-calls" | "turns" | undefined;
|
|
625
|
+
readonly policyLimit?: "cost" | "duration" | "repeated-failures" | "tokens" | "tool-calls" | "turns" | "usage" | undefined;
|
|
624
626
|
} | {
|
|
625
627
|
readonly _tag: "SubagentRequested";
|
|
626
628
|
readonly runId: string;
|
|
@@ -807,6 +809,8 @@ declare const encodePortRequest: (input: LedgerAdmitCall | LedgerLookupCall | Le
|
|
|
807
809
|
readonly runId?: string | undefined;
|
|
808
810
|
readonly result?: Schema.Json | undefined;
|
|
809
811
|
readonly finishReason?: "budget-exhausted" | undefined;
|
|
812
|
+
readonly exhausted?: "tokens" | "tool-calls" | "turns" | undefined;
|
|
813
|
+
readonly policyLimit?: "cost" | "duration" | "repeated-failures" | "tokens" | "tool-calls" | "turns" | "usage" | undefined;
|
|
810
814
|
} | {
|
|
811
815
|
readonly _tag: "SubagentRequested";
|
|
812
816
|
readonly runId: string;
|
|
@@ -1122,6 +1126,8 @@ declare const encodePortResponse: (input: PortFailed | PortSucceeded, options?:
|
|
|
1122
1126
|
readonly runId?: string | undefined;
|
|
1123
1127
|
readonly result?: Schema.Json | undefined;
|
|
1124
1128
|
readonly finishReason?: "budget-exhausted" | undefined;
|
|
1129
|
+
readonly exhausted?: "tokens" | "tool-calls" | "turns" | undefined;
|
|
1130
|
+
readonly policyLimit?: "cost" | "duration" | "repeated-failures" | "tokens" | "tool-calls" | "turns" | "usage" | undefined;
|
|
1125
1131
|
} | {
|
|
1126
1132
|
readonly _tag: "SubagentRequested";
|
|
1127
1133
|
readonly runId: string;
|
|
@@ -1330,6 +1336,8 @@ declare const encodePortResponse: (input: PortFailed | PortSucceeded, options?:
|
|
|
1330
1336
|
readonly runId?: string | undefined;
|
|
1331
1337
|
readonly result?: Schema.Json | undefined;
|
|
1332
1338
|
readonly finishReason?: "budget-exhausted" | undefined;
|
|
1339
|
+
readonly exhausted?: "tokens" | "tool-calls" | "turns" | undefined;
|
|
1340
|
+
readonly policyLimit?: "cost" | "duration" | "repeated-failures" | "tokens" | "tool-calls" | "turns" | "usage" | undefined;
|
|
1333
1341
|
} | {
|
|
1334
1342
|
readonly _tag: "SubagentRequested";
|
|
1335
1343
|
readonly runId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-agent/storage-cloudflare",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.14",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.mts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
}
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@effect-agent/session": "0.1.0-beta.
|
|
11
|
+
"@effect-agent/session": "0.1.0-beta.14",
|
|
12
12
|
"@effect/platform-browser": "4.0.0-beta.107",
|
|
13
13
|
"@effect/sql-sqlite-do": "4.0.0-beta.107",
|
|
14
14
|
"effect": "4.0.0-beta.107"
|