@renai-labs/sdk 0.1.26 → 0.1.28

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.
@@ -39,8 +39,10 @@ export type SandboxManifest = {
39
39
  updatedAt: string;
40
40
  };
41
41
  export type SandboxManifestArtifact = {
42
+ id: string;
42
43
  slug: string;
43
44
  path: string;
45
+ seed: string | null;
44
46
  };
45
47
  export type SandboxManifestArtifacts = {
46
48
  bucket: string;
@@ -50,8 +52,10 @@ export type SandboxManifestArtifacts = {
50
52
  artifacts: Array<SandboxManifestArtifact>;
51
53
  };
52
54
  export type SandboxManifestDatabase = {
55
+ id: string;
53
56
  slug: string;
54
57
  path: string;
58
+ seedSql: string | null;
55
59
  };
56
60
  export type SandboxManifestDatabaseReplication = {
57
61
  bucket: string;
@@ -519,7 +523,7 @@ export type OrganizationLogoGetErrors = {
519
523
  /**
520
524
  * Stable discriminator for errors a client branches on.
521
525
  */
522
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
526
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
523
527
  };
524
528
  };
525
529
  export type OrganizationLogoGetError = OrganizationLogoGetErrors[keyof OrganizationLogoGetErrors];
@@ -547,7 +551,7 @@ export type ResourceIconGetErrors = {
547
551
  /**
548
552
  * Stable discriminator for errors a client branches on.
549
553
  */
550
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
554
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
551
555
  };
552
556
  };
553
557
  export type ResourceIconGetError = ResourceIconGetErrors[keyof ResourceIconGetErrors];
@@ -578,7 +582,7 @@ export type RegistryAgentGetBySlugErrors = {
578
582
  /**
579
583
  * Stable discriminator for errors a client branches on.
580
584
  */
581
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
585
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
582
586
  };
583
587
  };
584
588
  export type RegistryAgentGetBySlugError = RegistryAgentGetBySlugErrors[keyof RegistryAgentGetBySlugErrors];
@@ -609,7 +613,7 @@ export type RegistrySkillGetBySlugErrors = {
609
613
  /**
610
614
  * Stable discriminator for errors a client branches on.
611
615
  */
612
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
616
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
613
617
  };
614
618
  };
615
619
  export type RegistrySkillGetBySlugError = RegistrySkillGetBySlugErrors[keyof RegistrySkillGetBySlugErrors];
@@ -640,7 +644,7 @@ export type RegistryMcpGetBySlugErrors = {
640
644
  /**
641
645
  * Stable discriminator for errors a client branches on.
642
646
  */
643
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
647
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
644
648
  };
645
649
  };
646
650
  export type RegistryMcpGetBySlugError = RegistryMcpGetBySlugErrors[keyof RegistryMcpGetBySlugErrors];
@@ -670,7 +674,7 @@ export type RegistryPublisherListErrors = {
670
674
  /**
671
675
  * Stable discriminator for errors a client branches on.
672
676
  */
673
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
677
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
674
678
  };
675
679
  };
676
680
  export type RegistryPublisherListError = RegistryPublisherListErrors[keyof RegistryPublisherListErrors];
@@ -700,7 +704,7 @@ export type RegistryReplayListErrors = {
700
704
  /**
701
705
  * Stable discriminator for errors a client branches on.
702
706
  */
703
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
707
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
704
708
  };
705
709
  };
706
710
  export type RegistryReplayListError = RegistryReplayListErrors[keyof RegistryReplayListErrors];
@@ -728,7 +732,7 @@ export type SandboxAuthExchangeErrors = {
728
732
  /**
729
733
  * Stable discriminator for errors a client branches on.
730
734
  */
731
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
735
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
732
736
  };
733
737
  /**
734
738
  * Not found
@@ -738,7 +742,7 @@ export type SandboxAuthExchangeErrors = {
738
742
  /**
739
743
  * Stable discriminator for errors a client branches on.
740
744
  */
741
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
745
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
742
746
  };
743
747
  };
744
748
  export type SandboxAuthExchangeError = SandboxAuthExchangeErrors[keyof SandboxAuthExchangeErrors];
@@ -766,7 +770,7 @@ export type SandboxAuthRefreshErrors = {
766
770
  /**
767
771
  * Stable discriminator for errors a client branches on.
768
772
  */
769
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
773
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
770
774
  };
771
775
  /**
772
776
  * Not found
@@ -776,7 +780,7 @@ export type SandboxAuthRefreshErrors = {
776
780
  /**
777
781
  * Stable discriminator for errors a client branches on.
778
782
  */
779
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
783
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
780
784
  };
781
785
  };
782
786
  export type SandboxAuthRefreshError = SandboxAuthRefreshErrors[keyof SandboxAuthRefreshErrors];
@@ -802,7 +806,7 @@ export type SandboxBootstrapCompleteErrors = {
802
806
  /**
803
807
  * Stable discriminator for errors a client branches on.
804
808
  */
805
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
809
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
806
810
  };
807
811
  /**
808
812
  * Forbidden
@@ -812,7 +816,7 @@ export type SandboxBootstrapCompleteErrors = {
812
816
  /**
813
817
  * Stable discriminator for errors a client branches on.
814
818
  */
815
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
819
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
816
820
  };
817
821
  /**
818
822
  * Not found
@@ -822,7 +826,7 @@ export type SandboxBootstrapCompleteErrors = {
822
826
  /**
823
827
  * Stable discriminator for errors a client branches on.
824
828
  */
825
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
829
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
826
830
  };
827
831
  };
828
832
  export type SandboxBootstrapCompleteError = SandboxBootstrapCompleteErrors[keyof SandboxBootstrapCompleteErrors];
@@ -850,7 +854,7 @@ export type SandboxInvalidateCompleteErrors = {
850
854
  /**
851
855
  * Stable discriminator for errors a client branches on.
852
856
  */
853
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
857
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
854
858
  };
