@effect-agent/platform-cloudflare 0.1.0-beta.57 → 0.1.0-beta.58
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.
|
@@ -338,13 +338,13 @@ declare const encodeUnknownResolutionCommand: (input: UnknownResolutionCommand,
|
|
|
338
338
|
readonly author: string;
|
|
339
339
|
readonly reason: string;
|
|
340
340
|
readonly resolution: {
|
|
341
|
-
readonly _tag: "SafeToRetry";
|
|
342
|
-
} | {
|
|
343
341
|
readonly _tag: "CompletedWithResult";
|
|
344
342
|
readonly result: Schema.Json;
|
|
345
343
|
readonly isFailure: boolean;
|
|
346
344
|
} | {
|
|
347
345
|
readonly _tag: "NeverHappened";
|
|
346
|
+
} | {
|
|
347
|
+
readonly _tag: "SafeToRetry";
|
|
348
348
|
} | {
|
|
349
349
|
readonly _tag: "AbortSubmission";
|
|
350
350
|
};
|
|
@@ -1046,13 +1046,13 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1046
1046
|
readonly author: string;
|
|
1047
1047
|
readonly reason: string;
|
|
1048
1048
|
readonly resolution: {
|
|
1049
|
-
readonly _tag: "SafeToRetry";
|
|
1050
|
-
} | {
|
|
1051
1049
|
readonly _tag: "CompletedWithResult";
|
|
1052
1050
|
readonly result: Schema.Json;
|
|
1053
1051
|
readonly isFailure: boolean;
|
|
1054
1052
|
} | {
|
|
1055
1053
|
readonly _tag: "NeverHappened";
|
|
1054
|
+
} | {
|
|
1055
|
+
readonly _tag: "SafeToRetry";
|
|
1056
1056
|
} | {
|
|
1057
1057
|
readonly _tag: "AbortSubmission";
|
|
1058
1058
|
};
|
|
@@ -1062,16 +1062,6 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1062
1062
|
} | {
|
|
1063
1063
|
readonly _tag: "HostFailed";
|
|
1064
1064
|
readonly failure: {
|
|
1065
|
-
readonly _tag: "HostProtocolError";
|
|
1066
|
-
readonly message: string;
|
|
1067
|
-
} | {
|
|
1068
|
-
readonly _tag: "AgentInputError";
|
|
1069
|
-
readonly message: string;
|
|
1070
|
-
} | {
|
|
1071
|
-
readonly _tag: "DigestError";
|
|
1072
|
-
readonly message: string;
|
|
1073
|
-
readonly cause?: Schema.Json | undefined;
|
|
1074
|
-
} | {
|
|
1075
1065
|
readonly _tag: "AdmissionConflict";
|
|
1076
1066
|
readonly threadId: string;
|
|
1077
1067
|
readonly principal: string;
|
|
@@ -1086,15 +1076,6 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1086
1076
|
readonly _tag: "SettlementConflict";
|
|
1087
1077
|
readonly submissionId: string;
|
|
1088
1078
|
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
1079
|
} | {
|
|
1099
1080
|
readonly _tag: "JoinedToHost";
|
|
1100
1081
|
readonly submissionId: string;
|
|
@@ -1124,6 +1105,30 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1124
1105
|
readonly threadId: string;
|
|
1125
1106
|
readonly actualEpoch: number;
|
|
1126
1107
|
readonly attemptedEpoch: number;
|
|
1108
|
+
} | {
|
|
1109
|
+
readonly _tag: "DurableAlarmError";
|
|
1110
|
+
readonly operation: string;
|
|
1111
|
+
readonly message: string;
|
|
1112
|
+
readonly cause?: Schema.Json | undefined;
|
|
1113
|
+
} | {
|
|
1114
|
+
readonly _tag: "HostProtocolError";
|
|
1115
|
+
readonly message: string;
|
|
1116
|
+
} | {
|
|
1117
|
+
readonly _tag: "AgentInputError";
|
|
1118
|
+
readonly message: string;
|
|
1119
|
+
} | {
|
|
1120
|
+
readonly _tag: "DigestError";
|
|
1121
|
+
readonly message: string;
|
|
1122
|
+
readonly cause?: Schema.Json | undefined;
|
|
1123
|
+
} | {
|
|
1124
|
+
readonly _tag: "ApprovalConflict";
|
|
1125
|
+
readonly submissionId: string;
|
|
1126
|
+
readonly toolCallId: string;
|
|
1127
|
+
readonly existingDecision: "approved" | "denied";
|
|
1128
|
+
} | {
|
|
1129
|
+
readonly _tag: "UnknownResolutionConflict";
|
|
1130
|
+
readonly submissionId: string;
|
|
1131
|
+
readonly toolCallId: string;
|
|
1127
1132
|
} | {
|
|
1128
1133
|
readonly _tag: "DurableRuntimeFailpointError";
|
|
1129
1134
|
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 +1137,6 @@ declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorded | Hos
|
|
|
1132
1137
|
readonly limit: "database-bytes" | "input-bytes" | "queue-depth";
|
|
1133
1138
|
readonly actual: number;
|
|
1134
1139
|
readonly maximum: number;
|
|
1135
|
-
} | {
|
|
1136
|
-
readonly _tag: "DurableAlarmError";
|
|
1137
|
-
readonly operation: string;
|
|
1138
|
-
readonly message: string;
|
|
1139
|
-
readonly cause?: Schema.Json | undefined;
|
|
1140
1140
|
} | {
|
|
1141
1141
|
readonly _tag: "OperationDenied";
|
|
1142
1142
|
readonly operation: "abort" | "awaitSettlement" | "explain" | "observe" | "resolveApproval" | "resolveUnknown" | "retry" | "scanObligations" | "verify" | "wake";
|
|
@@ -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-D2B36dsI.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-D2B36dsI.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-D2B36dsI.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.58","dependencies":{"@effect-agent/core":"0.1.0-beta.58","@effect-agent/engine":"0.1.0-beta.58","@effect-agent/sandbox":"0.1.0-beta.58","@effect-agent/storage-cloudflare":"0.1.0-beta.58","@effect-agent/thread":"0.1.0-beta.58","@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.58","@effect-agent/testing":"0.1.0-beta.58","@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}}}
|