@effect-agent/platform-cloudflare 0.1.0-beta.57 → 0.1.0-beta.59
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.
|
@@ -65,6 +65,7 @@ declare const SubmitRequest_base: Schema.Class<SubmitRequest, Schema.Struct<{
|
|
|
65
65
|
readonly agentId: Schema.brand<Schema.NonEmptyString, "@effect-agent/core/AgentId">;
|
|
66
66
|
readonly threadId: Schema.brand<Schema.NonEmptyString, "@effect-agent/core/ThreadId">;
|
|
67
67
|
}>]>;
|
|
68
|
+
readonly budgetScope: Schema.optionalKey<Schema.Literals<readonly ["source-subtree", "worker-run"]>>;
|
|
68
69
|
readonly targetDigests: typeof DefinitionDigests;
|
|
69
70
|
readonly policy: Schema.toCodecJson<typeof import("@effect-agent/core/AgentPolicy").AgentPolicy>;
|
|
70
71
|
readonly budget: Schema.Struct<{
|
|
@@ -215,6 +216,7 @@ declare const encodeSubmitRequest: (input: SubmitRequest, options?: import("effe
|
|
|
215
216
|
readonly agentId: string;
|
|
216
217
|
readonly threadId: string;
|
|
217
218
|
};
|
|
219
|
+
readonly budgetScope?: "source-subtree" | "worker-run" | undefined;
|
|
218
220
|
readonly targetDigests: {
|
|
219
221
|
readonly agent: string;
|
|
220
222
|
readonly model: string;
|
|
@@ -472,6 +474,14 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
472
474
|
readonly createdAt: string;
|
|
473
475
|
readonly deploymentId: string;
|
|
474
476
|
readonly payload: {
|
|
477
|
+
readonly _tag: "SubagentStarted";
|
|
478
|
+
readonly runId: string;
|
|
479
|
+
readonly toolCallId: string;
|
|
480
|
+
readonly childThreadId: string;
|
|
481
|
+
readonly childSubmissionId: string;
|
|
482
|
+
readonly childReceiptId: string;
|
|
483
|
+
readonly childRunId: string;
|
|
484
|
+
} | {
|
|
475
485
|
readonly _tag: "AbortRequested";
|
|
476
486
|
readonly submissionId: string;
|
|
477
487
|
readonly author: string;
|
|
@@ -732,14 +742,6 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
732
742
|
readonly childLifetimes?: readonly ("attached" | "background")[] | undefined;
|
|
733
743
|
} | undefined;
|
|
734
744
|
readonly depth?: number | undefined;
|
|
735
|
-
} | {
|
|
736
|
-
readonly _tag: "SubagentStarted";
|
|
737
|
-
readonly runId: string;
|
|
738
|
-
readonly toolCallId: string;
|
|
739
|
-
readonly childThreadId: string;
|
|
740
|
-
readonly childSubmissionId: string;
|
|
741
|
-
readonly childReceiptId: string;
|
|
742
|
-
readonly childRunId: string;
|
|
743
745
|
} | {
|
|
744
746
|
readonly _tag: "SubagentJoined";
|
|
745
747
|
readonly runId: string;
|
|
@@ -821,6 +823,7 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
821
823
|
readonly agentId: string;
|
|
822
824
|
readonly threadId: string;
|
|
823
825
|
};
|
|
826
|
+
readonly budgetScope?: "source-subtree" | "worker-run" | undefined;
|
|
824
827
|
readonly targetDigests: {
|
|
825
828
|
readonly agent: string;
|
|
826
829
|
readonly model: string;
|
|
@@ -896,6 +899,7 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
896
899
|
readonly agentId: string;
|
|
897
900
|
readonly threadId: string;
|
|
898
901
|
};
|
|
902
|
+
readonly budgetScope?: "source-subtree" | "worker-run" | undefined;
|
|
899
903
|
readonly targetDigests: {
|
|
900
904
|
readonly agent: string;
|
|
901
905
|
readonly model: string;
|
|
@@ -1062,15 +1066,13 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1062
1066
|
} | {
|
|
1063
1067
|
readonly _tag: "HostFailed";
|
|
1064
1068
|
readonly failure: {
|
|
1065
|
-
readonly _tag: "
|
|
1066
|
-
readonly
|
|
1067
|
-
} | {
|
|
1068
|
-
readonly _tag: "AgentInputError";
|
|
1069
|
+
readonly _tag: "DurableAlarmError";
|
|
1070
|
+
readonly operation: string;
|
|
1069
1071
|
readonly message: string;
|
|
1072
|
+
readonly cause?: Schema.Json | undefined;
|
|
1070
1073
|
} | {
|
|
1071
|
-
readonly _tag: "
|
|
1074
|
+
readonly _tag: "HostProtocolError";
|
|
1072
1075
|
readonly message: string;
|
|
1073
|
-
readonly cause?: Schema.Json | undefined;
|
|
1074
1076
|
} | {
|
|
1075
1077
|
readonly _tag: "AdmissionConflict";
|
|
1076
1078
|
readonly threadId: string;
|
|
@@ -1086,15 +1088,6 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1086
1088
|
readonly _tag: "SettlementConflict";
|
|
1087
1089
|
readonly submissionId: string;
|
|
1088
1090
|
readonly existingOutcome: "aborted" | "completed" | "failed";
|
|
1089
|
-
} | {
|
|
1090
|
-
readonly _tag: "ApprovalConflict";
|
|
1091
|
-
readonly submissionId: string;
|
|
1092
|
-
readonly toolCallId: string;
|
|
1093
|
-
readonly existingDecision: "approved" | "denied";
|
|
1094
|
-
} | {
|
|
1095
|
-
readonly _tag: "UnknownResolutionConflict";
|
|
1096
|
-
readonly submissionId: string;
|
|
1097
|
-
readonly toolCallId: string;
|
|
1098
1091
|
} | {
|
|
1099
1092
|
readonly _tag: "JoinedToHost";
|
|
1100
1093
|
readonly submissionId: string;
|
|
@@ -1124,6 +1117,22 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1124
1117
|
readonly threadId: string;
|
|
1125
1118
|
readonly actualEpoch: number;
|
|
1126
1119
|
readonly attemptedEpoch: number;
|
|
1120
|
+
} | {
|
|
1121
|
+
readonly _tag: "AgentInputError";
|
|
1122
|
+
readonly message: string;
|
|
1123
|
+
} | {
|
|
1124
|
+
readonly _tag: "DigestError";
|
|
1125
|
+
readonly message: string;
|
|
1126
|
+
readonly cause?: Schema.Json | undefined;
|
|
1127
|
+
} | {
|
|
1128
|
+
readonly _tag: "ApprovalConflict";
|
|
1129
|
+
readonly submissionId: string;
|
|
1130
|
+
readonly toolCallId: string;
|
|
1131
|
+
readonly existingDecision: "approved" | "denied";
|
|
1132
|
+
} | {
|
|
1133
|
+
readonly _tag: "UnknownResolutionConflict";
|
|
1134
|
+
readonly submissionId: string;
|
|
1135
|
+
readonly toolCallId: string;
|
|
1127
1136
|
} | {
|
|
1128
1137
|
readonly _tag: "DurableRuntimeFailpointError";
|
|
1129
1138
|
readonly location: "abort:after-intent" | "approval:after-request-append" | "approval:after-suspend" | "claim:after-claim" | "compaction:after-canonical-append" | "compaction:before-canonical-append" | "input:after-canonical-append" | "join:after-canonical-append" | "join:after-claim" | "policy:after-reservation-append" | "policy:before-reservation-append" | "resolve:after-intent" | "run:after-start-append" | "run:before-start-append" | "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" | "tools:before-prepared-append" | "turn:after-canonical-append" | "turn:after-response-append" | "turn:after-results-append" | "worker:after-completion-append" | "worker:after-origin-append" | "worker:after-report-append" | "worker:after-report-delivery" | "worker:after-source-append" | "worker:after-subtree-append" | "worker:before-completion-append" | "worker:before-origin-append" | "worker:before-report-append" | "worker:before-report-delivery" | "worker:before-source-append" | "worker:before-subtree-append";
|
|
@@ -1132,11 +1141,6 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1132
1141
|
readonly limit: "database-bytes" | "input-bytes" | "queue-depth";
|
|
1133
1142
|
readonly actual: number;
|
|
1134
1143
|
readonly maximum: number;
|
|
1135
|
-
} | {
|
|
1136
|
-
readonly _tag: "DurableAlarmError";
|
|
1137
|
-
readonly operation: string;
|
|
1138
|
-
readonly message: string;
|
|
1139
|
-
readonly cause?: Schema.Json | undefined;
|
|
1140
1144
|
} | {
|
|
1141
1145
|
readonly _tag: "OperationDenied";
|
|
1142
1146
|
readonly operation: "abort" | "awaitSettlement" | "explain" | "observe" | "resolveApproval" | "resolveUnknown" | "retry" | "scanObligations" | "verify" | "wake";
|
|
@@ -304,13 +304,13 @@ declare const encodeAdminResponse: (input: AdminFailed | ExplainedRecovery | Obl
|
|
|
304
304
|
readonly author: string;
|
|
305
305
|
readonly reason: string;
|
|
306
306
|
readonly resolution: {
|
|
307
|
-
readonly _tag: "SafeToRetry";
|
|
308
|
-
} | {
|
|
309
307
|
readonly _tag: "CompletedWithResult";
|
|
310
308
|
readonly result: Schema.Json;
|
|
311
309
|
readonly isFailure: boolean;
|
|
312
310
|
} | {
|
|
313
311
|
readonly _tag: "NeverHappened";
|
|
312
|
+
} | {
|
|
313
|
+
readonly _tag: "SafeToRetry";
|
|
314
314
|
} | {
|
|
315
315
|
readonly _tag: "AbortSubmission";
|
|
316
316
|
};
|
|
@@ -654,14 +654,38 @@ declare const encodeAdminResponse: (input: AdminFailed | ExplainedRecovery | Obl
|
|
|
654
654
|
readonly reason: "occupied" | "refused" | "unavailable";
|
|
655
655
|
readonly code: string;
|
|
656
656
|
} | {
|
|
657
|
-
readonly _tag: "
|
|
657
|
+
readonly _tag: "OperationDenied";
|
|
658
|
+
readonly operation: "abort" | "awaitSettlement" | "explain" | "observe" | "resolveApproval" | "resolveUnknown" | "retry" | "scanObligations" | "verify" | "wake";
|
|
659
|
+
readonly reason: string;
|
|
660
|
+
readonly threadId?: string | undefined;
|
|
661
|
+
readonly submissionId?: string | undefined;
|
|
662
|
+
} | {
|
|
663
|
+
readonly _tag: "RetryRefused";
|
|
658
664
|
readonly submissionId: string;
|
|
659
|
-
readonly
|
|
665
|
+
readonly refusal: "await-approval-decision" | "await-unknown-resolution" | "settled";
|
|
666
|
+
readonly decisionTag: string;
|
|
667
|
+
readonly message: string;
|
|
660
668
|
} | {
|
|
661
669
|
readonly _tag: "LedgerError";
|
|
662
670
|
readonly operation: string;
|
|
663
671
|
readonly message: string;
|
|
664
672
|
readonly cause?: Schema.Json | undefined;
|
|
673
|
+
} | {
|
|
674
|
+
readonly _tag: "RunJournalError";
|
|
675
|
+
readonly message: string;
|
|
676
|
+
readonly cause?: Schema.Json | undefined;
|
|
677
|
+
} | {
|
|
678
|
+
readonly _tag: "DigestError";
|
|
679
|
+
readonly message: string;
|
|
680
|
+
readonly cause?: Schema.Json | undefined;
|
|
681
|
+
} | {
|
|
682
|
+
readonly _tag: "OwnershipLost";
|
|
683
|
+
readonly submissionId: string;
|
|
684
|
+
readonly actualEpoch: number;
|
|
685
|
+
} | {
|
|
686
|
+
readonly _tag: "SettlementConflict";
|
|
687
|
+
readonly submissionId: string;
|
|
688
|
+
readonly existingOutcome: "aborted" | "completed" | "failed";
|
|
665
689
|
} | {
|
|
666
690
|
readonly _tag: "ThreadStoreError";
|
|
667
691
|
readonly operation: string;
|
|
@@ -682,38 +706,14 @@ declare const encodeAdminResponse: (input: AdminFailed | ExplainedRecovery | Obl
|
|
|
682
706
|
readonly threadId: string;
|
|
683
707
|
readonly actualEpoch: number;
|
|
684
708
|
readonly attemptedEpoch: number;
|
|
709
|
+
} | {
|
|
710
|
+
readonly _tag: "DurableRuntimeFailpointError";
|
|
711
|
+
readonly location: "abort:after-intent" | "approval:after-request-append" | "approval:after-suspend" | "claim:after-claim" | "compaction:after-canonical-append" | "compaction:before-canonical-append" | "input:after-canonical-append" | "join:after-canonical-append" | "join:after-claim" | "policy:after-reservation-append" | "policy:before-reservation-append" | "resolve:after-intent" | "run:after-start-append" | "run:before-start-append" | "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" | "tools:before-prepared-append" | "turn:after-canonical-append" | "turn:after-response-append" | "turn:after-results-append" | "worker:after-completion-append" | "worker:after-origin-append" | "worker:after-report-append" | "worker:after-report-delivery" | "worker:after-source-append" | "worker:after-subtree-append" | "worker:before-completion-append" | "worker:before-origin-append" | "worker:before-report-append" | "worker:before-report-delivery" | "worker:before-source-append" | "worker:before-subtree-append";
|
|
685
712
|
} | {
|
|
686
713
|
readonly _tag: "DurableAlarmError";
|
|
687
714
|
readonly operation: string;
|
|
688
715
|
readonly message: string;
|
|
689
716
|
readonly cause?: Schema.Json | undefined;
|
|
690
|
-
} | {
|
|
691
|
-
readonly _tag: "OperationDenied";
|
|
692
|
-
readonly operation: "abort" | "awaitSettlement" | "explain" | "observe" | "resolveApproval" | "resolveUnknown" | "retry" | "scanObligations" | "verify" | "wake";
|
|
693
|
-
readonly reason: string;
|
|
694
|
-
readonly threadId?: string | undefined;
|
|
695
|
-
readonly submissionId?: string | undefined;
|
|
696
|
-
} | {
|
|
697
|
-
readonly _tag: "RetryRefused";
|
|
698
|
-
readonly submissionId: string;
|
|
699
|
-
readonly refusal: "await-approval-decision" | "await-unknown-resolution" | "settled";
|
|
700
|
-
readonly decisionTag: string;
|
|
701
|
-
readonly message: string;
|
|
702
|
-
} | {
|
|
703
|
-
readonly _tag: "RunJournalError";
|
|
704
|
-
readonly message: string;
|
|
705
|
-
readonly cause?: Schema.Json | undefined;
|
|
706
|
-
} | {
|
|
707
|
-
readonly _tag: "DigestError";
|
|
708
|
-
readonly message: string;
|
|
709
|
-
readonly cause?: Schema.Json | undefined;
|
|
710
|
-
} | {
|
|
711
|
-
readonly _tag: "OwnershipLost";
|
|
712
|
-
readonly submissionId: string;
|
|
713
|
-
readonly actualEpoch: number;
|
|
714
|
-
} | {
|
|
715
|
-
readonly _tag: "DurableRuntimeFailpointError";
|
|
716
|
-
readonly location: "abort:after-intent" | "approval:after-request-append" | "approval:after-suspend" | "claim:after-claim" | "compaction:after-canonical-append" | "compaction:before-canonical-append" | "input:after-canonical-append" | "join:after-canonical-append" | "join:after-claim" | "policy:after-reservation-append" | "policy:before-reservation-append" | "resolve:after-intent" | "run:after-start-append" | "run:before-start-append" | "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" | "tools:before-prepared-append" | "turn:after-canonical-append" | "turn:after-response-append" | "turn:after-results-append" | "worker:after-completion-append" | "worker:after-origin-append" | "worker:after-report-append" | "worker:after-report-delivery" | "worker:after-source-append" | "worker:after-subtree-append" | "worker:before-completion-append" | "worker:before-origin-append" | "worker:before-report-append" | "worker:before-report-delivery" | "worker:before-source-append" | "worker:before-subtree-append";
|
|
717
717
|
} | {
|
|
718
718
|
readonly _tag: "HostProtocolError";
|
|
719
719
|
readonly message: string;
|
|
@@ -755,4 +755,4 @@ interface Class<EventServices = never> {
|
|
|
755
755
|
declare const make: <ApplicationServices, ApplicationError, EventServices = never, EventLayerError = never>(applicationLayer: Layer.Layer<CloudflareDurableRuntimeServices | ApplicationServices, ApplicationError, CloudflareBootstrapServices | DurableObjectState$1.DurableObjectState | WorkerEnvironment | DurableObjectContext | ThreadObjectNamespace>, options: Options<ApplicationServices, EventServices, EventLayerError>) => Class<ApplicationServices | EventServices>;
|
|
756
756
|
//#endregion
|
|
757
757
|
export { CloudflareDurableRuntimeOptions as C, layerConfig as D, layer as E, CloudflareDurableRuntimeInitializationError as S, ThreadPublicationOptions as T, decodeObligationThresholds as _, AdminVerifyRequest as a, make as b, Instance as c, RetryExecuted as d, ThreadObject_d_exports as f, decodeAdminVerifyRequest as g, decodeAdminResponse as h, AdminResponse as i, ObligationsScanned as l, decodeAdminExplainRequest as m, AdminFailed as n, Class as o, VerifiedIntegrity as p, AdminFailure as r, ExplainedRecovery as s, AdminExplainRequest as t, Options as u, decodeRetryCommand as v, CloudflareDurableRuntimeServices as w, CloudflareBootstrapServices as x, encodeAdminResponse as y };
|
|
758
|
-
//# sourceMappingURL=ThreadObject-
|
|
758
|
+
//# sourceMappingURL=ThreadObject-CqehC5VZ.d.mts.map
|
package/dist/ThreadObject.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { C as CloudflareDurableRuntimeOptions, D as layerConfig, E as layer, S as CloudflareDurableRuntimeInitializationError, T as ThreadPublicationOptions, _ as decodeObligationThresholds, a as AdminVerifyRequest, b as make, c as Instance, d as RetryExecuted, g as decodeAdminVerifyRequest, h as decodeAdminResponse, i as AdminResponse, l as ObligationsScanned, m as decodeAdminExplainRequest, n as AdminFailed, o as Class, p as VerifiedIntegrity, r as AdminFailure, s as ExplainedRecovery, t as AdminExplainRequest, u as Options, v as decodeRetryCommand, w as CloudflareDurableRuntimeServices, x as CloudflareBootstrapServices, y as encodeAdminResponse } from "./ThreadObject-
|
|
1
|
+
import { C as CloudflareDurableRuntimeOptions, D as layerConfig, E as layer, S as CloudflareDurableRuntimeInitializationError, T as ThreadPublicationOptions, _ as decodeObligationThresholds, a as AdminVerifyRequest, b as make, c as Instance, d as RetryExecuted, g as decodeAdminVerifyRequest, h as decodeAdminResponse, i as AdminResponse, l as ObligationsScanned, m as decodeAdminExplainRequest, n as AdminFailed, o as Class, p as VerifiedIntegrity, r as AdminFailure, s as ExplainedRecovery, t as AdminExplainRequest, u as Options, v as decodeRetryCommand, w as CloudflareDurableRuntimeServices, x as CloudflareBootstrapServices, y as encodeAdminResponse } from "./ThreadObject-CqehC5VZ.mjs";
|
|
2
2
|
export { AdminExplainRequest, AdminFailed, AdminFailure, AdminResponse, AdminVerifyRequest, type CloudflareBootstrapServices as BootstrapServices, Class, ExplainedRecovery, type CloudflareDurableRuntimeInitializationError as InitializationError, Instance, ObligationsScanned, Options, type ThreadPublicationOptions as PublicationOptions, RetryExecuted, type CloudflareDurableRuntimeOptions as RuntimeOptions, type CloudflareDurableRuntimeServices as Services, VerifiedIntegrity, decodeAdminExplainRequest, decodeAdminResponse, decodeAdminVerifyRequest, decodeObligationThresholds, decodeRetryCommand, encodeAdminResponse, layer, layerConfig, make };
|
package/dist/index.d.mts
CHANGED
|
@@ -7,6 +7,6 @@ import { t as CloudflareMemory_d_exports } from "./CloudflareMemory.mjs";
|
|
|
7
7
|
import { t as CloudflareScheduling_d_exports } from "./CloudflareScheduling.mjs";
|
|
8
8
|
import { t as CloudflareSubscriptions_d_exports } from "./CloudflareSubscriptions.mjs";
|
|
9
9
|
import { t as CloudflareThreadClient_d_exports } from "./CloudflareThreadClient.mjs";
|
|
10
|
-
import { f as ThreadObject_d_exports } from "./ThreadObject-
|
|
10
|
+
import { f as ThreadObject_d_exports } from "./ThreadObject-CqehC5VZ.mjs";
|
|
11
11
|
import { t as WakeScheduler_d_exports } from "./WakeScheduler.mjs";
|
|
12
12
|
export { Alarm_d_exports as Alarm, CloudflareBindings_d_exports as CloudflareBindings, CloudflareBrowser_d_exports as CloudflareBrowser, CloudflareCodeMode_d_exports as CloudflareCodeMode, CloudflareConfig_d_exports as CloudflareConfig, CloudflareMemory_d_exports as CloudflareMemory, CloudflareScheduling_d_exports as CloudflareScheduling, CloudflareSubscriptions_d_exports as CloudflareSubscriptions, CloudflareThreadClient_d_exports as CloudflareThreadClient, ThreadObject_d_exports as ThreadObject, WakeScheduler_d_exports as WakeScheduler };
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@effect-agent/platform-cloudflare","version":"0.1.0-beta.
|
|
1
|
+
{"name":"@effect-agent/platform-cloudflare","version":"0.1.0-beta.59","dependencies":{"@effect-agent/core":"0.1.0-beta.59","@effect-agent/engine":"0.1.0-beta.59","@effect-agent/sandbox":"0.1.0-beta.59","@effect-agent/storage-cloudflare":"0.1.0-beta.59","@effect-agent/thread":"0.1.0-beta.59","@effect/platform-browser":"4.0.0-rc.112","@effect/sql-sqlite-do":"4.0.0-rc.112"},"devDependencies":{"@cloudflare/puppeteer":"1.1.0","@cloudflare/vitest-pool-workers":"0.21.3","@cloudflare/workers-types":"5.20260825.1","@effect-agent/capabilities":"0.1.0-beta.59","@effect-agent/testing":"0.1.0-beta.59","@effect/platform-node":"4.0.0-rc.112","@effect/sql-d1":"4.0.0-rc.112","@effect/vitest":"4.0.0-rc.112","effect":"4.0.0-rc.112","effect-cf":"0.40.0","esbuild":"0.28.1","miniflare":"5.20260811.1-alpha","typescript":"7.0.2","vite-plus":"0.3.0","vitest":"4.1.11"},"peerDependencies":{"@cloudflare/puppeteer":"^1.1.0","effect":"^4.0.0-rc.112","effect-cf":"^0.40.0"},"exports":{".":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"./Alarm":{"types":"./dist/Alarm.d.mts","default":"./dist/Alarm.mjs"},"./BrowserRestCapture":{"types":"./dist/BrowserRestCapture.d.mts","default":"./dist/BrowserRestCapture.mjs"},"./BrowserRestCrawl":{"types":"./dist/BrowserRestCrawl.d.mts","default":"./dist/BrowserRestCrawl.mjs"},"./CloudflareBindings":{"types":"./dist/CloudflareBindings.d.mts","default":"./dist/CloudflareBindings.mjs"},"./CloudflareBrowser":{"types":"./dist/CloudflareBrowser.d.mts","default":"./dist/CloudflareBrowser.mjs"},"./CloudflareCodeMode":{"types":"./dist/CloudflareCodeMode.d.mts","default":"./dist/CloudflareCodeMode.mjs"},"./CloudflareConfig":{"types":"./dist/CloudflareConfig.d.mts","default":"./dist/CloudflareConfig.mjs"},"./CloudflareMemory":{"types":"./dist/CloudflareMemory.d.mts","default":"./dist/CloudflareMemory.mjs"},"./CloudflareScheduling":{"types":"./dist/CloudflareScheduling.d.mts","default":"./dist/CloudflareScheduling.mjs"},"./CloudflareSubscriptions":{"types":"./dist/CloudflareSubscriptions.d.mts","default":"./dist/CloudflareSubscriptions.mjs"},"./CloudflareThreadClient":{"types":"./dist/CloudflareThreadClient.d.mts","default":"./dist/CloudflareThreadClient.mjs"},"./InteractiveBrowser":{"types":"./dist/InteractiveBrowser.d.mts","default":"./dist/InteractiveBrowser.mjs"},"./ProtectedBrowser":{"types":"./dist/ProtectedBrowser.d.mts","default":"./dist/ProtectedBrowser.mjs"},"./ThreadObject":{"types":"./dist/ThreadObject.d.mts","default":"./dist/ThreadObject.mjs"},"./WakeScheduler":{"types":"./dist/WakeScheduler.d.mts","default":"./dist/WakeScheduler.mjs"}},"description":"Cloudflare Layer assembly for Effect Agent: Durable Objects and Browser Run adapters.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/danieljvdm/effect-agent.git","directory":"packages/platform-cloudflare"},"files":["dist","src"],"type":"module","sideEffects":[],"publishConfig":{"access":"public"},"scripts":{"build":"vp pack","check":"tsc --noEmit -p tsconfig.json"},"peerDependenciesMeta":{"@cloudflare/puppeteer":{"optional":true}}}
|