@effect-agent/platform-cloudflare 0.1.0-beta.124 → 0.1.0-beta.125
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.
|
@@ -667,6 +667,14 @@ export declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorde
|
|
|
667
667
|
readonly createdAt: string;
|
|
668
668
|
readonly deploymentId: string;
|
|
669
669
|
readonly payload: {
|
|
670
|
+
readonly _tag: "SubagentStarted";
|
|
671
|
+
readonly runId: string;
|
|
672
|
+
readonly toolCallId: string;
|
|
673
|
+
readonly childThreadId: string;
|
|
674
|
+
readonly childSubmissionId: string;
|
|
675
|
+
readonly childReceiptId: string;
|
|
676
|
+
readonly childRunId: string;
|
|
677
|
+
} | {
|
|
670
678
|
readonly _tag: "ThreadCreated";
|
|
671
679
|
readonly agentId: string;
|
|
672
680
|
readonly definitions: {
|
|
@@ -1083,14 +1091,6 @@ export declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorde
|
|
|
1083
1091
|
readonly childLifetimes?: readonly ("attached" | "background")[] | undefined;
|
|
1084
1092
|
} | undefined;
|
|
1085
1093
|
readonly depth?: number | undefined;
|
|
1086
|
-
} | {
|
|
1087
|
-
readonly _tag: "SubagentStarted";
|
|
1088
|
-
readonly runId: string;
|
|
1089
|
-
readonly toolCallId: string;
|
|
1090
|
-
readonly childThreadId: string;
|
|
1091
|
-
readonly childSubmissionId: string;
|
|
1092
|
-
readonly childReceiptId: string;
|
|
1093
|
-
readonly childRunId: string;
|
|
1094
1094
|
} | {
|
|
1095
1095
|
readonly _tag: "SubagentJoined";
|
|
1096
1096
|
readonly runId: string;
|
|
@@ -1540,6 +1540,11 @@ export declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorde
|
|
|
1540
1540
|
} | {
|
|
1541
1541
|
readonly _tag: "HostFailed";
|
|
1542
1542
|
readonly failure: {
|
|
1543
|
+
readonly _tag: "DurableAlarmError";
|
|
1544
|
+
readonly operation: string;
|
|
1545
|
+
readonly message: string;
|
|
1546
|
+
readonly cause?: Schema.Json | undefined;
|
|
1547
|
+
} | {
|
|
1543
1548
|
readonly _tag: "ThreadNotMaterialized";
|
|
1544
1549
|
readonly threadId: string;
|
|
1545
1550
|
} | {
|
|
@@ -1554,19 +1559,29 @@ export declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorde
|
|
|
1554
1559
|
readonly issueTag?: string | undefined;
|
|
1555
1560
|
readonly sequence?: number | undefined;
|
|
1556
1561
|
} | undefined;
|
|
1557
|
-
} | {
|
|
1558
|
-
readonly _tag: "HostProtocolError";
|
|
1559
|
-
readonly message: string;
|
|
1560
|
-
} | {
|
|
1561
|
-
readonly _tag: "AdmissionLimitExceeded";
|
|
1562
|
-
readonly limit: "database-bytes" | "input-bytes" | "queue-depth";
|
|
1563
|
-
readonly actual: number;
|
|
1564
|
-
readonly maximum: number;
|
|
1565
1562
|
} | {
|
|
1566
1563
|
readonly _tag: "LedgerError";
|
|
1567
1564
|
readonly operation: string;
|
|
1568
1565
|
readonly message: string;
|
|
1569
1566
|
readonly cause?: import("effect-agent/failure-diagnostic").Diagnostic | undefined;
|
|
1567
|
+
} | {
|
|
1568
|
+
readonly _tag: "AppendConflict";
|
|
1569
|
+
readonly threadId: string;
|
|
1570
|
+
readonly batchId: string;
|
|
1571
|
+
readonly reason: "batch-digest" | "record-identity" | "tail";
|
|
1572
|
+
readonly actualTailSequence?: number | undefined;
|
|
1573
|
+
readonly actualTailDigest?: string | undefined;
|
|
1574
|
+
} | {
|
|
1575
|
+
readonly _tag: "FenceRejected";
|
|
1576
|
+
readonly threadId: string;
|
|
1577
|
+
readonly actualEpoch: number;
|
|
1578
|
+
readonly attemptedEpoch: number;
|
|
1579
|
+
} | {
|
|
1580
|
+
readonly _tag: "OperationDenied";
|
|
1581
|
+
readonly operation: "abort" | "awaitSettlement" | "explain" | "observe" | "resolveApproval" | "resolveUnknown" | "retry" | "scanObligations" | "verify" | "wake";
|
|
1582
|
+
readonly reason: string;
|
|
1583
|
+
readonly threadId?: string | undefined;
|
|
1584
|
+
readonly submissionId?: string | undefined;
|
|
1570
1585
|
} | {
|
|
1571
1586
|
readonly _tag: "AdmissionConflict";
|
|
1572
1587
|
readonly threadId: string;
|
|
@@ -1583,36 +1598,13 @@ export declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorde
|
|
|
1583
1598
|
} | {
|
|
1584
1599
|
readonly _tag: "AgentInputError";
|
|
1585
1600
|
readonly message: string;
|
|
1586
|
-
} | {
|
|
1587
|
-
readonly _tag: "AppendConflict";
|
|
1588
|
-
readonly threadId: string;
|
|
1589
|
-
readonly batchId: string;
|
|
1590
|
-
readonly reason: "batch-digest" | "record-identity" | "tail";
|
|
1591
|
-
readonly actualTailSequence?: number | undefined;
|
|
1592
|
-
readonly actualTailDigest?: string | undefined;
|
|
1593
1601
|
} | {
|
|
1594
1602
|
readonly _tag: "DigestError";
|
|
1595
1603
|
readonly message: string;
|
|
1596
1604
|
readonly cause?: Schema.Json | undefined;
|
|
1597
|
-
} | {
|
|
1598
|
-
readonly _tag: "DurableAlarmError";
|
|
1599
|
-
readonly operation: string;
|
|
1600
|
-
readonly message: string;
|
|
1601
|
-
readonly cause?: Schema.Json | undefined;
|
|
1602
1605
|
} | {
|
|
1603
1606
|
readonly _tag: "DurableRuntimeFailpointError";
|
|
1604
1607
|
readonly location: "abort:after-intent" | "approval:after-request-append" | "approval:after-suspend" | "checkpoint:after-save" | "checkpoint:before-save" | "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-duration-append" | "run:after-start-append" | "run:before-duration-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" | "subagent:before-join-append" | "submit:after-admit" | "submit:after-materialize" | "terminalize:after-canonical-append" | "terminalize:after-reserve" | "tools:after-prepared-append" | "tools:after-unavailable-append" | "tools:before-prepared-append" | "tools:before-unavailable-append" | "turn:after-canonical-append" | "turn:after-response-append" | "turn:after-results-append" | "update:after-canonical-append" | "update:after-delivery-insert" | "update:before-canonical-append" | "update:before-delivery-insert" | "worker:after-completion-append" | "worker:after-origin-append" | "worker:after-report-append" | "worker:after-report-delivery" | "worker:after-source-append" | "worker:after-stop-append" | "worker:after-stop-seal" | "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-stop-append" | "worker:before-stop-seal" | "worker:before-subtree-append";
|
|
1605
|
-
} | {
|
|
1606
|
-
readonly _tag: "FenceRejected";
|
|
1607
|
-
readonly threadId: string;
|
|
1608
|
-
readonly actualEpoch: number;
|
|
1609
|
-
readonly attemptedEpoch: number;
|
|
1610
|
-
} | {
|
|
1611
|
-
readonly _tag: "OperationDenied";
|
|
1612
|
-
readonly operation: "abort" | "awaitSettlement" | "explain" | "observe" | "resolveApproval" | "resolveUnknown" | "retry" | "scanObligations" | "verify" | "wake";
|
|
1613
|
-
readonly reason: string;
|
|
1614
|
-
readonly threadId?: string | undefined;
|
|
1615
|
-
readonly submissionId?: string | undefined;
|
|
1616
1608
|
} | {
|
|
1617
1609
|
readonly _tag: "SettlementConflict";
|
|
1618
1610
|
readonly submissionId: string;
|
|
@@ -1621,6 +1613,14 @@ export declare const encodeHostResponse: (input: AbortRecorded | ApprovalRecorde
|
|
|
1621
1613
|
readonly _tag: "JoinedToHost";
|
|
1622
1614
|
readonly submissionId: string;
|
|
1623
1615
|
readonly hostSubmissionId: string;
|
|
1616
|
+
} | {
|
|
1617
|
+
readonly _tag: "AdmissionLimitExceeded";
|
|
1618
|
+
readonly limit: "database-bytes" | "input-bytes" | "queue-depth";
|
|
1619
|
+
readonly actual: number;
|
|
1620
|
+
readonly maximum: number;
|
|
1621
|
+
} | {
|
|
1622
|
+
readonly _tag: "HostProtocolError";
|
|
1623
|
+
readonly message: string;
|
|
1624
1624
|
} | {
|
|
1625
1625
|
readonly _tag: "ApprovalConflict";
|
|
1626
1626
|
readonly submissionId: string;
|
|
@@ -705,6 +705,11 @@ declare const encodeAdminResponse: (input: AdminFailed | ExplainedRecovery | Obl
|
|
|
705
705
|
} | {
|
|
706
706
|
readonly _tag: "AdminFailed";
|
|
707
707
|
readonly failure: {
|
|
708
|
+
readonly _tag: "DurableAlarmError";
|
|
709
|
+
readonly operation: string;
|
|
710
|
+
readonly message: string;
|
|
711
|
+
readonly cause?: Schema.Json | undefined;
|
|
712
|
+
} | {
|
|
708
713
|
readonly _tag: "ThreadNotMaterialized";
|
|
709
714
|
readonly threadId: string;
|
|
710
715
|
} | {
|
|
@@ -719,20 +724,11 @@ declare const encodeAdminResponse: (input: AdminFailed | ExplainedRecovery | Obl
|
|
|
719
724
|
readonly issueTag?: string | undefined;
|
|
720
725
|
readonly sequence?: number | undefined;
|
|
721
726
|
} | undefined;
|
|
722
|
-
} | {
|
|
723
|
-
readonly _tag: "HostProtocolError";
|
|
724
|
-
readonly message: string;
|
|
725
727
|
} | {
|
|
726
728
|
readonly _tag: "LedgerError";
|
|
727
729
|
readonly operation: string;
|
|
728
730
|
readonly message: string;
|
|
729
731
|
readonly cause?: import("effect-agent/failure-diagnostic").Diagnostic | undefined;
|
|
730
|
-
} | {
|
|
731
|
-
readonly _tag: "AdmissionPolicyError";
|
|
732
|
-
readonly reason: "occupied" | "refused" | "unavailable";
|
|
733
|
-
readonly code: string;
|
|
734
|
-
readonly cause?: import("effect-agent/failure-diagnostic").Diagnostic | undefined;
|
|
735
|
-
readonly stack?: string | undefined;
|
|
736
732
|
} | {
|
|
737
733
|
readonly _tag: "AppendConflict";
|
|
738
734
|
readonly threadId: string;
|
|
@@ -740,26 +736,11 @@ declare const encodeAdminResponse: (input: AdminFailed | ExplainedRecovery | Obl
|
|
|
740
736
|
readonly reason: "batch-digest" | "record-identity" | "tail";
|
|
741
737
|
readonly actualTailSequence?: number | undefined;
|
|
742
738
|
readonly actualTailDigest?: string | undefined;
|
|
743
|
-
} | {
|
|
744
|
-
readonly _tag: "DigestError";
|
|
745
|
-
readonly message: string;
|
|
746
|
-
readonly cause?: Schema.Json | undefined;
|
|
747
|
-
} | {
|
|
748
|
-
readonly _tag: "DurableAlarmError";
|
|
749
|
-
readonly operation: string;
|
|
750
|
-
readonly message: string;
|
|
751
|
-
readonly cause?: Schema.Json | undefined;
|
|
752
|
-
} | {
|
|
753
|
-
readonly _tag: "DurableRuntimeFailpointError";
|
|
754
|
-
readonly location: "abort:after-intent" | "approval:after-request-append" | "approval:after-suspend" | "checkpoint:after-save" | "checkpoint:before-save" | "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-duration-append" | "run:after-start-append" | "run:before-duration-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" | "subagent:before-join-append" | "submit:after-admit" | "submit:after-materialize" | "terminalize:after-canonical-append" | "terminalize:after-reserve" | "tools:after-prepared-append" | "tools:after-unavailable-append" | "tools:before-prepared-append" | "tools:before-unavailable-append" | "turn:after-canonical-append" | "turn:after-response-append" | "turn:after-results-append" | "update:after-canonical-append" | "update:after-delivery-insert" | "update:before-canonical-append" | "update:before-delivery-insert" | "worker:after-completion-append" | "worker:after-origin-append" | "worker:after-report-append" | "worker:after-report-delivery" | "worker:after-source-append" | "worker:after-stop-append" | "worker:after-stop-seal" | "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-stop-append" | "worker:before-stop-seal" | "worker:before-subtree-append";
|
|
755
739
|
} | {
|
|
756
740
|
readonly _tag: "FenceRejected";
|
|
757
741
|
readonly threadId: string;
|
|
758
742
|
readonly actualEpoch: number;
|
|
759
743
|
readonly attemptedEpoch: number;
|
|
760
|
-
} | {
|
|
761
|
-
readonly _tag: "ApprovalSuspensionError";
|
|
762
|
-
readonly cause: Schema.Json;
|
|
763
744
|
} | {
|
|
764
745
|
readonly _tag: "OperationDenied";
|
|
765
746
|
readonly operation: "abort" | "awaitSettlement" | "explain" | "observe" | "resolveApproval" | "resolveUnknown" | "retry" | "scanObligations" | "verify" | "wake";
|
|
@@ -767,23 +748,42 @@ declare const encodeAdminResponse: (input: AdminFailed | ExplainedRecovery | Obl
|
|
|
767
748
|
readonly threadId?: string | undefined;
|
|
768
749
|
readonly submissionId?: string | undefined;
|
|
769
750
|
} | {
|
|
770
|
-
readonly _tag: "
|
|
771
|
-
readonly
|
|
772
|
-
readonly
|
|
773
|
-
readonly
|
|
774
|
-
readonly
|
|
751
|
+
readonly _tag: "AdmissionPolicyError";
|
|
752
|
+
readonly reason: "occupied" | "refused" | "unavailable";
|
|
753
|
+
readonly code: string;
|
|
754
|
+
readonly cause?: import("effect-agent/failure-diagnostic").Diagnostic | undefined;
|
|
755
|
+
readonly stack?: string | undefined;
|
|
775
756
|
} | {
|
|
776
|
-
readonly _tag: "
|
|
757
|
+
readonly _tag: "DigestError";
|
|
777
758
|
readonly message: string;
|
|
778
759
|
readonly cause?: Schema.Json | undefined;
|
|
760
|
+
} | {
|
|
761
|
+
readonly _tag: "DurableRuntimeFailpointError";
|
|
762
|
+
readonly location: "abort:after-intent" | "approval:after-request-append" | "approval:after-suspend" | "checkpoint:after-save" | "checkpoint:before-save" | "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-duration-append" | "run:after-start-append" | "run:before-duration-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" | "subagent:before-join-append" | "submit:after-admit" | "submit:after-materialize" | "terminalize:after-canonical-append" | "terminalize:after-reserve" | "tools:after-prepared-append" | "tools:after-unavailable-append" | "tools:before-prepared-append" | "tools:before-unavailable-append" | "turn:after-canonical-append" | "turn:after-response-append" | "turn:after-results-append" | "update:after-canonical-append" | "update:after-delivery-insert" | "update:before-canonical-append" | "update:before-delivery-insert" | "worker:after-completion-append" | "worker:after-origin-append" | "worker:after-report-append" | "worker:after-report-delivery" | "worker:after-source-append" | "worker:after-stop-append" | "worker:after-stop-seal" | "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-stop-append" | "worker:before-stop-seal" | "worker:before-subtree-append";
|
|
763
|
+
} | {
|
|
764
|
+
readonly _tag: "SettlementConflict";
|
|
765
|
+
readonly submissionId: string;
|
|
766
|
+
readonly existingOutcome: "aborted" | "completed" | "failed";
|
|
767
|
+
} | {
|
|
768
|
+
readonly _tag: "ApprovalSuspensionError";
|
|
769
|
+
readonly cause: Schema.Json;
|
|
779
770
|
} | {
|
|
780
771
|
readonly _tag: "OwnershipLost";
|
|
781
772
|
readonly submissionId: string;
|
|
782
773
|
readonly actualEpoch: number;
|
|
783
774
|
} | {
|
|
784
|
-
readonly _tag: "
|
|
775
|
+
readonly _tag: "RunJournalError";
|
|
776
|
+
readonly message: string;
|
|
777
|
+
readonly cause?: Schema.Json | undefined;
|
|
778
|
+
} | {
|
|
779
|
+
readonly _tag: "HostProtocolError";
|
|
780
|
+
readonly message: string;
|
|
781
|
+
} | {
|
|
782
|
+
readonly _tag: "RetryRefused";
|
|
785
783
|
readonly submissionId: string;
|
|
786
|
-
readonly
|
|
784
|
+
readonly refusal: "await-approval-decision" | "await-unknown-resolution" | "settled";
|
|
785
|
+
readonly decisionTag: string;
|
|
786
|
+
readonly message: string;
|
|
787
787
|
};
|
|
788
788
|
}, Schema.SchemaError, never>;
|
|
789
789
|
declare const decodeAdminResponse: (input: unknown, options?: import("effect/SchemaAST").ParseOptions) => Effect.Effect<AdminFailed | ExplainedRecovery | ObligationsScanned | RetryExecuted | VerifiedIntegrity, Schema.SchemaError, never>;
|
|
@@ -836,4 +836,4 @@ interface Class<EventServices = never> {
|
|
|
836
836
|
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>;
|
|
837
837
|
//#endregion
|
|
838
838
|
export { ThreadPublicationOptions as A, portCall as C, CloudflareDurableRuntimeOptions as D, CloudflareDurableRuntimeInitializationError as E, layerConfig as M, layerHostConfig as N, CloudflareDurableRuntimeServices as O, layerInHost as P, make as S, CloudflareBootstrapServices as T, decodeAdminVerifyRequest as _, AdminVerifyRequest as a, encodeAdminResponse as b, Instance as c, RetryExecuted as d, ThreadObject_d_exports as f, decodeAdminResponse as g, decodeAdminExplainRequest as h, AdminResponse as i, layer as j, ThreadObjectPorts as k, ObligationsScanned as l, VerifiedIntegrity as m, AdminFailed as n, Class as o, ThreadRpcOperation as p, AdminFailure as r, ExplainedRecovery as s, AdminExplainRequest as t, Options as u, decodeObligationThresholds as v, submit as w, handleRpc as x, decodeRetryCommand as y };
|
|
839
|
-
//# sourceMappingURL=ThreadObject-
|
|
839
|
+
//# sourceMappingURL=ThreadObject-BTo1jqab.d.mts.map
|
package/dist/ThreadObject.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { A as ThreadPublicationOptions, C as portCall, D as CloudflareDurableRuntimeOptions, E as CloudflareDurableRuntimeInitializationError, M as layerConfig, N as layerHostConfig, O as CloudflareDurableRuntimeServices, P as layerInHost, S as make, T as CloudflareBootstrapServices, _ as decodeAdminVerifyRequest, a as AdminVerifyRequest, b as encodeAdminResponse, c as Instance, d as RetryExecuted, g as decodeAdminResponse, h as decodeAdminExplainRequest, i as AdminResponse, j as layer, k as ThreadObjectPorts, l as ObligationsScanned, m as VerifiedIntegrity, n as AdminFailed, o as Class, p as ThreadRpcOperation, r as AdminFailure, s as ExplainedRecovery, t as AdminExplainRequest, u as Options, v as decodeObligationThresholds, w as submit, x as handleRpc, y as decodeRetryCommand } from "./ThreadObject-
|
|
1
|
+
import { A as ThreadPublicationOptions, C as portCall, D as CloudflareDurableRuntimeOptions, E as CloudflareDurableRuntimeInitializationError, M as layerConfig, N as layerHostConfig, O as CloudflareDurableRuntimeServices, P as layerInHost, S as make, T as CloudflareBootstrapServices, _ as decodeAdminVerifyRequest, a as AdminVerifyRequest, b as encodeAdminResponse, c as Instance, d as RetryExecuted, g as decodeAdminResponse, h as decodeAdminExplainRequest, i as AdminResponse, j as layer, k as ThreadObjectPorts, l as ObligationsScanned, m as VerifiedIntegrity, n as AdminFailed, o as Class, p as ThreadRpcOperation, r as AdminFailure, s as ExplainedRecovery, t as AdminExplainRequest, u as Options, v as decodeObligationThresholds, w as submit, x as handleRpc, y as decodeRetryCommand } from "./ThreadObject-BTo1jqab.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, ThreadObjectPorts, ThreadRpcOperation, VerifiedIntegrity, decodeAdminExplainRequest, decodeAdminResponse, decodeAdminVerifyRequest, decodeObligationThresholds, decodeRetryCommand, encodeAdminResponse, handleRpc, layer, layerConfig, layerHostConfig, layerInHost, make, portCall, submit };
|
package/dist/index.d.mts
CHANGED
|
@@ -10,6 +10,6 @@ import { t as CloudflareMemory_d_exports } from "./CloudflareMemory.mjs";
|
|
|
10
10
|
import { t as CloudflareScheduling_d_exports } from "./CloudflareScheduling.mjs";
|
|
11
11
|
import { t as CloudflareSubscriptions_d_exports } from "./CloudflareSubscriptions.mjs";
|
|
12
12
|
import { t as CloudflareThreadClient_d_exports } from "./CloudflareThreadClient.mjs";
|
|
13
|
-
import { f as ThreadObject_d_exports } from "./ThreadObject-
|
|
13
|
+
import { f as ThreadObject_d_exports } from "./ThreadObject-BTo1jqab.mjs";
|
|
14
14
|
import { t as WakeScheduler_d_exports } from "./WakeScheduler.mjs";
|
|
15
15
|
export { Alarm_d_exports as Alarm, BrowserCredentials_d_exports as BrowserCredentials, BrowserSession_d_exports as BrowserSession, CloudflareAiGateway_d_exports as CloudflareAiGateway, 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.125","dependencies":{"@effect-agent/storage-cloudflare":"0.1.0-beta.125","@effect/platform-browser":"4.0.0-rc.116","@effect/sql-sqlite-do":"4.0.0-rc.116","effect-agent":"0.1.0-beta.125","puppeteer-core":"24.29.0"},"devDependencies":{"@cloudflare/vitest-pool-workers":"0.21.3","@cloudflare/workers-types":"5.20260825.1","@effect-agent/testing":"0.1.0-beta.125","@effect/platform-node":"4.0.0-rc.116","@effect/sql-d1":"4.0.0-rc.116","@effect/vitest":"4.0.0-rc.116","effect":"4.0.0-rc.116","effect-cf":"0.44.1","esbuild":"0.28.1","miniflare":"5.20260811.1-alpha","typescript":"7.0.2","vite-plus":"0.3.2","vitest":"4.1.11"},"peerDependencies":{"effect":"^4.0.0-rc.116","effect-cf":"^0.44.1 || ^0.45.0"},"exports":{".":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"./alarm":{"types":"./dist/Alarm.d.mts","default":"./dist/Alarm.mjs"},"./browser-rest-capture":{"types":"./dist/BrowserRestCapture.d.mts","default":"./dist/BrowserRestCapture.mjs"},"./browser-rest-crawl":{"types":"./dist/BrowserRestCrawl.d.mts","default":"./dist/BrowserRestCrawl.mjs"},"./cloudflare-bindings":{"types":"./dist/CloudflareBindings.d.mts","default":"./dist/CloudflareBindings.mjs"},"./cloudflare-browser":{"types":"./dist/CloudflareBrowser.d.mts","default":"./dist/CloudflareBrowser.mjs"},"./cloudflare-code-mode":{"types":"./dist/CloudflareCodeMode.d.mts","default":"./dist/CloudflareCodeMode.mjs"},"./cloudflare-config":{"types":"./dist/CloudflareConfig.d.mts","default":"./dist/CloudflareConfig.mjs"},"./cloudflare-memory":{"types":"./dist/CloudflareMemory.d.mts","default":"./dist/CloudflareMemory.mjs"},"./cloudflare-scheduling":{"types":"./dist/CloudflareScheduling.d.mts","default":"./dist/CloudflareScheduling.mjs"},"./cloudflare-subscriptions":{"types":"./dist/CloudflareSubscriptions.d.mts","default":"./dist/CloudflareSubscriptions.mjs"},"./cloudflare-thread-client":{"types":"./dist/CloudflareThreadClient.d.mts","default":"./dist/CloudflareThreadClient.mjs"},"./interactive-browser":{"types":"./dist/InteractiveBrowser.d.mts","default":"./dist/InteractiveBrowser.mjs"},"./browser-session":{"types":"./dist/BrowserSession.d.mts","default":"./dist/BrowserSession.mjs"},"./browser-credentials":{"types":"./dist/BrowserCredentials.d.mts","default":"./dist/BrowserCredentials.mjs"},"./thread-object":{"types":"./dist/ThreadObject.d.mts","default":"./dist/ThreadObject.mjs"},"./wake-scheduler":{"types":"./dist/WakeScheduler.d.mts","default":"./dist/WakeScheduler.mjs"},"./cloudflare-ai-gateway":{"types":"./dist/CloudflareAiGateway.d.mts","default":"./dist/CloudflareAiGateway.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"}}
|