855
859
  /**
856
860
  * Forbidden
@@ -860,7 +864,7 @@ export type SandboxInvalidateCompleteErrors = {
860
864
  /**
861
865
  * Stable discriminator for errors a client branches on.
862
866
  */
863
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
867
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
864
868
  };
865
869
  /**
866
870
  * Not found
@@ -870,7 +874,7 @@ export type SandboxInvalidateCompleteErrors = {
870
874
  /**
871
875
  * Stable discriminator for errors a client branches on.
872
876
  */
873
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
877
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
874
878
  };
875
879
  };
876
880
  export type SandboxInvalidateCompleteError = SandboxInvalidateCompleteErrors[keyof SandboxInvalidateCompleteErrors];
@@ -898,7 +902,7 @@ export type SandboxOtelTracesErrors = {
898
902
  /**
899
903
  * Stable discriminator for errors a client branches on.
900
904
  */
901
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
905
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
902
906
  };
903
907
  /**
904
908
  * Forbidden
@@ -908,7 +912,7 @@ export type SandboxOtelTracesErrors = {
908
912
  /**
909
913
  * Stable discriminator for errors a client branches on.
910
914
  */
911
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
915
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
912
916
  };
913
917
  };
914
918
  export type SandboxOtelTracesError = SandboxOtelTracesErrors[keyof SandboxOtelTracesErrors];
@@ -933,7 +937,7 @@ export type SandboxModelKeyGetErrors = {
933
937
  /**
934
938
  * Stable discriminator for errors a client branches on.
935
939
  */
936
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
940
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
937
941
  };
938
942
  /**
939
943
  * Forbidden
@@ -943,7 +947,7 @@ export type SandboxModelKeyGetErrors = {
943
947
  /**
944
948
  * Stable discriminator for errors a client branches on.
945
949
  */
946
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
950
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
947
951
  };
948
952
  /**
949
953
  * Not found
@@ -953,7 +957,7 @@ export type SandboxModelKeyGetErrors = {
953
957
  /**
954
958
  * Stable discriminator for errors a client branches on.
955
959
  */
956
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
960
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
957
961
  };
958
962
  };
959
963
  export type SandboxModelKeyGetError = SandboxModelKeyGetErrors[keyof SandboxModelKeyGetErrors];
@@ -981,7 +985,7 @@ export type SandboxManifestGetErrors = {
981
985
  /**
982
986
  * Stable discriminator for errors a client branches on.
983
987
  */
984
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
988
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
985
989
  };
986
990
  /**
987
991
  * Forbidden
@@ -991,7 +995,7 @@ export type SandboxManifestGetErrors = {
991
995
  /**
992
996
  * Stable discriminator for errors a client branches on.
993
997
  */
994
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
998
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
995
999
  };
996
1000
  /**
997
1001
  * Not found
@@ -1001,7 +1005,7 @@ export type SandboxManifestGetErrors = {
1001
1005
  /**
1002
1006
  * Stable discriminator for errors a client branches on.
1003
1007
  */
1004
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1008
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1005
1009
  };
1006
1010
  };
1007
1011
  export type SandboxManifestGetError = SandboxManifestGetErrors[keyof SandboxManifestGetErrors];
@@ -1027,7 +1031,7 @@ export type SandboxSessionsSeqsErrors = {
1027
1031
  /**
1028
1032
  * Stable discriminator for errors a client branches on.
1029
1033
  */
1030
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1034
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1031
1035
  };
1032
1036
  /**
1033
1037
  * Forbidden
@@ -1037,7 +1041,7 @@ export type SandboxSessionsSeqsErrors = {
1037
1041
  /**
1038
1042
  * Stable discriminator for errors a client branches on.
1039
1043
  */
1040
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1044
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1041
1045
  };
1042
1046
  /**
1043
1047
  * Not found
@@ -1047,7 +1051,7 @@ export type SandboxSessionsSeqsErrors = {
1047
1051
  /**
1048
1052
  * Stable discriminator for errors a client branches on.
1049
1053
  */
1050
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1054
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1051
1055
  };
1052
1056
  };
1053
1057
  export type SandboxSessionsSeqsError = SandboxSessionsSeqsErrors[keyof SandboxSessionsSeqsErrors];
@@ -1085,7 +1089,7 @@ export type SandboxSyncAppendErrors = {
1085
1089
  /**
1086
1090
  * Stable discriminator for errors a client branches on.
1087
1091
  */
1088
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1092
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1089
1093
  };
1090
1094
  /**
1091
1095
  * Unauthorized
@@ -1095,7 +1099,7 @@ export type SandboxSyncAppendErrors = {
1095
1099
  /**
1096
1100
  * Stable discriminator for errors a client branches on.
1097
1101
  */
1098
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1102
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1099
1103
  };
1100
1104
  /**
1101
1105
  * Forbidden
@@ -1105,7 +1109,7 @@ export type SandboxSyncAppendErrors = {
1105
1109
  /**
1106
1110
  * Stable discriminator for errors a client branches on.
1107
1111
  */
1108
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1112
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1109
1113
  };
1110
1114
  /**
1111
1115
  * Not found
@@ -1115,7 +1119,7 @@ export type SandboxSyncAppendErrors = {
1115
1119
  /**
1116
1120
  * Stable discriminator for errors a client branches on.
1117
1121
  */
1118
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1122
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1119
1123
  };
1120
1124
  /**
1121
1125
  * Conflict
@@ -1125,7 +1129,7 @@ export type SandboxSyncAppendErrors = {
1125
1129
  /**
1126
1130
  * Stable discriminator for errors a client branches on.
1127
1131
  */
1128
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1132
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1129
1133
  };
1130
1134
  };
1131
1135
  export type SandboxSyncAppendError = SandboxSyncAppendErrors[keyof SandboxSyncAppendErrors];
@@ -1156,7 +1160,7 @@ export type SandboxVolumesMintCredsErrors = {
1156
1160
  /**
1157
1161
  * Stable discriminator for errors a client branches on.
1158
1162
  */
1159
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1163
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1160
1164
  };
