@intentic/sandbox-contract 1.159.0 → 1.160.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/dist/agent-catalog.d.ts +1 -0
- package/dist/agent-catalog.d.ts.map +1 -1
- package/dist/agent-catalog.js +1 -0
- package/dist/agent-catalog.js.map +1 -1
- package/dist/contracts/agent.contract.d.ts +28 -4
- package/dist/contracts/agent.contract.d.ts.map +1 -1
- package/dist/contracts/agent.contract.js +2 -1
- package/dist/contracts/agent.contract.js.map +1 -1
- package/dist/contracts/agents.contract.d.ts +195 -0
- package/dist/contracts/agents.contract.d.ts.map +1 -1
- package/dist/contracts/agents.contract.js +7 -2
- package/dist/contracts/agents.contract.js.map +1 -1
- package/dist/contracts/claude.contract.d.ts +26 -0
- package/dist/contracts/claude.contract.d.ts.map +1 -1
- package/dist/contracts/claude.contract.js +2 -1
- package/dist/contracts/claude.contract.js.map +1 -1
- package/dist/contracts/extensions.contract.d.ts +1 -0
- package/dist/contracts/extensions.contract.d.ts.map +1 -1
- package/dist/contracts/git.contract.d.ts +13 -0
- package/dist/contracts/git.contract.d.ts.map +1 -1
- package/dist/contracts/git.contract.js +2 -1
- package/dist/contracts/git.contract.js.map +1 -1
- package/dist/contracts/grok.contract.d.ts +2 -0
- package/dist/contracts/grok.contract.d.ts.map +1 -1
- package/dist/contracts/kimi.contract.d.ts +26 -0
- package/dist/contracts/kimi.contract.d.ts.map +1 -1
- package/dist/contracts/kimi.contract.js +2 -1
- package/dist/contracts/kimi.contract.js.map +1 -1
- package/dist/contracts/memory.contract.d.ts +34 -0
- package/dist/contracts/memory.contract.d.ts.map +1 -0
- package/dist/contracts/memory.contract.js +9 -0
- package/dist/contracts/memory.contract.js.map +1 -0
- package/dist/contracts/panels.contract.d.ts +1 -0
- package/dist/contracts/panels.contract.d.ts.map +1 -1
- package/dist/contracts/push.contract.d.ts +1 -1
- package/dist/contracts/push.contract.js +2 -2
- package/dist/contracts/push.contract.js.map +1 -1
- package/dist/contracts/sessions.contract.d.ts +2 -0
- package/dist/contracts/sessions.contract.d.ts.map +1 -1
- package/dist/contracts/settings.contract.d.ts +32 -0
- package/dist/contracts/settings.contract.d.ts.map +1 -1
- package/dist/contracts/settings.contract.js +2 -1
- package/dist/contracts/settings.contract.js.map +1 -1
- package/dist/contracts/system.contract.d.ts +15 -2
- package/dist/contracts/system.contract.d.ts.map +1 -1
- package/dist/contracts/system.contract.js +2 -1
- package/dist/contracts/system.contract.js.map +1 -1
- package/dist/contracts/translator.contract.d.ts +13 -3
- package/dist/contracts/translator.contract.d.ts.map +1 -1
- package/dist/contracts/translator.contract.js +1 -1
- package/dist/contracts/translator.contract.js.map +1 -1
- package/dist/contracts/workspace.contract.d.ts +38 -5
- package/dist/contracts/workspace.contract.d.ts.map +1 -1
- package/dist/contracts/workspace.contract.js +2 -1
- package/dist/contracts/workspace.contract.js.map +1 -1
- package/dist/events.d.ts +100 -2
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +12 -3
- package/dist/events.js.map +1 -1
- package/dist/index.d.ts +429 -15
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/model-order.d.ts +1 -0
- package/dist/model-order.d.ts.map +1 -1
- package/dist/model-order.js +1 -0
- package/dist/model-order.js.map +1 -1
- package/dist/path-refs.d.ts +1 -0
- package/dist/path-refs.d.ts.map +1 -1
- package/dist/path-refs.js +3 -0
- package/dist/path-refs.js.map +1 -1
- package/dist/quick-model.d.ts +13 -0
- package/dist/quick-model.d.ts.map +1 -0
- package/dist/quick-model.js +33 -0
- package/dist/quick-model.js.map +1 -0
- package/dist/schemas.d.ts +298 -10
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +126 -11
- package/dist/schemas.js.map +1 -1
- package/dist/title.d.ts +6 -0
- package/dist/title.d.ts.map +1 -0
- package/dist/title.js +149 -0
- package/dist/title.js.map +1 -0
- package/package.json +2 -2
- package/src/agent-catalog.ts +6 -0
- package/src/contracts/agent.contract.ts +14 -1
- package/src/contracts/agents.contract.ts +25 -1
- package/src/contracts/claude.contract.ts +4 -1
- package/src/contracts/git.contract.ts +6 -0
- package/src/contracts/kimi.contract.ts +13 -2
- package/src/contracts/memory.contract.ts +13 -0
- package/src/contracts/push.contract.ts +2 -2
- package/src/contracts/settings.contract.ts +5 -1
- package/src/contracts/system.contract.ts +4 -0
- package/src/contracts/translator.contract.ts +3 -2
- package/src/contracts/workspace.contract.ts +6 -0
- package/src/events.ts +47 -6
- package/src/index.ts +7 -1
- package/src/model-order.test.ts +40 -1
- package/src/model-order.ts +15 -0
- package/src/path-refs.test.ts +27 -1
- package/src/path-refs.ts +16 -0
- package/src/quick-model.test.ts +88 -0
- package/src/quick-model.ts +103 -0
- package/src/schemas.test.ts +23 -1
- package/src/schemas.ts +412 -35
- package/src/title.test.ts +130 -0
- package/src/title.ts +254 -0
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { intenticContract } from "./contracts/intentic.contract.js";
|
|
|
16
16
|
export { inventoryContract } from "./contracts/inventory.contract.js";
|
|
17
17
|
export { kimiContract } from "./contracts/kimi.contract.js";
|
|
18
18
|
export { logsContract } from "./contracts/logs.contract.js";
|
|
19
|
+
export { memoryContract } from "./contracts/memory.contract.js";
|
|
19
20
|
export { panelsContract } from "./contracts/panels.contract.js";
|
|
20
21
|
export { portsContract } from "./contracts/ports.contract.js";
|
|
21
22
|
export { pushContract } from "./contracts/push.contract.js";
|
|
@@ -35,8 +36,10 @@ export * from "./agent-catalog.js";
|
|
|
35
36
|
export * from "./hostnames.js";
|
|
36
37
|
export * from "./model-order.js";
|
|
37
38
|
export * from "./path-refs.js";
|
|
39
|
+
export * from "./quick-model.js";
|
|
38
40
|
export * from "./schemas.js";
|
|
39
41
|
export * from "./terminal-protocol.js";
|
|
42
|
+
export * from "./title.js";
|
|
40
43
|
export declare const sandboxContract: {
|
|
41
44
|
activity: {
|
|
42
45
|
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -155,13 +158,19 @@ export declare const sandboxContract: {
|
|
|
155
158
|
kind: "worktree";
|
|
156
159
|
branch: string;
|
|
157
160
|
base: string;
|
|
161
|
+
unenforced?: boolean | undefined;
|
|
158
162
|
} | {
|
|
159
163
|
kind: "landed";
|
|
160
164
|
landed: boolean;
|
|
161
165
|
conflicts?: {
|
|
162
166
|
repo: string;
|
|
163
|
-
paths:
|
|
167
|
+
paths: {
|
|
168
|
+
path: string;
|
|
169
|
+
reason: "binary" | "diverged" | "workspace";
|
|
170
|
+
}[];
|
|
171
|
+
clean: number;
|
|
164
172
|
}[] | undefined;
|
|
173
|
+
held?: boolean | undefined;
|
|
165
174
|
} | {
|
|
166
175
|
kind: "init";
|
|
167
176
|
model: string;
|
|
@@ -324,7 +333,10 @@ export declare const sandboxContract: {
|
|
|
324
333
|
} | {
|
|
325
334
|
kind: "error";
|
|
326
335
|
message: string;
|
|
327
|
-
code?: "agent-busy" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "grok-model-invalid" | "rate_limit" | "session-not-found" | "subscription-required" | undefined;
|
|
336
|
+
code?: "agent-busy" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "grok-model-invalid" | "rate_limit" | "session-not-found" | "subscription-required" | "unknown-command" | undefined;
|
|
337
|
+
resetsAt?: number | undefined;
|
|
338
|
+
autoResume?: "available" | "scheduled" | undefined;
|
|
339
|
+
account?: string | undefined;
|
|
328
340
|
} | {
|
|
329
341
|
kind: "done";
|
|
330
342
|
};
|
|
@@ -346,13 +358,19 @@ export declare const sandboxContract: {
|
|
|
346
358
|
kind: "worktree";
|
|
347
359
|
branch: string;
|
|
348
360
|
base: string;
|
|
361
|
+
unenforced?: boolean | undefined;
|
|
349
362
|
} | {
|
|
350
363
|
kind: "landed";
|
|
351
364
|
landed: boolean;
|
|
352
365
|
conflicts?: {
|
|
353
366
|
repo: string;
|
|
354
|
-
paths:
|
|
367
|
+
paths: {
|
|
368
|
+
path: string;
|
|
369
|
+
reason: "binary" | "diverged" | "workspace";
|
|
370
|
+
}[];
|
|
371
|
+
clean: number;
|
|
355
372
|
}[] | undefined;
|
|
373
|
+
held?: boolean | undefined;
|
|
356
374
|
} | {
|
|
357
375
|
kind: "init";
|
|
358
376
|
model: string;
|
|
@@ -515,7 +533,10 @@ export declare const sandboxContract: {
|
|
|
515
533
|
} | {
|
|
516
534
|
kind: "error";
|
|
517
535
|
message: string;
|
|
518
|
-
code?: "agent-busy" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "grok-model-invalid" | "rate_limit" | "session-not-found" | "subscription-required" | undefined;
|
|
536
|
+
code?: "agent-busy" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "grok-model-invalid" | "rate_limit" | "session-not-found" | "subscription-required" | "unknown-command" | undefined;
|
|
537
|
+
resetsAt?: number | undefined;
|
|
538
|
+
autoResume?: "available" | "scheduled" | undefined;
|
|
539
|
+
account?: string | undefined;
|
|
519
540
|
} | {
|
|
520
541
|
kind: "done";
|
|
521
542
|
};
|
|
@@ -568,6 +589,12 @@ export declare const sandboxContract: {
|
|
|
568
589
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
569
590
|
ok: import("zod").ZodLiteral<true>;
|
|
570
591
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
592
|
+
resumeLimit: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
593
|
+
conversationId: import("zod").ZodString;
|
|
594
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
595
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
596
|
+
run: import("zod").ZodString;
|
|
597
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
571
598
|
commands: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
572
599
|
agent: import("zod").ZodOptional<import("zod").ZodString>;
|
|
573
600
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -589,7 +616,9 @@ export declare const sandboxContract: {
|
|
|
589
616
|
conflict: "conflict";
|
|
590
617
|
error: "error";
|
|
591
618
|
idle: "idle";
|
|
619
|
+
interrupted: "interrupted";
|
|
592
620
|
landed: "landed";
|
|
621
|
+
ready: "ready";
|
|
593
622
|
running: "running";
|
|
594
623
|
}>;
|
|
595
624
|
provider: import("zod").ZodString;
|
|
@@ -598,8 +627,11 @@ export declare const sandboxContract: {
|
|
|
598
627
|
native: "native";
|
|
599
628
|
}>;
|
|
600
629
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
630
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
631
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
601
632
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
602
633
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
634
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
603
635
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
604
636
|
automationId: import("zod").ZodString;
|
|
605
637
|
provider: import("zod").ZodString;
|
|
@@ -647,7 +679,9 @@ export declare const sandboxContract: {
|
|
|
647
679
|
conflict: "conflict";
|
|
648
680
|
error: "error";
|
|
649
681
|
idle: "idle";
|
|
682
|
+
interrupted: "interrupted";
|
|
650
683
|
landed: "landed";
|
|
684
|
+
ready: "ready";
|
|
651
685
|
running: "running";
|
|
652
686
|
}>;
|
|
653
687
|
provider: import("zod").ZodString;
|
|
@@ -656,8 +690,11 @@ export declare const sandboxContract: {
|
|
|
656
690
|
native: "native";
|
|
657
691
|
}>;
|
|
658
692
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
693
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
694
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
659
695
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
660
696
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
697
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
661
698
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
662
699
|
automationId: import("zod").ZodString;
|
|
663
700
|
provider: import("zod").ZodString;
|
|
@@ -695,6 +732,15 @@ export declare const sandboxContract: {
|
|
|
695
732
|
}, import("zod/v4/core").$strip>>;
|
|
696
733
|
rev: import("zod").ZodNumber;
|
|
697
734
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
735
|
+
search: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
736
|
+
query: import("zod").ZodString;
|
|
737
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
738
|
+
matches: import("zod").ZodArray<import("zod").ZodObject<{
|
|
739
|
+
id: import("zod").ZodString;
|
|
740
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
741
|
+
}, import("zod/v4/core").$strip>>;
|
|
742
|
+
scanned: import("zod").ZodNumber;
|
|
743
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
698
744
|
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
699
745
|
id: import("zod").ZodString;
|
|
700
746
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -706,7 +752,9 @@ export declare const sandboxContract: {
|
|
|
706
752
|
conflict: "conflict";
|
|
707
753
|
error: "error";
|
|
708
754
|
idle: "idle";
|
|
755
|
+
interrupted: "interrupted";
|
|
709
756
|
landed: "landed";
|
|
757
|
+
ready: "ready";
|
|
710
758
|
running: "running";
|
|
711
759
|
}>;
|
|
712
760
|
provider: import("zod").ZodString;
|
|
@@ -715,8 +763,11 @@ export declare const sandboxContract: {
|
|
|
715
763
|
native: "native";
|
|
716
764
|
}>;
|
|
717
765
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
766
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
767
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
718
768
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
719
769
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
770
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
720
771
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
721
772
|
automationId: import("zod").ZodString;
|
|
722
773
|
provider: import("zod").ZodString;
|
|
@@ -752,6 +803,56 @@ export declare const sandboxContract: {
|
|
|
752
803
|
}, import("zod/v4/core").$strip>>;
|
|
753
804
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
754
805
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
806
|
+
transcript: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
807
|
+
id: import("zod").ZodString;
|
|
808
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
809
|
+
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
810
|
+
role: import("zod").ZodEnum<{
|
|
811
|
+
assistant: "assistant";
|
|
812
|
+
user: "user";
|
|
813
|
+
}>;
|
|
814
|
+
text: import("zod").ZodString;
|
|
815
|
+
attachments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
816
|
+
thinking: import("zod").ZodOptional<import("zod").ZodString>;
|
|
817
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
818
|
+
id: import("zod").ZodString;
|
|
819
|
+
name: import("zod").ZodString;
|
|
820
|
+
category: import("zod").ZodEnum<{
|
|
821
|
+
delete: "delete";
|
|
822
|
+
edit: "edit";
|
|
823
|
+
execute: "execute";
|
|
824
|
+
fetch: "fetch";
|
|
825
|
+
move: "move";
|
|
826
|
+
other: "other";
|
|
827
|
+
read: "read";
|
|
828
|
+
search: "search";
|
|
829
|
+
think: "think";
|
|
830
|
+
}>;
|
|
831
|
+
status: import("zod").ZodEnum<{
|
|
832
|
+
completed: "completed";
|
|
833
|
+
failed: "failed";
|
|
834
|
+
in_progress: "in_progress";
|
|
835
|
+
pending: "pending";
|
|
836
|
+
}>;
|
|
837
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
838
|
+
locations: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
839
|
+
path: import("zod").ZodString;
|
|
840
|
+
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
841
|
+
}, import("zod/v4/core").$strip>>>;
|
|
842
|
+
content: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
843
|
+
type: import("zod").ZodLiteral<"text">;
|
|
844
|
+
text: import("zod").ZodString;
|
|
845
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
846
|
+
type: import("zod").ZodLiteral<"diff">;
|
|
847
|
+
path: import("zod").ZodString;
|
|
848
|
+
oldText: import("zod").ZodOptional<import("zod").ZodString>;
|
|
849
|
+
newText: import("zod").ZodString;
|
|
850
|
+
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
851
|
+
}, import("zod/v4/core").$strip>], "type">>>;
|
|
852
|
+
}, import("zod/v4/core").$strip>>>;
|
|
853
|
+
}, import("zod/v4/core").$strip>>;
|
|
854
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
855
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
755
856
|
rename: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
756
857
|
id: import("zod").ZodString;
|
|
757
858
|
title: import("zod").ZodString;
|
|
@@ -764,7 +865,9 @@ export declare const sandboxContract: {
|
|
|
764
865
|
conflict: "conflict";
|
|
765
866
|
error: "error";
|
|
766
867
|
idle: "idle";
|
|
868
|
+
interrupted: "interrupted";
|
|
767
869
|
landed: "landed";
|
|
870
|
+
ready: "ready";
|
|
768
871
|
running: "running";
|
|
769
872
|
}>;
|
|
770
873
|
provider: import("zod").ZodString;
|
|
@@ -773,8 +876,74 @@ export declare const sandboxContract: {
|
|
|
773
876
|
native: "native";
|
|
774
877
|
}>;
|
|
775
878
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
879
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
880
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
776
881
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
777
882
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
883
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
884
|
+
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
885
|
+
automationId: import("zod").ZodString;
|
|
886
|
+
provider: import("zod").ZodString;
|
|
887
|
+
channelId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
888
|
+
author: import("zod").ZodOptional<import("zod").ZodString>;
|
|
889
|
+
}, import("zod/v4/core").$strip>>;
|
|
890
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
891
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
892
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
893
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
894
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
895
|
+
contextWindow: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
896
|
+
activity: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
897
|
+
tool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
898
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
899
|
+
todo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
900
|
+
}, import("zod/v4/core").$strip>>;
|
|
901
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
902
|
+
updatedAt: import("zod").ZodNumber;
|
|
903
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
904
|
+
attention: import("zod").ZodObject<{
|
|
905
|
+
plan: import("zod").ZodBoolean;
|
|
906
|
+
question: import("zod").ZodBoolean;
|
|
907
|
+
permission: import("zod").ZodBoolean;
|
|
908
|
+
conflict: import("zod").ZodBoolean;
|
|
909
|
+
}, import("zod/v4/core").$strip>;
|
|
910
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
911
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
912
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
913
|
+
files: import("zod").ZodNumber;
|
|
914
|
+
insertions: import("zod").ZodNumber;
|
|
915
|
+
deletions: import("zod").ZodNumber;
|
|
916
|
+
}, import("zod/v4/core").$strip>>;
|
|
917
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
918
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
919
|
+
autoLand: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
920
|
+
id: import("zod").ZodString;
|
|
921
|
+
autoLand: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
922
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
923
|
+
id: import("zod").ZodString;
|
|
924
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
925
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
926
|
+
status: import("zod").ZodEnum<{
|
|
927
|
+
awaiting: "awaiting";
|
|
928
|
+
conflict: "conflict";
|
|
929
|
+
error: "error";
|
|
930
|
+
idle: "idle";
|
|
931
|
+
interrupted: "interrupted";
|
|
932
|
+
landed: "landed";
|
|
933
|
+
ready: "ready";
|
|
934
|
+
running: "running";
|
|
935
|
+
}>;
|
|
936
|
+
provider: import("zod").ZodString;
|
|
937
|
+
harness: import("zod").ZodEnum<{
|
|
938
|
+
"claude-code": "claude-code";
|
|
939
|
+
native: "native";
|
|
940
|
+
}>;
|
|
941
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
942
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
943
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
944
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
945
|
+
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
946
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
778
947
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
779
948
|
automationId: import("zod").ZodString;
|
|
780
949
|
provider: import("zod").ZodString;
|
|
@@ -821,7 +990,9 @@ export declare const sandboxContract: {
|
|
|
821
990
|
conflict: "conflict";
|
|
822
991
|
error: "error";
|
|
823
992
|
idle: "idle";
|
|
993
|
+
interrupted: "interrupted";
|
|
824
994
|
landed: "landed";
|
|
995
|
+
ready: "ready";
|
|
825
996
|
running: "running";
|
|
826
997
|
}>;
|
|
827
998
|
provider: import("zod").ZodString;
|
|
@@ -830,8 +1001,11 @@ export declare const sandboxContract: {
|
|
|
830
1001
|
native: "native";
|
|
831
1002
|
}>;
|
|
832
1003
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1004
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1005
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
833
1006
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
834
1007
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1008
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
835
1009
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
836
1010
|
automationId: import("zod").ZodString;
|
|
837
1011
|
provider: import("zod").ZodString;
|
|
@@ -877,7 +1051,9 @@ export declare const sandboxContract: {
|
|
|
877
1051
|
conflict: "conflict";
|
|
878
1052
|
error: "error";
|
|
879
1053
|
idle: "idle";
|
|
1054
|
+
interrupted: "interrupted";
|
|
880
1055
|
landed: "landed";
|
|
1056
|
+
ready: "ready";
|
|
881
1057
|
running: "running";
|
|
882
1058
|
}>;
|
|
883
1059
|
provider: import("zod").ZodString;
|
|
@@ -886,8 +1062,11 @@ export declare const sandboxContract: {
|
|
|
886
1062
|
native: "native";
|
|
887
1063
|
}>;
|
|
888
1064
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1065
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1066
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
889
1067
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
890
1068
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1069
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
891
1070
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
892
1071
|
automationId: import("zod").ZodString;
|
|
893
1072
|
provider: import("zod").ZodString;
|
|
@@ -947,6 +1126,18 @@ export declare const sandboxContract: {
|
|
|
947
1126
|
landed: import("zod").ZodBoolean;
|
|
948
1127
|
}, import("zod/v4/core").$strip>>;
|
|
949
1128
|
}, import("zod/v4/core").$strip>>;
|
|
1129
|
+
conflicts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1130
|
+
repo: import("zod").ZodString;
|
|
1131
|
+
paths: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1132
|
+
path: import("zod").ZodString;
|
|
1133
|
+
reason: import("zod").ZodEnum<{
|
|
1134
|
+
binary: "binary";
|
|
1135
|
+
diverged: "diverged";
|
|
1136
|
+
workspace: "workspace";
|
|
1137
|
+
}>;
|
|
1138
|
+
}, import("zod/v4/core").$strip>>;
|
|
1139
|
+
clean: import("zod").ZodNumber;
|
|
1140
|
+
}, import("zod/v4/core").$strip>>>;
|
|
950
1141
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
951
1142
|
fileDiff: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
952
1143
|
id: import("zod").ZodString;
|
|
@@ -960,12 +1151,30 @@ export declare const sandboxContract: {
|
|
|
960
1151
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
961
1152
|
land: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
962
1153
|
id: import("zod").ZodString;
|
|
1154
|
+
mode: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1155
|
+
check: "check";
|
|
1156
|
+
measure: "measure";
|
|
1157
|
+
merge: "merge";
|
|
1158
|
+
}>>;
|
|
963
1159
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
964
1160
|
landed: import("zod").ZodBoolean;
|
|
965
1161
|
conflicts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1162
|
+
repo: import("zod").ZodString;
|
|
1163
|
+
paths: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1164
|
+
path: import("zod").ZodString;
|
|
1165
|
+
reason: import("zod").ZodEnum<{
|
|
1166
|
+
binary: "binary";
|
|
1167
|
+
diverged: "diverged";
|
|
1168
|
+
workspace: "workspace";
|
|
1169
|
+
}>;
|
|
1170
|
+
}, import("zod/v4/core").$strip>>;
|
|
1171
|
+
clean: import("zod").ZodNumber;
|
|
1172
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1173
|
+
resolving: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
966
1174
|
repo: import("zod").ZodString;
|
|
967
1175
|
paths: import("zod").ZodArray<import("zod").ZodString>;
|
|
968
1176
|
}, import("zod/v4/core").$strip>>>;
|
|
1177
|
+
held: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
969
1178
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
970
1179
|
discard: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
971
1180
|
id: import("zod").ZodString;
|
|
@@ -984,7 +1193,9 @@ export declare const sandboxContract: {
|
|
|
984
1193
|
conflict: "conflict";
|
|
985
1194
|
error: "error";
|
|
986
1195
|
idle: "idle";
|
|
1196
|
+
interrupted: "interrupted";
|
|
987
1197
|
landed: "landed";
|
|
1198
|
+
ready: "ready";
|
|
988
1199
|
running: "running";
|
|
989
1200
|
}>;
|
|
990
1201
|
provider: import("zod").ZodString;
|
|
@@ -993,8 +1204,11 @@ export declare const sandboxContract: {
|
|
|
993
1204
|
native: "native";
|
|
994
1205
|
}>;
|
|
995
1206
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1207
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1208
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
996
1209
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
997
1210
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1211
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
998
1212
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
999
1213
|
automationId: import("zod").ZodString;
|
|
1000
1214
|
provider: import("zod").ZodString;
|
|
@@ -1044,7 +1258,9 @@ export declare const sandboxContract: {
|
|
|
1044
1258
|
conflict: "conflict";
|
|
1045
1259
|
error: "error";
|
|
1046
1260
|
idle: "idle";
|
|
1261
|
+
interrupted: "interrupted";
|
|
1047
1262
|
landed: "landed";
|
|
1263
|
+
ready: "ready";
|
|
1048
1264
|
running: "running";
|
|
1049
1265
|
}>;
|
|
1050
1266
|
provider: import("zod").ZodString;
|
|
@@ -1053,8 +1269,11 @@ export declare const sandboxContract: {
|
|
|
1053
1269
|
native: "native";
|
|
1054
1270
|
}>;
|
|
1055
1271
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1272
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1273
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1056
1274
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1057
1275
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1276
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1058
1277
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1059
1278
|
automationId: import("zod").ZodString;
|
|
1060
1279
|
provider: import("zod").ZodString;
|
|
@@ -1092,6 +1311,9 @@ export declare const sandboxContract: {
|
|
|
1092
1311
|
}, import("zod/v4/core").$strip>>;
|
|
1093
1312
|
rev: import("zod").ZodNumber;
|
|
1094
1313
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1314
|
+
purge: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1315
|
+
removed: import("zod").ZodArray<import("zod").ZodString>;
|
|
1316
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1095
1317
|
};
|
|
1096
1318
|
automations: {
|
|
1097
1319
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
@@ -1465,6 +1687,8 @@ export declare const sandboxContract: {
|
|
|
1465
1687
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1466
1688
|
id: import("zod").ZodString;
|
|
1467
1689
|
label: import("zod").ZodString;
|
|
1690
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1691
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1468
1692
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1469
1693
|
connectedAt: import("zod").ZodNumber;
|
|
1470
1694
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1496,6 +1720,8 @@ export declare const sandboxContract: {
|
|
|
1496
1720
|
accounts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1497
1721
|
id: import("zod").ZodString;
|
|
1498
1722
|
label: import("zod").ZodString;
|
|
1723
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1724
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1499
1725
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1500
1726
|
connectedAt: import("zod").ZodNumber;
|
|
1501
1727
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1511,6 +1737,28 @@ export declare const sandboxContract: {
|
|
|
1511
1737
|
}, import("zod/v4/core").$strip>>;
|
|
1512
1738
|
}, import("zod/v4/core").$strip>>;
|
|
1513
1739
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1740
|
+
rename: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1741
|
+
id: import("zod").ZodString;
|
|
1742
|
+
label: import("zod").ZodString;
|
|
1743
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1744
|
+
id: import("zod").ZodString;
|
|
1745
|
+
label: import("zod").ZodString;
|
|
1746
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1747
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1748
|
+
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1749
|
+
connectedAt: import("zod").ZodNumber;
|
|
1750
|
+
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1751
|
+
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1752
|
+
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1753
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1754
|
+
kind: import("zod").ZodString;
|
|
1755
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1756
|
+
utilization: import("zod").ZodNumber;
|
|
1757
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1758
|
+
}, import("zod/v4/core").$strip>>;
|
|
1759
|
+
measuredAt: import("zod").ZodNumber;
|
|
1760
|
+
}, import("zod/v4/core").$strip>>;
|
|
1761
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1514
1762
|
disconnect: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1515
1763
|
id: import("zod").ZodString;
|
|
1516
1764
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -1604,6 +1852,7 @@ export declare const sandboxContract: {
|
|
|
1604
1852
|
surface: import("zod").ZodEnum<{
|
|
1605
1853
|
directory: "directory";
|
|
1606
1854
|
rail: "rail";
|
|
1855
|
+
sandbox: "sandbox";
|
|
1607
1856
|
}>;
|
|
1608
1857
|
}, import("zod/v4/core").$strip>>>;
|
|
1609
1858
|
viewers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -1742,6 +1991,7 @@ export declare const sandboxContract: {
|
|
|
1742
1991
|
id: import("zod").ZodString;
|
|
1743
1992
|
title: import("zod").ZodString;
|
|
1744
1993
|
updatedAt: import("zod").ZodNumber;
|
|
1994
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1745
1995
|
}, import("zod/v4/core").$strip>>;
|
|
1746
1996
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1747
1997
|
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -1753,6 +2003,7 @@ export declare const sandboxContract: {
|
|
|
1753
2003
|
user: "user";
|
|
1754
2004
|
}>;
|
|
1755
2005
|
text: import("zod").ZodString;
|
|
2006
|
+
attachments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
1756
2007
|
thinking: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1757
2008
|
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1758
2009
|
id: import("zod").ZodString;
|
|
@@ -1799,6 +2050,12 @@ export declare const sandboxContract: {
|
|
|
1799
2050
|
skills: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
1800
2051
|
hashlineEdits: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1801
2052
|
terseOutput: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2053
|
+
systemPromptMode: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
2054
|
+
claude: "claude";
|
|
2055
|
+
custom: "custom";
|
|
2056
|
+
intentic: "intentic";
|
|
2057
|
+
}>>;
|
|
2058
|
+
systemPrompt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1802
2059
|
iqSearch: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1803
2060
|
outputCleaners: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1804
2061
|
outputHoldout: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -1806,13 +2063,22 @@ export declare const sandboxContract: {
|
|
|
1806
2063
|
native: "native";
|
|
1807
2064
|
rtk: "rtk";
|
|
1808
2065
|
}>>;
|
|
2066
|
+
quickModel: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1809
2067
|
agentRetentionDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2068
|
+
autoLand: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2069
|
+
autoResumeOnLimit: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1810
2070
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1811
2071
|
set: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1812
2072
|
stableSystemPrompt: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1813
2073
|
skills: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
1814
2074
|
hashlineEdits: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1815
2075
|
terseOutput: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2076
|
+
systemPromptMode: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
2077
|
+
claude: "claude";
|
|
2078
|
+
custom: "custom";
|
|
2079
|
+
intentic: "intentic";
|
|
2080
|
+
}>>;
|
|
2081
|
+
systemPrompt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1816
2082
|
iqSearch: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1817
2083
|
outputCleaners: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1818
2084
|
outputHoldout: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -1820,11 +2086,19 @@ export declare const sandboxContract: {
|
|
|
1820
2086
|
native: "native";
|
|
1821
2087
|
rtk: "rtk";
|
|
1822
2088
|
}>>;
|
|
2089
|
+
quickModel: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1823
2090
|
agentRetentionDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2091
|
+
autoLand: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2092
|
+
autoResumeOnLimit: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1824
2093
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1825
2094
|
ok: import("zod").ZodLiteral<true>;
|
|
1826
2095
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1827
2096
|
savings: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2097
|
+
source: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
2098
|
+
native: "native";
|
|
2099
|
+
rtk: "rtk";
|
|
2100
|
+
}>>;
|
|
2101
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1828
2102
|
commands: import("zod").ZodNumber;
|
|
1829
2103
|
rawTokens: import("zod").ZodNumber;
|
|
1830
2104
|
emittedTokens: import("zod").ZodNumber;
|
|
@@ -1843,6 +2117,15 @@ export declare const sandboxContract: {
|
|
|
1843
2117
|
tokens: import("zod").ZodNumber;
|
|
1844
2118
|
}, import("zod/v4/core").$strip>>;
|
|
1845
2119
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2120
|
+
builtinPrompt: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2121
|
+
base: import("zod").ZodEnum<{
|
|
2122
|
+
claude: "claude";
|
|
2123
|
+
intentic: "intentic";
|
|
2124
|
+
}>;
|
|
2125
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2126
|
+
text: import("zod").ZodString;
|
|
2127
|
+
version: import("zod").ZodString;
|
|
2128
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1846
2129
|
};
|
|
1847
2130
|
intentic: {
|
|
1848
2131
|
run: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -1927,6 +2210,7 @@ export declare const sandboxContract: {
|
|
|
1927
2210
|
additions: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1928
2211
|
deletions: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1929
2212
|
}, import("zod/v4/core").$strip>>;
|
|
2213
|
+
truncated: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1930
2214
|
remote: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1931
2215
|
remote: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1932
2216
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1937,6 +2221,18 @@ export declare const sandboxContract: {
|
|
|
1937
2221
|
origins: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString>>>;
|
|
1938
2222
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1939
2223
|
}, import("zod/v4/core").$strip>>;
|
|
2224
|
+
originAgents: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
2225
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2226
|
+
provider: import("zod").ZodString;
|
|
2227
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2228
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2229
|
+
commitMessage: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2230
|
+
repos: import("zod").ZodArray<import("zod").ZodString>;
|
|
2231
|
+
all: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2232
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2233
|
+
message: import("zod").ZodString;
|
|
2234
|
+
provider: import("zod").ZodString;
|
|
2235
|
+
model: import("zod").ZodString;
|
|
1940
2236
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1941
2237
|
repos: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1942
2238
|
repos: import("zod").ZodArray<import("zod").ZodString>;
|
|
@@ -2201,6 +2497,8 @@ export declare const sandboxContract: {
|
|
|
2201
2497
|
accounts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2202
2498
|
id: import("zod").ZodString;
|
|
2203
2499
|
label: import("zod").ZodString;
|
|
2500
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2501
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2204
2502
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2205
2503
|
connectedAt: import("zod").ZodNumber;
|
|
2206
2504
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -2229,6 +2527,8 @@ export declare const sandboxContract: {
|
|
|
2229
2527
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2230
2528
|
id: import("zod").ZodString;
|
|
2231
2529
|
label: import("zod").ZodString;
|
|
2530
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2531
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2232
2532
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2233
2533
|
connectedAt: import("zod").ZodNumber;
|
|
2234
2534
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -2260,6 +2560,8 @@ export declare const sandboxContract: {
|
|
|
2260
2560
|
accounts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2261
2561
|
id: import("zod").ZodString;
|
|
2262
2562
|
label: import("zod").ZodString;
|
|
2563
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2564
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2263
2565
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2264
2566
|
connectedAt: import("zod").ZodNumber;
|
|
2265
2567
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -2275,6 +2577,28 @@ export declare const sandboxContract: {
|
|
|
2275
2577
|
}, import("zod/v4/core").$strip>>;
|
|
2276
2578
|
}, import("zod/v4/core").$strip>>;
|
|
2277
2579
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2580
|
+
rename: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2581
|
+
id: import("zod").ZodString;
|
|
2582
|
+
label: import("zod").ZodString;
|
|
2583
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2584
|
+
id: import("zod").ZodString;
|
|
2585
|
+
label: import("zod").ZodString;
|
|
2586
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2587
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2588
|
+
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2589
|
+
connectedAt: import("zod").ZodNumber;
|
|
2590
|
+
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2591
|
+
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2592
|
+
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2593
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2594
|
+
kind: import("zod").ZodString;
|
|
2595
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2596
|
+
utilization: import("zod").ZodNumber;
|
|
2597
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2598
|
+
}, import("zod/v4/core").$strip>>;
|
|
2599
|
+
measuredAt: import("zod").ZodNumber;
|
|
2600
|
+
}, import("zod/v4/core").$strip>>;
|
|
2601
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2278
2602
|
disconnect: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2279
2603
|
id: import("zod").ZodString;
|
|
2280
2604
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -2337,11 +2661,10 @@ export declare const sandboxContract: {
|
|
|
2337
2661
|
file: "file";
|
|
2338
2662
|
}>;
|
|
2339
2663
|
size: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2340
|
-
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2341
2664
|
ignored: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2342
2665
|
children: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<any, import("zod/v4/core").$strip>>>;
|
|
2343
2666
|
}, import("zod/v4/core").$strip>>;
|
|
2344
|
-
|
|
2667
|
+
hidden: import("zod").ZodNumber;
|
|
2345
2668
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2346
2669
|
children: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2347
2670
|
path: import("zod").ZodString;
|
|
@@ -2354,11 +2677,10 @@ export declare const sandboxContract: {
|
|
|
2354
2677
|
file: "file";
|
|
2355
2678
|
}>;
|
|
2356
2679
|
size: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2357
|
-
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2358
2680
|
ignored: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2359
2681
|
children: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<any, import("zod/v4/core").$strip>>>;
|
|
2360
2682
|
}, import("zod/v4/core").$strip>>;
|
|
2361
|
-
|
|
2683
|
+
hidden: import("zod").ZodNumber;
|
|
2362
2684
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2363
2685
|
file: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2364
2686
|
path: import("zod").ZodString;
|
|
@@ -2433,6 +2755,41 @@ export declare const sandboxContract: {
|
|
|
2433
2755
|
related: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2434
2756
|
features: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2435
2757
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2758
|
+
health: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2759
|
+
repo: import("zod").ZodString;
|
|
2760
|
+
since: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2761
|
+
limit: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
2762
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2763
|
+
repo: import("zod").ZodString;
|
|
2764
|
+
totals: import("zod").ZodObject<{
|
|
2765
|
+
files: import("zod").ZodNumber;
|
|
2766
|
+
symbols: import("zod").ZodNumber;
|
|
2767
|
+
complexity: import("zod").ZodNumber;
|
|
2768
|
+
hotspots: import("zod").ZodNumber;
|
|
2769
|
+
}, import("zod/v4/core").$strip>;
|
|
2770
|
+
hotspots: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2771
|
+
path: import("zod").ZodString;
|
|
2772
|
+
commits: import("zod").ZodNumber;
|
|
2773
|
+
adds: import("zod").ZodNumber;
|
|
2774
|
+
dels: import("zod").ZodNumber;
|
|
2775
|
+
complexity: import("zod").ZodNumber;
|
|
2776
|
+
score: import("zod").ZodNumber;
|
|
2777
|
+
latestMs: import("zod").ZodNumber;
|
|
2778
|
+
}, import("zod/v4/core").$strip>>;
|
|
2779
|
+
modules: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2780
|
+
path: import("zod").ZodString;
|
|
2781
|
+
exports: import("zod").ZodNumber;
|
|
2782
|
+
}, import("zod/v4/core").$strip>>;
|
|
2783
|
+
freshness: import("zod").ZodObject<{
|
|
2784
|
+
state: import("zod").ZodEnum<{
|
|
2785
|
+
building: "building";
|
|
2786
|
+
fresh: "fresh";
|
|
2787
|
+
stale: "stale";
|
|
2788
|
+
}>;
|
|
2789
|
+
ageMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2790
|
+
progress: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2791
|
+
}, import("zod/v4/core").$strip>;
|
|
2792
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2436
2793
|
classify: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2437
2794
|
classifications: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2438
2795
|
path: import("zod").ZodString;
|
|
@@ -2541,7 +2898,7 @@ export declare const sandboxContract: {
|
|
|
2541
2898
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2542
2899
|
apps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2543
2900
|
app: import("zod").ZodString;
|
|
2544
|
-
|
|
2901
|
+
kind: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2545
2902
|
previewUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2546
2903
|
running: import("zod").ZodBoolean;
|
|
2547
2904
|
healthy: import("zod").ZodBoolean;
|
|
@@ -2740,6 +3097,39 @@ export declare const sandboxContract: {
|
|
|
2740
3097
|
truncated: import("zod").ZodBoolean;
|
|
2741
3098
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2742
3099
|
};
|
|
3100
|
+
memory: {
|
|
3101
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
3102
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3103
|
+
project: import("zod").ZodString;
|
|
3104
|
+
name: import("zod").ZodString;
|
|
3105
|
+
sizeBytes: import("zod").ZodNumber;
|
|
3106
|
+
modifiedAt: import("zod").ZodNumber;
|
|
3107
|
+
}, import("zod/v4/core").$strip>>;
|
|
3108
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3109
|
+
read: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3110
|
+
project: import("zod").ZodString;
|
|
3111
|
+
name: import("zod").ZodString;
|
|
3112
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3113
|
+
project: import("zod").ZodString;
|
|
3114
|
+
name: import("zod").ZodString;
|
|
3115
|
+
content: import("zod").ZodString;
|
|
3116
|
+
sizeBytes: import("zod").ZodNumber;
|
|
3117
|
+
modifiedAt: import("zod").ZodNumber;
|
|
3118
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3119
|
+
write: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3120
|
+
project: import("zod").ZodString;
|
|
3121
|
+
name: import("zod").ZodString;
|
|
3122
|
+
content: import("zod").ZodString;
|
|
3123
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3124
|
+
ok: import("zod").ZodLiteral<true>;
|
|
3125
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3126
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3127
|
+
project: import("zod").ZodString;
|
|
3128
|
+
name: import("zod").ZodString;
|
|
3129
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3130
|
+
ok: import("zod").ZodLiteral<true>;
|
|
3131
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3132
|
+
};
|
|
2743
3133
|
panels: {
|
|
2744
3134
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2745
3135
|
panels: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -2759,6 +3149,7 @@ export declare const sandboxContract: {
|
|
|
2759
3149
|
directoryUi: import("zod").ZodBoolean;
|
|
2760
3150
|
monorepo: import("zod").ZodBoolean;
|
|
2761
3151
|
vitest: import("zod").ZodBoolean;
|
|
3152
|
+
userStories: import("zod").ZodBoolean;
|
|
2762
3153
|
}, import("zod/v4/core").$strip>>;
|
|
2763
3154
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2764
3155
|
start: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -2825,7 +3216,7 @@ export declare const sandboxContract: {
|
|
|
2825
3216
|
ok: import("zod").ZodLiteral<true>;
|
|
2826
3217
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2827
3218
|
test: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2828
|
-
|
|
3219
|
+
delivered: import("zod").ZodNumber;
|
|
2829
3220
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2830
3221
|
};
|
|
2831
3222
|
secrets: {
|
|
@@ -2884,6 +3275,11 @@ export declare const sandboxContract: {
|
|
|
2884
3275
|
latest: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2885
3276
|
updateAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2886
3277
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3278
|
+
session: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
3279
|
+
token: import("zod").ZodString;
|
|
3280
|
+
expiresAt: import("zod").ZodNumber;
|
|
3281
|
+
email: import("zod").ZodString;
|
|
3282
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2887
3283
|
events: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2888
3284
|
clientId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2889
3285
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
@@ -2916,12 +3312,15 @@ export declare const sandboxContract: {
|
|
|
2916
3312
|
id: string;
|
|
2917
3313
|
sessionId?: string | undefined;
|
|
2918
3314
|
title?: string | undefined;
|
|
2919
|
-
status: "awaiting" | "conflict" | "error" | "idle" | "landed" | "running";
|
|
3315
|
+
status: "awaiting" | "conflict" | "error" | "idle" | "interrupted" | "landed" | "ready" | "running";
|
|
2920
3316
|
provider: string;
|
|
2921
3317
|
harness: "claude-code" | "native";
|
|
2922
3318
|
model?: string | undefined;
|
|
3319
|
+
effort?: string | undefined;
|
|
3320
|
+
thinking?: boolean | undefined;
|
|
2923
3321
|
account?: string | undefined;
|
|
2924
3322
|
branch?: string | undefined;
|
|
3323
|
+
autoLand?: boolean | undefined;
|
|
2925
3324
|
origin?: {
|
|
2926
3325
|
automationId: string;
|
|
2927
3326
|
provider: string;
|
|
@@ -2988,12 +3387,15 @@ export declare const sandboxContract: {
|
|
|
2988
3387
|
id: string;
|
|
2989
3388
|
sessionId?: string | undefined;
|
|
2990
3389
|
title?: string | undefined;
|
|
2991
|
-
status: "awaiting" | "conflict" | "error" | "idle" | "landed" | "running";
|
|
3390
|
+
status: "awaiting" | "conflict" | "error" | "idle" | "interrupted" | "landed" | "ready" | "running";
|
|
2992
3391
|
provider: string;
|
|
2993
3392
|
harness: "claude-code" | "native";
|
|
2994
3393
|
model?: string | undefined;
|
|
3394
|
+
effort?: string | undefined;
|
|
3395
|
+
thinking?: boolean | undefined;
|
|
2995
3396
|
account?: string | undefined;
|
|
2996
3397
|
branch?: string | undefined;
|
|
3398
|
+
autoLand?: boolean | undefined;
|
|
2997
3399
|
origin?: {
|
|
2998
3400
|
automationId: string;
|
|
2999
3401
|
provider: string;
|
|
@@ -3070,6 +3472,8 @@ export declare const sandboxContract: {
|
|
|
3070
3472
|
shell: "shell";
|
|
3071
3473
|
}>;
|
|
3072
3474
|
running: import("zod").ZodBoolean;
|
|
3475
|
+
activityAt: import("zod").ZodNumber;
|
|
3476
|
+
exitCode: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3073
3477
|
extensionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3074
3478
|
processName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3075
3479
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -3082,9 +3486,18 @@ export declare const sandboxContract: {
|
|
|
3082
3486
|
};
|
|
3083
3487
|
translator: {
|
|
3084
3488
|
accounts: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
3085
|
-
codex: import("zod").
|
|
3086
|
-
|
|
3087
|
-
|
|
3489
|
+
codex: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3490
|
+
name: import("zod").ZodString;
|
|
3491
|
+
label: import("zod").ZodString;
|
|
3492
|
+
}, import("zod/v4/core").$strip>>;
|
|
3493
|
+
grok: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3494
|
+
name: import("zod").ZodString;
|
|
3495
|
+
label: import("zod").ZodString;
|
|
3496
|
+
}, import("zod/v4/core").$strip>>;
|
|
3497
|
+
gemini: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3498
|
+
name: import("zod").ZodString;
|
|
3499
|
+
label: import("zod").ZodString;
|
|
3500
|
+
}, import("zod/v4/core").$strip>>;
|
|
3088
3501
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3089
3502
|
connect: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3090
3503
|
provider: import("zod").ZodEnum<{
|
|
@@ -3114,6 +3527,7 @@ export declare const sandboxContract: {
|
|
|
3114
3527
|
gemini: "gemini";
|
|
3115
3528
|
grok: "grok";
|
|
3116
3529
|
}>;
|
|
3530
|
+
name: import("zod").ZodString;
|
|
3117
3531
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3118
3532
|
ok: import("zod").ZodLiteral<true>;
|
|
3119
3533
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|