@intentic/sandbox-contract 1.155.1 → 1.157.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 +4 -1
- package/dist/agent-catalog.d.ts.map +1 -1
- package/dist/agent-catalog.js +8 -5
- package/dist/agent-catalog.js.map +1 -1
- package/dist/contracts/agent.contract.d.ts +24 -0
- package/dist/contracts/agent.contract.d.ts.map +1 -1
- package/dist/contracts/agents.contract.d.ts +265 -0
- package/dist/contracts/agents.contract.d.ts.map +1 -1
- package/dist/contracts/agents.contract.js +6 -1
- package/dist/contracts/agents.contract.js.map +1 -1
- package/dist/contracts/automations.contract.d.ts +16 -0
- package/dist/contracts/automations.contract.d.ts.map +1 -1
- package/dist/contracts/claude.contract.d.ts +12 -16
- package/dist/contracts/claude.contract.d.ts.map +1 -1
- package/dist/contracts/grok.contract.d.ts +6 -8
- package/dist/contracts/grok.contract.d.ts.map +1 -1
- package/dist/contracts/kimi.contract.d.ts +12 -16
- package/dist/contracts/kimi.contract.d.ts.map +1 -1
- package/dist/contracts/sessions.contract.d.ts +37 -0
- package/dist/contracts/sessions.contract.d.ts.map +1 -1
- package/dist/contracts/sessions.contract.js +2 -1
- package/dist/contracts/sessions.contract.js.map +1 -1
- package/dist/contracts/settings.contract.d.ts +2 -0
- package/dist/contracts/settings.contract.d.ts.map +1 -1
- package/dist/contracts/system.contract.d.ts +4 -0
- package/dist/contracts/system.contract.d.ts.map +1 -1
- package/dist/contracts/vpn.contract.d.ts.map +1 -1
- package/dist/contracts/vpn.contract.js +4 -1
- package/dist/contracts/vpn.contract.js.map +1 -1
- package/dist/contracts/workspace.contract.d.ts +23 -0
- package/dist/contracts/workspace.contract.d.ts.map +1 -1
- package/dist/contracts/workspace.contract.js +3 -1
- package/dist/contracts/workspace.contract.js.map +1 -1
- package/dist/events.d.ts +156 -0
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +19 -1
- package/dist/events.js.map +1 -1
- package/dist/index.d.ts +401 -40
- package/dist/index.d.ts.map +1 -1
- package/dist/schemas.d.ts +187 -33
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +38 -2
- package/dist/schemas.js.map +1 -1
- package/package.json +2 -2
- package/src/agent-catalog.ts +31 -8
- package/src/contracts/agents.contract.ts +16 -0
- package/src/contracts/sessions.contract.ts +6 -4
- package/src/contracts/vpn.contract.ts +4 -1
- package/src/contracts/workspace.contract.ts +9 -0
- package/src/events.ts +49 -3
- package/src/schemas.test.ts +4 -1
- package/src/schemas.ts +124 -10
package/dist/index.d.ts
CHANGED
|
@@ -162,6 +162,9 @@ export declare const sandboxContract: {
|
|
|
162
162
|
kind: "delta";
|
|
163
163
|
text: string;
|
|
164
164
|
parentToolUseId?: string | undefined;
|
|
165
|
+
} | {
|
|
166
|
+
kind: "text_end";
|
|
167
|
+
parentToolUseId?: string | undefined;
|
|
165
168
|
} | {
|
|
166
169
|
kind: "thinking";
|
|
167
170
|
text: string;
|
|
@@ -240,6 +243,15 @@ export declare const sandboxContract: {
|
|
|
240
243
|
utilization?: number | undefined;
|
|
241
244
|
kind: "rate_limit_info";
|
|
242
245
|
account?: string | undefined;
|
|
246
|
+
} | {
|
|
247
|
+
kind: "account_usage";
|
|
248
|
+
account?: string | undefined;
|
|
249
|
+
windows: {
|
|
250
|
+
kind: string;
|
|
251
|
+
label?: string | undefined;
|
|
252
|
+
utilization: number;
|
|
253
|
+
resetsAt?: number | undefined;
|
|
254
|
+
}[];
|
|
243
255
|
} | {
|
|
244
256
|
tokens: number;
|
|
245
257
|
contextWindow: number;
|
|
@@ -321,6 +333,9 @@ export declare const sandboxContract: {
|
|
|
321
333
|
kind: "delta";
|
|
322
334
|
text: string;
|
|
323
335
|
parentToolUseId?: string | undefined;
|
|
336
|
+
} | {
|
|
337
|
+
kind: "text_end";
|
|
338
|
+
parentToolUseId?: string | undefined;
|
|
324
339
|
} | {
|
|
325
340
|
kind: "thinking";
|
|
326
341
|
text: string;
|
|
@@ -399,6 +414,15 @@ export declare const sandboxContract: {
|
|
|
399
414
|
utilization?: number | undefined;
|
|
400
415
|
kind: "rate_limit_info";
|
|
401
416
|
account?: string | undefined;
|
|
417
|
+
} | {
|
|
418
|
+
kind: "account_usage";
|
|
419
|
+
account?: string | undefined;
|
|
420
|
+
windows: {
|
|
421
|
+
kind: string;
|
|
422
|
+
label?: string | undefined;
|
|
423
|
+
utilization: number;
|
|
424
|
+
resetsAt?: number | undefined;
|
|
425
|
+
}[];
|
|
402
426
|
} | {
|
|
403
427
|
tokens: number;
|
|
404
428
|
contextWindow: number;
|
|
@@ -532,6 +556,7 @@ export declare const sandboxContract: {
|
|
|
532
556
|
}, import("zod/v4/core").$strip>>;
|
|
533
557
|
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
534
558
|
updatedAt: import("zod").ZodNumber;
|
|
559
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
535
560
|
attention: import("zod").ZodObject<{
|
|
536
561
|
plan: import("zod").ZodBoolean;
|
|
537
562
|
question: import("zod").ZodBoolean;
|
|
@@ -545,6 +570,58 @@ export declare const sandboxContract: {
|
|
|
545
570
|
insertions: import("zod").ZodNumber;
|
|
546
571
|
deletions: import("zod").ZodNumber;
|
|
547
572
|
}, import("zod/v4/core").$strip>>;
|
|
573
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
574
|
+
}, import("zod/v4/core").$strip>>;
|
|
575
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
576
|
+
archived: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
577
|
+
agents: import("zod").ZodArray<import("zod").ZodObject<{
|
|
578
|
+
id: import("zod").ZodString;
|
|
579
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
580
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
581
|
+
status: import("zod").ZodEnum<{
|
|
582
|
+
awaiting: "awaiting";
|
|
583
|
+
conflict: "conflict";
|
|
584
|
+
error: "error";
|
|
585
|
+
idle: "idle";
|
|
586
|
+
landed: "landed";
|
|
587
|
+
running: "running";
|
|
588
|
+
}>;
|
|
589
|
+
provider: import("zod").ZodString;
|
|
590
|
+
harness: import("zod").ZodEnum<{
|
|
591
|
+
"claude-code": "claude-code";
|
|
592
|
+
native: "native";
|
|
593
|
+
}>;
|
|
594
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
595
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
596
|
+
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
597
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
598
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
599
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
600
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
601
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
602
|
+
contextWindow: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
603
|
+
activity: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
604
|
+
tool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
605
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
606
|
+
todo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
607
|
+
}, import("zod/v4/core").$strip>>;
|
|
608
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
609
|
+
updatedAt: import("zod").ZodNumber;
|
|
610
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
611
|
+
attention: import("zod").ZodObject<{
|
|
612
|
+
plan: import("zod").ZodBoolean;
|
|
613
|
+
question: import("zod").ZodBoolean;
|
|
614
|
+
permission: import("zod").ZodBoolean;
|
|
615
|
+
conflict: import("zod").ZodBoolean;
|
|
616
|
+
}, import("zod/v4/core").$strip>;
|
|
617
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
618
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
619
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
620
|
+
files: import("zod").ZodNumber;
|
|
621
|
+
insertions: import("zod").ZodNumber;
|
|
622
|
+
deletions: import("zod").ZodNumber;
|
|
623
|
+
}, import("zod/v4/core").$strip>>;
|
|
624
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
548
625
|
}, import("zod/v4/core").$strip>>;
|
|
549
626
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
550
627
|
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -582,6 +659,7 @@ export declare const sandboxContract: {
|
|
|
582
659
|
}, import("zod/v4/core").$strip>>;
|
|
583
660
|
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
584
661
|
updatedAt: import("zod").ZodNumber;
|
|
662
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
585
663
|
attention: import("zod").ZodObject<{
|
|
586
664
|
plan: import("zod").ZodBoolean;
|
|
587
665
|
question: import("zod").ZodBoolean;
|
|
@@ -595,6 +673,7 @@ export declare const sandboxContract: {
|
|
|
595
673
|
insertions: import("zod").ZodNumber;
|
|
596
674
|
deletions: import("zod").ZodNumber;
|
|
597
675
|
}, import("zod/v4/core").$strip>>;
|
|
676
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
598
677
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
599
678
|
rename: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
600
679
|
id: import("zod").ZodString;
|
|
@@ -632,6 +711,58 @@ export declare const sandboxContract: {
|
|
|
632
711
|
}, import("zod/v4/core").$strip>>;
|
|
633
712
|
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
634
713
|
updatedAt: import("zod").ZodNumber;
|
|
714
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
715
|
+
attention: import("zod").ZodObject<{
|
|
716
|
+
plan: import("zod").ZodBoolean;
|
|
717
|
+
question: import("zod").ZodBoolean;
|
|
718
|
+
permission: import("zod").ZodBoolean;
|
|
719
|
+
conflict: import("zod").ZodBoolean;
|
|
720
|
+
}, import("zod/v4/core").$strip>;
|
|
721
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
722
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
723
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
724
|
+
files: import("zod").ZodNumber;
|
|
725
|
+
insertions: import("zod").ZodNumber;
|
|
726
|
+
deletions: import("zod").ZodNumber;
|
|
727
|
+
}, import("zod/v4/core").$strip>>;
|
|
728
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
729
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
730
|
+
seen: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
731
|
+
id: import("zod").ZodString;
|
|
732
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
733
|
+
id: import("zod").ZodString;
|
|
734
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
735
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
736
|
+
status: import("zod").ZodEnum<{
|
|
737
|
+
awaiting: "awaiting";
|
|
738
|
+
conflict: "conflict";
|
|
739
|
+
error: "error";
|
|
740
|
+
idle: "idle";
|
|
741
|
+
landed: "landed";
|
|
742
|
+
running: "running";
|
|
743
|
+
}>;
|
|
744
|
+
provider: import("zod").ZodString;
|
|
745
|
+
harness: import("zod").ZodEnum<{
|
|
746
|
+
"claude-code": "claude-code";
|
|
747
|
+
native: "native";
|
|
748
|
+
}>;
|
|
749
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
750
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
751
|
+
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
752
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
753
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
754
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
755
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
756
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
757
|
+
contextWindow: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
758
|
+
activity: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
759
|
+
tool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
760
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
761
|
+
todo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
762
|
+
}, import("zod/v4/core").$strip>>;
|
|
763
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
764
|
+
updatedAt: import("zod").ZodNumber;
|
|
765
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
635
766
|
attention: import("zod").ZodObject<{
|
|
636
767
|
plan: import("zod").ZodBoolean;
|
|
637
768
|
question: import("zod").ZodBoolean;
|
|
@@ -645,6 +776,58 @@ export declare const sandboxContract: {
|
|
|
645
776
|
insertions: import("zod").ZodNumber;
|
|
646
777
|
deletions: import("zod").ZodNumber;
|
|
647
778
|
}, import("zod/v4/core").$strip>>;
|
|
779
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
780
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
781
|
+
seenAll: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
782
|
+
agents: import("zod").ZodArray<import("zod").ZodObject<{
|
|
783
|
+
id: import("zod").ZodString;
|
|
784
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
785
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
786
|
+
status: import("zod").ZodEnum<{
|
|
787
|
+
awaiting: "awaiting";
|
|
788
|
+
conflict: "conflict";
|
|
789
|
+
error: "error";
|
|
790
|
+
idle: "idle";
|
|
791
|
+
landed: "landed";
|
|
792
|
+
running: "running";
|
|
793
|
+
}>;
|
|
794
|
+
provider: import("zod").ZodString;
|
|
795
|
+
harness: import("zod").ZodEnum<{
|
|
796
|
+
"claude-code": "claude-code";
|
|
797
|
+
native: "native";
|
|
798
|
+
}>;
|
|
799
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
800
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
801
|
+
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
802
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
803
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
804
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
805
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
806
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
807
|
+
contextWindow: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
808
|
+
activity: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
809
|
+
tool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
810
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
811
|
+
todo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
812
|
+
}, import("zod/v4/core").$strip>>;
|
|
813
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
814
|
+
updatedAt: import("zod").ZodNumber;
|
|
815
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
816
|
+
attention: import("zod").ZodObject<{
|
|
817
|
+
plan: import("zod").ZodBoolean;
|
|
818
|
+
question: import("zod").ZodBoolean;
|
|
819
|
+
permission: import("zod").ZodBoolean;
|
|
820
|
+
conflict: import("zod").ZodBoolean;
|
|
821
|
+
}, import("zod/v4/core").$strip>;
|
|
822
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
823
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
824
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
825
|
+
files: import("zod").ZodNumber;
|
|
826
|
+
insertions: import("zod").ZodNumber;
|
|
827
|
+
deletions: import("zod").ZodNumber;
|
|
828
|
+
}, import("zod/v4/core").$strip>>;
|
|
829
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
830
|
+
}, import("zod/v4/core").$strip>>;
|
|
648
831
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
649
832
|
diff: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
650
833
|
id: import("zod").ZodString;
|
|
@@ -693,6 +876,112 @@ export declare const sandboxContract: {
|
|
|
693
876
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
694
877
|
ok: import("zod").ZodLiteral<true>;
|
|
695
878
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
879
|
+
archive: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
880
|
+
ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
881
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
882
|
+
moved: import("zod").ZodArray<import("zod").ZodObject<{
|
|
883
|
+
id: import("zod").ZodString;
|
|
884
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
885
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
886
|
+
status: import("zod").ZodEnum<{
|
|
887
|
+
awaiting: "awaiting";
|
|
888
|
+
conflict: "conflict";
|
|
889
|
+
error: "error";
|
|
890
|
+
idle: "idle";
|
|
891
|
+
landed: "landed";
|
|
892
|
+
running: "running";
|
|
893
|
+
}>;
|
|
894
|
+
provider: import("zod").ZodString;
|
|
895
|
+
harness: import("zod").ZodEnum<{
|
|
896
|
+
"claude-code": "claude-code";
|
|
897
|
+
native: "native";
|
|
898
|
+
}>;
|
|
899
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
900
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
901
|
+
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
902
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
903
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
904
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
905
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
906
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
907
|
+
contextWindow: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
908
|
+
activity: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
909
|
+
tool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
910
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
911
|
+
todo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
912
|
+
}, import("zod/v4/core").$strip>>;
|
|
913
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
914
|
+
updatedAt: import("zod").ZodNumber;
|
|
915
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
916
|
+
attention: import("zod").ZodObject<{
|
|
917
|
+
plan: import("zod").ZodBoolean;
|
|
918
|
+
question: import("zod").ZodBoolean;
|
|
919
|
+
permission: import("zod").ZodBoolean;
|
|
920
|
+
conflict: import("zod").ZodBoolean;
|
|
921
|
+
}, import("zod/v4/core").$strip>;
|
|
922
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
923
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
924
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
925
|
+
files: import("zod").ZodNumber;
|
|
926
|
+
insertions: import("zod").ZodNumber;
|
|
927
|
+
deletions: import("zod").ZodNumber;
|
|
928
|
+
}, import("zod/v4/core").$strip>>;
|
|
929
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
930
|
+
}, import("zod/v4/core").$strip>>;
|
|
931
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
932
|
+
unarchive: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
933
|
+
ids: import("zod").ZodArray<import("zod").ZodString>;
|
|
934
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
935
|
+
moved: import("zod").ZodArray<import("zod").ZodObject<{
|
|
936
|
+
id: import("zod").ZodString;
|
|
937
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
938
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
939
|
+
status: import("zod").ZodEnum<{
|
|
940
|
+
awaiting: "awaiting";
|
|
941
|
+
conflict: "conflict";
|
|
942
|
+
error: "error";
|
|
943
|
+
idle: "idle";
|
|
944
|
+
landed: "landed";
|
|
945
|
+
running: "running";
|
|
946
|
+
}>;
|
|
947
|
+
provider: import("zod").ZodString;
|
|
948
|
+
harness: import("zod").ZodEnum<{
|
|
949
|
+
"claude-code": "claude-code";
|
|
950
|
+
native: "native";
|
|
951
|
+
}>;
|
|
952
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
953
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
954
|
+
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
955
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
956
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
957
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
958
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
959
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
960
|
+
contextWindow: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
961
|
+
activity: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
962
|
+
tool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
963
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
964
|
+
todo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
965
|
+
}, import("zod/v4/core").$strip>>;
|
|
966
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
967
|
+
updatedAt: import("zod").ZodNumber;
|
|
968
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
969
|
+
attention: import("zod").ZodObject<{
|
|
970
|
+
plan: import("zod").ZodBoolean;
|
|
971
|
+
question: import("zod").ZodBoolean;
|
|
972
|
+
permission: import("zod").ZodBoolean;
|
|
973
|
+
conflict: import("zod").ZodBoolean;
|
|
974
|
+
}, import("zod/v4/core").$strip>;
|
|
975
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
976
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
977
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
978
|
+
files: import("zod").ZodNumber;
|
|
979
|
+
insertions: import("zod").ZodNumber;
|
|
980
|
+
deletions: import("zod").ZodNumber;
|
|
981
|
+
}, import("zod/v4/core").$strip>>;
|
|
982
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
983
|
+
}, import("zod/v4/core").$strip>>;
|
|
984
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
696
985
|
};
|
|
697
986
|
automations: {
|
|
698
987
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
@@ -711,6 +1000,13 @@ export declare const sandboxContract: {
|
|
|
711
1000
|
eventType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
712
1001
|
mentioned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
713
1002
|
allowedOrigins: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
1003
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1004
|
+
kind: import("zod").ZodLiteral<"workspace">;
|
|
1005
|
+
event: import("zod").ZodEnum<{
|
|
1006
|
+
"agent.landed": "agent.landed";
|
|
1007
|
+
"turn.settled": "turn.settled";
|
|
1008
|
+
}>;
|
|
1009
|
+
repo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
714
1010
|
}, import("zod/v4/core").$strip>], "kind">;
|
|
715
1011
|
guard: import("zod").ZodOptional<import("zod").ZodString>;
|
|
716
1012
|
prompt: import("zod").ZodString;
|
|
@@ -721,6 +1017,7 @@ export declare const sandboxContract: {
|
|
|
721
1017
|
}>>;
|
|
722
1018
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
723
1019
|
requireApproval: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1020
|
+
chore: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
724
1021
|
enabled: import("zod").ZodBoolean;
|
|
725
1022
|
runs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
726
1023
|
at: import("zod").ZodNumber;
|
|
@@ -749,6 +1046,13 @@ export declare const sandboxContract: {
|
|
|
749
1046
|
eventType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
750
1047
|
mentioned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
751
1048
|
allowedOrigins: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
1049
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1050
|
+
kind: import("zod").ZodLiteral<"workspace">;
|
|
1051
|
+
event: import("zod").ZodEnum<{
|
|
1052
|
+
"agent.landed": "agent.landed";
|
|
1053
|
+
"turn.settled": "turn.settled";
|
|
1054
|
+
}>;
|
|
1055
|
+
repo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
752
1056
|
}, import("zod/v4/core").$strip>], "kind">;
|
|
753
1057
|
guard: import("zod").ZodOptional<import("zod").ZodString>;
|
|
754
1058
|
prompt: import("zod").ZodString;
|
|
@@ -759,6 +1063,7 @@ export declare const sandboxContract: {
|
|
|
759
1063
|
}>>;
|
|
760
1064
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
761
1065
|
requireApproval: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1066
|
+
chore: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
762
1067
|
enabled: import("zod").ZodBoolean;
|
|
763
1068
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
764
1069
|
ok: import("zod").ZodLiteral<true>;
|
|
@@ -1048,14 +1353,12 @@ export declare const sandboxContract: {
|
|
|
1048
1353
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1049
1354
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1050
1355
|
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
rateLimitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1058
|
-
utilization: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1356
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1357
|
+
kind: import("zod").ZodString;
|
|
1358
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1359
|
+
utilization: import("zod").ZodNumber;
|
|
1360
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1361
|
+
}, import("zod/v4/core").$strip>>;
|
|
1059
1362
|
measuredAt: import("zod").ZodNumber;
|
|
1060
1363
|
}, import("zod/v4/core").$strip>>;
|
|
1061
1364
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -1081,14 +1384,12 @@ export declare const sandboxContract: {
|
|
|
1081
1384
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1082
1385
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1083
1386
|
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
rateLimitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1091
|
-
utilization: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1387
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1388
|
+
kind: import("zod").ZodString;
|
|
1389
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1390
|
+
utilization: import("zod").ZodNumber;
|
|
1391
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1392
|
+
}, import("zod/v4/core").$strip>>;
|
|
1092
1393
|
measuredAt: import("zod").ZodNumber;
|
|
1093
1394
|
}, import("zod/v4/core").$strip>>;
|
|
1094
1395
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1335,6 +1636,43 @@ export declare const sandboxContract: {
|
|
|
1335
1636
|
user: "user";
|
|
1336
1637
|
}>;
|
|
1337
1638
|
text: import("zod").ZodString;
|
|
1639
|
+
thinking: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1640
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1641
|
+
id: import("zod").ZodString;
|
|
1642
|
+
name: import("zod").ZodString;
|
|
1643
|
+
category: import("zod").ZodEnum<{
|
|
1644
|
+
delete: "delete";
|
|
1645
|
+
edit: "edit";
|
|
1646
|
+
execute: "execute";
|
|
1647
|
+
fetch: "fetch";
|
|
1648
|
+
move: "move";
|
|
1649
|
+
other: "other";
|
|
1650
|
+
read: "read";
|
|
1651
|
+
search: "search";
|
|
1652
|
+
think: "think";
|
|
1653
|
+
}>;
|
|
1654
|
+
status: import("zod").ZodEnum<{
|
|
1655
|
+
completed: "completed";
|
|
1656
|
+
failed: "failed";
|
|
1657
|
+
in_progress: "in_progress";
|
|
1658
|
+
pending: "pending";
|
|
1659
|
+
}>;
|
|
1660
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1661
|
+
locations: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1662
|
+
path: import("zod").ZodString;
|
|
1663
|
+
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1664
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1665
|
+
content: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1666
|
+
type: import("zod").ZodLiteral<"text">;
|
|
1667
|
+
text: import("zod").ZodString;
|
|
1668
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1669
|
+
type: import("zod").ZodLiteral<"diff">;
|
|
1670
|
+
path: import("zod").ZodString;
|
|
1671
|
+
oldText: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1672
|
+
newText: import("zod").ZodString;
|
|
1673
|
+
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1674
|
+
}, import("zod/v4/core").$strip>], "type">>>;
|
|
1675
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1338
1676
|
}, import("zod/v4/core").$strip>>;
|
|
1339
1677
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1340
1678
|
};
|
|
@@ -1351,6 +1689,7 @@ export declare const sandboxContract: {
|
|
|
1351
1689
|
native: "native";
|
|
1352
1690
|
rtk: "rtk";
|
|
1353
1691
|
}>>;
|
|
1692
|
+
agentRetentionDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
1354
1693
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1355
1694
|
set: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1356
1695
|
stableSystemPrompt: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -1364,6 +1703,7 @@ export declare const sandboxContract: {
|
|
|
1364
1703
|
native: "native";
|
|
1365
1704
|
rtk: "rtk";
|
|
1366
1705
|
}>>;
|
|
1706
|
+
agentRetentionDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
1367
1707
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1368
1708
|
ok: import("zod").ZodLiteral<true>;
|
|
1369
1709
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -1749,14 +2089,12 @@ export declare const sandboxContract: {
|
|
|
1749
2089
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1750
2090
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1751
2091
|
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
rateLimitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1759
|
-
utilization: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2092
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2093
|
+
kind: import("zod").ZodString;
|
|
2094
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2095
|
+
utilization: import("zod").ZodNumber;
|
|
2096
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2097
|
+
}, import("zod/v4/core").$strip>>;
|
|
1760
2098
|
measuredAt: import("zod").ZodNumber;
|
|
1761
2099
|
}, import("zod/v4/core").$strip>>;
|
|
1762
2100
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1779,14 +2117,12 @@ export declare const sandboxContract: {
|
|
|
1779
2117
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1780
2118
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1781
2119
|
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
rateLimitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1789
|
-
utilization: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2120
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2121
|
+
kind: import("zod").ZodString;
|
|
2122
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2123
|
+
utilization: import("zod").ZodNumber;
|
|
2124
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2125
|
+
}, import("zod/v4/core").$strip>>;
|
|
1790
2126
|
measuredAt: import("zod").ZodNumber;
|
|
1791
2127
|
}, import("zod/v4/core").$strip>>;
|
|
1792
2128
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -1812,14 +2148,12 @@ export declare const sandboxContract: {
|
|
|
1812
2148
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1813
2149
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1814
2150
|
usage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
rateLimitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1822
|
-
utilization: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2151
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2152
|
+
kind: import("zod").ZodString;
|
|
2153
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2154
|
+
utilization: import("zod").ZodNumber;
|
|
2155
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2156
|
+
}, import("zod/v4/core").$strip>>;
|
|
1823
2157
|
measuredAt: import("zod").ZodNumber;
|
|
1824
2158
|
}, import("zod/v4/core").$strip>>;
|
|
1825
2159
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2012,6 +2346,29 @@ export declare const sandboxContract: {
|
|
|
2012
2346
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2013
2347
|
ok: import("zod").ZodLiteral<true>;
|
|
2014
2348
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2349
|
+
setup: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2350
|
+
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2351
|
+
dir: import("zod").ZodString;
|
|
2352
|
+
ecosystem: import("zod").ZodEnum<{
|
|
2353
|
+
node: "node";
|
|
2354
|
+
python: "python";
|
|
2355
|
+
}>;
|
|
2356
|
+
manager: import("zod").ZodString;
|
|
2357
|
+
command: import("zod").ZodString;
|
|
2358
|
+
evidence: import("zod").ZodString;
|
|
2359
|
+
state: import("zod").ZodEnum<{
|
|
2360
|
+
installing: "installing";
|
|
2361
|
+
"needs-setup": "needs-setup";
|
|
2362
|
+
ready: "ready";
|
|
2363
|
+
unsupported: "unsupported";
|
|
2364
|
+
}>;
|
|
2365
|
+
}, import("zod/v4/core").$strip>>;
|
|
2366
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2367
|
+
install: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2368
|
+
dirs: import("zod").ZodArray<import("zod").ZodString>;
|
|
2369
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2370
|
+
started: import("zod").ZodArray<import("zod").ZodString>;
|
|
2371
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2015
2372
|
repos: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2016
2373
|
repos: import("zod").ZodArray<import("zod").ZodString>;
|
|
2017
2374
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -2455,6 +2812,7 @@ export declare const sandboxContract: {
|
|
|
2455
2812
|
} | undefined;
|
|
2456
2813
|
startedAt?: number | undefined;
|
|
2457
2814
|
updatedAt: number;
|
|
2815
|
+
seenAt?: number | undefined;
|
|
2458
2816
|
attention: {
|
|
2459
2817
|
plan: boolean;
|
|
2460
2818
|
question: boolean;
|
|
@@ -2468,6 +2826,7 @@ export declare const sandboxContract: {
|
|
|
2468
2826
|
insertions: number;
|
|
2469
2827
|
deletions: number;
|
|
2470
2828
|
} | undefined;
|
|
2829
|
+
archivedAt?: number | undefined;
|
|
2471
2830
|
}[];
|
|
2472
2831
|
}, unknown, void>, import("@orpc/contract").AsyncIteratorClass<{
|
|
2473
2832
|
kind: "hello";
|
|
@@ -2517,6 +2876,7 @@ export declare const sandboxContract: {
|
|
|
2517
2876
|
} | undefined;
|
|
2518
2877
|
startedAt?: number | undefined;
|
|
2519
2878
|
updatedAt: number;
|
|
2879
|
+
seenAt?: number | undefined;
|
|
2520
2880
|
attention: {
|
|
2521
2881
|
plan: boolean;
|
|
2522
2882
|
question: boolean;
|
|
@@ -2530,6 +2890,7 @@ export declare const sandboxContract: {
|
|
|
2530
2890
|
insertions: number;
|
|
2531
2891
|
deletions: number;
|
|
2532
2892
|
} | undefined;
|
|
2893
|
+
archivedAt?: number | undefined;
|
|
2533
2894
|
}[];
|
|
2534
2895
|
}, unknown, void>>, Record<never, never>, Record<never, never>>;
|
|
2535
2896
|
presence: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|