1161
1165
  /**
1162
1166
  * Forbidden
@@ -1166,7 +1170,7 @@ export type SandboxVolumesMintCredsErrors = {
1166
1170
  /**
1167
1171
  * Stable discriminator for errors a client branches on.
1168
1172
  */
1169
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1173
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1170
1174
  };
1171
1175
  /**
1172
1176
  * Not found
@@ -1176,7 +1180,7 @@ export type SandboxVolumesMintCredsErrors = {
1176
1180
  /**
1177
1181
  * Stable discriminator for errors a client branches on.
1178
1182
  */
1179
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1183
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1180
1184
  };
1181
1185
  };
1182
1186
  export type SandboxVolumesMintCredsError = SandboxVolumesMintCredsErrors[keyof SandboxVolumesMintCredsErrors];
@@ -1202,7 +1206,7 @@ export type SandboxDatabasesMintCredsErrors = {
1202
1206
  /**
1203
1207
  * Stable discriminator for errors a client branches on.
1204
1208
  */
1205
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1209
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1206
1210
  };
1207
1211
  /**
1208
1212
  * Forbidden
@@ -1212,7 +1216,7 @@ export type SandboxDatabasesMintCredsErrors = {
1212
1216
  /**
1213
1217
  * Stable discriminator for errors a client branches on.
1214
1218
  */
1215
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1219
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1216
1220
  };
1217
1221
  /**
1218
1222
  * Not found
@@ -1222,7 +1226,7 @@ export type SandboxDatabasesMintCredsErrors = {
1222
1226
  /**
1223
1227
  * Stable discriminator for errors a client branches on.
1224
1228
  */
1225
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1229
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1226
1230
  };
1227
1231
  };
1228
1232
  export type SandboxDatabasesMintCredsError = SandboxDatabasesMintCredsErrors[keyof SandboxDatabasesMintCredsErrors];
@@ -1233,6 +1237,66 @@ export type SandboxDatabasesMintCredsResponses = {
1233
1237
  200: SandboxVolumeCreds;
1234
1238
  };
1235
1239
  export type SandboxDatabasesMintCredsResponse = SandboxDatabasesMintCredsResponses[keyof SandboxDatabasesMintCredsResponses];
1240
+ export type SandboxDatabasesSeededData = {
1241
+ body?: never;
1242
+ path: {
1243
+ id: string;
1244
+ };
1245
+ query?: never;
1246
+ url: "/api/sandbox/databases/{id}/seeded";
1247
+ };
1248
+ export type SandboxDatabasesSeededErrors = {
1249
+ /**
1250
+ * Bad request
1251
+ */
1252
+ 400: {
1253
+ error: string;
1254
+ /**
1255
+ * Stable discriminator for errors a client branches on.
1256
+ */
1257
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1258
+ };
1259
+ /**
1260
+ * Unauthorized
1261
+ */
1262
+ 401: {
1263
+ error: string;
1264
+ /**
1265
+ * Stable discriminator for errors a client branches on.
1266
+ */
1267
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1268
+ };
1269
+ /**
1270
+ * Forbidden
1271
+ */
1272
+ 403: {
1273
+ error: string;
1274
+ /**
1275
+ * Stable discriminator for errors a client branches on.
1276
+ */
1277
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1278
+ };
1279
+ /**
1280
+ * Not found
1281
+ */
1282
+ 404: {
1283
+ error: string;
1284
+ /**
1285
+ * Stable discriminator for errors a client branches on.
1286
+ */
1287
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1288
+ };
1289
+ };
1290
+ export type SandboxDatabasesSeededError = SandboxDatabasesSeededErrors[keyof SandboxDatabasesSeededErrors];
1291
+ export type SandboxDatabasesSeededResponses = {
1292
+ /**
1293
+ * Seed consumed
1294
+ */
1295
+ 200: {
1296
+ ok: true;
1297
+ };
1298
+ };
1299
+ export type SandboxDatabasesSeededResponse = SandboxDatabasesSeededResponses[keyof SandboxDatabasesSeededResponses];
1236
1300
  export type SandboxArtifactsMintCredsData = {
1237
1301
  body?: never;
1238
1302
  path?: never;
@@ -1248,7 +1312,7 @@ export type SandboxArtifactsMintCredsErrors = {
1248
1312
  /**
1249
1313
  * Stable discriminator for errors a client branches on.
1250
1314
  */
1251
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1315
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1252
1316
  };
1253
1317
  /**
1254
1318
  * Forbidden
@@ -1258,7 +1322,7 @@ export type SandboxArtifactsMintCredsErrors = {
1258
1322
  /**
1259
1323
  * Stable discriminator for errors a client branches on.
1260
1324
  */
1261
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1325
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1262
1326
  };
1263
1327
  /**
1264
1328
  * Not found
@@ -1268,7 +1332,7 @@ export type SandboxArtifactsMintCredsErrors = {
1268
1332
  /**
1269
1333
  * Stable discriminator for errors a client branches on.
1270
1334
  */
1271
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1335
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1272
1336
  };
1273
1337
  };
1274
1338
  export type SandboxArtifactsMintCredsError = SandboxArtifactsMintCredsErrors[keyof SandboxArtifactsMintCredsErrors];
@@ -1279,6 +1343,66 @@ export type SandboxArtifactsMintCredsResponses = {
1279
1343
  200: SandboxVolumeCreds;
1280
1344
  };
1281
1345
  export type SandboxArtifactsMintCredsResponse = SandboxArtifactsMintCredsResponses[keyof SandboxArtifactsMintCredsResponses];
