@intentic/sandbox-contract 1.155.0 → 1.156.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 +2 -1
- package/dist/agent-catalog.d.ts.map +1 -1
- package/dist/agent-catalog.js +6 -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 +266 -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/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 +386 -40
- package/dist/index.d.ts.map +1 -1
- package/dist/schemas.d.ts +131 -33
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +27 -2
- package/dist/schemas.js.map +1 -1
- package/package.json +2 -2
- package/src/agent-catalog.ts +16 -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 +78 -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,7 @@ 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>;
|
|
635
715
|
attention: import("zod").ZodObject<{
|
|
636
716
|
plan: import("zod").ZodBoolean;
|
|
637
717
|
question: import("zod").ZodBoolean;
|
|
@@ -645,6 +725,109 @@ export declare const sandboxContract: {
|
|
|
645
725
|
insertions: import("zod").ZodNumber;
|
|
646
726
|
deletions: import("zod").ZodNumber;
|
|
647
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>;
|
|
766
|
+
attention: import("zod").ZodObject<{
|
|
767
|
+
plan: import("zod").ZodBoolean;
|
|
768
|
+
question: import("zod").ZodBoolean;
|
|
769
|
+
permission: import("zod").ZodBoolean;
|
|
770
|
+
conflict: import("zod").ZodBoolean;
|
|
771
|
+
}, import("zod/v4/core").$strip>;
|
|
772
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
773
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
774
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
775
|
+
files: import("zod").ZodNumber;
|
|
776
|
+
insertions: import("zod").ZodNumber;
|
|
777
|
+
deletions: import("zod").ZodNumber;
|
|
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,113 @@ 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
|
+
agents: 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
|
+
archived: import("zod").ZodArray<import("zod").ZodString>;
|
|
932
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
933
|
+
unarchive: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
934
|
+
ids: import("zod").ZodArray<import("zod").ZodString>;
|
|
935
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
936
|
+
agents: import("zod").ZodArray<import("zod").ZodObject<{
|
|
937
|
+
id: import("zod").ZodString;
|
|
938
|
+
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
939
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
940
|
+
status: import("zod").ZodEnum<{
|
|
941
|
+
awaiting: "awaiting";
|
|
942
|
+
conflict: "conflict";
|
|
943
|
+
error: "error";
|
|
944
|
+
idle: "idle";
|
|
945
|
+
landed: "landed";
|
|
946
|
+
running: "running";
|
|
947
|
+
}>;
|
|
948
|
+
provider: import("zod").ZodString;
|
|
949
|
+
harness: import("zod").ZodEnum<{
|
|
950
|
+
"claude-code": "claude-code";
|
|
951
|
+
native: "native";
|
|
952
|
+
}>;
|
|
953
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
954
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
955
|
+
branch: import("zod").ZodOptional<import("zod").ZodString>;
|
|
956
|
+
base: import("zod").ZodOptional<import("zod").ZodString>;
|
|
957
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
958
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
959
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
960
|
+
contextTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
961
|
+
contextWindow: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
962
|
+
activity: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
963
|
+
tool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
964
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
965
|
+
todo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
966
|
+
}, import("zod/v4/core").$strip>>;
|
|
967
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
968
|
+
updatedAt: import("zod").ZodNumber;
|
|
969
|
+
seenAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
970
|
+
attention: import("zod").ZodObject<{
|
|
971
|
+
plan: import("zod").ZodBoolean;
|
|
972
|
+
question: import("zod").ZodBoolean;
|
|
973
|
+
permission: import("zod").ZodBoolean;
|
|
974
|
+
conflict: import("zod").ZodBoolean;
|
|
975
|
+
}, import("zod/v4/core").$strip>;
|
|
976
|
+
turns: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
977
|
+
toolUses: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
978
|
+
diff: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
979
|
+
files: import("zod").ZodNumber;
|
|
980
|
+
insertions: import("zod").ZodNumber;
|
|
981
|
+
deletions: import("zod").ZodNumber;
|
|
982
|
+
}, import("zod/v4/core").$strip>>;
|
|
983
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
984
|
+
}, import("zod/v4/core").$strip>>;
|
|
985
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
696
986
|
};
|
|
697
987
|
automations: {
|
|
698
988
|
list: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
@@ -1048,14 +1338,12 @@ export declare const sandboxContract: {
|
|
|
1048
1338
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1049
1339
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1050
1340
|
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>;
|
|
1341
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1342
|
+
kind: import("zod").ZodString;
|
|
1343
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1344
|
+
utilization: import("zod").ZodNumber;
|
|
1345
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1346
|
+
}, import("zod/v4/core").$strip>>;
|
|
1059
1347
|
measuredAt: import("zod").ZodNumber;
|
|
1060
1348
|
}, import("zod/v4/core").$strip>>;
|
|
1061
1349
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -1081,14 +1369,12 @@ export declare const sandboxContract: {
|
|
|
1081
1369
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1082
1370
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1083
1371
|
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>;
|
|
1372
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1373
|
+
kind: import("zod").ZodString;
|
|
1374
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1375
|
+
utilization: import("zod").ZodNumber;
|
|
1376
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1377
|
+
}, import("zod/v4/core").$strip>>;
|
|
1092
1378
|
measuredAt: import("zod").ZodNumber;
|
|
1093
1379
|
}, import("zod/v4/core").$strip>>;
|
|
1094
1380
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1335,6 +1621,43 @@ export declare const sandboxContract: {
|
|
|
1335
1621
|
user: "user";
|
|
1336
1622
|
}>;
|
|
1337
1623
|
text: import("zod").ZodString;
|
|
1624
|
+
thinking: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1625
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1626
|
+
id: import("zod").ZodString;
|
|
1627
|
+
name: import("zod").ZodString;
|
|
1628
|
+
category: import("zod").ZodEnum<{
|
|
1629
|
+
delete: "delete";
|
|
1630
|
+
edit: "edit";
|
|
1631
|
+
execute: "execute";
|
|
1632
|
+
fetch: "fetch";
|
|
1633
|
+
move: "move";
|
|
1634
|
+
other: "other";
|
|
1635
|
+
read: "read";
|
|
1636
|
+
search: "search";
|
|
1637
|
+
think: "think";
|
|
1638
|
+
}>;
|
|
1639
|
+
status: import("zod").ZodEnum<{
|
|
1640
|
+
completed: "completed";
|
|
1641
|
+
failed: "failed";
|
|
1642
|
+
in_progress: "in_progress";
|
|
1643
|
+
pending: "pending";
|
|
1644
|
+
}>;
|
|
1645
|
+
target: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1646
|
+
locations: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1647
|
+
path: import("zod").ZodString;
|
|
1648
|
+
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1649
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1650
|
+
content: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1651
|
+
type: import("zod").ZodLiteral<"text">;
|
|
1652
|
+
text: import("zod").ZodString;
|
|
1653
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1654
|
+
type: import("zod").ZodLiteral<"diff">;
|
|
1655
|
+
path: import("zod").ZodString;
|
|
1656
|
+
oldText: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1657
|
+
newText: import("zod").ZodString;
|
|
1658
|
+
truncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1659
|
+
}, import("zod/v4/core").$strip>], "type">>>;
|
|
1660
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1338
1661
|
}, import("zod/v4/core").$strip>>;
|
|
1339
1662
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1340
1663
|
};
|
|
@@ -1351,6 +1674,7 @@ export declare const sandboxContract: {
|
|
|
1351
1674
|
native: "native";
|
|
1352
1675
|
rtk: "rtk";
|
|
1353
1676
|
}>>;
|
|
1677
|
+
agentRetentionDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
1354
1678
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1355
1679
|
set: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1356
1680
|
stableSystemPrompt: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -1364,6 +1688,7 @@ export declare const sandboxContract: {
|
|
|
1364
1688
|
native: "native";
|
|
1365
1689
|
rtk: "rtk";
|
|
1366
1690
|
}>>;
|
|
1691
|
+
agentRetentionDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
1367
1692
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1368
1693
|
ok: import("zod").ZodLiteral<true>;
|
|
1369
1694
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -1749,14 +2074,12 @@ export declare const sandboxContract: {
|
|
|
1749
2074
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1750
2075
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1751
2076
|
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>;
|
|
2077
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2078
|
+
kind: import("zod").ZodString;
|
|
2079
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2080
|
+
utilization: import("zod").ZodNumber;
|
|
2081
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2082
|
+
}, import("zod/v4/core").$strip>>;
|
|
1760
2083
|
measuredAt: import("zod").ZodNumber;
|
|
1761
2084
|
}, import("zod/v4/core").$strip>>;
|
|
1762
2085
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1779,14 +2102,12 @@ export declare const sandboxContract: {
|
|
|
1779
2102
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1780
2103
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1781
2104
|
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>;
|
|
2105
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2106
|
+
kind: import("zod").ZodString;
|
|
2107
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2108
|
+
utilization: import("zod").ZodNumber;
|
|
2109
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2110
|
+
}, import("zod/v4/core").$strip>>;
|
|
1790
2111
|
measuredAt: import("zod").ZodNumber;
|
|
1791
2112
|
}, import("zod/v4/core").$strip>>;
|
|
1792
2113
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -1812,14 +2133,12 @@ export declare const sandboxContract: {
|
|
|
1812
2133
|
needsReauth: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1813
2134
|
detail: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1814
2135
|
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>;
|
|
2136
|
+
windows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2137
|
+
kind: import("zod").ZodString;
|
|
2138
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2139
|
+
utilization: import("zod").ZodNumber;
|
|
2140
|
+
resetsAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2141
|
+
}, import("zod/v4/core").$strip>>;
|
|
1823
2142
|
measuredAt: import("zod").ZodNumber;
|
|
1824
2143
|
}, import("zod/v4/core").$strip>>;
|
|
1825
2144
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2012,6 +2331,29 @@ export declare const sandboxContract: {
|
|
|
2012
2331
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2013
2332
|
ok: import("zod").ZodLiteral<true>;
|
|
2014
2333
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2334
|
+
setup: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2335
|
+
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2336
|
+
dir: import("zod").ZodString;
|
|
2337
|
+
ecosystem: import("zod").ZodEnum<{
|
|
2338
|
+
node: "node";
|
|
2339
|
+
python: "python";
|
|
2340
|
+
}>;
|
|
2341
|
+
manager: import("zod").ZodString;
|
|
2342
|
+
command: import("zod").ZodString;
|
|
2343
|
+
evidence: import("zod").ZodString;
|
|
2344
|
+
state: import("zod").ZodEnum<{
|
|
2345
|
+
installing: "installing";
|
|
2346
|
+
"needs-setup": "needs-setup";
|
|
2347
|
+
ready: "ready";
|
|
2348
|
+
unsupported: "unsupported";
|
|
2349
|
+
}>;
|
|
2350
|
+
}, import("zod/v4/core").$strip>>;
|
|
2351
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2352
|
+
install: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2353
|
+
dirs: import("zod").ZodArray<import("zod").ZodString>;
|
|
2354
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2355
|
+
started: import("zod").ZodArray<import("zod").ZodString>;
|
|
2356
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2015
2357
|
repos: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
2016
2358
|
repos: import("zod").ZodArray<import("zod").ZodString>;
|
|
2017
2359
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -2455,6 +2797,7 @@ export declare const sandboxContract: {
|
|
|
2455
2797
|
} | undefined;
|
|
2456
2798
|
startedAt?: number | undefined;
|
|
2457
2799
|
updatedAt: number;
|
|
2800
|
+
seenAt?: number | undefined;
|
|
2458
2801
|
attention: {
|
|
2459
2802
|
plan: boolean;
|
|
2460
2803
|
question: boolean;
|
|
@@ -2468,6 +2811,7 @@ export declare const sandboxContract: {
|
|
|
2468
2811
|
insertions: number;
|
|
2469
2812
|
deletions: number;
|
|
2470
2813
|
} | undefined;
|
|
2814
|
+
archivedAt?: number | undefined;
|
|
2471
2815
|
}[];
|
|
2472
2816
|
}, unknown, void>, import("@orpc/contract").AsyncIteratorClass<{
|
|
2473
2817
|
kind: "hello";
|
|
@@ -2517,6 +2861,7 @@ export declare const sandboxContract: {
|
|
|
2517
2861
|
} | undefined;
|
|
2518
2862
|
startedAt?: number | undefined;
|
|
2519
2863
|
updatedAt: number;
|
|
2864
|
+
seenAt?: number | undefined;
|
|
2520
2865
|
attention: {
|
|
2521
2866
|
plan: boolean;
|
|
2522
2867
|
question: boolean;
|
|
@@ -2530,6 +2875,7 @@ export declare const sandboxContract: {
|
|
|
2530
2875
|
insertions: number;
|
|
2531
2876
|
deletions: number;
|
|
2532
2877
|
} | undefined;
|
|
2878
|
+
archivedAt?: number | undefined;
|
|
2533
2879
|
}[];
|
|
2534
2880
|
}, unknown, void>>, Record<never, never>, Record<never, never>>;
|
|
2535
2881
|
presence: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AA6BA,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,oBAAoB,EAAE,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAClE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAClE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AAKvC,eAAO,MAAM,eAAe;IACxB,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IACR,KAAK
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|