@intentic/sandbox-contract 1.159.0 → 1.161.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 +50 -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 +72 -15
- package/dist/contracts/settings.contract.d.ts.map +1 -1
- package/dist/contracts/settings.contract.js +3 -2
- 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/usage.contract.js +2 -2
- package/dist/contracts/usage.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 +124 -2
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +21 -3
- package/dist/events.js.map +1 -1
- package/dist/index.d.ts +491 -30
- 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 +374 -14
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +145 -15
- 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 +16 -4
- package/src/contracts/system.contract.ts +4 -0
- package/src/contracts/translator.contract.ts +3 -2
- package/src/contracts/usage.contract.ts +2 -2
- package/src/contracts/workspace.contract.ts +6 -0
- package/src/events.ts +85 -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 +30 -1
- package/src/schemas.ts +500 -42
- 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;
|
|
@@ -253,6 +262,12 @@ export declare const sandboxContract: {
|
|
|
253
262
|
utilization?: number | undefined;
|
|
254
263
|
kind: "rate_limit_info";
|
|
255
264
|
account?: string | undefined;
|
|
265
|
+
} | {
|
|
266
|
+
kind: "provider_retry";
|
|
267
|
+
attempt: number;
|
|
268
|
+
maxAttempts: number;
|
|
269
|
+
nextAttemptAt: number;
|
|
270
|
+
status?: number | undefined;
|
|
256
271
|
} | {
|
|
257
272
|
kind: "account_usage";
|
|
258
273
|
account?: string | undefined;
|
|
@@ -324,7 +339,15 @@ export declare const sandboxContract: {
|
|
|
324
339
|
} | {
|
|
325
340
|
kind: "error";
|
|
326
341
|
message: string;
|
|
327
|
-
code?: "agent-busy" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "grok-model-invalid" | "rate_limit" | "session-not-found" | "subscription-required" | undefined;
|
|
342
|
+
code?: "agent-busy" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "grok-model-invalid" | "provider-outage" | "rate_limit" | "session-not-found" | "subscription-required" | "unknown-command" | undefined;
|
|
343
|
+
resetsAt?: number | undefined;
|
|
344
|
+
autoResume?: "available" | "scheduled" | undefined;
|
|
345
|
+
outage?: {
|
|
346
|
+
retryAt: number;
|
|
347
|
+
attempt: number;
|
|
348
|
+
maxAttempts: number;
|
|
349
|
+
} | undefined;
|
|
350
|
+
account?: string | undefined;
|
|
328
351
|
} | {
|
|
329
352
|
kind: "done";
|
|
330
353
|
};
|
|
@@ -346,13 +369,19 @@ export declare const sandboxContract: {
|
|
|
346
369
|
kind: "worktree";
|
|
347
370
|
branch: string;
|
|
348
371
|
base: string;
|
|
372
|
+
unenforced?: boolean | undefined;
|
|
349
373
|
} | {
|
|
350
374
|
kind: "landed";
|
|
351
375
|
landed: boolean;
|
|
352
376
|
conflicts?: {
|
|
353
377
|
repo: string;
|
|
354
|
-
paths:
|
|
378
|
+
paths: {
|
|
379
|
+
path: string;
|
|
380
|
+
reason: "binary" | "diverged" | "workspace";
|
|
381
|
+
}[];
|
|
382
|
+
clean: number;
|
|
355
383
|
}[] | undefined;
|
|
384
|
+
held?: boolean | undefined;
|
|
356
385
|
} | {
|
|
357
386
|
kind: "init";
|
|
358
387
|
model: string;
|
|
@@ -444,6 +473,12 @@ export declare const sandboxContract: {
|
|
|
444
473
|
utilization?: number | undefined;
|
|
445
474
|
kind: "rate_limit_info";
|
|
446
475
|
account?: string | undefined;
|
|
476
|
+
} | {
|
|
477
|
+
kind: "provider_retry";
|
|
478
|
+
attempt: number;
|
|
479
|
+
maxAttempts: number;
|
|
480
|
+
nextAttemptAt: number;
|
|
481
|
+
status?: number | undefined;
|
|
447
482
|
} | {
|
|
448
483
|
kind: "account_usage";
|
|
449
484
|
account?: string | undefined;
|
|
@@ -515,7 +550,15 @@ export declare const sandboxContract: {
|
|
|
515
550
|
} | {
|
|
516
551
|
kind: "error";
|
|
517
552
|
message: string;
|
|
518
|
-
code?: "agent-busy" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "grok-model-invalid" | "rate_limit" | "session-not-found" | "subscription-required" | undefined;
|
|
553
|
+
code?: "agent-busy" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "grok-model-invalid" | "provider-outage" | "rate_limit" | "session-not-found" | "subscription-required" | "unknown-command" | undefined;
|
|
554
|
+
resetsAt?: number | undefined;
|
|
555
|
+
autoResume?: "available" | "scheduled" | undefined;
|
|
556
|
+
outage?: {
|
|
557
|
+
retryAt: number;
|
|
558
|
+
attempt: number;
|
|
559
|
+
maxAttempts: number;
|
|
560
|
+
} | undefined;
|
|
561
|
+
account?: string | undefined;
|
|
519
562
|
} | {
|
|
520
563
|
kind: "done";
|
|
521
564
|
};
|
|
@@ -568,6 +611,12 @@ export declare const sandboxContract: {
|
|
|
568
611
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
569
612
|
ok: import("zod").ZodLiteral<true>;
|
|
570
613
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
614
|
+
resumeLimit: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
615
|
+
conversationId: import("zod").ZodString;
|
|
616
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
617
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
618
|
+
run: import("zod").ZodString;
|
|
619
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
571
620
|
commands: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
572
621
|
agent: import("zod").ZodOptional<import("zod").ZodString>;
|
|
573
622
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -589,7 +638,9 @@ export declare const sandboxContract: {
|
|
|
589
638
|
conflict: "conflict";
|
|
590
639
|
error: "error";
|
|
591
640
|
idle: "idle";
|
|
641
|
+
interrupted: "interrupted";
|
|
592
642
|
landed: "landed";
|
|
643
|
+
ready: "ready";
|
|
593
644
|
running: "running";
|
|
594
645
|
}>;
|
|
595
646
|
provider: import("zod").ZodString;
|
|
@@ -598,8 +649,11 @@ export declare const sandboxContract: {
|
|
|
598
649
|
native: "native";
|
|
599
650
|
}>;
|
|
600
651
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
652
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
653
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
601
654
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
602
655
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
656
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
603
657
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
604
658
|
automationId: import("zod").ZodString;
|
|
605
659
|
provider: import("zod").ZodString;
|
|
@@ -647,7 +701,9 @@ export declare const sandboxContract: {
|
|
|
647
701
|
conflict: "conflict";
|
|
648
702
|
error: "error";
|
|
649
703
|
idle: "idle";
|
|
704
|
+
interrupted: "interrupted";
|
|
650
705
|
landed: "landed";
|
|
706
|
+
ready: "ready";
|
|
651
707
|
running: "running";
|
|
652
708
|
}>;
|
|
653
709
|
provider: import("zod").ZodString;
|
|
@@ -656,8 +712,11 @@ export declare const sandboxContract: {
|
|
|
656
712
|
native: "native";
|
|
657
713
|
}>;
|
|
658
714
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
715
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
716
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
659
717
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
660
718
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
719
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
661
720
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
662
721
|
automationId: import("zod").ZodString;
|
|
663
722
|
provider: import("zod").ZodString;
|
|
@@ -695,6 +754,15 @@ export declare const sandboxContract: {
|
|
|
695
754
|
}, import("zod/v4/core").$strip>>;
|
|
696
755
|
rev: import("zod").ZodNumber;
|
|
697
756
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
757
|
+
search: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
758
|
+
query: import("zod").ZodString;
|
|
759
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
760
|
+
matches: import("zod").ZodArray<import("zod").ZodObject<{
|
|
761
|
+
id: import("zod").ZodString;
|
|
762
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
763
|
+
}, import("zod/v4/core").$strip>>;
|
|
764
|
+
scanned: import("zod").ZodNumber;
|
|
765
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
698
766
|
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
699
767
|
id: import("zod").ZodString;
|
|
700
768
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -706,7 +774,9 @@ export declare const sandboxContract: {
|
|
|
706
774
|
conflict: "conflict";
|
|
707
775
|
error: "error";
|
|
708
776
|
idle: "idle";
|
|
777
|
+
interrupted: "interrupted";
|
|
709
778
|
landed: "landed";
|
|
779
|
+
ready: "ready";
|
|
710
780
|
running: "running";
|
|
711
781
|
}>;
|
|
712
782
|
provider: import("zod").ZodString;
|
|
@@ -715,8 +785,11 @@ export declare const sandboxContract: {
|
|
|
715
785
|
native: "native";
|
|
716
786
|
}>;
|
|
717
787
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
788
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
789
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
718
790
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
719
791
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
792
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
720
793
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
721
794
|
automationId: import("zod").ZodString;
|
|
722
795
|
provider: import("zod").ZodString;
|
|
@@ -752,6 +825,56 @@ export declare const sandboxContract: {
|
|
|
752
825
|
}, import("zod/v4/core").$strip>>;
|
|
753
826
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
754
827
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
828
|
+
transcript: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
829
|
+
id: import("zod").ZodString;
|
|
830
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
831
|
+
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
832
|
+
role: import("zod").ZodEnum<{
|
|
833
|
+
assistant: "assistant";
|
|
834
|
+
user: "user";
|
|
835
|
+
}>;
|
|
836
|
+
text: import("zod").ZodString;
|
|
837
|
+
attachments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
838
|
+
thinking: import("zod").ZodOptional<import("zod").ZodString>;
|
|
839
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
840
|
+
id: import("zod").ZodString;
|
|
841
|
+
name: import("zod").ZodString;
|
|
842
|
+
category: import("zod").ZodEnum<{
|
|
843
|
+
delete: "delete";
|
|
844
|
+
edit: "edit";
|
|
845
|
+
execute: "execute";
|
|
846
|
+
fetch: "fetch";
|
|
847
|
+
move: "move";
|
|
848
|
+
other: "other";
|
|
849
|
+
read: "read";
|
|
850
|
+
search: "search";
|
|
851
|
+
think: "think";
|
|
852
|
+
}>;
|
|
853
|
+
status: import("zod").ZodEnum<{
|
|
854
|
+
completed: "completed";
|
|
855
|
+
failed: "failed";
|
|
856
|
+
in_progress: "in_progress";
|
|
857
|
+
pending: "pending";
|
|
858
|
+
}>;
|
|
859
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
860
|
+
locations: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
861
|
+
path: import("zod").ZodString;
|
|
862
|
+
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
863
|
+
}, import("zod/v4/core").$strip>>>;
|
|
864
|
+
content: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
865
|
+
type: import("zod").ZodLiteral<"text">;
|
|
866
|
+
text: import("zod").ZodString;
|
|
867
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
868
|
+
type: import("zod").ZodLiteral<"diff">;
|
|
869
|
+
path: import("zod").ZodString;
|
|
870
|
+
oldText: import("zod").ZodOptional<import("zod").ZodString>;
|
|
871
|
+
newText: import("zod").ZodString;
|
|
872
|
+
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
873
|
+
}, import("zod/v4/core").$strip>], "type">>>;
|
|
874
|
+
}, import("zod/v4/core").$strip>>>;
|
|
875
|
+
}, import("zod/v4/core").$strip>>;
|
|
876
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
877
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
755
878
|
rename: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
756
879
|
id: import("zod").ZodString;
|
|
757
880
|
title: import("zod").ZodString;
|
|
@@ -764,7 +887,72 @@ export declare const sandboxContract: {
|
|
|
764
887
|
conflict: "conflict";
|
|
765
888
|
error: "error";
|
|
766
889
|
idle: "idle";
|
|
890
|
+
interrupted: "interrupted";
|
|
891
|
+
landed: "landed";
|
|
892
|
+
ready: "ready";
|
|
893
|
+
running: "running";
|
|
894
|
+
}>;
|
|
895
|
+
provider: import("zod").ZodString;
|
|
896
|
+
harness: import("zod").ZodEnum<{
|
|
897
|
+
"claude-code": "claude-code";
|
|
898
|
+
native: "native";
|
|
899
|
+
}>;
|
|
900
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
901
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
902
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
903
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
904
|
+
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
905
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
906
|
+
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
907
|
+
automationId: import("zod").ZodString;
|
|
908
|
+
provider: import("zod").ZodString;
|
|
909
|
+
channelId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
910
|
+
author: import("zod").ZodOptional<import("zod").ZodString>;
|
|
911
|
+
}, import("zod/v4/core").$strip>>;
|
|
912
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
913
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
914
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
915
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
916
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
917
|
+
contextWindow: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
918
|
+
activity: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
919
|
+
tool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
920
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
921
|
+
todo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
922
|
+
}, import("zod/v4/core").$strip>>;
|
|
923
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
924
|
+
updatedAt: import("zod").ZodNumber;
|
|
925
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
926
|
+
attention: import("zod").ZodObject<{
|
|
927
|
+
plan: import("zod").ZodBoolean;
|
|
928
|
+
question: import("zod").ZodBoolean;
|
|
929
|
+
permission: import("zod").ZodBoolean;
|
|
930
|
+
conflict: import("zod").ZodBoolean;
|
|
931
|
+
}, import("zod/v4/core").$strip>;
|
|
932
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
933
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
934
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
935
|
+
files: import("zod").ZodNumber;
|
|
936
|
+
insertions: import("zod").ZodNumber;
|
|
937
|
+
deletions: import("zod").ZodNumber;
|
|
938
|
+
}, import("zod/v4/core").$strip>>;
|
|
939
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
940
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
941
|
+
autoLand: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
942
|
+
id: import("zod").ZodString;
|
|
943
|
+
autoLand: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
944
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
945
|
+
id: import("zod").ZodString;
|
|
946
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
947
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
948
|
+
status: import("zod").ZodEnum<{
|
|
949
|
+
awaiting: "awaiting";
|
|
950
|
+
conflict: "conflict";
|
|
951
|
+
error: "error";
|
|
952
|
+
idle: "idle";
|
|
953
|
+
interrupted: "interrupted";
|
|
767
954
|
landed: "landed";
|
|
955
|
+
ready: "ready";
|
|
768
956
|
running: "running";
|
|
769
957
|
}>;
|
|
770
958
|
provider: import("zod").ZodString;
|
|
@@ -773,8 +961,11 @@ export declare const sandboxContract: {
|
|
|
773
961
|
native: "native";
|
|
774
962
|
}>;
|
|
775
963
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
964
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
965
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
776
966
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
777
967
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
968
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
778
969
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
779
970
|
automationId: import("zod").ZodString;
|
|
780
971
|
provider: import("zod").ZodString;
|
|
@@ -821,7 +1012,9 @@ export declare const sandboxContract: {
|
|
|
821
1012
|
conflict: "conflict";
|
|
822
1013
|
error: "error";
|
|
823
1014
|
idle: "idle";
|
|
1015
|
+
interrupted: "interrupted";
|
|
824
1016
|
landed: "landed";
|
|
1017
|
+
ready: "ready";
|
|
825
1018
|
running: "running";
|
|
826
1019
|
}>;
|
|
827
1020
|
provider: import("zod").ZodString;
|
|
@@ -830,8 +1023,11 @@ export declare const sandboxContract: {
|
|
|
830
1023
|
native: "native";
|
|
831
1024
|
}>;
|
|
832
1025
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1026
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1027
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
833
1028
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
834
1029
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1030
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
835
1031
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
836
1032
|
automationId: import("zod").ZodString;
|
|
837
1033
|
provider: import("zod").ZodString;
|
|
@@ -877,7 +1073,9 @@ export declare const sandboxContract: {
|
|
|
877
1073
|
conflict: "conflict";
|
|
878
1074
|
error: "error";
|
|
879
1075
|
idle: "idle";
|
|
1076
|
+
interrupted: "interrupted";
|
|
880
1077
|
landed: "landed";
|
|
1078
|
+
ready: "ready";
|
|
881
1079
|
running: "running";
|
|
882
1080
|
}>;
|
|
883
1081
|
provider: import("zod").ZodString;
|
|
@@ -886,8 +1084,11 @@ export declare const sandboxContract: {
|
|
|
886
1084
|
native: "native";
|
|
887
1085
|
}>;
|
|
888
1086
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1087
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1088
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
889
1089
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
890
1090
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1091
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
891
1092
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
892
1093
|
automationId: import("zod").ZodString;
|
|
893
1094
|
provider: import("zod").ZodString;
|
|
@@ -947,6 +1148,18 @@ export declare const sandboxContract: {
|
|
|
947
1148
|
landed: import("zod").ZodBoolean;
|
|
948
1149
|
}, import("zod/v4/core").$strip>>;
|
|
949
1150
|
}, import("zod/v4/core").$strip>>;
|
|
1151
|
+
conflicts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1152
|
+
repo: import("zod").ZodString;
|
|
1153
|
+
paths: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1154
|
+
path: import("zod").ZodString;
|
|
1155
|
+
reason: import("zod").ZodEnum<{
|
|
1156
|
+
binary: "binary";
|
|
1157
|
+
diverged: "diverged";
|
|
1158
|
+
workspace: "workspace";
|
|
1159
|
+
}>;
|
|
1160
|
+
}, import("zod/v4/core").$strip>>;
|
|
1161
|
+
clean: import("zod").ZodNumber;
|
|
1162
|
+
}, import("zod/v4/core").$strip>>>;
|
|
950
1163
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
951
1164
|
fileDiff: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
952
1165
|
id: import("zod").ZodString;
|
|
@@ -960,12 +1173,30 @@ export declare const sandboxContract: {
|
|
|
960
1173
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
961
1174
|
land: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
962
1175
|
id: import("zod").ZodString;
|
|
1176
|
+
mode: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1177
|
+
check: "check";
|
|
1178
|
+
measure: "measure";
|
|
1179
|
+
merge: "merge";
|
|
1180
|
+
}>>;
|
|
963
1181
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
964
1182
|
landed: import("zod").ZodBoolean;
|
|
965
1183
|
conflicts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1184
|
+
repo: import("zod").ZodString;
|
|
1185
|
+
paths: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1186
|
+
path: import("zod").ZodString;
|
|
1187
|
+
reason: import("zod").ZodEnum<{
|
|
1188
|
+
binary: "binary";
|
|
1189
|
+
diverged: "diverged";
|
|
1190
|
+
workspace: "workspace";
|
|
1191
|
+
}>;
|
|
1192
|
+
}, import("zod/v4/core").$strip>>;
|
|
1193
|
+
clean: import("zod").ZodNumber;
|
|
1194
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1195
|
+
resolving: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
966
1196
|
repo: import("zod").ZodString;
|
|
967
1197
|
paths: import("zod").ZodArray<import("zod").ZodString>;
|
|
968
1198
|
}, import("zod/v4/core").$strip>>>;
|
|
1199
|
+
held: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
969
1200
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
970
1201
|
discard: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
971
1202
|
id: import("zod").ZodString;
|
|
@@ -984,7 +1215,9 @@ export declare const sandboxContract: {
|
|
|
984
1215
|
conflict: "conflict";
|
|
985
1216
|
error: "error";
|
|
986
1217
|
idle: "idle";
|
|
1218
|
+
interrupted: "interrupted";
|
|
987
1219
|
landed: "landed";
|
|
1220
|
+
ready: "ready";
|
|
988
1221
|
running: "running";
|
|
989
1222
|
}>;
|
|
990
1223
|
provider: import("zod").ZodString;
|
|
@@ -993,8 +1226,11 @@ export declare const sandboxContract: {
|
|
|
993
1226
|
native: "native";
|
|
994
1227
|
}>;
|
|
995
1228
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1229
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1230
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
996
1231
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
997
1232
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1233
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
998
1234
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
999
1235
|
automationId: import("zod").ZodString;
|
|
1000
1236
|
provider: import("zod").ZodString;
|
|
@@ -1044,7 +1280,9 @@ export declare const sandboxContract: {
|
|
|
1044
1280
|
conflict: "conflict";
|
|
1045
1281
|
error: "error";
|
|
1046
1282
|
idle: "idle";
|
|
1283
|
+
interrupted: "interrupted";
|
|
1047
1284
|
landed: "landed";
|
|
1285
|
+
ready: "ready";
|
|
1048
1286
|
running: "running";
|
|
1049
1287
|
}>;
|
|
1050
1288
|
provider: import("zod").ZodString;
|
|
@@ -1053,8 +1291,11 @@ export declare const sandboxContract: {
|
|
|
1053
1291
|
native: "native";
|
|
1054
1292
|
}>;
|
|
1055
1293
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1294
|
+
effort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1295
|
+
thinking: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1056
1296
|
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1057
1297
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1298
|
+
autoLand: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1058
1299
|
origin: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1059
1300
|
automationId: import("zod").ZodString;
|
|
1060
1301
|
provider: import("zod").ZodString;
|
|
@@ -1092,6 +1333,9 @@ export declare const sandboxContract: {
|
|
|
1092
1333
|
}, import("zod/v4/core").$strip>>;
|
|
1093
1334
|
rev: import("zod").ZodNumber;
|
|
1094
1335
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1336
|
+
purge: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1337
|
+
removed: import("zod").ZodArray<import("zod").ZodString>;
|
|
1338
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1095
1339
|
};
|
|
1096
1340
|
automations: {
|
|
1097
1341
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
@@ -1465,6 +1709,8 @@ export declare const sandboxContract: {
|
|
|
1465
1709
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1466
1710
|
id: import("zod").ZodString;
|
|
1467
1711
|
label: import("zod").ZodString;
|
|
1712
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1713
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1468
1714
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1469
1715
|
connectedAt: import("zod").ZodNumber;
|
|
1470
1716
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1496,6 +1742,8 @@ export declare const sandboxContract: {
|
|
|
1496
1742
|
accounts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1497
1743
|
id: import("zod").ZodString;
|
|
1498
1744
|
label: import("zod").ZodString;
|
|
1745
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1746
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1499
1747
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1500
1748
|
connectedAt: import("zod").ZodNumber;
|
|
1501
1749
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -1511,6 +1759,28 @@ export declare const sandboxContract: {
|
|
|
1511
1759
|
}, import("zod/v4/core").$strip>>;
|
|
1512
1760
|
}, import("zod/v4/core").$strip>>;
|
|
1513
1761
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1762
|
+
rename: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1763
|
+
id: import("zod").ZodString;
|
|
1764
|
+
label: import("zod").ZodString;
|
|
1765
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1766
|
+
id: import("zod").ZodString;
|
|
1767
|
+
label: import("zod").ZodString;
|
|
1768
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1769
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1770
|
+
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1771
|
+
connectedAt: import("zod").ZodNumber;
|
|
1772
|
+
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1773
|
+
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1774
|
+
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1775
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1776
|
+
kind: import("zod").ZodString;
|
|
1777
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1778
|
+
utilization: import("zod").ZodNumber;
|
|
1779
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1780
|
+
}, import("zod/v4/core").$strip>>;
|
|
1781
|
+
measuredAt: import("zod").ZodNumber;
|
|
1782
|
+
}, import("zod/v4/core").$strip>>;
|
|
1783
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1514
1784
|
disconnect: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1515
1785
|
id: import("zod").ZodString;
|
|
1516
1786
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -1604,6 +1874,7 @@ export declare const sandboxContract: {
|
|
|
1604
1874
|
surface: import("zod").ZodEnum<{
|
|
1605
1875
|
directory: "directory";
|
|
1606
1876
|
rail: "rail";
|
|
1877
|
+
sandbox: "sandbox";
|
|
1607
1878
|
}>;
|
|
1608
1879
|
}, import("zod/v4/core").$strip>>>;
|
|
1609
1880
|
viewers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -1742,6 +2013,7 @@ export declare const sandboxContract: {
|
|
|
1742
2013
|
id: import("zod").ZodString;
|
|
1743
2014
|
title: import("zod").ZodString;
|
|
1744
2015
|
updatedAt: import("zod").ZodNumber;
|
|
2016
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1745
2017
|
}, import("zod/v4/core").$strip>>;
|
|
1746
2018
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1747
2019
|
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -1753,6 +2025,7 @@ export declare const sandboxContract: {
|
|
|
1753
2025
|
user: "user";
|
|
1754
2026
|
}>;
|
|
1755
2027
|
text: import("zod").ZodString;
|
|
2028
|
+
attachments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
1756
2029
|
thinking: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1757
2030
|
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1758
2031
|
id: import("zod").ZodString;
|
|
@@ -1799,6 +2072,13 @@ export declare const sandboxContract: {
|
|
|
1799
2072
|
skills: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
1800
2073
|
hashlineEdits: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1801
2074
|
terseOutput: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2075
|
+
terseHoldout: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
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>;
|
|
1802
2082
|
iqSearch: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1803
2083
|
outputCleaners: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1804
2084
|
outputHoldout: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -1806,13 +2086,24 @@ export declare const sandboxContract: {
|
|
|
1806
2086
|
native: "native";
|
|
1807
2087
|
rtk: "rtk";
|
|
1808
2088
|
}>>;
|
|
2089
|
+
quickModel: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1809
2090
|
agentRetentionDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2091
|
+
autoLand: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2092
|
+
autoResumeOnLimit: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2093
|
+
resumeAfterOutage: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1810
2094
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1811
2095
|
set: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1812
2096
|
stableSystemPrompt: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1813
2097
|
skills: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
1814
2098
|
hashlineEdits: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1815
2099
|
terseOutput: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2100
|
+
terseHoldout: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2101
|
+
systemPromptMode: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
2102
|
+
claude: "claude";
|
|
2103
|
+
custom: "custom";
|
|
2104
|
+
intentic: "intentic";
|
|
2105
|
+
}>>;
|
|
2106
|
+
systemPrompt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1816
2107
|
iqSearch: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1817
2108
|
outputCleaners: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1818
2109
|
outputHoldout: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -1820,29 +2111,68 @@ export declare const sandboxContract: {
|
|
|
1820
2111
|
native: "native";
|
|
1821
2112
|
rtk: "rtk";
|
|
1822
2113
|
}>>;
|
|
2114
|
+
quickModel: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1823
2115
|
agentRetentionDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2116
|
+
autoLand: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2117
|
+
autoResumeOnLimit: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2118
|
+
resumeAfterOutage: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1824
2119
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1825
2120
|
ok: import("zod").ZodLiteral<true>;
|
|
1826
2121
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1827
|
-
savings: import("@orpc/contract").
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
2122
|
+
savings: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2123
|
+
from: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2124
|
+
to: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2125
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2126
|
+
input: import("zod").ZodObject<{
|
|
2127
|
+
source: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
2128
|
+
native: "native";
|
|
2129
|
+
rtk: "rtk";
|
|
2130
|
+
}>>;
|
|
2131
|
+
windowed: import("zod").ZodBoolean;
|
|
2132
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1834
2133
|
commands: import("zod").ZodNumber;
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
2134
|
+
rawTokens: import("zod").ZodNumber;
|
|
2135
|
+
emittedTokens: import("zod").ZodNumber;
|
|
2136
|
+
savedPct: import("zod").ZodNumber;
|
|
2137
|
+
perCleaner: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2138
|
+
id: import("zod").ZodString;
|
|
2139
|
+
commands: import("zod").ZodNumber;
|
|
2140
|
+
savedTokens: import("zod").ZodNumber;
|
|
2141
|
+
}, import("zod/v4/core").$strip>>;
|
|
2142
|
+
holdout: import("zod").ZodObject<{
|
|
2143
|
+
cleaned: import("zod").ZodNumber;
|
|
2144
|
+
heldOut: import("zod").ZodNumber;
|
|
2145
|
+
measuredSavedPct: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2146
|
+
}, import("zod/v4/core").$strip>;
|
|
2147
|
+
gaps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2148
|
+
command: import("zod").ZodString;
|
|
2149
|
+
tokens: import("zod").ZodNumber;
|
|
2150
|
+
}, import("zod/v4/core").$strip>>;
|
|
1840
2151
|
}, import("zod/v4/core").$strip>;
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
2152
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2153
|
+
on: import("zod").ZodObject<{
|
|
2154
|
+
turns: import("zod").ZodNumber;
|
|
2155
|
+
meanOutputTokens: import("zod").ZodNumber;
|
|
2156
|
+
}, import("zod/v4/core").$strip>;
|
|
2157
|
+
off: import("zod").ZodObject<{
|
|
2158
|
+
turns: import("zod").ZodNumber;
|
|
2159
|
+
meanOutputTokens: import("zod").ZodNumber;
|
|
2160
|
+
}, import("zod/v4/core").$strip>;
|
|
2161
|
+
minTurns: import("zod").ZodNumber;
|
|
2162
|
+
deltaPct: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2163
|
+
marginPct: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2164
|
+
savedTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1844
2165
|
}, import("zod/v4/core").$strip>>;
|
|
1845
2166
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2167
|
+
builtinPrompt: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2168
|
+
base: import("zod").ZodEnum<{
|
|
2169
|
+
claude: "claude";
|
|
2170
|
+
intentic: "intentic";
|
|
2171
|
+
}>;
|
|
2172
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2173
|
+
text: import("zod").ZodString;
|
|
2174
|
+
version: import("zod").ZodString;
|
|
2175
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1846
2176
|
};
|
|
1847
2177
|
intentic: {
|
|
1848
2178
|
run: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -1927,6 +2257,7 @@ export declare const sandboxContract: {
|
|
|
1927
2257
|
additions: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1928
2258
|
deletions: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1929
2259
|
}, import("zod/v4/core").$strip>>;
|
|
2260
|
+
truncated: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1930
2261
|
remote: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1931
2262
|
remote: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1932
2263
|
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1937,6 +2268,18 @@ export declare const sandboxContract: {
|
|
|
1937
2268
|
origins: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString>>>;
|
|
1938
2269
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1939
2270
|
}, import("zod/v4/core").$strip>>;
|
|
2271
|
+
originAgents: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
2272
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2273
|
+
provider: import("zod").ZodString;
|
|
2274
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2275
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2276
|
+
commitMessage: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2277
|
+
repos: import("zod").ZodArray<import("zod").ZodString>;
|
|
2278
|
+
all: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2279
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2280
|
+
message: import("zod").ZodString;
|
|
2281
|
+
provider: import("zod").ZodString;
|
|
2282
|
+
model: import("zod").ZodString;
|
|
1940
2283
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1941
2284
|
repos: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1942
2285
|
repos: import("zod").ZodArray<import("zod").ZodString>;
|
|
@@ -2201,6 +2544,8 @@ export declare const sandboxContract: {
|
|
|
2201
2544
|
accounts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2202
2545
|
id: import("zod").ZodString;
|
|
2203
2546
|
label: import("zod").ZodString;
|
|
2547
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2548
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2204
2549
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2205
2550
|
connectedAt: import("zod").ZodNumber;
|
|
2206
2551
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -2229,6 +2574,8 @@ export declare const sandboxContract: {
|
|
|
2229
2574
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2230
2575
|
id: import("zod").ZodString;
|
|
2231
2576
|
label: import("zod").ZodString;
|
|
2577
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2578
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2232
2579
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2233
2580
|
connectedAt: import("zod").ZodNumber;
|
|
2234
2581
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -2260,6 +2607,8 @@ export declare const sandboxContract: {
|
|
|
2260
2607
|
accounts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2261
2608
|
id: import("zod").ZodString;
|
|
2262
2609
|
label: import("zod").ZodString;
|
|
2610
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2611
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2263
2612
|
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2264
2613
|
connectedAt: import("zod").ZodNumber;
|
|
2265
2614
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -2275,6 +2624,28 @@ export declare const sandboxContract: {
|
|
|
2275
2624
|
}, import("zod/v4/core").$strip>>;
|
|
2276
2625
|
}, import("zod/v4/core").$strip>>;
|
|
2277
2626
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2627
|
+
rename: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2628
|
+
id: import("zod").ZodString;
|
|
2629
|
+
label: import("zod").ZodString;
|
|
2630
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2631
|
+
id: import("zod").ZodString;
|
|
2632
|
+
label: import("zod").ZodString;
|
|
2633
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2634
|
+
organization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2635
|
+
scope: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2636
|
+
connectedAt: import("zod").ZodNumber;
|
|
2637
|
+
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2638
|
+
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2639
|
+
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2640
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2641
|
+
kind: import("zod").ZodString;
|
|
2642
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2643
|
+
utilization: import("zod").ZodNumber;
|
|
2644
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2645
|
+
}, import("zod/v4/core").$strip>>;
|
|
2646
|
+
measuredAt: import("zod").ZodNumber;
|
|
2647
|
+
}, import("zod/v4/core").$strip>>;
|
|
2648
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2278
2649
|
disconnect: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2279
2650
|
id: import("zod").ZodString;
|
|
2280
2651
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -2337,11 +2708,10 @@ export declare const sandboxContract: {
|
|
|
2337
2708
|
file: "file";
|
|
2338
2709
|
}>;
|
|
2339
2710
|
size: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2340
|
-
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2341
2711
|
ignored: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2342
2712
|
children: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<any, import("zod/v4/core").$strip>>>;
|
|
2343
2713
|
}, import("zod/v4/core").$strip>>;
|
|
2344
|
-
|
|
2714
|
+
hidden: import("zod").ZodNumber;
|
|
2345
2715
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2346
2716
|
children: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2347
2717
|
path: import("zod").ZodString;
|
|
@@ -2354,11 +2724,10 @@ export declare const sandboxContract: {
|
|
|
2354
2724
|
file: "file";
|
|
2355
2725
|
}>;
|
|
2356
2726
|
size: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2357
|
-
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2358
2727
|
ignored: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2359
2728
|
children: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<any, import("zod/v4/core").$strip>>>;
|
|
2360
2729
|
}, import("zod/v4/core").$strip>>;
|
|
2361
|
-
|
|
2730
|
+
hidden: import("zod").ZodNumber;
|
|
2362
2731
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2363
2732
|
file: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2364
2733
|
path: import("zod").ZodString;
|
|
@@ -2433,6 +2802,41 @@ export declare const sandboxContract: {
|
|
|
2433
2802
|
related: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2434
2803
|
features: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2435
2804
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2805
|
+
health: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2806
|
+
repo: import("zod").ZodString;
|
|
2807
|
+
since: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2808
|
+
limit: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
2809
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2810
|
+
repo: import("zod").ZodString;
|
|
2811
|
+
totals: import("zod").ZodObject<{
|
|
2812
|
+
files: import("zod").ZodNumber;
|
|
2813
|
+
symbols: import("zod").ZodNumber;
|
|
2814
|
+
complexity: import("zod").ZodNumber;
|
|
2815
|
+
hotspots: import("zod").ZodNumber;
|
|
2816
|
+
}, import("zod/v4/core").$strip>;
|
|
2817
|
+
hotspots: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2818
|
+
path: import("zod").ZodString;
|
|
2819
|
+
commits: import("zod").ZodNumber;
|
|
2820
|
+
adds: import("zod").ZodNumber;
|
|
2821
|
+
dels: import("zod").ZodNumber;
|
|
2822
|
+
complexity: import("zod").ZodNumber;
|
|
2823
|
+
score: import("zod").ZodNumber;
|
|
2824
|
+
latestMs: import("zod").ZodNumber;
|
|
2825
|
+
}, import("zod/v4/core").$strip>>;
|
|
2826
|
+
modules: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2827
|
+
path: import("zod").ZodString;
|
|
2828
|
+
exports: import("zod").ZodNumber;
|
|
2829
|
+
}, import("zod/v4/core").$strip>>;
|
|
2830
|
+
freshness: import("zod").ZodObject<{
|
|
2831
|
+
state: import("zod").ZodEnum<{
|
|
2832
|
+
building: "building";
|
|
2833
|
+
fresh: "fresh";
|
|
2834
|
+
stale: "stale";
|
|
2835
|
+
}>;
|
|
2836
|
+
ageMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2837
|
+
progress: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2838
|
+
}, import("zod/v4/core").$strip>;
|
|
2839
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2436
2840
|
classify: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2437
2841
|
classifications: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2438
2842
|
path: import("zod").ZodString;
|
|
@@ -2541,7 +2945,7 @@ export declare const sandboxContract: {
|
|
|
2541
2945
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2542
2946
|
apps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2543
2947
|
app: import("zod").ZodString;
|
|
2544
|
-
|
|
2948
|
+
kind: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2545
2949
|
previewUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2546
2950
|
running: import("zod").ZodBoolean;
|
|
2547
2951
|
healthy: import("zod").ZodBoolean;
|
|
@@ -2740,6 +3144,39 @@ export declare const sandboxContract: {
|
|
|
2740
3144
|
truncated: import("zod").ZodBoolean;
|
|
2741
3145
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2742
3146
|
};
|
|
3147
|
+
memory: {
|
|
3148
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
3149
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3150
|
+
project: import("zod").ZodString;
|
|
3151
|
+
name: import("zod").ZodString;
|
|
3152
|
+
sizeBytes: import("zod").ZodNumber;
|
|
3153
|
+
modifiedAt: import("zod").ZodNumber;
|
|
3154
|
+
}, import("zod/v4/core").$strip>>;
|
|
3155
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3156
|
+
read: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3157
|
+
project: import("zod").ZodString;
|
|
3158
|
+
name: import("zod").ZodString;
|
|
3159
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3160
|
+
project: import("zod").ZodString;
|
|
3161
|
+
name: import("zod").ZodString;
|
|
3162
|
+
content: import("zod").ZodString;
|
|
3163
|
+
sizeBytes: import("zod").ZodNumber;
|
|
3164
|
+
modifiedAt: import("zod").ZodNumber;
|
|
3165
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3166
|
+
write: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3167
|
+
project: import("zod").ZodString;
|
|
3168
|
+
name: import("zod").ZodString;
|
|
3169
|
+
content: import("zod").ZodString;
|
|
3170
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3171
|
+
ok: import("zod").ZodLiteral<true>;
|
|
3172
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3173
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3174
|
+
project: import("zod").ZodString;
|
|
3175
|
+
name: import("zod").ZodString;
|
|
3176
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3177
|
+
ok: import("zod").ZodLiteral<true>;
|
|
3178
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3179
|
+
};
|
|
2743
3180
|
panels: {
|
|
2744
3181
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2745
3182
|
panels: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -2759,6 +3196,7 @@ export declare const sandboxContract: {
|
|
|
2759
3196
|
directoryUi: import("zod").ZodBoolean;
|
|
2760
3197
|
monorepo: import("zod").ZodBoolean;
|
|
2761
3198
|
vitest: import("zod").ZodBoolean;
|
|
3199
|
+
userStories: import("zod").ZodBoolean;
|
|
2762
3200
|
}, import("zod/v4/core").$strip>>;
|
|
2763
3201
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2764
3202
|
start: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -2825,7 +3263,7 @@ export declare const sandboxContract: {
|
|
|
2825
3263
|
ok: import("zod").ZodLiteral<true>;
|
|
2826
3264
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2827
3265
|
test: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2828
|
-
|
|
3266
|
+
delivered: import("zod").ZodNumber;
|
|
2829
3267
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2830
3268
|
};
|
|
2831
3269
|
secrets: {
|
|
@@ -2884,6 +3322,11 @@ export declare const sandboxContract: {
|
|
|
2884
3322
|
latest: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2885
3323
|
updateAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2886
3324
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3325
|
+
session: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
3326
|
+
token: import("zod").ZodString;
|
|
3327
|
+
expiresAt: import("zod").ZodNumber;
|
|
3328
|
+
email: import("zod").ZodString;
|
|
3329
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2887
3330
|
events: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2888
3331
|
clientId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2889
3332
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
@@ -2916,12 +3359,15 @@ export declare const sandboxContract: {
|
|
|
2916
3359
|
id: string;
|
|
2917
3360
|
sessionId?: string | undefined;
|
|
2918
3361
|
title?: string | undefined;
|
|
2919
|
-
status: "awaiting" | "conflict" | "error" | "idle" | "landed" | "running";
|
|
3362
|
+
status: "awaiting" | "conflict" | "error" | "idle" | "interrupted" | "landed" | "ready" | "running";
|
|
2920
3363
|
provider: string;
|
|
2921
3364
|
harness: "claude-code" | "native";
|
|
2922
3365
|
model?: string | undefined;
|
|
3366
|
+
effort?: string | undefined;
|
|
3367
|
+
thinking?: boolean | undefined;
|
|
2923
3368
|
account?: string | undefined;
|
|
2924
3369
|
branch?: string | undefined;
|
|
3370
|
+
autoLand?: boolean | undefined;
|
|
2925
3371
|
origin?: {
|
|
2926
3372
|
automationId: string;
|
|
2927
3373
|
provider: string;
|
|
@@ -2988,12 +3434,15 @@ export declare const sandboxContract: {
|
|
|
2988
3434
|
id: string;
|
|
2989
3435
|
sessionId?: string | undefined;
|
|
2990
3436
|
title?: string | undefined;
|
|
2991
|
-
status: "awaiting" | "conflict" | "error" | "idle" | "landed" | "running";
|
|
3437
|
+
status: "awaiting" | "conflict" | "error" | "idle" | "interrupted" | "landed" | "ready" | "running";
|
|
2992
3438
|
provider: string;
|
|
2993
3439
|
harness: "claude-code" | "native";
|
|
2994
3440
|
model?: string | undefined;
|
|
3441
|
+
effort?: string | undefined;
|
|
3442
|
+
thinking?: boolean | undefined;
|
|
2995
3443
|
account?: string | undefined;
|
|
2996
3444
|
branch?: string | undefined;
|
|
3445
|
+
autoLand?: boolean | undefined;
|
|
2997
3446
|
origin?: {
|
|
2998
3447
|
automationId: string;
|
|
2999
3448
|
provider: string;
|
|
@@ -3070,6 +3519,8 @@ export declare const sandboxContract: {
|
|
|
3070
3519
|
shell: "shell";
|
|
3071
3520
|
}>;
|
|
3072
3521
|
running: import("zod").ZodBoolean;
|
|
3522
|
+
activityAt: import("zod").ZodNumber;
|
|
3523
|
+
exitCode: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3073
3524
|
extensionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3074
3525
|
processName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3075
3526
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -3082,9 +3533,18 @@ export declare const sandboxContract: {
|
|
|
3082
3533
|
};
|
|
3083
3534
|
translator: {
|
|
3084
3535
|
accounts: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
3085
|
-
codex: import("zod").
|
|
3086
|
-
|
|
3087
|
-
|
|
3536
|
+
codex: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3537
|
+
name: import("zod").ZodString;
|
|
3538
|
+
label: import("zod").ZodString;
|
|
3539
|
+
}, import("zod/v4/core").$strip>>;
|
|
3540
|
+
grok: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3541
|
+
name: import("zod").ZodString;
|
|
3542
|
+
label: import("zod").ZodString;
|
|
3543
|
+
}, import("zod/v4/core").$strip>>;
|
|
3544
|
+
gemini: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3545
|
+
name: import("zod").ZodString;
|
|
3546
|
+
label: import("zod").ZodString;
|
|
3547
|
+
}, import("zod/v4/core").$strip>>;
|
|
3088
3548
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
3089
3549
|
connect: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
3090
3550
|
provider: import("zod").ZodEnum<{
|
|
@@ -3114,6 +3574,7 @@ export declare const sandboxContract: {
|
|
|
3114
3574
|
gemini: "gemini";
|
|
3115
3575
|
grok: "grok";
|
|
3116
3576
|
}>;
|
|
3577
|
+
name: import("zod").ZodString;
|
|
3117
3578
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3118
3579
|
ok: import("zod").ZodLiteral<true>;
|
|
3119
3580
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|