1346
+ export type SandboxArtifactsSeededData = {
1347
+ body?: never;
1348
+ path: {
1349
+ id: string;
1350
+ };
1351
+ query?: never;
1352
+ url: "/api/sandbox/artifacts/{id}/seeded";
1353
+ };
1354
+ export type SandboxArtifactsSeededErrors = {
1355
+ /**
1356
+ * Bad request
1357
+ */
1358
+ 400: {
1359
+ error: string;
1360
+ /**
1361
+ * Stable discriminator for errors a client branches on.
1362
+ */
1363
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1364
+ };
1365
+ /**
1366
+ * Unauthorized
1367
+ */
1368
+ 401: {
1369
+ error: string;
1370
+ /**
1371
+ * Stable discriminator for errors a client branches on.
1372
+ */
1373
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1374
+ };
1375
+ /**
1376
+ * Forbidden
1377
+ */
1378
+ 403: {
1379
+ error: string;
1380
+ /**
1381
+ * Stable discriminator for errors a client branches on.
1382
+ */
1383
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1384
+ };
1385
+ /**
1386
+ * Not found
1387
+ */
1388
+ 404: {
1389
+ error: string;
1390
+ /**
1391
+ * Stable discriminator for errors a client branches on.
1392
+ */
1393
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1394
+ };
1395
+ };
1396
+ export type SandboxArtifactsSeededError = SandboxArtifactsSeededErrors[keyof SandboxArtifactsSeededErrors];
1397
+ export type SandboxArtifactsSeededResponses = {
1398
+ /**
1399
+ * Seed consumed
1400
+ */
1401
+ 200: {
1402
+ ok: true;
1403
+ };
1404
+ };
1405
+ export type SandboxArtifactsSeededResponse = SandboxArtifactsSeededResponses[keyof SandboxArtifactsSeededResponses];
1282
1406
  export type SandboxArtifactsTargetData = {
1283
1407
  body?: never;
1284
1408
  path?: never;
@@ -1294,7 +1418,7 @@ export type SandboxArtifactsTargetErrors = {
1294
1418
  /**
1295
1419
  * Stable discriminator for errors a client branches on.
1296
1420
  */
1297
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1421
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1298
1422
  };
1299
1423
  /**
1300
1424
  * Forbidden
@@ -1304,7 +1428,7 @@ export type SandboxArtifactsTargetErrors = {
1304
1428
  /**
1305
1429
  * Stable discriminator for errors a client branches on.
1306
1430
  */
1307
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1431
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1308
1432
  };
1309
1433
  /**
1310
1434
  * Not found
@@ -1314,7 +1438,7 @@ export type SandboxArtifactsTargetErrors = {
1314
1438
  /**
1315
1439
  * Stable discriminator for errors a client branches on.
1316
1440
  */
1317
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1441
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1318
1442
  };
1319
1443
  };
1320
1444
  export type SandboxArtifactsTargetError = SandboxArtifactsTargetErrors[keyof SandboxArtifactsTargetErrors];
@@ -1354,7 +1478,7 @@ export type SandboxSessionUpdateErrors = {
1354
1478
  /**
1355
1479
  * Stable discriminator for errors a client branches on.
1356
1480
  */
1357
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1481
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1358
1482
  };
1359
1483
  /**
1360
1484
  * Unauthorized
@@ -1364,7 +1488,7 @@ export type SandboxSessionUpdateErrors = {
1364
1488
  /**
1365
1489
  * Stable discriminator for errors a client branches on.
1366
1490
  */
1367
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1491
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1368
1492
  };
1369
1493
  /**
1370
1494
  * Forbidden
@@ -1374,7 +1498,7 @@ export type SandboxSessionUpdateErrors = {
1374
1498
  /**
1375
1499
  * Stable discriminator for errors a client branches on.
1376
1500
  */
1377
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1501
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1378
1502
  };
1379
1503
  /**
1380
1504
  * Not found
@@ -1384,7 +1508,7 @@ export type SandboxSessionUpdateErrors = {
1384
1508
  /**
1385
1509
  * Stable discriminator for errors a client branches on.
1386
1510
  */
1387
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1511
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1388
1512
  };
1389
1513
  };
1390
1514
  export type SandboxSessionUpdateError = SandboxSessionUpdateErrors[keyof SandboxSessionUpdateErrors];
@@ -1420,7 +1544,7 @@ export type SandboxSlackMessageErrors = {
1420
1544
  /**
1421
1545
  * Stable discriminator for errors a client branches on.
1422
1546
  */
1423
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1547
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1424
1548
  };
1425
1549
  /**
1426
1550
  * Unauthorized
@@ -1430,7 +1554,7 @@ export type SandboxSlackMessageErrors = {
1430
1554
  /**
1431
1555
  * Stable discriminator for errors a client branches on.
1432
1556
  */
1433
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1557
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1434
1558
  };
1435
1559
  /**
1436
1560
  * Forbidden
@@ -1440,7 +1564,7 @@ export type SandboxSlackMessageErrors = {
1440
1564
  /**
1441
1565
  * Stable discriminator for errors a client branches on.
1442
1566
  */
1443
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1567
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1444
1568
  };
1445
1569
  /**
1446
1570
  * Not found
@@ -1450,7 +1574,7 @@ export type SandboxSlackMessageErrors = {
1450
1574
  /**
1451
1575
  * Stable discriminator for errors a client branches on.
1452
1576
  */
1453
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1577
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1454
1578
  };
1455
1579
  };
1456
1580
  export type SandboxSlackMessageError = SandboxSlackMessageErrors[keyof SandboxSlackMessageErrors];
@@ -1479,7 +1603,7 @@ export type SandboxSlackChannelsErrors = {
1479
1603
  /**
1480
1604
  * Stable discriminator for errors a client branches on.
1481
1605
  */
1482
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1606
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1483
1607
  };
1484
1608
  /**
1485
1609
  * Unauthorized
@@ -1489,7 +1613,7 @@ export type SandboxSlackChannelsErrors = {
1489
1613
  /**
1490
1614
  * Stable discriminator for errors a client branches on.
1491
1615
  */
1492
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1616
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1493
1617
  };
