@renai-labs/sdk 0.1.23 → 0.1.25
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/generated/@tanstack/react-query.gen.d.ts +146 -68
- package/dist/generated/@tanstack/react-query.gen.js +134 -4
- package/dist/generated/internal/types.gen.d.ts +159 -126
- package/dist/generated/sdk.gen.d.ts +54 -4
- package/dist/generated/sdk.gen.js +109 -4
- package/dist/generated/types.gen.d.ts +1801 -1380
- package/dist/generated/zod.gen.d.ts +7711 -6589
- package/dist/generated/zod.gen.js +531 -345
- package/package.json +2 -2
|
@@ -75,6 +75,9 @@ export type SandboxVolumeConfig = {
|
|
|
75
75
|
region: string;
|
|
76
76
|
endpoint: string | null;
|
|
77
77
|
};
|
|
78
|
+
/**
|
|
79
|
+
* What this project's tools may do. Maps a tool name or glob to "allow", "ask" (stop and ask the user first) or "deny"; a value may also be a map of glob to action. MCP tools are "<mcp-slug>_<tool>", so "slack_*" is all of Slack's. Full-replace on update. Example: {"webfetch":"deny","slack_post_message":"ask","bash":{"*":"allow","rm *":"deny"}}
|
|
80
|
+
*/
|
|
78
81
|
export type PermissionConfig = {
|
|
79
82
|
__originalKeys?: Array<string>;
|
|
80
83
|
read?: "allow" | "deny" | "ask" | {
|
|
@@ -188,6 +191,13 @@ export type ReplayPublicListItem = {
|
|
|
188
191
|
websiteMetadata: WebsiteMetadata | null;
|
|
189
192
|
updatedAt: string;
|
|
190
193
|
};
|
|
194
|
+
/**
|
|
195
|
+
* Model this trigger's fires run on; absent inherits the agent/project default.
|
|
196
|
+
*/
|
|
197
|
+
export type ModelSelection = {
|
|
198
|
+
model: string;
|
|
199
|
+
variant?: string | null;
|
|
200
|
+
};
|
|
191
201
|
export type PublisherLink = {
|
|
192
202
|
label: string;
|
|
193
203
|
href: string;
|
|
@@ -227,6 +237,7 @@ export type McpPublicView = {
|
|
|
227
237
|
requiredCredentials: Array<RequiredCredential>;
|
|
228
238
|
publisherId: string | null;
|
|
229
239
|
websiteMetadata: WebsiteMetadata | null;
|
|
240
|
+
setup: Setup | null;
|
|
230
241
|
sortOrder: number | null;
|
|
231
242
|
popularityScore: number | null;
|
|
232
243
|
trendingScore: number | null;
|
|
@@ -238,6 +249,27 @@ export type McpPublicView = {
|
|
|
238
249
|
tags?: Array<string>;
|
|
239
250
|
publisher?: PublisherPublicView | null;
|
|
240
251
|
};
|
|
252
|
+
export type SetupSource = {
|
|
253
|
+
name: string;
|
|
254
|
+
url?: string;
|
|
255
|
+
verifiedAt?: string;
|
|
256
|
+
};
|
|
257
|
+
export type SetupMedia = {
|
|
258
|
+
kind: "image" | "video";
|
|
259
|
+
url: string;
|
|
260
|
+
alt: string;
|
|
261
|
+
poster?: string;
|
|
262
|
+
};
|
|
263
|
+
export type Setup = {
|
|
264
|
+
/**
|
|
265
|
+
* Where the credential is actually issued — the button the guide points at.
|
|
266
|
+
*/
|
|
267
|
+
url?: string;
|
|
268
|
+
markdown?: string;
|
|
269
|
+
media?: Array<SetupMedia>;
|
|
270
|
+
source?: SetupSource;
|
|
271
|
+
citations?: Array<string>;
|
|
272
|
+
};
|
|
241
273
|
export type RequirementWhen = {
|
|
242
274
|
name: string;
|
|
243
275
|
op: "eq" | "neq";
|
|
@@ -293,6 +325,7 @@ export type SkillPublicView = {
|
|
|
293
325
|
repository: Repository | null;
|
|
294
326
|
publisherId: string | null;
|
|
295
327
|
websiteMetadata: WebsiteMetadata | null;
|
|
328
|
+
setup: Setup | null;
|
|
296
329
|
sortOrder: number | null;
|
|
297
330
|
popularityScore: number | null;
|
|
298
331
|
trendingScore: number | null;
|
|
@@ -327,7 +360,7 @@ export type AgentLatestVersion = {
|
|
|
327
360
|
version: string;
|
|
328
361
|
description: string | null;
|
|
329
362
|
prompt: string | null;
|
|
330
|
-
model:
|
|
363
|
+
model: ModelSelection | null;
|
|
331
364
|
skills: Array<{
|
|
332
365
|
skillId: string;
|
|
333
366
|
/**
|
|
@@ -486,7 +519,7 @@ export type OrganizationLogoGetErrors = {
|
|
|
486
519
|
/**
|
|
487
520
|
* Stable discriminator for errors a client branches on.
|
|
488
521
|
*/
|
|
489
|
-
code?: "mcp_duplicate_url";
|
|
522
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
490
523
|
};
|
|
491
524
|
};
|
|
492
525
|
export type OrganizationLogoGetError = OrganizationLogoGetErrors[keyof OrganizationLogoGetErrors];
|
|
@@ -514,7 +547,7 @@ export type ResourceIconGetErrors = {
|
|
|
514
547
|
/**
|
|
515
548
|
* Stable discriminator for errors a client branches on.
|
|
516
549
|
*/
|
|
517
|
-
code?: "mcp_duplicate_url";
|
|
550
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
518
551
|
};
|
|
519
552
|
};
|
|
520
553
|
export type ResourceIconGetError = ResourceIconGetErrors[keyof ResourceIconGetErrors];
|
|
@@ -545,7 +578,7 @@ export type RegistryAgentGetBySlugErrors = {
|
|
|
545
578
|
/**
|
|
546
579
|
* Stable discriminator for errors a client branches on.
|
|
547
580
|
*/
|
|
548
|
-
code?: "mcp_duplicate_url";
|
|
581
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
549
582
|
};
|
|
550
583
|
};
|
|
551
584
|
export type RegistryAgentGetBySlugError = RegistryAgentGetBySlugErrors[keyof RegistryAgentGetBySlugErrors];
|
|
@@ -576,7 +609,7 @@ export type RegistrySkillGetBySlugErrors = {
|
|
|
576
609
|
/**
|
|
577
610
|
* Stable discriminator for errors a client branches on.
|
|
578
611
|
*/
|
|
579
|
-
code?: "mcp_duplicate_url";
|
|
612
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
580
613
|
};
|
|
581
614
|
};
|
|
582
615
|
export type RegistrySkillGetBySlugError = RegistrySkillGetBySlugErrors[keyof RegistrySkillGetBySlugErrors];
|
|
@@ -607,7 +640,7 @@ export type RegistryMcpGetBySlugErrors = {
|
|
|
607
640
|
/**
|
|
608
641
|
* Stable discriminator for errors a client branches on.
|
|
609
642
|
*/
|
|
610
|
-
code?: "mcp_duplicate_url";
|
|
643
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
611
644
|
};
|
|
612
645
|
};
|
|
613
646
|
export type RegistryMcpGetBySlugError = RegistryMcpGetBySlugErrors[keyof RegistryMcpGetBySlugErrors];
|
|
@@ -637,7 +670,7 @@ export type RegistryPublisherListErrors = {
|
|
|
637
670
|
/**
|
|
638
671
|
* Stable discriminator for errors a client branches on.
|
|
639
672
|
*/
|
|
640
|
-
code?: "mcp_duplicate_url";
|
|
673
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
641
674
|
};
|
|
642
675
|
};
|
|
643
676
|
export type RegistryPublisherListError = RegistryPublisherListErrors[keyof RegistryPublisherListErrors];
|
|
@@ -667,7 +700,7 @@ export type RegistryReplayListErrors = {
|
|
|
667
700
|
/**
|
|
668
701
|
* Stable discriminator for errors a client branches on.
|
|
669
702
|
*/
|
|
670
|
-
code?: "mcp_duplicate_url";
|
|
703
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
671
704
|
};
|
|
672
705
|
};
|
|
673
706
|
export type RegistryReplayListError = RegistryReplayListErrors[keyof RegistryReplayListErrors];
|
|
@@ -695,7 +728,7 @@ export type SandboxAuthExchangeErrors = {
|
|
|
695
728
|
/**
|
|
696
729
|
* Stable discriminator for errors a client branches on.
|
|
697
730
|
*/
|
|
698
|
-
code?: "mcp_duplicate_url";
|
|
731
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
699
732
|
};
|
|
700
733
|
/**
|
|
701
734
|
* Not found
|
|
@@ -705,7 +738,7 @@ export type SandboxAuthExchangeErrors = {
|
|
|
705
738
|
/**
|
|
706
739
|
* Stable discriminator for errors a client branches on.
|
|
707
740
|
*/
|
|
708
|
-
code?: "mcp_duplicate_url";
|
|
741
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
709
742
|
};
|
|
710
743
|
};
|
|
711
744
|
export type SandboxAuthExchangeError = SandboxAuthExchangeErrors[keyof SandboxAuthExchangeErrors];
|
|
@@ -733,7 +766,7 @@ export type SandboxAuthRefreshErrors = {
|
|
|
733
766
|
/**
|
|
734
767
|
* Stable discriminator for errors a client branches on.
|
|
735
768
|
*/
|
|
736
|
-
code?: "mcp_duplicate_url";
|
|
769
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
737
770
|
};
|
|
738
771
|
/**
|
|
739
772
|
* Not found
|
|
@@ -743,7 +776,7 @@ export type SandboxAuthRefreshErrors = {
|
|
|
743
776
|
/**
|
|
744
777
|
* Stable discriminator for errors a client branches on.
|
|
745
778
|
*/
|
|
746
|
-
code?: "mcp_duplicate_url";
|
|
779
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
747
780
|
};
|
|
748
781
|
};
|
|
749
782
|
export type SandboxAuthRefreshError = SandboxAuthRefreshErrors[keyof SandboxAuthRefreshErrors];
|
|
@@ -769,7 +802,7 @@ export type SandboxBootstrapCompleteErrors = {
|
|
|
769
802
|
/**
|
|
770
803
|
* Stable discriminator for errors a client branches on.
|
|
771
804
|
*/
|
|
772
|
-
code?: "mcp_duplicate_url";
|
|
805
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
773
806
|
};
|
|
774
807
|
/**
|
|
775
808
|
* Forbidden
|
|
@@ -779,7 +812,7 @@ export type SandboxBootstrapCompleteErrors = {
|
|
|
779
812
|
/**
|
|
780
813
|
* Stable discriminator for errors a client branches on.
|
|
781
814
|
*/
|
|
782
|
-
code?: "mcp_duplicate_url";
|
|
815
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
783
816
|
};
|
|
784
817
|
/**
|
|
785
818
|
* Not found
|
|
@@ -789,7 +822,7 @@ export type SandboxBootstrapCompleteErrors = {
|
|
|
789
822
|
/**
|
|
790
823
|
* Stable discriminator for errors a client branches on.
|
|
791
824
|
*/
|
|
792
|
-
code?: "mcp_duplicate_url";
|
|
825
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
793
826
|
};
|
|
794
827
|
};
|
|
795
828
|
export type SandboxBootstrapCompleteError = SandboxBootstrapCompleteErrors[keyof SandboxBootstrapCompleteErrors];
|
|
@@ -817,7 +850,7 @@ export type SandboxInvalidateCompleteErrors = {
|
|
|
817
850
|
/**
|
|
818
851
|
* Stable discriminator for errors a client branches on.
|
|
819
852
|
*/
|
|
820
|
-
code?: "mcp_duplicate_url";
|
|
853
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
821
854
|
};
|
|
822
855
|
/**
|
|
823
856
|
* Forbidden
|
|
@@ -827,7 +860,7 @@ export type SandboxInvalidateCompleteErrors = {
|
|
|
827
860
|
/**
|
|
828
861
|
* Stable discriminator for errors a client branches on.
|
|
829
862
|
*/
|
|
830
|
-
code?: "mcp_duplicate_url";
|
|
863
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
831
864
|
};
|
|
832
865
|
/**
|
|
833
866
|
* Not found
|
|
@@ -837,7 +870,7 @@ export type SandboxInvalidateCompleteErrors = {
|
|
|
837
870
|
/**
|
|
838
871
|
* Stable discriminator for errors a client branches on.
|
|
839
872
|
*/
|
|
840
|
-
code?: "mcp_duplicate_url";
|
|
873
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
841
874
|
};
|
|
842
875
|
};
|
|
843
876
|
export type SandboxInvalidateCompleteError = SandboxInvalidateCompleteErrors[keyof SandboxInvalidateCompleteErrors];
|
|
@@ -865,7 +898,7 @@ export type SandboxOtelTracesErrors = {
|
|
|
865
898
|
/**
|
|
866
899
|
* Stable discriminator for errors a client branches on.
|
|
867
900
|
*/
|
|
868
|
-
code?: "mcp_duplicate_url";
|
|
901
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
869
902
|
};
|
|
870
903
|
/**
|
|
871
904
|
* Forbidden
|
|
@@ -875,7 +908,7 @@ export type SandboxOtelTracesErrors = {
|
|
|
875
908
|
/**
|
|
876
909
|
* Stable discriminator for errors a client branches on.
|
|
877
910
|
*/
|
|
878
|
-
code?: "mcp_duplicate_url";
|
|
911
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
879
912
|
};
|
|
880
913
|
};
|
|
881
914
|
export type SandboxOtelTracesError = SandboxOtelTracesErrors[keyof SandboxOtelTracesErrors];
|
|
@@ -900,7 +933,7 @@ export type SandboxModelKeyGetErrors = {
|
|
|
900
933
|
/**
|
|
901
934
|
* Stable discriminator for errors a client branches on.
|
|
902
935
|
*/
|
|
903
|
-
code?: "mcp_duplicate_url";
|
|
936
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
904
937
|
};
|
|
905
938
|
/**
|
|
906
939
|
* Forbidden
|
|
@@ -910,7 +943,7 @@ export type SandboxModelKeyGetErrors = {
|
|
|
910
943
|
/**
|
|
911
944
|
* Stable discriminator for errors a client branches on.
|
|
912
945
|
*/
|
|
913
|
-
code?: "mcp_duplicate_url";
|
|
946
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
914
947
|
};
|
|
915
948
|
/**
|
|
916
949
|
* Not found
|
|
@@ -920,7 +953,7 @@ export type SandboxModelKeyGetErrors = {
|
|
|
920
953
|
/**
|
|
921
954
|
* Stable discriminator for errors a client branches on.
|
|
922
955
|
*/
|
|
923
|
-
code?: "mcp_duplicate_url";
|
|
956
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
924
957
|
};
|
|
925
958
|
};
|
|
926
959
|
export type SandboxModelKeyGetError = SandboxModelKeyGetErrors[keyof SandboxModelKeyGetErrors];
|
|
@@ -948,7 +981,7 @@ export type SandboxManifestGetErrors = {
|
|
|
948
981
|
/**
|
|
949
982
|
* Stable discriminator for errors a client branches on.
|
|
950
983
|
*/
|
|
951
|
-
code?: "mcp_duplicate_url";
|
|
984
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
952
985
|
};
|
|
953
986
|
/**
|
|
954
987
|
* Forbidden
|
|
@@ -958,7 +991,7 @@ export type SandboxManifestGetErrors = {
|
|
|
958
991
|
/**
|
|
959
992
|
* Stable discriminator for errors a client branches on.
|
|
960
993
|
*/
|
|
961
|
-
code?: "mcp_duplicate_url";
|
|
994
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
962
995
|
};
|
|
963
996
|
/**
|
|
964
997
|
* Not found
|
|
@@ -968,7 +1001,7 @@ export type SandboxManifestGetErrors = {
|
|
|
968
1001
|
/**
|
|
969
1002
|
* Stable discriminator for errors a client branches on.
|
|
970
1003
|
*/
|
|
971
|
-
code?: "mcp_duplicate_url";
|
|
1004
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
972
1005
|
};
|
|
973
1006
|
};
|
|
974
1007
|
export type SandboxManifestGetError = SandboxManifestGetErrors[keyof SandboxManifestGetErrors];
|
|
@@ -994,7 +1027,7 @@ export type SandboxSessionsSeqsErrors = {
|
|
|
994
1027
|
/**
|
|
995
1028
|
* Stable discriminator for errors a client branches on.
|
|
996
1029
|
*/
|
|
997
|
-
code?: "mcp_duplicate_url";
|
|
1030
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
998
1031
|
};
|
|
999
1032
|
/**
|
|
1000
1033
|
* Forbidden
|
|
@@ -1004,7 +1037,7 @@ export type SandboxSessionsSeqsErrors = {
|
|
|
1004
1037
|
/**
|
|
1005
1038
|
* Stable discriminator for errors a client branches on.
|
|
1006
1039
|
*/
|
|
1007
|
-
code?: "mcp_duplicate_url";
|
|
1040
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1008
1041
|
};
|
|
1009
1042
|
/**
|
|
1010
1043
|
* Not found
|
|
@@ -1014,7 +1047,7 @@ export type SandboxSessionsSeqsErrors = {
|
|
|
1014
1047
|
/**
|
|
1015
1048
|
* Stable discriminator for errors a client branches on.
|
|
1016
1049
|
*/
|
|
1017
|
-
code?: "mcp_duplicate_url";
|
|
1050
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1018
1051
|
};
|
|
1019
1052
|
};
|
|
1020
1053
|
export type SandboxSessionsSeqsError = SandboxSessionsSeqsErrors[keyof SandboxSessionsSeqsErrors];
|
|
@@ -1052,7 +1085,7 @@ export type SandboxSyncAppendErrors = {
|
|
|
1052
1085
|
/**
|
|
1053
1086
|
* Stable discriminator for errors a client branches on.
|
|
1054
1087
|
*/
|
|
1055
|
-
code?: "mcp_duplicate_url";
|
|
1088
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1056
1089
|
};
|
|
1057
1090
|
/**
|
|
1058
1091
|
* Unauthorized
|
|
@@ -1062,7 +1095,7 @@ export type SandboxSyncAppendErrors = {
|
|
|
1062
1095
|
/**
|
|
1063
1096
|
* Stable discriminator for errors a client branches on.
|
|
1064
1097
|
*/
|
|
1065
|
-
code?: "mcp_duplicate_url";
|
|
1098
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1066
1099
|
};
|
|
1067
1100
|
/**
|
|
1068
1101
|
* Forbidden
|
|
@@ -1072,7 +1105,7 @@ export type SandboxSyncAppendErrors = {
|
|
|
1072
1105
|
/**
|
|
1073
1106
|
* Stable discriminator for errors a client branches on.
|
|
1074
1107
|
*/
|
|
1075
|
-
code?: "mcp_duplicate_url";
|
|
1108
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1076
1109
|
};
|
|
1077
1110
|
/**
|
|
1078
1111
|
* Not found
|
|
@@ -1082,7 +1115,7 @@ export type SandboxSyncAppendErrors = {
|
|
|
1082
1115
|
/**
|
|
1083
1116
|
* Stable discriminator for errors a client branches on.
|
|
1084
1117
|
*/
|
|
1085
|
-
code?: "mcp_duplicate_url";
|
|
1118
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1086
1119
|
};
|
|
1087
1120
|
/**
|
|
1088
1121
|
* Conflict
|
|
@@ -1092,7 +1125,7 @@ export type SandboxSyncAppendErrors = {
|
|
|
1092
1125
|
/**
|
|
1093
1126
|
* Stable discriminator for errors a client branches on.
|
|
1094
1127
|
*/
|
|
1095
|
-
code?: "mcp_duplicate_url";
|
|
1128
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1096
1129
|
};
|
|
1097
1130
|
};
|
|
1098
1131
|
export type SandboxSyncAppendError = SandboxSyncAppendErrors[keyof SandboxSyncAppendErrors];
|
|
@@ -1123,7 +1156,7 @@ export type SandboxVolumesMintCredsErrors = {
|
|
|
1123
1156
|
/**
|
|
1124
1157
|
* Stable discriminator for errors a client branches on.
|
|
1125
1158
|
*/
|
|
1126
|
-
code?: "mcp_duplicate_url";
|
|
1159
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1127
1160
|
};
|
|
1128
1161
|
/**
|
|
1129
1162
|
* Forbidden
|
|
@@ -1133,7 +1166,7 @@ export type SandboxVolumesMintCredsErrors = {
|
|
|
1133
1166
|
/**
|
|
1134
1167
|
* Stable discriminator for errors a client branches on.
|
|
1135
1168
|
*/
|
|
1136
|
-
code?: "mcp_duplicate_url";
|
|
1169
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1137
1170
|
};
|
|
1138
1171
|
/**
|
|
1139
1172
|
* Not found
|
|
@@ -1143,7 +1176,7 @@ export type SandboxVolumesMintCredsErrors = {
|
|
|
1143
1176
|
/**
|
|
1144
1177
|
* Stable discriminator for errors a client branches on.
|
|
1145
1178
|
*/
|
|
1146
|
-
code?: "mcp_duplicate_url";
|
|
1179
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1147
1180
|
};
|
|
1148
1181
|
};
|
|
1149
1182
|
export type SandboxVolumesMintCredsError = SandboxVolumesMintCredsErrors[keyof SandboxVolumesMintCredsErrors];
|
|
@@ -1169,7 +1202,7 @@ export type SandboxDatabasesMintCredsErrors = {
|
|
|
1169
1202
|
/**
|
|
1170
1203
|
* Stable discriminator for errors a client branches on.
|
|
1171
1204
|
*/
|
|
1172
|
-
code?: "mcp_duplicate_url";
|
|
1205
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1173
1206
|
};
|
|
1174
1207
|
/**
|
|
1175
1208
|
* Forbidden
|
|
@@ -1179,7 +1212,7 @@ export type SandboxDatabasesMintCredsErrors = {
|
|
|
1179
1212
|
/**
|
|
1180
1213
|
* Stable discriminator for errors a client branches on.
|
|
1181
1214
|
*/
|
|
1182
|
-
code?: "mcp_duplicate_url";
|
|
1215
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1183
1216
|
};
|
|
1184
1217
|
/**
|
|
1185
1218
|
* Not found
|
|
@@ -1189,7 +1222,7 @@ export type SandboxDatabasesMintCredsErrors = {
|
|
|
1189
1222
|
/**
|
|
1190
1223
|
* Stable discriminator for errors a client branches on.
|
|
1191
1224
|
*/
|
|
1192
|
-
code?: "mcp_duplicate_url";
|
|
1225
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1193
1226
|
};
|
|
1194
1227
|
};
|
|
1195
1228
|
export type SandboxDatabasesMintCredsError = SandboxDatabasesMintCredsErrors[keyof SandboxDatabasesMintCredsErrors];
|
|
@@ -1215,7 +1248,7 @@ export type SandboxArtifactsMintCredsErrors = {
|
|
|
1215
1248
|
/**
|
|
1216
1249
|
* Stable discriminator for errors a client branches on.
|
|
1217
1250
|
*/
|
|
1218
|
-
code?: "mcp_duplicate_url";
|
|
1251
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1219
1252
|
};
|
|
1220
1253
|
/**
|
|
1221
1254
|
* Forbidden
|
|
@@ -1225,7 +1258,7 @@ export type SandboxArtifactsMintCredsErrors = {
|
|
|
1225
1258
|
/**
|
|
1226
1259
|
* Stable discriminator for errors a client branches on.
|
|
1227
1260
|
*/
|
|
1228
|
-
code?: "mcp_duplicate_url";
|
|
1261
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1229
1262
|
};
|
|
1230
1263
|
/**
|
|
1231
1264
|
* Not found
|
|
@@ -1235,7 +1268,7 @@ export type SandboxArtifactsMintCredsErrors = {
|
|
|
1235
1268
|
/**
|
|
1236
1269
|
* Stable discriminator for errors a client branches on.
|
|
1237
1270
|
*/
|
|
1238
|
-
code?: "mcp_duplicate_url";
|
|
1271
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1239
1272
|
};
|
|
1240
1273
|
};
|
|
1241
1274
|
export type SandboxArtifactsMintCredsError = SandboxArtifactsMintCredsErrors[keyof SandboxArtifactsMintCredsErrors];
|
|
@@ -1261,7 +1294,7 @@ export type SandboxArtifactsTargetErrors = {
|
|
|
1261
1294
|
/**
|
|
1262
1295
|
* Stable discriminator for errors a client branches on.
|
|
1263
1296
|
*/
|
|
1264
|
-
code?: "mcp_duplicate_url";
|
|
1297
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1265
1298
|
};
|
|
1266
1299
|
/**
|
|
1267
1300
|
* Forbidden
|
|
@@ -1271,7 +1304,7 @@ export type SandboxArtifactsTargetErrors = {
|
|
|
1271
1304
|
/**
|
|
1272
1305
|
* Stable discriminator for errors a client branches on.
|
|
1273
1306
|
*/
|
|
1274
|
-
code?: "mcp_duplicate_url";
|
|
1307
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1275
1308
|
};
|
|
1276
1309
|
/**
|
|
1277
1310
|
* Not found
|
|
@@ -1281,7 +1314,7 @@ export type SandboxArtifactsTargetErrors = {
|
|
|
1281
1314
|
/**
|
|
1282
1315
|
* Stable discriminator for errors a client branches on.
|
|
1283
1316
|
*/
|
|
1284
|
-
code?: "mcp_duplicate_url";
|
|
1317
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1285
1318
|
};
|
|
1286
1319
|
};
|
|
1287
1320
|
export type SandboxArtifactsTargetError = SandboxArtifactsTargetErrors[keyof SandboxArtifactsTargetErrors];
|
|
@@ -1321,7 +1354,7 @@ export type SandboxSessionUpdateErrors = {
|
|
|
1321
1354
|
/**
|
|
1322
1355
|
* Stable discriminator for errors a client branches on.
|
|
1323
1356
|
*/
|
|
1324
|
-
code?: "mcp_duplicate_url";
|
|
1357
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1325
1358
|
};
|
|
1326
1359
|
/**
|
|
1327
1360
|
* Unauthorized
|
|
@@ -1331,7 +1364,7 @@ export type SandboxSessionUpdateErrors = {
|
|
|
1331
1364
|
/**
|
|
1332
1365
|
* Stable discriminator for errors a client branches on.
|
|
1333
1366
|
*/
|
|
1334
|
-
code?: "mcp_duplicate_url";
|
|
1367
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1335
1368
|
};
|
|
1336
1369
|
/**
|
|
1337
1370
|
* Forbidden
|
|
@@ -1341,7 +1374,7 @@ export type SandboxSessionUpdateErrors = {
|
|
|
1341
1374
|
/**
|
|
1342
1375
|
* Stable discriminator for errors a client branches on.
|
|
1343
1376
|
*/
|
|
1344
|
-
code?: "mcp_duplicate_url";
|
|
1377
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1345
1378
|
};
|
|
1346
1379
|
/**
|
|
1347
1380
|
* Not found
|
|
@@ -1351,7 +1384,7 @@ export type SandboxSessionUpdateErrors = {
|
|
|
1351
1384
|
/**
|
|
1352
1385
|
* Stable discriminator for errors a client branches on.
|
|
1353
1386
|
*/
|
|
1354
|
-
code?: "mcp_duplicate_url";
|
|
1387
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1355
1388
|
};
|
|
1356
1389
|
};
|
|
1357
1390
|
export type SandboxSessionUpdateError = SandboxSessionUpdateErrors[keyof SandboxSessionUpdateErrors];
|
|
@@ -1387,7 +1420,7 @@ export type SandboxSlackMessageErrors = {
|
|
|
1387
1420
|
/**
|
|
1388
1421
|
* Stable discriminator for errors a client branches on.
|
|
1389
1422
|
*/
|
|
1390
|
-
code?: "mcp_duplicate_url";
|
|
1423
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1391
1424
|
};
|
|
1392
1425
|
/**
|
|
1393
1426
|
* Unauthorized
|
|
@@ -1397,7 +1430,7 @@ export type SandboxSlackMessageErrors = {
|
|
|
1397
1430
|
/**
|
|
1398
1431
|
* Stable discriminator for errors a client branches on.
|
|
1399
1432
|
*/
|
|
1400
|
-
code?: "mcp_duplicate_url";
|
|
1433
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1401
1434
|
};
|
|
1402
1435
|
/**
|
|
1403
1436
|
* Forbidden
|
|
@@ -1407,7 +1440,7 @@ export type SandboxSlackMessageErrors = {
|
|
|
1407
1440
|
/**
|
|
1408
1441
|
* Stable discriminator for errors a client branches on.
|
|
1409
1442
|
*/
|
|
1410
|
-
code?: "mcp_duplicate_url";
|
|
1443
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1411
1444
|
};
|
|
1412
1445
|
/**
|
|
1413
1446
|
* Not found
|
|
@@ -1417,7 +1450,7 @@ export type SandboxSlackMessageErrors = {
|
|
|
1417
1450
|
/**
|
|
1418
1451
|
* Stable discriminator for errors a client branches on.
|
|
1419
1452
|
*/
|
|
1420
|
-
code?: "mcp_duplicate_url";
|
|
1453
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1421
1454
|
};
|
|
1422
1455
|
};
|
|
1423
1456
|
export type SandboxSlackMessageError = SandboxSlackMessageErrors[keyof SandboxSlackMessageErrors];
|
|
@@ -1446,7 +1479,7 @@ export type SandboxSlackChannelsErrors = {
|
|
|
1446
1479
|
/**
|
|
1447
1480
|
* Stable discriminator for errors a client branches on.
|
|
1448
1481
|
*/
|
|
1449
|
-
code?: "mcp_duplicate_url";
|
|
1482
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1450
1483
|
};
|
|
1451
1484
|
/**
|
|
1452
1485
|
* Unauthorized
|
|
@@ -1456,7 +1489,7 @@ export type SandboxSlackChannelsErrors = {
|
|
|
1456
1489
|
/**
|
|
1457
1490
|
* Stable discriminator for errors a client branches on.
|
|
1458
1491
|
*/
|
|
1459
|
-
code?: "mcp_duplicate_url";
|
|
1492
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1460
1493
|
};
|
|
1461
1494
|
/**
|
|
1462
1495
|
* Forbidden
|
|
@@ -1466,7 +1499,7 @@ export type SandboxSlackChannelsErrors = {
|
|
|
1466
1499
|
/**
|
|
1467
1500
|
* Stable discriminator for errors a client branches on.
|
|
1468
1501
|
*/
|
|
1469
|
-
code?: "mcp_duplicate_url";
|
|
1502
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1470
1503
|
};
|
|
1471
1504
|
/**
|
|
1472
1505
|
* Not found
|
|
@@ -1476,7 +1509,7 @@ export type SandboxSlackChannelsErrors = {
|
|
|
1476
1509
|
/**
|
|
1477
1510
|
* Stable discriminator for errors a client branches on.
|
|
1478
1511
|
*/
|
|
1479
|
-
code?: "mcp_duplicate_url";
|
|
1512
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1480
1513
|
};
|
|
1481
1514
|
};
|
|
1482
1515
|
export type SandboxSlackChannelsError = SandboxSlackChannelsErrors[keyof SandboxSlackChannelsErrors];
|
|
@@ -1508,7 +1541,7 @@ export type SandboxSlackReadThreadErrors = {
|
|
|
1508
1541
|
/**
|
|
1509
1542
|
* Stable discriminator for errors a client branches on.
|
|
1510
1543
|
*/
|
|
1511
|
-
code?: "mcp_duplicate_url";
|
|
1544
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1512
1545
|
};
|
|
1513
1546
|
/**
|
|
1514
1547
|
* Unauthorized
|
|
@@ -1518,7 +1551,7 @@ export type SandboxSlackReadThreadErrors = {
|
|
|
1518
1551
|
/**
|
|
1519
1552
|
* Stable discriminator for errors a client branches on.
|
|
1520
1553
|
*/
|
|
1521
|
-
code?: "mcp_duplicate_url";
|
|
1554
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1522
1555
|
};
|
|
1523
1556
|
/**
|
|
1524
1557
|
* Forbidden
|
|
@@ -1528,7 +1561,7 @@ export type SandboxSlackReadThreadErrors = {
|
|
|
1528
1561
|
/**
|
|
1529
1562
|
* Stable discriminator for errors a client branches on.
|
|
1530
1563
|
*/
|
|
1531
|
-
code?: "mcp_duplicate_url";
|
|
1564
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1532
1565
|
};
|
|
1533
1566
|
/**
|
|
1534
1567
|
* Not found
|
|
@@ -1538,7 +1571,7 @@ export type SandboxSlackReadThreadErrors = {
|
|
|
1538
1571
|
/**
|
|
1539
1572
|
* Stable discriminator for errors a client branches on.
|
|
1540
1573
|
*/
|
|
1541
|
-
code?: "mcp_duplicate_url";
|
|
1574
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1542
1575
|
};
|
|
1543
1576
|
};
|
|
1544
1577
|
export type SandboxSlackReadThreadError = SandboxSlackReadThreadErrors[keyof SandboxSlackReadThreadErrors];
|
|
@@ -1572,7 +1605,7 @@ export type SandboxSlackUploadFileErrors = {
|
|
|
1572
1605
|
/**
|
|
1573
1606
|
* Stable discriminator for errors a client branches on.
|
|
1574
1607
|
*/
|
|
1575
|
-
code?: "mcp_duplicate_url";
|
|
1608
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1576
1609
|
};
|
|
1577
1610
|
/**
|
|
1578
1611
|
* Unauthorized
|
|
@@ -1582,7 +1615,7 @@ export type SandboxSlackUploadFileErrors = {
|
|
|
1582
1615
|
/**
|
|
1583
1616
|
* Stable discriminator for errors a client branches on.
|
|
1584
1617
|
*/
|
|
1585
|
-
code?: "mcp_duplicate_url";
|
|
1618
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1586
1619
|
};
|
|
1587
1620
|
/**
|
|
1588
1621
|
* Forbidden
|
|
@@ -1592,7 +1625,7 @@ export type SandboxSlackUploadFileErrors = {
|
|
|
1592
1625
|
/**
|
|
1593
1626
|
* Stable discriminator for errors a client branches on.
|
|
1594
1627
|
*/
|
|
1595
|
-
code?: "mcp_duplicate_url";
|
|
1628
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1596
1629
|
};
|
|
1597
1630
|
/**
|
|
1598
1631
|
* Not found
|
|
@@ -1602,7 +1635,7 @@ export type SandboxSlackUploadFileErrors = {
|
|
|
1602
1635
|
/**
|
|
1603
1636
|
* Stable discriminator for errors a client branches on.
|
|
1604
1637
|
*/
|
|
1605
|
-
code?: "mcp_duplicate_url";
|
|
1638
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1606
1639
|
};
|
|
1607
1640
|
};
|
|
1608
1641
|
export type SandboxSlackUploadFileError = SandboxSlackUploadFileErrors[keyof SandboxSlackUploadFileErrors];
|
|
@@ -1635,7 +1668,7 @@ export type SandboxSlackReactErrors = {
|
|
|
1635
1668
|
/**
|
|
1636
1669
|
* Stable discriminator for errors a client branches on.
|
|
1637
1670
|
*/
|
|
1638
|
-
code?: "mcp_duplicate_url";
|
|
1671
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1639
1672
|
};
|
|
1640
1673
|
/**
|
|
1641
1674
|
* Unauthorized
|
|
@@ -1645,7 +1678,7 @@ export type SandboxSlackReactErrors = {
|
|
|
1645
1678
|
/**
|
|
1646
1679
|
* Stable discriminator for errors a client branches on.
|
|
1647
1680
|
*/
|
|
1648
|
-
code?: "mcp_duplicate_url";
|
|
1681
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1649
1682
|
};
|
|
1650
1683
|
/**
|
|
1651
1684
|
* Forbidden
|
|
@@ -1655,7 +1688,7 @@ export type SandboxSlackReactErrors = {
|
|
|
1655
1688
|
/**
|
|
1656
1689
|
* Stable discriminator for errors a client branches on.
|
|
1657
1690
|
*/
|
|
1658
|
-
code?: "mcp_duplicate_url";
|
|
1691
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1659
1692
|
};
|
|
1660
1693
|
/**
|
|
1661
1694
|
* Not found
|
|
@@ -1665,7 +1698,7 @@ export type SandboxSlackReactErrors = {
|
|
|
1665
1698
|
/**
|
|
1666
1699
|
* Stable discriminator for errors a client branches on.
|
|
1667
1700
|
*/
|
|
1668
|
-
code?: "mcp_duplicate_url";
|
|
1701
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1669
1702
|
};
|
|
1670
1703
|
};
|
|
1671
1704
|
export type SandboxSlackReactError = SandboxSlackReactErrors[keyof SandboxSlackReactErrors];
|
|
@@ -1696,7 +1729,7 @@ export type SandboxSlackLookupUserErrors = {
|
|
|
1696
1729
|
/**
|
|
1697
1730
|
* Stable discriminator for errors a client branches on.
|
|
1698
1731
|
*/
|
|
1699
|
-
code?: "mcp_duplicate_url";
|
|
1732
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1700
1733
|
};
|
|
1701
1734
|
/**
|
|
1702
1735
|
* Unauthorized
|
|
@@ -1706,7 +1739,7 @@ export type SandboxSlackLookupUserErrors = {
|
|
|
1706
1739
|
/**
|
|
1707
1740
|
* Stable discriminator for errors a client branches on.
|
|
1708
1741
|
*/
|
|
1709
|
-
code?: "mcp_duplicate_url";
|
|
1742
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1710
1743
|
};
|
|
1711
1744
|
/**
|
|
1712
1745
|
* Forbidden
|
|
@@ -1716,7 +1749,7 @@ export type SandboxSlackLookupUserErrors = {
|
|
|
1716
1749
|
/**
|
|
1717
1750
|
* Stable discriminator for errors a client branches on.
|
|
1718
1751
|
*/
|
|
1719
|
-
code?: "mcp_duplicate_url";
|
|
1752
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1720
1753
|
};
|
|
1721
1754
|
/**
|
|
1722
1755
|
* Not found
|
|
@@ -1726,7 +1759,7 @@ export type SandboxSlackLookupUserErrors = {
|
|
|
1726
1759
|
/**
|
|
1727
1760
|
* Stable discriminator for errors a client branches on.
|
|
1728
1761
|
*/
|
|
1729
|
-
code?: "mcp_duplicate_url";
|
|
1762
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1730
1763
|
};
|
|
1731
1764
|
};
|
|
1732
1765
|
export type SandboxSlackLookupUserError = SandboxSlackLookupUserErrors[keyof SandboxSlackLookupUserErrors];
|
|
@@ -1761,7 +1794,7 @@ export type SandboxSlackMessageUpdateErrors = {
|
|
|
1761
1794
|
/**
|
|
1762
1795
|
* Stable discriminator for errors a client branches on.
|
|
1763
1796
|
*/
|
|
1764
|
-
code?: "mcp_duplicate_url";
|
|
1797
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1765
1798
|
};
|
|
1766
1799
|
/**
|
|
1767
1800
|
* Unauthorized
|
|
@@ -1771,7 +1804,7 @@ export type SandboxSlackMessageUpdateErrors = {
|
|
|
1771
1804
|
/**
|
|
1772
1805
|
* Stable discriminator for errors a client branches on.
|
|
1773
1806
|
*/
|
|
1774
|
-
code?: "mcp_duplicate_url";
|
|
1807
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1775
1808
|
};
|
|
1776
1809
|
/**
|
|
1777
1810
|
* Forbidden
|
|
@@ -1781,7 +1814,7 @@ export type SandboxSlackMessageUpdateErrors = {
|
|
|
1781
1814
|
/**
|
|
1782
1815
|
* Stable discriminator for errors a client branches on.
|
|
1783
1816
|
*/
|
|
1784
|
-
code?: "mcp_duplicate_url";
|
|
1817
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1785
1818
|
};
|
|
1786
1819
|
/**
|
|
1787
1820
|
* Not found
|
|
@@ -1791,7 +1824,7 @@ export type SandboxSlackMessageUpdateErrors = {
|
|
|
1791
1824
|
/**
|
|
1792
1825
|
* Stable discriminator for errors a client branches on.
|
|
1793
1826
|
*/
|
|
1794
|
-
code?: "mcp_duplicate_url";
|
|
1827
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1795
1828
|
};
|
|
1796
1829
|
};
|
|
1797
1830
|
export type SandboxSlackMessageUpdateError = SandboxSlackMessageUpdateErrors[keyof SandboxSlackMessageUpdateErrors];
|
|
@@ -1823,7 +1856,7 @@ export type SandboxSlackMessageDeleteErrors = {
|
|
|
1823
1856
|
/**
|
|
1824
1857
|
* Stable discriminator for errors a client branches on.
|
|
1825
1858
|
*/
|
|
1826
|
-
code?: "mcp_duplicate_url";
|
|
1859
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1827
1860
|
};
|
|
1828
1861
|
/**
|
|
1829
1862
|
* Unauthorized
|
|
@@ -1833,7 +1866,7 @@ export type SandboxSlackMessageDeleteErrors = {
|
|
|
1833
1866
|
/**
|
|
1834
1867
|
* Stable discriminator for errors a client branches on.
|
|
1835
1868
|
*/
|
|
1836
|
-
code?: "mcp_duplicate_url";
|
|
1869
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1837
1870
|
};
|
|
1838
1871
|
/**
|
|
1839
1872
|
* Forbidden
|
|
@@ -1843,7 +1876,7 @@ export type SandboxSlackMessageDeleteErrors = {
|
|
|
1843
1876
|
/**
|
|
1844
1877
|
* Stable discriminator for errors a client branches on.
|
|
1845
1878
|
*/
|
|
1846
|
-
code?: "mcp_duplicate_url";
|
|
1879
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1847
1880
|
};
|
|
1848
1881
|
/**
|
|
1849
1882
|
* Not found
|
|
@@ -1853,7 +1886,7 @@ export type SandboxSlackMessageDeleteErrors = {
|
|
|
1853
1886
|
/**
|
|
1854
1887
|
* Stable discriminator for errors a client branches on.
|
|
1855
1888
|
*/
|
|
1856
|
-
code?: "mcp_duplicate_url";
|
|
1889
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1857
1890
|
};
|
|
1858
1891
|
};
|
|
1859
1892
|
export type SandboxSlackMessageDeleteError = SandboxSlackMessageDeleteErrors[keyof SandboxSlackMessageDeleteErrors];
|
|
@@ -1884,7 +1917,7 @@ export type SandboxSlackReactionsErrors = {
|
|
|
1884
1917
|
/**
|
|
1885
1918
|
* Stable discriminator for errors a client branches on.
|
|
1886
1919
|
*/
|
|
1887
|
-
code?: "mcp_duplicate_url";
|
|
1920
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1888
1921
|
};
|
|
1889
1922
|
/**
|
|
1890
1923
|
* Unauthorized
|
|
@@ -1894,7 +1927,7 @@ export type SandboxSlackReactionsErrors = {
|
|
|
1894
1927
|
/**
|
|
1895
1928
|
* Stable discriminator for errors a client branches on.
|
|
1896
1929
|
*/
|
|
1897
|
-
code?: "mcp_duplicate_url";
|
|
1930
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1898
1931
|
};
|
|
1899
1932
|
/**
|
|
1900
1933
|
* Forbidden
|
|
@@ -1904,7 +1937,7 @@ export type SandboxSlackReactionsErrors = {
|
|
|
1904
1937
|
/**
|
|
1905
1938
|
* Stable discriminator for errors a client branches on.
|
|
1906
1939
|
*/
|
|
1907
|
-
code?: "mcp_duplicate_url";
|
|
1940
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1908
1941
|
};
|
|
1909
1942
|
/**
|
|
1910
1943
|
* Not found
|
|
@@ -1914,7 +1947,7 @@ export type SandboxSlackReactionsErrors = {
|
|
|
1914
1947
|
/**
|
|
1915
1948
|
* Stable discriminator for errors a client branches on.
|
|
1916
1949
|
*/
|
|
1917
|
-
code?: "mcp_duplicate_url";
|
|
1950
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1918
1951
|
};
|
|
1919
1952
|
};
|
|
1920
1953
|
export type SandboxSlackReactionsError = SandboxSlackReactionsErrors[keyof SandboxSlackReactionsErrors];
|
|
@@ -1947,7 +1980,7 @@ export type SandboxSlackHistoryErrors = {
|
|
|
1947
1980
|
/**
|
|
1948
1981
|
* Stable discriminator for errors a client branches on.
|
|
1949
1982
|
*/
|
|
1950
|
-
code?: "mcp_duplicate_url";
|
|
1983
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1951
1984
|
};
|
|
1952
1985
|
/**
|
|
1953
1986
|
* Unauthorized
|
|
@@ -1957,7 +1990,7 @@ export type SandboxSlackHistoryErrors = {
|
|
|
1957
1990
|
/**
|
|
1958
1991
|
* Stable discriminator for errors a client branches on.
|
|
1959
1992
|
*/
|
|
1960
|
-
code?: "mcp_duplicate_url";
|
|
1993
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1961
1994
|
};
|
|
1962
1995
|
/**
|
|
1963
1996
|
* Forbidden
|
|
@@ -1967,7 +2000,7 @@ export type SandboxSlackHistoryErrors = {
|
|
|
1967
2000
|
/**
|
|
1968
2001
|
* Stable discriminator for errors a client branches on.
|
|
1969
2002
|
*/
|
|
1970
|
-
code?: "mcp_duplicate_url";
|
|
2003
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1971
2004
|
};
|
|
1972
2005
|
/**
|
|
1973
2006
|
* Not found
|
|
@@ -1977,7 +2010,7 @@ export type SandboxSlackHistoryErrors = {
|
|
|
1977
2010
|
/**
|
|
1978
2011
|
* Stable discriminator for errors a client branches on.
|
|
1979
2012
|
*/
|
|
1980
|
-
code?: "mcp_duplicate_url";
|
|
2013
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
1981
2014
|
};
|
|
1982
2015
|
};
|
|
1983
2016
|
export type SandboxSlackHistoryError = SandboxSlackHistoryErrors[keyof SandboxSlackHistoryErrors];
|
|
@@ -2010,7 +2043,7 @@ export type SandboxSlackUsersErrors = {
|
|
|
2010
2043
|
/**
|
|
2011
2044
|
* Stable discriminator for errors a client branches on.
|
|
2012
2045
|
*/
|
|
2013
|
-
code?: "mcp_duplicate_url";
|
|
2046
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2014
2047
|
};
|
|
2015
2048
|
/**
|
|
2016
2049
|
* Unauthorized
|
|
@@ -2020,7 +2053,7 @@ export type SandboxSlackUsersErrors = {
|
|
|
2020
2053
|
/**
|
|
2021
2054
|
* Stable discriminator for errors a client branches on.
|
|
2022
2055
|
*/
|
|
2023
|
-
code?: "mcp_duplicate_url";
|
|
2056
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2024
2057
|
};
|
|
2025
2058
|
/**
|
|
2026
2059
|
* Forbidden
|
|
@@ -2030,7 +2063,7 @@ export type SandboxSlackUsersErrors = {
|
|
|
2030
2063
|
/**
|
|
2031
2064
|
* Stable discriminator for errors a client branches on.
|
|
2032
2065
|
*/
|
|
2033
|
-
code?: "mcp_duplicate_url";
|
|
2066
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2034
2067
|
};
|
|
2035
2068
|
/**
|
|
2036
2069
|
* Not found
|
|
@@ -2040,7 +2073,7 @@ export type SandboxSlackUsersErrors = {
|
|
|
2040
2073
|
/**
|
|
2041
2074
|
* Stable discriminator for errors a client branches on.
|
|
2042
2075
|
*/
|
|
2043
|
-
code?: "mcp_duplicate_url";
|
|
2076
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2044
2077
|
};
|
|
2045
2078
|
};
|
|
2046
2079
|
export type SandboxSlackUsersError = SandboxSlackUsersErrors[keyof SandboxSlackUsersErrors];
|
|
@@ -2078,7 +2111,7 @@ export type SandboxEmailSendErrors = {
|
|
|
2078
2111
|
/**
|
|
2079
2112
|
* Stable discriminator for errors a client branches on.
|
|
2080
2113
|
*/
|
|
2081
|
-
code?: "mcp_duplicate_url";
|
|
2114
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2082
2115
|
};
|
|
2083
2116
|
/**
|
|
2084
2117
|
* Unauthorized
|
|
@@ -2088,7 +2121,7 @@ export type SandboxEmailSendErrors = {
|
|
|
2088
2121
|
/**
|
|
2089
2122
|
* Stable discriminator for errors a client branches on.
|
|
2090
2123
|
*/
|
|
2091
|
-
code?: "mcp_duplicate_url";
|
|
2124
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2092
2125
|
};
|
|
2093
2126
|
/**
|
|
2094
2127
|
* Forbidden
|
|
@@ -2098,7 +2131,7 @@ export type SandboxEmailSendErrors = {
|
|
|
2098
2131
|
/**
|
|
2099
2132
|
* Stable discriminator for errors a client branches on.
|
|
2100
2133
|
*/
|
|
2101
|
-
code?: "mcp_duplicate_url";
|
|
2134
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2102
2135
|
};
|
|
2103
2136
|
/**
|
|
2104
2137
|
* Not found
|
|
@@ -2108,7 +2141,7 @@ export type SandboxEmailSendErrors = {
|
|
|
2108
2141
|
/**
|
|
2109
2142
|
* Stable discriminator for errors a client branches on.
|
|
2110
2143
|
*/
|
|
2111
|
-
code?: "mcp_duplicate_url";
|
|
2144
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2112
2145
|
};
|
|
2113
2146
|
};
|
|
2114
2147
|
export type SandboxEmailSendError = SandboxEmailSendErrors[keyof SandboxEmailSendErrors];
|
|
@@ -2142,7 +2175,7 @@ export type SandboxTelegramSendErrors = {
|
|
|
2142
2175
|
/**
|
|
2143
2176
|
* Stable discriminator for errors a client branches on.
|
|
2144
2177
|
*/
|
|
2145
|
-
code?: "mcp_duplicate_url";
|
|
2178
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2146
2179
|
};
|
|
2147
2180
|
/**
|
|
2148
2181
|
* Unauthorized
|
|
@@ -2152,7 +2185,7 @@ export type SandboxTelegramSendErrors = {
|
|
|
2152
2185
|
/**
|
|
2153
2186
|
* Stable discriminator for errors a client branches on.
|
|
2154
2187
|
*/
|
|
2155
|
-
code?: "mcp_duplicate_url";
|
|
2188
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2156
2189
|
};
|
|
2157
2190
|
/**
|
|
2158
2191
|
* Forbidden
|
|
@@ -2162,7 +2195,7 @@ export type SandboxTelegramSendErrors = {
|
|
|
2162
2195
|
/**
|
|
2163
2196
|
* Stable discriminator for errors a client branches on.
|
|
2164
2197
|
*/
|
|
2165
|
-
code?: "mcp_duplicate_url";
|
|
2198
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2166
2199
|
};
|
|
2167
2200
|
/**
|
|
2168
2201
|
* Not found
|
|
@@ -2172,7 +2205,7 @@ export type SandboxTelegramSendErrors = {
|
|
|
2172
2205
|
/**
|
|
2173
2206
|
* Stable discriminator for errors a client branches on.
|
|
2174
2207
|
*/
|
|
2175
|
-
code?: "mcp_duplicate_url";
|
|
2208
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2176
2209
|
};
|
|
2177
2210
|
};
|
|
2178
2211
|
export type SandboxTelegramSendError = SandboxTelegramSendErrors[keyof SandboxTelegramSendErrors];
|
|
@@ -2205,7 +2238,7 @@ export type SandboxTelegramReactErrors = {
|
|
|
2205
2238
|
/**
|
|
2206
2239
|
* Stable discriminator for errors a client branches on.
|
|
2207
2240
|
*/
|
|
2208
|
-
code?: "mcp_duplicate_url";
|
|
2241
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2209
2242
|
};
|
|
2210
2243
|
/**
|
|
2211
2244
|
* Unauthorized
|
|
@@ -2215,7 +2248,7 @@ export type SandboxTelegramReactErrors = {
|
|
|
2215
2248
|
/**
|
|
2216
2249
|
* Stable discriminator for errors a client branches on.
|
|
2217
2250
|
*/
|
|
2218
|
-
code?: "mcp_duplicate_url";
|
|
2251
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2219
2252
|
};
|
|
2220
2253
|
/**
|
|
2221
2254
|
* Forbidden
|
|
@@ -2225,7 +2258,7 @@ export type SandboxTelegramReactErrors = {
|
|
|
2225
2258
|
/**
|
|
2226
2259
|
* Stable discriminator for errors a client branches on.
|
|
2227
2260
|
*/
|
|
2228
|
-
code?: "mcp_duplicate_url";
|
|
2261
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2229
2262
|
};
|
|
2230
2263
|
/**
|
|
2231
2264
|
* Not found
|
|
@@ -2235,7 +2268,7 @@ export type SandboxTelegramReactErrors = {
|
|
|
2235
2268
|
/**
|
|
2236
2269
|
* Stable discriminator for errors a client branches on.
|
|
2237
2270
|
*/
|
|
2238
|
-
code?: "mcp_duplicate_url";
|
|
2271
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2239
2272
|
};
|
|
2240
2273
|
};
|
|
2241
2274
|
export type SandboxTelegramReactError = SandboxTelegramReactErrors[keyof SandboxTelegramReactErrors];
|
|
@@ -2269,7 +2302,7 @@ export type SandboxTelegramDocumentErrors = {
|
|
|
2269
2302
|
/**
|
|
2270
2303
|
* Stable discriminator for errors a client branches on.
|
|
2271
2304
|
*/
|
|
2272
|
-
code?: "mcp_duplicate_url";
|
|
2305
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2273
2306
|
};
|
|
2274
2307
|
/**
|
|
2275
2308
|
* Unauthorized
|
|
@@ -2279,7 +2312,7 @@ export type SandboxTelegramDocumentErrors = {
|
|
|
2279
2312
|
/**
|
|
2280
2313
|
* Stable discriminator for errors a client branches on.
|
|
2281
2314
|
*/
|
|
2282
|
-
code?: "mcp_duplicate_url";
|
|
2315
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2283
2316
|
};
|
|
2284
2317
|
/**
|
|
2285
2318
|
* Forbidden
|
|
@@ -2289,7 +2322,7 @@ export type SandboxTelegramDocumentErrors = {
|
|
|
2289
2322
|
/**
|
|
2290
2323
|
* Stable discriminator for errors a client branches on.
|
|
2291
2324
|
*/
|
|
2292
|
-
code?: "mcp_duplicate_url";
|
|
2325
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2293
2326
|
};
|
|
2294
2327
|
/**
|
|
2295
2328
|
* Not found
|
|
@@ -2299,7 +2332,7 @@ export type SandboxTelegramDocumentErrors = {
|
|
|
2299
2332
|
/**
|
|
2300
2333
|
* Stable discriminator for errors a client branches on.
|
|
2301
2334
|
*/
|
|
2302
|
-
code?: "mcp_duplicate_url";
|
|
2335
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2303
2336
|
};
|
|
2304
2337
|
};
|
|
2305
2338
|
export type SandboxTelegramDocumentError = SandboxTelegramDocumentErrors[keyof SandboxTelegramDocumentErrors];
|
|
@@ -2335,7 +2368,7 @@ export type SandboxSlackReplyCurrentErrors = {
|
|
|
2335
2368
|
/**
|
|
2336
2369
|
* Stable discriminator for errors a client branches on.
|
|
2337
2370
|
*/
|
|
2338
|
-
code?: "mcp_duplicate_url";
|
|
2371
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2339
2372
|
};
|
|
2340
2373
|
/**
|
|
2341
2374
|
* Unauthorized
|
|
@@ -2345,7 +2378,7 @@ export type SandboxSlackReplyCurrentErrors = {
|
|
|
2345
2378
|
/**
|
|
2346
2379
|
* Stable discriminator for errors a client branches on.
|
|
2347
2380
|
*/
|
|
2348
|
-
code?: "mcp_duplicate_url";
|
|
2381
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2349
2382
|
};
|
|
2350
2383
|
/**
|
|
2351
2384
|
* Forbidden
|
|
@@ -2355,7 +2388,7 @@ export type SandboxSlackReplyCurrentErrors = {
|
|
|
2355
2388
|
/**
|
|
2356
2389
|
* Stable discriminator for errors a client branches on.
|
|
2357
2390
|
*/
|
|
2358
|
-
code?: "mcp_duplicate_url";
|
|
2391
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2359
2392
|
};
|
|
2360
2393
|
/**
|
|
2361
2394
|
* Not found
|
|
@@ -2365,7 +2398,7 @@ export type SandboxSlackReplyCurrentErrors = {
|
|
|
2365
2398
|
/**
|
|
2366
2399
|
* Stable discriminator for errors a client branches on.
|
|
2367
2400
|
*/
|
|
2368
|
-
code?: "mcp_duplicate_url";
|
|
2401
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2369
2402
|
};
|
|
2370
2403
|
};
|
|
2371
2404
|
export type SandboxSlackReplyCurrentError = SandboxSlackReplyCurrentErrors[keyof SandboxSlackReplyCurrentErrors];
|
|
@@ -2401,7 +2434,7 @@ export type SandboxTelegramReplyCurrentErrors = {
|
|
|
2401
2434
|
/**
|
|
2402
2435
|
* Stable discriminator for errors a client branches on.
|
|
2403
2436
|
*/
|
|
2404
|
-
code?: "mcp_duplicate_url";
|
|
2437
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2405
2438
|
};
|
|
2406
2439
|
/**
|
|
2407
2440
|
* Unauthorized
|
|
@@ -2411,7 +2444,7 @@ export type SandboxTelegramReplyCurrentErrors = {
|
|
|
2411
2444
|
/**
|
|
2412
2445
|
* Stable discriminator for errors a client branches on.
|
|
2413
2446
|
*/
|
|
2414
|
-
code?: "mcp_duplicate_url";
|
|
2447
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2415
2448
|
};
|
|
2416
2449
|
/**
|
|
2417
2450
|
* Forbidden
|
|
@@ -2421,7 +2454,7 @@ export type SandboxTelegramReplyCurrentErrors = {
|
|
|
2421
2454
|
/**
|
|
2422
2455
|
* Stable discriminator for errors a client branches on.
|
|
2423
2456
|
*/
|
|
2424
|
-
code?: "mcp_duplicate_url";
|
|
2457
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2425
2458
|
};
|
|
2426
2459
|
/**
|
|
2427
2460
|
* Not found
|
|
@@ -2431,7 +2464,7 @@ export type SandboxTelegramReplyCurrentErrors = {
|
|
|
2431
2464
|
/**
|
|
2432
2465
|
* Stable discriminator for errors a client branches on.
|
|
2433
2466
|
*/
|
|
2434
|
-
code?: "mcp_duplicate_url";
|
|
2467
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2435
2468
|
};
|
|
2436
2469
|
};
|
|
2437
2470
|
export type SandboxTelegramReplyCurrentError = SandboxTelegramReplyCurrentErrors[keyof SandboxTelegramReplyCurrentErrors];
|
|
@@ -2467,7 +2500,7 @@ export type SandboxEmailReplyCurrentErrors = {
|
|
|
2467
2500
|
/**
|
|
2468
2501
|
* Stable discriminator for errors a client branches on.
|
|
2469
2502
|
*/
|
|
2470
|
-
code?: "mcp_duplicate_url";
|
|
2503
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2471
2504
|
};
|
|
2472
2505
|
/**
|
|
2473
2506
|
* Unauthorized
|
|
@@ -2477,7 +2510,7 @@ export type SandboxEmailReplyCurrentErrors = {
|
|
|
2477
2510
|
/**
|
|
2478
2511
|
* Stable discriminator for errors a client branches on.
|
|
2479
2512
|
*/
|
|
2480
|
-
code?: "mcp_duplicate_url";
|
|
2513
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2481
2514
|
};
|
|
2482
2515
|
/**
|
|
2483
2516
|
* Forbidden
|
|
@@ -2487,7 +2520,7 @@ export type SandboxEmailReplyCurrentErrors = {
|
|
|
2487
2520
|
/**
|
|
2488
2521
|
* Stable discriminator for errors a client branches on.
|
|
2489
2522
|
*/
|
|
2490
|
-
code?: "mcp_duplicate_url";
|
|
2523
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2491
2524
|
};
|
|
2492
2525
|
/**
|
|
2493
2526
|
* Not found
|
|
@@ -2497,7 +2530,7 @@ export type SandboxEmailReplyCurrentErrors = {
|
|
|
2497
2530
|
/**
|
|
2498
2531
|
* Stable discriminator for errors a client branches on.
|
|
2499
2532
|
*/
|
|
2500
|
-
code?: "mcp_duplicate_url";
|
|
2533
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2501
2534
|
};
|
|
2502
2535
|
};
|
|
2503
2536
|
export type SandboxEmailReplyCurrentError = SandboxEmailReplyCurrentErrors[keyof SandboxEmailReplyCurrentErrors];
|
|
@@ -2533,7 +2566,7 @@ export type SandboxLinearReplyCurrentErrors = {
|
|
|
2533
2566
|
/**
|
|
2534
2567
|
* Stable discriminator for errors a client branches on.
|
|
2535
2568
|
*/
|
|
2536
|
-
code?: "mcp_duplicate_url";
|
|
2569
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2537
2570
|
};
|
|
2538
2571
|
/**
|
|
2539
2572
|
* Unauthorized
|
|
@@ -2543,7 +2576,7 @@ export type SandboxLinearReplyCurrentErrors = {
|
|
|
2543
2576
|
/**
|
|
2544
2577
|
* Stable discriminator for errors a client branches on.
|
|
2545
2578
|
*/
|
|
2546
|
-
code?: "mcp_duplicate_url";
|
|
2579
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2547
2580
|
};
|
|
2548
2581
|
/**
|
|
2549
2582
|
* Forbidden
|
|
@@ -2553,7 +2586,7 @@ export type SandboxLinearReplyCurrentErrors = {
|
|
|
2553
2586
|
/**
|
|
2554
2587
|
* Stable discriminator for errors a client branches on.
|
|
2555
2588
|
*/
|
|
2556
|
-
code?: "mcp_duplicate_url";
|
|
2589
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2557
2590
|
};
|
|
2558
2591
|
/**
|
|
2559
2592
|
* Not found
|
|
@@ -2563,7 +2596,7 @@ export type SandboxLinearReplyCurrentErrors = {
|
|
|
2563
2596
|
/**
|
|
2564
2597
|
* Stable discriminator for errors a client branches on.
|
|
2565
2598
|
*/
|
|
2566
|
-
code?: "mcp_duplicate_url";
|
|
2599
|
+
code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending";
|
|
2567
2600
|
};
|
|
2568
2601
|
};
|
|
2569
2602
|
export type SandboxLinearReplyCurrentError = SandboxLinearReplyCurrentErrors[keyof SandboxLinearReplyCurrentErrors];
|