@intentic/sandbox-contract 1.230.3 → 1.232.0
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/README.md +11 -0
- package/dist/contracts/agent.contract.d.ts +53 -6
- package/dist/contracts/agent.contract.d.ts.map +1 -1
- package/dist/contracts/agent.contract.js +10 -1
- package/dist/contracts/agent.contract.js.map +1 -1
- package/dist/contracts/agents.contract.d.ts +6 -1
- package/dist/contracts/agents.contract.d.ts.map +1 -1
- package/dist/contracts/capabilities.contract.d.ts +293 -0
- package/dist/contracts/capabilities.contract.d.ts.map +1 -1
- package/dist/contracts/capabilities.contract.js +10 -1
- package/dist/contracts/capabilities.contract.js.map +1 -1
- package/dist/contracts/extensions.contract.d.ts +15 -0
- package/dist/contracts/extensions.contract.d.ts.map +1 -1
- package/dist/contracts/git.contract.d.ts +12 -2
- package/dist/contracts/git.contract.d.ts.map +1 -1
- package/dist/contracts/history.contract.d.ts +6 -1
- package/dist/contracts/history.contract.d.ts.map +1 -1
- package/dist/contracts/host.contract.d.ts +4 -0
- package/dist/contracts/host.contract.d.ts.map +1 -1
- package/dist/contracts/panels.contract.d.ts +1 -0
- package/dist/contracts/panels.contract.d.ts.map +1 -1
- package/dist/contracts/runner.contract.d.ts +876 -0
- package/dist/contracts/runner.contract.d.ts.map +1 -0
- package/dist/contracts/runner.contract.js +17 -0
- package/dist/contracts/runner.contract.js.map +1 -0
- package/dist/contracts/system.contract.d.ts +6 -3
- package/dist/contracts/system.contract.d.ts.map +1 -1
- package/dist/definition.d.ts +961 -0
- package/dist/definition.d.ts.map +1 -0
- package/dist/definition.js +71 -0
- package/dist/definition.js.map +1 -0
- package/dist/documents.d.ts +7 -0
- package/dist/documents.d.ts.map +1 -0
- package/dist/documents.js +27 -0
- package/dist/documents.js.map +1 -0
- package/dist/events.d.ts +66 -6
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +17 -1
- package/dist/events.js.map +1 -1
- package/dist/history-state.d.ts.map +1 -1
- package/dist/history-state.js +3 -0
- package/dist/history-state.js.map +1 -1
- package/dist/index.d.ts +396 -13
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/runner-protocol.d.ts +134 -0
- package/dist/runner-protocol.d.ts.map +1 -0
- package/dist/runner-protocol.js +95 -0
- package/dist/runner-protocol.js.map +1 -0
- package/dist/schemas.d.ts +194 -32
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +80 -25
- package/dist/schemas.js.map +1 -1
- package/dist/workspace-state.d.ts +9 -0
- package/dist/workspace-state.d.ts.map +1 -1
- package/dist/workspace-state.js +2 -0
- package/dist/workspace-state.js.map +1 -1
- package/package.json +6 -6
- package/src/contracts/agent.contract.ts +19 -0
- package/src/contracts/capabilities.contract.ts +16 -0
- package/src/contracts/runner.contract.ts +49 -0
- package/src/definition.ts +171 -0
- package/src/documents.test.ts +66 -0
- package/src/documents.ts +71 -0
- package/src/events.ts +88 -2
- package/src/history-state.ts +7 -0
- package/src/index.ts +5 -0
- package/src/runner-protocol.ts +209 -0
- package/src/schemas.ts +225 -65
- package/src/workspace-state.test.ts +4 -0
- package/src/workspace-state.ts +19 -0
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { gitContract } from "./contracts/git.contract.js";
|
|
|
17
17
|
export { grokContract } from "./contracts/grok.contract.js";
|
|
18
18
|
export { historyContract } from "./contracts/history.contract.js";
|
|
19
19
|
export { hostContract } from "./contracts/host.contract.js";
|
|
20
|
+
export { runnerContract } from "./contracts/runner.contract.js";
|
|
20
21
|
export { intenticContract } from "./contracts/intentic.contract.js";
|
|
21
22
|
export { inventoryContract } from "./contracts/inventory.contract.js";
|
|
22
23
|
export { logsContract } from "./contracts/logs.contract.js";
|
|
@@ -52,8 +53,10 @@ export * from "./agent-run-model.js";
|
|
|
52
53
|
export * from "./capability-env.js";
|
|
53
54
|
export * from "./capability-secrets.js";
|
|
54
55
|
export * from "./conversation-ids.js";
|
|
56
|
+
export * from "./documents.js";
|
|
55
57
|
export * from "./fast-tier.js";
|
|
56
58
|
export * from "./host-protocol.js";
|
|
59
|
+
export * from "./runner-protocol.js";
|
|
57
60
|
export * from "./listener-protocol.js";
|
|
58
61
|
export * from "./hostnames.js";
|
|
59
62
|
export * from "./model-order.js";
|
|
@@ -63,6 +66,7 @@ export * from "./quick-model.js";
|
|
|
63
66
|
export * from "./output-fields.js";
|
|
64
67
|
export * from "./publish-drafts.js";
|
|
65
68
|
export * from "./schemas.js";
|
|
69
|
+
export * from "./definition.js";
|
|
66
70
|
export * from "./search-globs.js";
|
|
67
71
|
export * from "./starter.js";
|
|
68
72
|
export * from "./terminal-protocol.js";
|
|
@@ -147,6 +151,12 @@ export declare const sandboxContract: {
|
|
|
147
151
|
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
148
152
|
conversationId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
149
153
|
isolated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
154
|
+
placement: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
155
|
+
kind: import("zod").ZodLiteral<"local">;
|
|
156
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
157
|
+
kind: import("zod").ZodLiteral<"runner">;
|
|
158
|
+
id: import("zod").ZodString;
|
|
159
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
150
160
|
worktreeBase: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
151
161
|
repo: import("zod").ZodString;
|
|
152
162
|
base: import("zod").ZodString;
|
|
@@ -214,6 +224,7 @@ export declare const sandboxContract: {
|
|
|
214
224
|
commits: number;
|
|
215
225
|
blocked: string[];
|
|
216
226
|
} | undefined;
|
|
227
|
+
remote?: string | undefined;
|
|
217
228
|
} | {
|
|
218
229
|
kind: "landed";
|
|
219
230
|
landed: boolean;
|
|
@@ -316,12 +327,12 @@ export declare const sandboxContract: {
|
|
|
316
327
|
} | {
|
|
317
328
|
kind: "subagent";
|
|
318
329
|
id: string;
|
|
319
|
-
subagentKind: "
|
|
330
|
+
subagentKind: "spawned" | "subagent";
|
|
320
331
|
agentType?: string | undefined;
|
|
321
332
|
description?: string | undefined;
|
|
322
333
|
model?: string | undefined;
|
|
334
|
+
provider?: string | undefined;
|
|
323
335
|
background?: boolean | undefined;
|
|
324
|
-
terminal?: string | undefined;
|
|
325
336
|
} | {
|
|
326
337
|
kind: "subagent_update";
|
|
327
338
|
id: string;
|
|
@@ -402,6 +413,13 @@ export declare const sandboxContract: {
|
|
|
402
413
|
kind: "plan";
|
|
403
414
|
requestId: string;
|
|
404
415
|
text: string;
|
|
416
|
+
document?: {
|
|
417
|
+
path: string;
|
|
418
|
+
title: string;
|
|
419
|
+
markdown: string;
|
|
420
|
+
truncated?: boolean | undefined;
|
|
421
|
+
plan?: boolean | undefined;
|
|
422
|
+
} | undefined;
|
|
405
423
|
} | {
|
|
406
424
|
kind: "question";
|
|
407
425
|
requestId: string;
|
|
@@ -415,6 +433,13 @@ export declare const sandboxContract: {
|
|
|
415
433
|
preview?: string | undefined;
|
|
416
434
|
}[];
|
|
417
435
|
}[];
|
|
436
|
+
document?: {
|
|
437
|
+
path: string;
|
|
438
|
+
title: string;
|
|
439
|
+
markdown: string;
|
|
440
|
+
truncated?: boolean | undefined;
|
|
441
|
+
plan?: boolean | undefined;
|
|
442
|
+
} | undefined;
|
|
418
443
|
} | {
|
|
419
444
|
toolName: string;
|
|
420
445
|
title?: string | undefined;
|
|
@@ -552,9 +577,12 @@ export declare const sandboxContract: {
|
|
|
552
577
|
} | {
|
|
553
578
|
kind: "error";
|
|
554
579
|
message: string;
|
|
555
|
-
code?: "agent-busy" | "claude-not-entitled" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "context-window-too-small" | "grok-model-invalid" | "provider-outage" | "rate_limit" | "session-not-found" | "subscription-required" | "trial-exhausted" | "trial-model-unavailable" | "trial-unavailable" | "unknown-command" | undefined;
|
|
580
|
+
code?: "agent-busy" | "claude-not-entitled" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "context-window-too-small" | "grok-model-invalid" | "provider-outage" | "rate_limit" | "sandbox-memory-low" | "session-not-found" | "subscription-required" | "trial-exhausted" | "trial-model-unavailable" | "trial-unavailable" | "unknown-command" | undefined;
|
|
556
581
|
resetsAt?: number | undefined;
|
|
557
582
|
autoResume?: "available" | "scheduled" | undefined;
|
|
583
|
+
held?: {
|
|
584
|
+
ran: boolean;
|
|
585
|
+
} | undefined;
|
|
558
586
|
outage?: {
|
|
559
587
|
retryAt: number;
|
|
560
588
|
attempt: number;
|
|
@@ -586,6 +614,7 @@ export declare const sandboxContract: {
|
|
|
586
614
|
commits: number;
|
|
587
615
|
blocked: string[];
|
|
588
616
|
} | undefined;
|
|
617
|
+
remote?: string | undefined;
|
|
589
618
|
} | {
|
|
590
619
|
kind: "landed";
|
|
591
620
|
landed: boolean;
|
|
@@ -688,12 +717,12 @@ export declare const sandboxContract: {
|
|
|
688
717
|
} | {
|
|
689
718
|
kind: "subagent";
|
|
690
719
|
id: string;
|
|
691
|
-
subagentKind: "
|
|
720
|
+
subagentKind: "spawned" | "subagent";
|
|
692
721
|
agentType?: string | undefined;
|
|
693
722
|
description?: string | undefined;
|
|
694
723
|
model?: string | undefined;
|
|
724
|
+
provider?: string | undefined;
|
|
695
725
|
background?: boolean | undefined;
|
|
696
|
-
terminal?: string | undefined;
|
|
697
726
|
} | {
|
|
698
727
|
kind: "subagent_update";
|
|
699
728
|
id: string;
|
|
@@ -774,6 +803,13 @@ export declare const sandboxContract: {
|
|
|
774
803
|
kind: "plan";
|
|
775
804
|
requestId: string;
|
|
776
805
|
text: string;
|
|
806
|
+
document?: {
|
|
807
|
+
path: string;
|
|
808
|
+
title: string;
|
|
809
|
+
markdown: string;
|
|
810
|
+
truncated?: boolean | undefined;
|
|
811
|
+
plan?: boolean | undefined;
|
|
812
|
+
} | undefined;
|
|
777
813
|
} | {
|
|
778
814
|
kind: "question";
|
|
779
815
|
requestId: string;
|
|
@@ -787,6 +823,13 @@ export declare const sandboxContract: {
|
|
|
787
823
|
preview?: string | undefined;
|
|
788
824
|
}[];
|
|
789
825
|
}[];
|
|
826
|
+
document?: {
|
|
827
|
+
path: string;
|
|
828
|
+
title: string;
|
|
829
|
+
markdown: string;
|
|
830
|
+
truncated?: boolean | undefined;
|
|
831
|
+
plan?: boolean | undefined;
|
|
832
|
+
} | undefined;
|
|
790
833
|
} | {
|
|
791
834
|
toolName: string;
|
|
792
835
|
title?: string | undefined;
|
|
@@ -924,9 +967,12 @@ export declare const sandboxContract: {
|
|
|
924
967
|
} | {
|
|
925
968
|
kind: "error";
|
|
926
969
|
message: string;
|
|
927
|
-
code?: "agent-busy" | "claude-not-entitled" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "context-window-too-small" | "grok-model-invalid" | "provider-outage" | "rate_limit" | "session-not-found" | "subscription-required" | "trial-exhausted" | "trial-model-unavailable" | "trial-unavailable" | "unknown-command" | undefined;
|
|
970
|
+
code?: "agent-busy" | "claude-not-entitled" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "context-window-too-small" | "grok-model-invalid" | "provider-outage" | "rate_limit" | "sandbox-memory-low" | "session-not-found" | "subscription-required" | "trial-exhausted" | "trial-model-unavailable" | "trial-unavailable" | "unknown-command" | undefined;
|
|
928
971
|
resetsAt?: number | undefined;
|
|
929
972
|
autoResume?: "available" | "scheduled" | undefined;
|
|
973
|
+
held?: {
|
|
974
|
+
ran: boolean;
|
|
975
|
+
} | undefined;
|
|
930
976
|
outage?: {
|
|
931
977
|
retryAt: number;
|
|
932
978
|
attempt: number;
|
|
@@ -1000,6 +1046,11 @@ export declare const sandboxContract: {
|
|
|
1000
1046
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1001
1047
|
ok: import("zod").ZodLiteral<true>;
|
|
1002
1048
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1049
|
+
resume: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1050
|
+
conversationId: import("zod").ZodString;
|
|
1051
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1052
|
+
run: import("zod").ZodString;
|
|
1053
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1003
1054
|
rewind: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1004
1055
|
conversationId: import("zod").ZodString;
|
|
1005
1056
|
index: import("zod").ZodNumber;
|
|
@@ -2531,7 +2582,12 @@ export declare const sandboxContract: {
|
|
|
2531
2582
|
before: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2532
2583
|
after: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2533
2584
|
binary: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2534
|
-
|
|
2585
|
+
partial: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2586
|
+
beforeBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2587
|
+
afterBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2588
|
+
patch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2589
|
+
more: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2590
|
+
}, import("zod/v4/core").$strip>>;
|
|
2535
2591
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2536
2592
|
land: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2537
2593
|
id: import("zod").ZodString;
|
|
@@ -3641,6 +3697,299 @@ export declare const sandboxContract: {
|
|
|
3641
3697
|
[x: string]: unknown;
|
|
3642
3698
|
kind: string;
|
|
3643
3699
|
}, unknown, void>>, Record<never, never>, Record<never, never>>;
|
|
3700
|
+
probe: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3701
|
+
id: import("zod").ZodString;
|
|
3702
|
+
kind: import("zod").ZodLiteral<"devops">;
|
|
3703
|
+
config: import("zod").ZodObject<{}, import("zod/v4/core").$strip>;
|
|
3704
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3705
|
+
id: import("zod").ZodString;
|
|
3706
|
+
kind: import("zod").ZodLiteral<"monorepo">;
|
|
3707
|
+
config: import("zod").ZodObject<{}, import("zod/v4/core").$strip>;
|
|
3708
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3709
|
+
id: import("zod").ZodString;
|
|
3710
|
+
kind: import("zod").ZodLiteral<"mcp">;
|
|
3711
|
+
config: import("zod").ZodObject<{
|
|
3712
|
+
url: import("zod").ZodURL;
|
|
3713
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3714
|
+
}, import("zod/v4/core").$strip>;
|
|
3715
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3716
|
+
id: import("zod").ZodString;
|
|
3717
|
+
kind: import("zod").ZodLiteral<"service">;
|
|
3718
|
+
config: import("zod").ZodObject<{
|
|
3719
|
+
service: import("zod").ZodEnum<{
|
|
3720
|
+
infisical: "infisical";
|
|
3721
|
+
invoiceninja: "invoiceninja";
|
|
3722
|
+
openproject: "openproject";
|
|
3723
|
+
outline: "outline";
|
|
3724
|
+
paperless: "paperless";
|
|
3725
|
+
signoz: "signoz";
|
|
3726
|
+
}>;
|
|
3727
|
+
domain: import("zod").ZodString;
|
|
3728
|
+
on: import("zod").ZodString;
|
|
3729
|
+
expose: import("zod").ZodString;
|
|
3730
|
+
}, import("zod/v4/core").$strip>;
|
|
3731
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3732
|
+
id: import("zod").ZodString;
|
|
3733
|
+
kind: import("zod").ZodLiteral<"integration">;
|
|
3734
|
+
config: import("zod").ZodObject<{
|
|
3735
|
+
provider: import("zod").ZodLiteral<"stripe">;
|
|
3736
|
+
}, import("zod/v4/core").$strip>;
|
|
3737
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3738
|
+
id: import("zod").ZodString;
|
|
3739
|
+
kind: import("zod").ZodLiteral<"cli">;
|
|
3740
|
+
config: import("zod").ZodObject<{
|
|
3741
|
+
provider: import("zod").ZodString;
|
|
3742
|
+
}, import("zod/v4/core").$catchall<import("zod").ZodString>>;
|
|
3743
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3744
|
+
id: import("zod").ZodString;
|
|
3745
|
+
kind: import("zod").ZodLiteral<"plugin">;
|
|
3746
|
+
config: import("zod").ZodObject<{
|
|
3747
|
+
url: import("zod").ZodURL;
|
|
3748
|
+
ref: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3749
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3750
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3751
|
+
}, import("zod/v4/core").$strip>;
|
|
3752
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3753
|
+
id: import("zod").ZodString;
|
|
3754
|
+
kind: import("zod").ZodLiteral<"extension">;
|
|
3755
|
+
config: import("zod").ZodObject<{
|
|
3756
|
+
url: import("zod").ZodURL;
|
|
3757
|
+
ref: import("zod").ZodString;
|
|
3758
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3759
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3760
|
+
tier: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3761
|
+
free: "free";
|
|
3762
|
+
premium: "premium";
|
|
3763
|
+
}>>;
|
|
3764
|
+
registry: import("zod").ZodOptional<import("zod").ZodURL>;
|
|
3765
|
+
}, import("zod/v4/core").$strip>;
|
|
3766
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3767
|
+
id: import("zod").ZodString;
|
|
3768
|
+
kind: import("zod").ZodLiteral<"ssh">;
|
|
3769
|
+
config: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3770
|
+
auth: import("zod").ZodLiteral<"key">;
|
|
3771
|
+
host: import("zod").ZodString;
|
|
3772
|
+
port: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
3773
|
+
user: import("zod").ZodString;
|
|
3774
|
+
privateKey: import("zod").ZodString;
|
|
3775
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3776
|
+
auth: import("zod").ZodLiteral<"password">;
|
|
3777
|
+
host: import("zod").ZodString;
|
|
3778
|
+
port: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
3779
|
+
user: import("zod").ZodString;
|
|
3780
|
+
password: import("zod").ZodString;
|
|
3781
|
+
}, import("zod/v4/core").$strip>], "auth">;
|
|
3782
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3783
|
+
id: import("zod").ZodString;
|
|
3784
|
+
kind: import("zod").ZodLiteral<"vpn">;
|
|
3785
|
+
config: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3786
|
+
provider: import("zod").ZodLiteral<"wireguard">;
|
|
3787
|
+
config: import("zod").ZodString;
|
|
3788
|
+
autoConnect: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3789
|
+
off: "off";
|
|
3790
|
+
on: "on";
|
|
3791
|
+
}>>;
|
|
3792
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3793
|
+
provider: import("zod").ZodLiteral<"fortinet">;
|
|
3794
|
+
server: import("zod").ZodString;
|
|
3795
|
+
port: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
3796
|
+
username: import("zod").ZodString;
|
|
3797
|
+
password: import("zod").ZodString;
|
|
3798
|
+
trustedCert: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3799
|
+
realm: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3800
|
+
autoConnect: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3801
|
+
off: "off";
|
|
3802
|
+
on: "on";
|
|
3803
|
+
}>>;
|
|
3804
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3805
|
+
provider: import("zod").ZodLiteral<"ipsec">;
|
|
3806
|
+
server: import("zod").ZodString;
|
|
3807
|
+
presharedKey: import("zod").ZodString;
|
|
3808
|
+
localId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3809
|
+
remoteId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3810
|
+
username: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3811
|
+
password: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3812
|
+
ikeVersion: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3813
|
+
1: "1";
|
|
3814
|
+
2: "2";
|
|
3815
|
+
}>>;
|
|
3816
|
+
pfs: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3817
|
+
off: "off";
|
|
3818
|
+
on: "on";
|
|
3819
|
+
}>>;
|
|
3820
|
+
dhGroup: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3821
|
+
14: "14";
|
|
3822
|
+
15: "15";
|
|
3823
|
+
16: "16";
|
|
3824
|
+
19: "19";
|
|
3825
|
+
2: "2";
|
|
3826
|
+
20: "20";
|
|
3827
|
+
5: "5";
|
|
3828
|
+
}>>;
|
|
3829
|
+
aggressive: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3830
|
+
off: "off";
|
|
3831
|
+
on: "on";
|
|
3832
|
+
}>>;
|
|
3833
|
+
routedNetworks: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3834
|
+
autoConnect: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3835
|
+
off: "off";
|
|
3836
|
+
on: "on";
|
|
3837
|
+
}>>;
|
|
3838
|
+
}, import("zod/v4/core").$strip>], "provider">;
|
|
3839
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3840
|
+
id: import("zod").ZodString;
|
|
3841
|
+
kind: import("zod").ZodLiteral<"exit">;
|
|
3842
|
+
config: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3843
|
+
provider: import("zod").ZodLiteral<"tor">;
|
|
3844
|
+
country: import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>>;
|
|
3845
|
+
autoStart: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3846
|
+
off: "off";
|
|
3847
|
+
on: "on";
|
|
3848
|
+
}>>;
|
|
3849
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3850
|
+
provider: import("zod").ZodLiteral<"vpngate">;
|
|
3851
|
+
country: import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>>;
|
|
3852
|
+
autoStart: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3853
|
+
off: "off";
|
|
3854
|
+
on: "on";
|
|
3855
|
+
}>>;
|
|
3856
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3857
|
+
provider: import("zod").ZodLiteral<"wireguard">;
|
|
3858
|
+
config: import("zod").ZodString;
|
|
3859
|
+
country: import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>>;
|
|
3860
|
+
autoStart: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3861
|
+
off: "off";
|
|
3862
|
+
on: "on";
|
|
3863
|
+
}>>;
|
|
3864
|
+
}, import("zod/v4/core").$strip>], "provider">;
|
|
3865
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3866
|
+
id: import("zod").ZodString;
|
|
3867
|
+
kind: import("zod").ZodLiteral<"docker">;
|
|
3868
|
+
config: import("zod").ZodObject<{
|
|
3869
|
+
gpu: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3870
|
+
off: "off";
|
|
3871
|
+
on: "on";
|
|
3872
|
+
}>>;
|
|
3873
|
+
registryMirror: import("zod").ZodOptional<import("zod").ZodURL>;
|
|
3874
|
+
insecureRegistries: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3875
|
+
addressPool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3876
|
+
}, import("zod/v4/core").$strip>;
|
|
3877
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3878
|
+
id: import("zod").ZodString;
|
|
3879
|
+
kind: import("zod").ZodLiteral<"browser">;
|
|
3880
|
+
config: import("zod").ZodObject<{
|
|
3881
|
+
platform: import("zod").ZodString;
|
|
3882
|
+
username: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3883
|
+
password: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3884
|
+
identity: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3885
|
+
purpose: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3886
|
+
openedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3887
|
+
exit: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3888
|
+
}, import("zod/v4/core").$catchall<import("zod").ZodString>>;
|
|
3889
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3890
|
+
id: import("zod").ZodString;
|
|
3891
|
+
kind: import("zod").ZodLiteral<"identity">;
|
|
3892
|
+
config: import("zod").ZodObject<{
|
|
3893
|
+
email: import("zod").ZodString;
|
|
3894
|
+
password: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3895
|
+
mailbox: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3896
|
+
loginUrl: import("zod").ZodOptional<import("zod").ZodURL>;
|
|
3897
|
+
openAccounts: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3898
|
+
off: "off";
|
|
3899
|
+
on: "on";
|
|
3900
|
+
}>>;
|
|
3901
|
+
exit: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3902
|
+
}, import("zod/v4/core").$strip>;
|
|
3903
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3904
|
+
id: import("zod").ZodString;
|
|
3905
|
+
kind: import("zod").ZodLiteral<"host">;
|
|
3906
|
+
config: import("zod").ZodObject<{
|
|
3907
|
+
shell: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3908
|
+
off: "off";
|
|
3909
|
+
on: "on";
|
|
3910
|
+
}>>;
|
|
3911
|
+
write: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3912
|
+
off: "off";
|
|
3913
|
+
on: "on";
|
|
3914
|
+
}>>;
|
|
3915
|
+
screen: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3916
|
+
off: "off";
|
|
3917
|
+
on: "on";
|
|
3918
|
+
}>>;
|
|
3919
|
+
control: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3920
|
+
off: "off";
|
|
3921
|
+
on: "on";
|
|
3922
|
+
}>>;
|
|
3923
|
+
sandboxes: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3924
|
+
off: "off";
|
|
3925
|
+
on: "on";
|
|
3926
|
+
}>>;
|
|
3927
|
+
sandboxRemove: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3928
|
+
off: "off";
|
|
3929
|
+
on: "on";
|
|
3930
|
+
}>>;
|
|
3931
|
+
roots: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3932
|
+
platform: import("zod").ZodString;
|
|
3933
|
+
}, import("zod/v4/core").$strip>;
|
|
3934
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3935
|
+
id: import("zod").ZodString;
|
|
3936
|
+
kind: import("zod").ZodLiteral<"agent">;
|
|
3937
|
+
config: import("zod").ZodObject<{
|
|
3938
|
+
command: import("zod").ZodString;
|
|
3939
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3940
|
+
env: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3941
|
+
loginCommand: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3942
|
+
}, import("zod/v4/core").$strip>;
|
|
3943
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3944
|
+
id: import("zod").ZodString;
|
|
3945
|
+
kind: import("zod").ZodLiteral<"endpoint">;
|
|
3946
|
+
config: import("zod").ZodObject<{
|
|
3947
|
+
baseUrl: import("zod").ZodURL;
|
|
3948
|
+
protocol: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3949
|
+
anthropic: "anthropic";
|
|
3950
|
+
openai: "openai";
|
|
3951
|
+
}>>;
|
|
3952
|
+
apiKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3953
|
+
headers: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3954
|
+
}, import("zod/v4/core").$strip>;
|
|
3955
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3956
|
+
id: import("zod").ZodString;
|
|
3957
|
+
kind: import("zod").ZodLiteral<"localmodel">;
|
|
3958
|
+
config: import("zod").ZodObject<{
|
|
3959
|
+
model: import("zod").ZodString;
|
|
3960
|
+
gpu: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3961
|
+
off: "off";
|
|
3962
|
+
on: "on";
|
|
3963
|
+
}>>;
|
|
3964
|
+
url: import("zod").ZodOptional<import("zod").ZodURL>;
|
|
3965
|
+
context: import("zod").ZodDefault<import("zod").ZodUnion<readonly [import("zod").ZodEnum<{
|
|
3966
|
+
131072: "131072";
|
|
3967
|
+
16384: "16384";
|
|
3968
|
+
32768: "32768";
|
|
3969
|
+
65536: "65536";
|
|
3970
|
+
}>, import("zod").ZodLiteral<"custom">]>>;
|
|
3971
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
3972
|
+
}, import("zod/v4/core").$strip>;
|
|
3973
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3974
|
+
id: import("zod").ZodString;
|
|
3975
|
+
kind: import("zod").ZodLiteral<"wallet">;
|
|
3976
|
+
config: import("zod").ZodObject<{
|
|
3977
|
+
network: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
3978
|
+
"eip155:8453": "eip155:8453";
|
|
3979
|
+
"eip155:84532": "eip155:84532";
|
|
3980
|
+
}>>;
|
|
3981
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3982
|
+
perPaymentMaxUsd: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3983
|
+
autoApproveUnderUsd: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3984
|
+
dailyCapUsd: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3985
|
+
allow: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3986
|
+
deny: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3987
|
+
}, import("zod/v4/core").$strip>;
|
|
3988
|
+
}, import("zod/v4/core").$strip>], "kind">, import("zod").ZodObject<{
|
|
3989
|
+
checked: import("zod").ZodBoolean;
|
|
3990
|
+
ok: import("zod").ZodBoolean;
|
|
3991
|
+
message: import("zod").ZodString;
|
|
3992
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3644
3993
|
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3645
3994
|
id: import("zod").ZodString;
|
|
3646
3995
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -4350,6 +4699,7 @@ export declare const sandboxContract: {
|
|
|
4350
4699
|
secret: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4351
4700
|
optional: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4352
4701
|
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4702
|
+
advanced: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4353
4703
|
boolean: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4354
4704
|
hint: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4355
4705
|
rebuild: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -4366,6 +4716,17 @@ export declare const sandboxContract: {
|
|
|
4366
4716
|
skill: import("zod").ZodString;
|
|
4367
4717
|
fragment: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4368
4718
|
pack: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4719
|
+
probe: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4720
|
+
url: import("zod").ZodString;
|
|
4721
|
+
method: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4722
|
+
GET: "GET";
|
|
4723
|
+
HEAD: "HEAD";
|
|
4724
|
+
POST: "POST";
|
|
4725
|
+
}>>;
|
|
4726
|
+
headers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
4727
|
+
identity: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4728
|
+
insecure: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4729
|
+
}, import("zod/v4/core").$strip>>;
|
|
4369
4730
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4370
4731
|
id: import("zod").ZodString;
|
|
4371
4732
|
catalog: import("zod").ZodObject<{
|
|
@@ -4392,6 +4753,7 @@ export declare const sandboxContract: {
|
|
|
4392
4753
|
secret: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4393
4754
|
optional: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4394
4755
|
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4756
|
+
advanced: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4395
4757
|
boolean: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4396
4758
|
hint: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4397
4759
|
rebuild: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -4434,6 +4796,7 @@ export declare const sandboxContract: {
|
|
|
4434
4796
|
secret: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4435
4797
|
optional: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4436
4798
|
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4799
|
+
advanced: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4437
4800
|
boolean: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4438
4801
|
hint: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4439
4802
|
rebuild: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -4474,6 +4837,7 @@ export declare const sandboxContract: {
|
|
|
4474
4837
|
secret: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4475
4838
|
optional: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4476
4839
|
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4840
|
+
advanced: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4477
4841
|
boolean: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4478
4842
|
hint: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4479
4843
|
rebuild: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -5560,7 +5924,12 @@ export declare const sandboxContract: {
|
|
|
5560
5924
|
before: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5561
5925
|
after: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5562
5926
|
binary: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5563
|
-
|
|
5927
|
+
partial: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5928
|
+
beforeBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5929
|
+
afterBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5930
|
+
patch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5931
|
+
more: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5932
|
+
}, import("zod/v4/core").$strip>>;
|
|
5564
5933
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
5565
5934
|
operation: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
5566
5935
|
repo: import("zod").ZodString;
|
|
@@ -5760,7 +6129,12 @@ export declare const sandboxContract: {
|
|
|
5760
6129
|
before: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5761
6130
|
after: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5762
6131
|
binary: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5763
|
-
|
|
6132
|
+
partial: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6133
|
+
beforeBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6134
|
+
afterBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6135
|
+
patch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6136
|
+
more: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6137
|
+
}, import("zod/v4/core").$strip>>;
|
|
5764
6138
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
5765
6139
|
status: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
5766
6140
|
repo: import("zod").ZodString;
|
|
@@ -6031,7 +6405,12 @@ export declare const sandboxContract: {
|
|
|
6031
6405
|
before: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6032
6406
|
after: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6033
6407
|
binary: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6034
|
-
|
|
6408
|
+
partial: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6409
|
+
beforeBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6410
|
+
afterBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6411
|
+
patch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6412
|
+
more: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6413
|
+
}, import("zod/v4/core").$strip>>;
|
|
6035
6414
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
6036
6415
|
restore: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
6037
6416
|
id: import("zod").ZodString;
|
|
@@ -6879,6 +7258,7 @@ export declare const sandboxContract: {
|
|
|
6879
7258
|
healthy: import("zod").ZodBoolean;
|
|
6880
7259
|
port: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6881
7260
|
servers: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7261
|
+
port: import("zod").ZodNumber;
|
|
6882
7262
|
url: import("zod").ZodString;
|
|
6883
7263
|
dir: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6884
7264
|
session: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -7583,14 +7963,14 @@ export declare const sandboxContract: {
|
|
|
7583
7963
|
sessions: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7584
7964
|
id: import("zod").ZodString;
|
|
7585
7965
|
kind: import("zod").ZodEnum<{
|
|
7586
|
-
|
|
7587
|
-
grok: "grok";
|
|
7966
|
+
spawned: "spawned";
|
|
7588
7967
|
subagent: "subagent";
|
|
7589
7968
|
}>;
|
|
7590
7969
|
conversationId: import("zod").ZodString;
|
|
7591
7970
|
agentType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7592
7971
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7593
7972
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7973
|
+
provider: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7594
7974
|
spawnDepth: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7595
7975
|
background: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
7596
7976
|
status: import("zod").ZodEnum<{
|
|
@@ -7610,7 +7990,6 @@ export declare const sandboxContract: {
|
|
|
7610
7990
|
lastTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7611
7991
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7612
7992
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7613
|
-
terminal: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7614
7993
|
}, import("zod/v4/core").$strip>>;
|
|
7615
7994
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
7616
7995
|
subagentTranscript: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -7646,12 +8025,16 @@ export declare const sandboxContract: {
|
|
|
7646
8025
|
remove: "remove";
|
|
7647
8026
|
restart: "restart";
|
|
7648
8027
|
rollback: "rollback";
|
|
8028
|
+
"runner-remove": "runner-remove";
|
|
8029
|
+
"runner-up": "runner-up";
|
|
7649
8030
|
start: "start";
|
|
7650
8031
|
stop: "stop";
|
|
7651
8032
|
update: "update";
|
|
7652
8033
|
}>;
|
|
7653
8034
|
slug: import("zod").ZodString;
|
|
7654
8035
|
hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8036
|
+
parentUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8037
|
+
pair: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7655
8038
|
id: import("zod").ZodString;
|
|
7656
8039
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
7657
8040
|
kind: "line";
|