1494
1618
  /**
1495
1619
  * Forbidden
@@ -1499,7 +1623,7 @@ export type SandboxSlackChannelsErrors = {
1499
1623
  /**
1500
1624
  * Stable discriminator for errors a client branches on.
1501
1625
  */
1502
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1626
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1503
1627
  };
1504
1628
  /**
1505
1629
  * Not found
@@ -1509,7 +1633,7 @@ export type SandboxSlackChannelsErrors = {
1509
1633
  /**
1510
1634
  * Stable discriminator for errors a client branches on.
1511
1635
  */
1512
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1636
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1513
1637
  };
1514
1638
  };
1515
1639
  export type SandboxSlackChannelsError = SandboxSlackChannelsErrors[keyof SandboxSlackChannelsErrors];
@@ -1541,7 +1665,7 @@ export type SandboxSlackReadThreadErrors = {
1541
1665
  /**
1542
1666
  * Stable discriminator for errors a client branches on.
1543
1667
  */
1544
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1668
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1545
1669
  };
1546
1670
  /**
1547
1671
  * Unauthorized
@@ -1551,7 +1675,7 @@ export type SandboxSlackReadThreadErrors = {
1551
1675
  /**
1552
1676
  * Stable discriminator for errors a client branches on.
1553
1677
  */
1554
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1678
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1555
1679
  };
1556
1680
  /**
1557
1681
  * Forbidden
@@ -1561,7 +1685,7 @@ export type SandboxSlackReadThreadErrors = {
1561
1685
  /**
1562
1686
  * Stable discriminator for errors a client branches on.
1563
1687
  */
1564
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1688
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1565
1689
  };
1566
1690
  /**
1567
1691
  * Not found
@@ -1571,7 +1695,7 @@ export type SandboxSlackReadThreadErrors = {
1571
1695
  /**
1572
1696
  * Stable discriminator for errors a client branches on.
1573
1697
  */
1574
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1698
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1575
1699
  };
1576
1700
  };
1577
1701
  export type SandboxSlackReadThreadError = SandboxSlackReadThreadErrors[keyof SandboxSlackReadThreadErrors];
@@ -1605,7 +1729,7 @@ export type SandboxSlackUploadFileErrors = {
1605
1729
  /**
1606
1730
  * Stable discriminator for errors a client branches on.
1607
1731
  */
1608
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1732
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1609
1733
  };
1610
1734
  /**
1611
1735
  * Unauthorized
@@ -1615,7 +1739,7 @@ export type SandboxSlackUploadFileErrors = {
1615
1739
  /**
1616
1740
  * Stable discriminator for errors a client branches on.
1617
1741
  */
1618
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1742
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1619
1743
  };
1620
1744
  /**
1621
1745
  * Forbidden
@@ -1625,7 +1749,7 @@ export type SandboxSlackUploadFileErrors = {
1625
1749
  /**
1626
1750
  * Stable discriminator for errors a client branches on.
1627
1751
  */
1628
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1752
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1629
1753
  };
1630
1754
  /**
1631
1755
  * Not found
@@ -1635,7 +1759,7 @@ export type SandboxSlackUploadFileErrors = {
1635
1759
  /**
1636
1760
  * Stable discriminator for errors a client branches on.
1637
1761
  */
1638
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1762
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1639
1763
  };
1640
1764
  };
1641
1765
  export type SandboxSlackUploadFileError = SandboxSlackUploadFileErrors[keyof SandboxSlackUploadFileErrors];
@@ -1668,7 +1792,7 @@ export type SandboxSlackReactErrors = {
1668
1792
  /**
1669
1793
  * Stable discriminator for errors a client branches on.
1670
1794
  */
1671
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1795
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1672
1796
  };
1673
1797
  /**
1674
1798
  * Unauthorized
@@ -1678,7 +1802,7 @@ export type SandboxSlackReactErrors = {
1678
1802
  /**
1679
1803
  * Stable discriminator for errors a client branches on.
1680
1804
  */
1681
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1805
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1682
1806
  };
1683
1807
  /**
1684
1808
  * Forbidden
@@ -1688,7 +1812,7 @@ export type SandboxSlackReactErrors = {
1688
1812
  /**
1689
1813
  * Stable discriminator for errors a client branches on.
1690
1814
  */
1691
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1815
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1692
1816
  };
1693
1817
  /**
1694
1818
  * Not found
@@ -1698,7 +1822,7 @@ export type SandboxSlackReactErrors = {
1698
1822
  /**
1699
1823
  * Stable discriminator for errors a client branches on.
1700
1824
  */
1701
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1825
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1702
1826
  };
1703
1827
  };
1704
1828
  export type SandboxSlackReactError = SandboxSlackReactErrors[keyof SandboxSlackReactErrors];
@@ -1729,7 +1853,7 @@ export type SandboxSlackLookupUserErrors = {
1729
1853
  /**
1730
1854
  * Stable discriminator for errors a client branches on.
1731
1855
  */
1732
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1856
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1733
1857
  };
1734
1858
  /**
1735
1859
  * Unauthorized
@@ -1739,7 +1863,7 @@ export type SandboxSlackLookupUserErrors = {
1739
1863
  /**
1740
1864
  * Stable discriminator for errors a client branches on.
1741
1865
  */
1742
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1866
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1743
1867
  };
1744
1868
  /**
1745
1869
  * Forbidden
@@ -1749,7 +1873,7 @@ export type SandboxSlackLookupUserErrors = {
1749
1873
  /**
1750
1874
  * Stable discriminator for errors a client branches on.
1751
1875
  */
1752
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1876
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1753
1877
  };
1754
1878
  /**
1755
1879
  * Not found
@@ -1759,7 +1883,7 @@ export type SandboxSlackLookupUserErrors = {
1759
1883
  /**
1760
1884
  * Stable discriminator for errors a client branches on.
1761
1885
  */
1762
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1886
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1763
1887
  };
1764
1888
  };
1765
1889
  export type SandboxSlackLookupUserError = SandboxSlackLookupUserErrors[keyof SandboxSlackLookupUserErrors];
@@ -1794,7 +1918,7 @@ export type SandboxSlackMessageUpdateErrors = {
1794
1918
  /**
1795
1919
  * Stable discriminator for errors a client branches on.
1796
1920
  */
1797
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1921
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1798
1922
  };
1799
1923
  /**
1800
1924
  * Unauthorized
@@ -1804,7 +1928,7 @@ export type SandboxSlackMessageUpdateErrors = {
1804
1928
  /**
1805
1929
  * Stable discriminator for errors a client branches on.
1806
1930
  */
1807
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1931
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1808
1932
  };
1809
1933
  /**
1810
1934
  * Forbidden
@@ -1814,7 +1938,7 @@ export type SandboxSlackMessageUpdateErrors = {
1814
1938
  /**
1815
1939
  * Stable discriminator for errors a client branches on.
1816
1940
  */
1817
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1941
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1818
1942
  };
1819
1943
  /**
1820
1944
  * Not found
@@ -1824,7 +1948,7 @@ export type SandboxSlackMessageUpdateErrors = {
1824
1948
  /**
1825
1949
  * Stable discriminator for errors a client branches on.
1826
1950
  */
1827
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1951
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1828
1952
  };
1829
1953
  };
1830
1954
  export type SandboxSlackMessageUpdateError = SandboxSlackMessageUpdateErrors[keyof SandboxSlackMessageUpdateErrors];
@@ -1856,7 +1980,7 @@ export type SandboxSlackMessageDeleteErrors = {
1856
1980
  /**
1857
1981
  * Stable discriminator for errors a client branches on.
1858
1982
  */
1859
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1983
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1860
1984
  };
1861
1985
  /**
1862
1986
  * Unauthorized
@@ -1866,7 +1990,7 @@ export type SandboxSlackMessageDeleteErrors = {
1866
1990
  /**
1867
1991
  * Stable discriminator for errors a client branches on.
1868
1992
  */
1869
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
1993
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1870
1994
  };
1871
1995
  /**
1872
1996
  * Forbidden
@@ -1876,7 +2000,7 @@ export type SandboxSlackMessageDeleteErrors = {
1876
2000
  /**
1877
2001
  * Stable discriminator for errors a client branches on.
1878
2002
  */
1879
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2003
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1880
2004
  };
1881
2005
  /**
1882
2006
  * Not found
@@ -1886,7 +2010,7 @@ export type SandboxSlackMessageDeleteErrors = {
1886
2010
  /**
1887
2011
  * Stable discriminator for errors a client branches on.
1888
2012
  */
1889
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2013
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1890
2014
  };
1891
2015
  };
1892
2016
  export type SandboxSlackMessageDeleteError = SandboxSlackMessageDeleteErrors[keyof SandboxSlackMessageDeleteErrors];
@@ -1917,7 +2041,7 @@ export type SandboxSlackReactionsErrors = {
1917
2041
  /**
1918
2042
  * Stable discriminator for errors a client branches on.
1919
2043
  */
1920
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2044
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1921
2045
  };
1922
2046
  /**
1923
2047
  * Unauthorized
@@ -1927,7 +2051,7 @@ export type SandboxSlackReactionsErrors = {
1927
2051
  /**
1928
2052
  * Stable discriminator for errors a client branches on.
1929
2053
  */
1930
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2054
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1931
2055
  };
1932
2056
  /**
1933
2057
  * Forbidden
@@ -1937,7 +2061,7 @@ export type SandboxSlackReactionsErrors = {
1937
2061
  /**
1938
2062
  * Stable discriminator for errors a client branches on.
1939
2063
  */
1940
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2064
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1941
2065
  };
1942
2066
  /**
1943
2067
  * Not found
@@ -1947,7 +2071,7 @@ export type SandboxSlackReactionsErrors = {
1947
2071
  /**
1948
2072
  * Stable discriminator for errors a client branches on.
1949
2073
  */
1950
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2074
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1951
2075
  };
1952
2076
  };
1953
2077
  export type SandboxSlackReactionsError = SandboxSlackReactionsErrors[keyof SandboxSlackReactionsErrors];
@@ -1980,7 +2104,7 @@ export type SandboxSlackHistoryErrors = {
1980
2104
  /**
1981
2105
  * Stable discriminator for errors a client branches on.
1982
2106
  */
1983
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2107
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1984
2108
  };
1985
2109
  /**
1986
2110
  * Unauthorized
@@ -1990,7 +2114,7 @@ export type SandboxSlackHistoryErrors = {
1990
2114
  /**
1991
2115
  * Stable discriminator for errors a client branches on.
1992
2116
  */
1993
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2117
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
1994
2118
  };
1995
2119
  /**
1996
2120
  * Forbidden
@@ -2000,7 +2124,7 @@ export type SandboxSlackHistoryErrors = {
2000
2124
  /**
2001
2125
  * Stable discriminator for errors a client branches on.
2002
2126
  */
2003
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2127
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2004
2128
  };
2005
2129
  /**
2006
2130
  * Not found
@@ -2010,7 +2134,7 @@ export type SandboxSlackHistoryErrors = {
2010
2134
  /**
2011
2135
  * Stable discriminator for errors a client branches on.
2012
2136
  */
2013
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2137
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2014
2138
  };
2015
2139
  };
2016
2140
  export type SandboxSlackHistoryError = SandboxSlackHistoryErrors[keyof SandboxSlackHistoryErrors];
@@ -2043,7 +2167,7 @@ export type SandboxSlackUsersErrors = {
2043
2167
  /**
2044
2168
  * Stable discriminator for errors a client branches on.
2045
2169
  */
2046
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2170
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2047
2171
  };
2048
2172
  /**
2049
2173
  * Unauthorized
@@ -2053,7 +2177,7 @@ export type SandboxSlackUsersErrors = {
2053
2177
  /**
2054
2178
  * Stable discriminator for errors a client branches on.
2055
2179
  */
2056
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2180
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2057
2181
  };
2058
2182
  /**
2059
2183
  * Forbidden
@@ -2063,7 +2187,7 @@ export type SandboxSlackUsersErrors = {
2063
2187
  /**
2064
2188
  * Stable discriminator for errors a client branches on.
2065
2189
  */
2066
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2190
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2067
2191
  };
2068
2192
  /**
2069
2193
  * Not found
@@ -2073,7 +2197,7 @@ export type SandboxSlackUsersErrors = {
2073
2197
  /**
2074
2198
  * Stable discriminator for errors a client branches on.
2075
2199
  */
2076
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2200
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2077
2201
  };
2078
2202
  };
2079
2203
  export type SandboxSlackUsersError = SandboxSlackUsersErrors[keyof SandboxSlackUsersErrors];
@@ -2111,7 +2235,7 @@ export type SandboxEmailSendErrors = {
2111
2235
  /**
2112
2236
  * Stable discriminator for errors a client branches on.
2113
2237
  */
2114
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2238
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2115
2239
  };
2116
2240
  /**
2117
2241
  * Unauthorized
@@ -2121,7 +2245,7 @@ export type SandboxEmailSendErrors = {
2121
2245
  /**
2122
2246
  * Stable discriminator for errors a client branches on.
2123
2247
  */
2124
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2248
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2125
2249
  };
2126
2250
  /**
2127
2251
  * Forbidden
@@ -2131,7 +2255,7 @@ export type SandboxEmailSendErrors = {
2131
2255
  /**
2132
2256
  * Stable discriminator for errors a client branches on.
2133
2257
  */
2134
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2258
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2135
2259
  };
2136
2260
  /**
2137
2261
  * Not found
@@ -2141,7 +2265,7 @@ export type SandboxEmailSendErrors = {
2141
2265
  /**
2142
2266
  * Stable discriminator for errors a client branches on.
2143
2267
  */
2144
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2268
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2145
2269
  };
2146
2270
  };
2147
2271
  export type SandboxEmailSendError = SandboxEmailSendErrors[keyof SandboxEmailSendErrors];
@@ -2175,7 +2299,7 @@ export type SandboxTelegramSendErrors = {
2175
2299
  /**
2176
2300
  * Stable discriminator for errors a client branches on.
2177
2301
  */
2178
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2302
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2179
2303
  };
2180
2304
  /**
2181
2305
  * Unauthorized
@@ -2185,7 +2309,7 @@ export type SandboxTelegramSendErrors = {
2185
2309
  /**
2186
2310
  * Stable discriminator for errors a client branches on.
2187
2311
  */
2188
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2312
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2189
2313
  };
2190
2314
  /**
2191
2315
  * Forbidden
@@ -2195,7 +2319,7 @@ export type SandboxTelegramSendErrors = {
2195
2319
  /**
2196
2320
  * Stable discriminator for errors a client branches on.
2197
2321
  */
2198
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2322
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2199
2323
  };
2200
2324
  /**
2201
2325
  * Not found
@@ -2205,7 +2329,7 @@ export type SandboxTelegramSendErrors = {
2205
2329
  /**
2206
2330
  * Stable discriminator for errors a client branches on.
2207
2331
  */
2208
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2332
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2209
2333
  };
2210
2334
  };
2211
2335
  export type SandboxTelegramSendError = SandboxTelegramSendErrors[keyof SandboxTelegramSendErrors];
@@ -2238,7 +2362,7 @@ export type SandboxTelegramReactErrors = {
2238
2362
  /**
2239
2363
  * Stable discriminator for errors a client branches on.
2240
2364
  */
2241
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2365
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2242
2366
  };
2243
2367
  /**
2244
2368
  * Unauthorized
@@ -2248,7 +2372,7 @@ export type SandboxTelegramReactErrors = {
2248
2372
  /**
2249
2373
  * Stable discriminator for errors a client branches on.
2250
2374
  */
2251
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2375
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2252
2376
  };
2253
2377
  /**
2254
2378
  * Forbidden
@@ -2258,7 +2382,7 @@ export type SandboxTelegramReactErrors = {
2258
2382
  /**
2259
2383
  * Stable discriminator for errors a client branches on.
2260
2384
  */
2261
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2385
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2262
2386
  };
2263
2387
  /**
2264
2388
  * Not found
@@ -2268,7 +2392,7 @@ export type SandboxTelegramReactErrors = {
2268
2392
  /**
2269
2393
  * Stable discriminator for errors a client branches on.
2270
2394
  */
2271
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2395
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2272
2396
  };
2273
2397
  };
2274
2398
  export type SandboxTelegramReactError = SandboxTelegramReactErrors[keyof SandboxTelegramReactErrors];
@@ -2302,7 +2426,7 @@ export type SandboxTelegramDocumentErrors = {
2302
2426
  /**
2303
2427
  * Stable discriminator for errors a client branches on.
2304
2428
  */
2305
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2429
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2306
2430
  };
2307
2431
  /**
2308
2432
  * Unauthorized
@@ -2312,7 +2436,7 @@ export type SandboxTelegramDocumentErrors = {
2312
2436
  /**
2313
2437
  * Stable discriminator for errors a client branches on.
2314
2438
  */
2315
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2439
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2316
2440
  };
2317
2441
  /**
2318
2442
  * Forbidden
@@ -2322,7 +2446,7 @@ export type SandboxTelegramDocumentErrors = {
2322
2446
  /**
2323
2447
  * Stable discriminator for errors a client branches on.
2324
2448
  */
2325
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2449
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2326
2450
  };
2327
2451
  /**
2328
2452
  * Not found
@@ -2332,7 +2456,7 @@ export type SandboxTelegramDocumentErrors = {
2332
2456
  /**
2333
2457
  * Stable discriminator for errors a client branches on.
2334
2458
  */
2335
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2459
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2336
2460
  };
2337
2461
  };
2338
2462
  export type SandboxTelegramDocumentError = SandboxTelegramDocumentErrors[keyof SandboxTelegramDocumentErrors];
@@ -2368,7 +2492,7 @@ export type SandboxSlackReplyCurrentErrors = {
2368
2492
  /**
2369
2493
  * Stable discriminator for errors a client branches on.
2370
2494
  */
2371
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2495
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2372
2496
  };
2373
2497
  /**
2374
2498
  * Unauthorized
@@ -2378,7 +2502,7 @@ export type SandboxSlackReplyCurrentErrors = {
2378
2502
  /**
2379
2503
  * Stable discriminator for errors a client branches on.
2380
2504
  */
2381
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2505
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2382
2506
  };
2383
2507
  /**
2384
2508
  * Forbidden
@@ -2388,7 +2512,7 @@ export type SandboxSlackReplyCurrentErrors = {
2388
2512
  /**
2389
2513
  * Stable discriminator for errors a client branches on.
2390
2514
  */
2391
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2515
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2392
2516
  };
2393
2517
  /**
2394
2518
  * Not found
@@ -2398,7 +2522,7 @@ export type SandboxSlackReplyCurrentErrors = {
2398
2522
  /**
2399
2523
  * Stable discriminator for errors a client branches on.
2400
2524
  */
2401
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2525
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2402
2526
  };
2403
2527
  };
2404
2528
  export type SandboxSlackReplyCurrentError = SandboxSlackReplyCurrentErrors[keyof SandboxSlackReplyCurrentErrors];
@@ -2434,7 +2558,7 @@ export type SandboxTelegramReplyCurrentErrors = {
2434
2558
  /**
2435
2559
  * Stable discriminator for errors a client branches on.
2436
2560
  */
2437
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2561
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2438
2562
  };
2439
2563
  /**
2440
2564
  * Unauthorized
@@ -2444,7 +2568,7 @@ export type SandboxTelegramReplyCurrentErrors = {
2444
2568
  /**
2445
2569
  * Stable discriminator for errors a client branches on.
2446
2570
  */
2447
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2571
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2448
2572
  };
2449
2573
  /**
2450
2574
  * Forbidden
@@ -2454,7 +2578,7 @@ export type SandboxTelegramReplyCurrentErrors = {
2454
2578
  /**
2455
2579
  * Stable discriminator for errors a client branches on.
2456
2580
  */
2457
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2581
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2458
2582
  };
2459
2583
  /**
2460
2584
  * Not found
@@ -2464,7 +2588,7 @@ export type SandboxTelegramReplyCurrentErrors = {
2464
2588
  /**
2465
2589
  * Stable discriminator for errors a client branches on.
2466
2590
  */
2467
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2591
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2468
2592
  };
2469
2593
  };
2470
2594
  export type SandboxTelegramReplyCurrentError = SandboxTelegramReplyCurrentErrors[keyof SandboxTelegramReplyCurrentErrors];
@@ -2500,7 +2624,7 @@ export type SandboxEmailReplyCurrentErrors = {
2500
2624
  /**
2501
2625
  * Stable discriminator for errors a client branches on.
2502
2626
  */
2503
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2627
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2504
2628
  };
2505
2629
  /**
2506
2630
  * Unauthorized
@@ -2510,7 +2634,7 @@ export type SandboxEmailReplyCurrentErrors = {
2510
2634
  /**
2511
2635
  * Stable discriminator for errors a client branches on.
2512
2636
  */
2513
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2637
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2514
2638
  };
2515
2639
  /**
2516
2640
  * Forbidden
@@ -2520,7 +2644,7 @@ export type SandboxEmailReplyCurrentErrors = {
2520
2644
  /**
2521
2645
  * Stable discriminator for errors a client branches on.
2522
2646
  */
2523
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2647
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2524
2648
  };
2525
2649
  /**
2526
2650
  * Not found
@@ -2530,7 +2654,7 @@ export type SandboxEmailReplyCurrentErrors = {
2530
2654
  /**
2531
2655
  * Stable discriminator for errors a client branches on.
2532
2656
  */
2533
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2657
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2534
2658
  };
2535
2659
  };
2536
2660
  export type SandboxEmailReplyCurrentError = SandboxEmailReplyCurrentErrors[keyof SandboxEmailReplyCurrentErrors];
@@ -2566,7 +2690,7 @@ export type SandboxLinearReplyCurrentErrors = {
2566
2690
  /**
2567
2691
  * Stable discriminator for errors a client branches on.
2568
2692
  */
2569
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2693
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2570
2694
  };
2571
2695
  /**
2572
2696
  * Unauthorized
@@ -2576,7 +2700,7 @@ export type SandboxLinearReplyCurrentErrors = {
2576
2700
  /**
2577
2701
  * Stable discriminator for errors a client branches on.
2578
2702
  */
2579
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2703
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2580
2704
  };
2581
2705
  /**
2582
2706
  * Forbidden
@@ -2586,7 +2710,7 @@ export type SandboxLinearReplyCurrentErrors = {
2586
2710
  /**
2587
2711
  * Stable discriminator for errors a client branches on.
2588
2712
  */
2589
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2713
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2590
2714
  };
2591
2715
  /**
2592
2716
  * Not found
@@ -2596,7 +2720,7 @@ export type SandboxLinearReplyCurrentErrors = {
2596
2720
  /**
2597
2721
  * Stable discriminator for errors a client branches on.
2598
2722
  */
2599
- code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled";
2723
+ code?: "mcp_duplicate_url" | "insufficient_credits" | "inference_key_revoke_pending" | "oauth_session_expired" | "oauth_session_busy" | "oauth_exchange_unreachable" | "oauth_session_failed" | "codex_device_auth_disabled" | "authorization_not_completable";
2600
2724
  };
2601
2725
  };
2602
2726
  export type SandboxLinearReplyCurrentError = SandboxLinearReplyCurrentErrors[keyof SandboxLinearReplyCurrentErrors];