@layer-drone/protocol 0.8.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -841,40 +841,119 @@ type UpdateInboundWebhookConfigResponse = {
841
841
  type DeleteInboundWebhookConfigResponse = {
842
842
  message: string;
843
843
  };
844
- type ApiControllerGetHelloData = {
844
+ type ApiControllerGetHello0V1Data = {
845
+ body?: never;
846
+ path?: never;
847
+ query?: never;
848
+ url: "/v1";
849
+ };
850
+ type ApiControllerGetHello0V1Responses = {
851
+ 200: unknown;
852
+ };
853
+ type ApiControllerGetHello1Data = {
845
854
  body?: never;
846
855
  path?: never;
847
856
  query?: never;
848
857
  url: "/";
849
858
  };
850
- type ApiControllerGetHelloResponses = {
859
+ type ApiControllerGetHello1Responses = {
860
+ 200: unknown;
861
+ };
862
+ type ApiControllerGetError0V1Data = {
863
+ body?: never;
864
+ path?: never;
865
+ query?: never;
866
+ url: "/v1/debug-sentry";
867
+ };
868
+ type ApiControllerGetError0V1Responses = {
851
869
  200: unknown;
852
870
  };
853
- type ApiControllerGetErrorData = {
871
+ type ApiControllerGetError1Data = {
854
872
  body?: never;
855
873
  path?: never;
856
874
  query?: never;
857
875
  url: "/debug-sentry";
858
876
  };
859
- type ApiControllerGetErrorResponses = {
877
+ type ApiControllerGetError1Responses = {
860
878
  200: unknown;
861
879
  };
862
- type ApiTokenControllerCreateTokenData = {
880
+ type ApiTokenControllerCreateToken0V1Data = {
881
+ body: CreateApiTokenRequestDto;
882
+ path?: never;
883
+ query?: never;
884
+ url: "/v1/tokens";
885
+ };
886
+ type ApiTokenControllerCreateToken0V1Errors = {
887
+ 401: unknown;
888
+ 403: unknown;
889
+ };
890
+ type ApiTokenControllerCreateToken0V1Responses = {
891
+ 200: CreateApiTokenResponseDto;
892
+ 201: unknown;
893
+ };
894
+ type ApiTokenControllerCreateToken0V1Response = ApiTokenControllerCreateToken0V1Responses[keyof ApiTokenControllerCreateToken0V1Responses];
895
+ type ApiTokenControllerCreateToken1Data = {
863
896
  body: CreateApiTokenRequestDto;
864
897
  path?: never;
865
898
  query?: never;
866
899
  url: "/tokens";
867
900
  };
868
- type ApiTokenControllerCreateTokenErrors = {
901
+ type ApiTokenControllerCreateToken1Errors = {
869
902
  401: unknown;
870
903
  403: unknown;
871
904
  };
872
- type ApiTokenControllerCreateTokenResponses = {
905
+ type ApiTokenControllerCreateToken1Responses = {
873
906
  200: CreateApiTokenResponseDto;
874
907
  201: unknown;
875
908
  };
876
- type ApiTokenControllerCreateTokenResponse = ApiTokenControllerCreateTokenResponses[keyof ApiTokenControllerCreateTokenResponses];
877
- type ApiTokenControllerDeleteTokenData = {
909
+ type ApiTokenControllerCreateToken1Response = ApiTokenControllerCreateToken1Responses[keyof ApiTokenControllerCreateToken1Responses];
910
+ type ApiTokenControllerDeleteToken0V1Data = {
911
+ body?: never;
912
+ path: {
913
+ id: string;
914
+ };
915
+ query?: never;
916
+ url: "/v1/tokens/{id}";
917
+ };
918
+ type ApiTokenControllerDeleteToken0V1Errors = {
919
+ 401: unknown;
920
+ 403: unknown;
921
+ };
922
+ type ApiTokenControllerDeleteToken0V1Responses = {
923
+ 200: unknown;
924
+ };
925
+ type ApiTokenControllerGetToken0V1Data = {
926
+ body?: never;
927
+ path: {
928
+ id: string;
929
+ };
930
+ query?: never;
931
+ url: "/v1/tokens/{id}";
932
+ };
933
+ type ApiTokenControllerGetToken0V1Errors = {
934
+ 401: unknown;
935
+ 403: unknown;
936
+ };
937
+ type ApiTokenControllerGetToken0V1Responses = {
938
+ 200: unknown;
939
+ };
940
+ type ApiTokenControllerUpdateToken0V1Data = {
941
+ body: UpdateApiTokenRequestDto;
942
+ path: {
943
+ id: string;
944
+ };
945
+ query?: never;
946
+ url: "/v1/tokens/{id}";
947
+ };
948
+ type ApiTokenControllerUpdateToken0V1Errors = {
949
+ 401: unknown;
950
+ 403: unknown;
951
+ };
952
+ type ApiTokenControllerUpdateToken0V1Responses = {
953
+ 200: UpdateApiTokenResponseDto;
954
+ };
955
+ type ApiTokenControllerUpdateToken0V1Response = ApiTokenControllerUpdateToken0V1Responses[keyof ApiTokenControllerUpdateToken0V1Responses];
956
+ type ApiTokenControllerDeleteToken1Data = {
878
957
  body?: never;
879
958
  path: {
880
959
  id: string;
@@ -882,14 +961,14 @@ type ApiTokenControllerDeleteTokenData = {
882
961
  query?: never;
883
962
  url: "/tokens/{id}";
884
963
  };
885
- type ApiTokenControllerDeleteTokenErrors = {
964
+ type ApiTokenControllerDeleteToken1Errors = {
886
965
  401: unknown;
887
966
  403: unknown;
888
967
  };
889
- type ApiTokenControllerDeleteTokenResponses = {
968
+ type ApiTokenControllerDeleteToken1Responses = {
890
969
  200: unknown;
891
970
  };
892
- type ApiTokenControllerGetTokenData = {
971
+ type ApiTokenControllerGetToken1Data = {
893
972
  body?: never;
894
973
  path: {
895
974
  id: string;
@@ -897,14 +976,14 @@ type ApiTokenControllerGetTokenData = {
897
976
  query?: never;
898
977
  url: "/tokens/{id}";
899
978
  };
900
- type ApiTokenControllerGetTokenErrors = {
979
+ type ApiTokenControllerGetToken1Errors = {
901
980
  401: unknown;
902
981
  403: unknown;
903
982
  };
904
- type ApiTokenControllerGetTokenResponses = {
983
+ type ApiTokenControllerGetToken1Responses = {
905
984
  200: unknown;
906
985
  };
907
- type ApiTokenControllerUpdateTokenData = {
986
+ type ApiTokenControllerUpdateToken1Data = {
908
987
  body: UpdateApiTokenRequestDto;
909
988
  path: {
910
989
  id: string;
@@ -912,15 +991,29 @@ type ApiTokenControllerUpdateTokenData = {
912
991
  query?: never;
913
992
  url: "/tokens/{id}";
914
993
  };
915
- type ApiTokenControllerUpdateTokenErrors = {
994
+ type ApiTokenControllerUpdateToken1Errors = {
916
995
  401: unknown;
917
996
  403: unknown;
918
997
  };
919
- type ApiTokenControllerUpdateTokenResponses = {
998
+ type ApiTokenControllerUpdateToken1Responses = {
920
999
  200: UpdateApiTokenResponseDto;
921
1000
  };
922
- type ApiTokenControllerUpdateTokenResponse = ApiTokenControllerUpdateTokenResponses[keyof ApiTokenControllerUpdateTokenResponses];
923
- type ConditionsControllerGetSunAltitudeTimeLimitsData = {
1001
+ type ApiTokenControllerUpdateToken1Response = ApiTokenControllerUpdateToken1Responses[keyof ApiTokenControllerUpdateToken1Responses];
1002
+ type ConditionsControllerGetSunAltitudeTimeLimits0V1Data = {
1003
+ body?: never;
1004
+ path?: never;
1005
+ query: {
1006
+ lat: number;
1007
+ lon: number;
1008
+ time: Date;
1009
+ };
1010
+ url: "/v1/conditions/sun-altitude";
1011
+ };
1012
+ type ConditionsControllerGetSunAltitudeTimeLimits0V1Responses = {
1013
+ 200: GetTimeLimitsForSunAltitudeResponse;
1014
+ };
1015
+ type ConditionsControllerGetSunAltitudeTimeLimits0V1Response = ConditionsControllerGetSunAltitudeTimeLimits0V1Responses[keyof ConditionsControllerGetSunAltitudeTimeLimits0V1Responses];
1016
+ type ConditionsControllerGetSunAltitudeTimeLimits1Data = {
924
1017
  body?: never;
925
1018
  path?: never;
926
1019
  query: {
@@ -930,41 +1023,123 @@ type ConditionsControllerGetSunAltitudeTimeLimitsData = {
930
1023
  };
931
1024
  url: "/conditions/sun-altitude";
932
1025
  };
933
- type ConditionsControllerGetSunAltitudeTimeLimitsResponses = {
1026
+ type ConditionsControllerGetSunAltitudeTimeLimits1Responses = {
934
1027
  200: GetTimeLimitsForSunAltitudeResponse;
935
1028
  };
936
- type ConditionsControllerGetSunAltitudeTimeLimitsResponse = ConditionsControllerGetSunAltitudeTimeLimitsResponses[keyof ConditionsControllerGetSunAltitudeTimeLimitsResponses];
937
- type ContractsControllerGetAllContractsData = {
1029
+ type ConditionsControllerGetSunAltitudeTimeLimits1Response = ConditionsControllerGetSunAltitudeTimeLimits1Responses[keyof ConditionsControllerGetSunAltitudeTimeLimits1Responses];
1030
+ type ContractsControllerGetAllContracts0V1Data = {
1031
+ body?: never;
1032
+ path?: never;
1033
+ query?: never;
1034
+ url: "/v1/contracts";
1035
+ };
1036
+ type ContractsControllerGetAllContracts0V1Errors = {
1037
+ 401: unknown;
1038
+ 403: unknown;
1039
+ };
1040
+ type ContractsControllerGetAllContracts0V1Responses = {
1041
+ 200: GetContractsResponseDto;
1042
+ };
1043
+ type ContractsControllerGetAllContracts0V1Response = ContractsControllerGetAllContracts0V1Responses[keyof ContractsControllerGetAllContracts0V1Responses];
1044
+ type ContractsControllerCreateContract0V1Data = {
1045
+ body: CreateContractRequestDto;
1046
+ path?: never;
1047
+ query?: never;
1048
+ url: "/v1/contracts";
1049
+ };
1050
+ type ContractsControllerCreateContract0V1Errors = {
1051
+ 400: unknown;
1052
+ 401: unknown;
1053
+ 403: unknown;
1054
+ 409: unknown;
1055
+ };
1056
+ type ContractsControllerCreateContract0V1Responses = {
1057
+ 201: CreateContractResponseDto;
1058
+ };
1059
+ type ContractsControllerCreateContract0V1Response = ContractsControllerCreateContract0V1Responses[keyof ContractsControllerCreateContract0V1Responses];
1060
+ type ContractsControllerGetAllContracts1Data = {
938
1061
  body?: never;
939
1062
  path?: never;
940
1063
  query?: never;
941
1064
  url: "/contracts";
942
1065
  };
943
- type ContractsControllerGetAllContractsErrors = {
1066
+ type ContractsControllerGetAllContracts1Errors = {
944
1067
  401: unknown;
945
1068
  403: unknown;
946
1069
  };
947
- type ContractsControllerGetAllContractsResponses = {
1070
+ type ContractsControllerGetAllContracts1Responses = {
948
1071
  200: GetContractsResponseDto;
949
1072
  };
950
- type ContractsControllerGetAllContractsResponse = ContractsControllerGetAllContractsResponses[keyof ContractsControllerGetAllContractsResponses];
951
- type ContractsControllerCreateContractData = {
1073
+ type ContractsControllerGetAllContracts1Response = ContractsControllerGetAllContracts1Responses[keyof ContractsControllerGetAllContracts1Responses];
1074
+ type ContractsControllerCreateContract1Data = {
952
1075
  body: CreateContractRequestDto;
953
1076
  path?: never;
954
1077
  query?: never;
955
1078
  url: "/contracts";
956
1079
  };
957
- type ContractsControllerCreateContractErrors = {
1080
+ type ContractsControllerCreateContract1Errors = {
958
1081
  400: unknown;
959
1082
  401: unknown;
960
1083
  403: unknown;
961
1084
  409: unknown;
962
1085
  };
963
- type ContractsControllerCreateContractResponses = {
1086
+ type ContractsControllerCreateContract1Responses = {
964
1087
  201: CreateContractResponseDto;
965
1088
  };
966
- type ContractsControllerCreateContractResponse = ContractsControllerCreateContractResponses[keyof ContractsControllerCreateContractResponses];
967
- type ContractsControllerDeleteContractData = {
1089
+ type ContractsControllerCreateContract1Response = ContractsControllerCreateContract1Responses[keyof ContractsControllerCreateContract1Responses];
1090
+ type ContractsControllerDeleteContract0V1Data = {
1091
+ body?: never;
1092
+ path: {
1093
+ id: number;
1094
+ };
1095
+ query?: never;
1096
+ url: "/v1/contracts/{id}";
1097
+ };
1098
+ type ContractsControllerDeleteContract0V1Errors = {
1099
+ 401: unknown;
1100
+ 403: unknown;
1101
+ 404: unknown;
1102
+ };
1103
+ type ContractsControllerDeleteContract0V1Responses = {
1104
+ 200: DeleteContractResponseDto;
1105
+ };
1106
+ type ContractsControllerDeleteContract0V1Response = ContractsControllerDeleteContract0V1Responses[keyof ContractsControllerDeleteContract0V1Responses];
1107
+ type ContractsControllerGetContract0V1Data = {
1108
+ body?: never;
1109
+ path: {
1110
+ id: number;
1111
+ };
1112
+ query?: never;
1113
+ url: "/v1/contracts/{id}";
1114
+ };
1115
+ type ContractsControllerGetContract0V1Errors = {
1116
+ 401: unknown;
1117
+ 403: unknown;
1118
+ 404: unknown;
1119
+ };
1120
+ type ContractsControllerGetContract0V1Responses = {
1121
+ 200: GetContractResponseDto;
1122
+ };
1123
+ type ContractsControllerGetContract0V1Response = ContractsControllerGetContract0V1Responses[keyof ContractsControllerGetContract0V1Responses];
1124
+ type ContractsControllerUpdateContract0V1Data = {
1125
+ body: UpdateContractRequestDto;
1126
+ path: {
1127
+ id: number;
1128
+ };
1129
+ query?: never;
1130
+ url: "/v1/contracts/{id}";
1131
+ };
1132
+ type ContractsControllerUpdateContract0V1Errors = {
1133
+ 401: unknown;
1134
+ 403: unknown;
1135
+ 404: unknown;
1136
+ 409: unknown;
1137
+ };
1138
+ type ContractsControllerUpdateContract0V1Responses = {
1139
+ 200: UpdateContractResponseDto;
1140
+ };
1141
+ type ContractsControllerUpdateContract0V1Response = ContractsControllerUpdateContract0V1Responses[keyof ContractsControllerUpdateContract0V1Responses];
1142
+ type ContractsControllerDeleteContract1Data = {
968
1143
  body?: never;
969
1144
  path: {
970
1145
  id: number;
@@ -972,16 +1147,16 @@ type ContractsControllerDeleteContractData = {
972
1147
  query?: never;
973
1148
  url: "/contracts/{id}";
974
1149
  };
975
- type ContractsControllerDeleteContractErrors = {
1150
+ type ContractsControllerDeleteContract1Errors = {
976
1151
  401: unknown;
977
1152
  403: unknown;
978
1153
  404: unknown;
979
1154
  };
980
- type ContractsControllerDeleteContractResponses = {
1155
+ type ContractsControllerDeleteContract1Responses = {
981
1156
  200: DeleteContractResponseDto;
982
1157
  };
983
- type ContractsControllerDeleteContractResponse = ContractsControllerDeleteContractResponses[keyof ContractsControllerDeleteContractResponses];
984
- type ContractsControllerGetContractData = {
1158
+ type ContractsControllerDeleteContract1Response = ContractsControllerDeleteContract1Responses[keyof ContractsControllerDeleteContract1Responses];
1159
+ type ContractsControllerGetContract1Data = {
985
1160
  body?: never;
986
1161
  path: {
987
1162
  id: number;
@@ -989,16 +1164,16 @@ type ContractsControllerGetContractData = {
989
1164
  query?: never;
990
1165
  url: "/contracts/{id}";
991
1166
  };
992
- type ContractsControllerGetContractErrors = {
1167
+ type ContractsControllerGetContract1Errors = {
993
1168
  401: unknown;
994
1169
  403: unknown;
995
1170
  404: unknown;
996
1171
  };
997
- type ContractsControllerGetContractResponses = {
1172
+ type ContractsControllerGetContract1Responses = {
998
1173
  200: GetContractResponseDto;
999
1174
  };
1000
- type ContractsControllerGetContractResponse = ContractsControllerGetContractResponses[keyof ContractsControllerGetContractResponses];
1001
- type ContractsControllerUpdateContractData = {
1175
+ type ContractsControllerGetContract1Response = ContractsControllerGetContract1Responses[keyof ContractsControllerGetContract1Responses];
1176
+ type ContractsControllerUpdateContract1Data = {
1002
1177
  body: UpdateContractRequestDto;
1003
1178
  path: {
1004
1179
  id: number;
@@ -1006,33 +1181,67 @@ type ContractsControllerUpdateContractData = {
1006
1181
  query?: never;
1007
1182
  url: "/contracts/{id}";
1008
1183
  };
1009
- type ContractsControllerUpdateContractErrors = {
1184
+ type ContractsControllerUpdateContract1Errors = {
1010
1185
  401: unknown;
1011
1186
  403: unknown;
1012
1187
  404: unknown;
1013
1188
  409: unknown;
1014
1189
  };
1015
- type ContractsControllerUpdateContractResponses = {
1190
+ type ContractsControllerUpdateContract1Responses = {
1016
1191
  200: UpdateContractResponseDto;
1017
1192
  };
1018
- type ContractsControllerUpdateContractResponse = ContractsControllerUpdateContractResponses[keyof ContractsControllerUpdateContractResponses];
1019
- type DlqRedriverControllerRedriveDlqData = {
1193
+ type ContractsControllerUpdateContract1Response = ContractsControllerUpdateContract1Responses[keyof ContractsControllerUpdateContract1Responses];
1194
+ type DlqRedriverControllerRedriveDlq0V1Data = {
1195
+ body: RedriveDlqRequestDto;
1196
+ path?: never;
1197
+ query?: never;
1198
+ url: "/v1/dlq-redriver/redrive";
1199
+ };
1200
+ type DlqRedriverControllerRedriveDlq0V1Errors = {
1201
+ 400: unknown;
1202
+ 401: unknown;
1203
+ 403: unknown;
1204
+ 500: unknown;
1205
+ };
1206
+ type DlqRedriverControllerRedriveDlq0V1Responses = {
1207
+ 200: RedriveDlqResponseDto;
1208
+ };
1209
+ type DlqRedriverControllerRedriveDlq0V1Response = DlqRedriverControllerRedriveDlq0V1Responses[keyof DlqRedriverControllerRedriveDlq0V1Responses];
1210
+ type DlqRedriverControllerRedriveDlq1Data = {
1020
1211
  body: RedriveDlqRequestDto;
1021
1212
  path?: never;
1022
1213
  query?: never;
1023
1214
  url: "/dlq-redriver/redrive";
1024
1215
  };
1025
- type DlqRedriverControllerRedriveDlqErrors = {
1216
+ type DlqRedriverControllerRedriveDlq1Errors = {
1026
1217
  400: unknown;
1027
1218
  401: unknown;
1028
1219
  403: unknown;
1029
1220
  500: unknown;
1030
1221
  };
1031
- type DlqRedriverControllerRedriveDlqResponses = {
1222
+ type DlqRedriverControllerRedriveDlq1Responses = {
1032
1223
  200: RedriveDlqResponseDto;
1033
1224
  };
1034
- type DlqRedriverControllerRedriveDlqResponse = DlqRedriverControllerRedriveDlqResponses[keyof DlqRedriverControllerRedriveDlqResponses];
1035
- type FlightsControllerGenerateStorageKeyData = {
1225
+ type DlqRedriverControllerRedriveDlq1Response = DlqRedriverControllerRedriveDlq1Responses[keyof DlqRedriverControllerRedriveDlq1Responses];
1226
+ type FlightsControllerGenerateStorageKey0V1Data = {
1227
+ body?: never;
1228
+ path?: never;
1229
+ query: {
1230
+ missionId: string | number | bigint;
1231
+ pilotAddress: string;
1232
+ flightTimestamp?: string;
1233
+ };
1234
+ url: "/v1/flights/storage-key";
1235
+ };
1236
+ type FlightsControllerGenerateStorageKey0V1Errors = {
1237
+ 401: unknown;
1238
+ 403: unknown;
1239
+ };
1240
+ type FlightsControllerGenerateStorageKey0V1Responses = {
1241
+ 200: string;
1242
+ };
1243
+ type FlightsControllerGenerateStorageKey0V1Response = FlightsControllerGenerateStorageKey0V1Responses[keyof FlightsControllerGenerateStorageKey0V1Responses];
1244
+ type FlightsControllerGenerateStorageKey1Data = {
1036
1245
  body?: never;
1037
1246
  path?: never;
1038
1247
  query: {
@@ -1042,15 +1251,31 @@ type FlightsControllerGenerateStorageKeyData = {
1042
1251
  };
1043
1252
  url: "/flights/storage-key";
1044
1253
  };
1045
- type FlightsControllerGenerateStorageKeyErrors = {
1254
+ type FlightsControllerGenerateStorageKey1Errors = {
1046
1255
  401: unknown;
1047
1256
  403: unknown;
1048
1257
  };
1049
- type FlightsControllerGenerateStorageKeyResponses = {
1258
+ type FlightsControllerGenerateStorageKey1Responses = {
1050
1259
  200: string;
1051
1260
  };
1052
- type FlightsControllerGenerateStorageKeyResponse = FlightsControllerGenerateStorageKeyResponses[keyof FlightsControllerGenerateStorageKeyResponses];
1053
- type FlightsControllerGetFlightData = {
1261
+ type FlightsControllerGenerateStorageKey1Response = FlightsControllerGenerateStorageKey1Responses[keyof FlightsControllerGenerateStorageKey1Responses];
1262
+ type FlightsControllerGetFlight0V1Data = {
1263
+ body?: never;
1264
+ path: {
1265
+ flightId: bigint;
1266
+ };
1267
+ query?: never;
1268
+ url: "/v1/flights/{flightId}";
1269
+ };
1270
+ type FlightsControllerGetFlight0V1Errors = {
1271
+ 401: unknown;
1272
+ 403: unknown;
1273
+ };
1274
+ type FlightsControllerGetFlight0V1Responses = {
1275
+ 200: FlightDto;
1276
+ };
1277
+ type FlightsControllerGetFlight0V1Response = FlightsControllerGetFlight0V1Responses[keyof FlightsControllerGetFlight0V1Responses];
1278
+ type FlightsControllerGetFlight1Data = {
1054
1279
  body?: never;
1055
1280
  path: {
1056
1281
  flightId: bigint;
@@ -1058,71 +1283,143 @@ type FlightsControllerGetFlightData = {
1058
1283
  query?: never;
1059
1284
  url: "/flights/{flightId}";
1060
1285
  };
1061
- type FlightsControllerGetFlightErrors = {
1286
+ type FlightsControllerGetFlight1Errors = {
1062
1287
  401: unknown;
1063
1288
  403: unknown;
1064
1289
  };
1065
- type FlightsControllerGetFlightResponses = {
1290
+ type FlightsControllerGetFlight1Responses = {
1066
1291
  200: FlightDto;
1067
1292
  };
1068
- type FlightsControllerGetFlightResponse = FlightsControllerGetFlightResponses[keyof FlightsControllerGetFlightResponses];
1069
- type FlightsControllerCreatePresignedUrlsData = {
1293
+ type FlightsControllerGetFlight1Response = FlightsControllerGetFlight1Responses[keyof FlightsControllerGetFlight1Responses];
1294
+ type FlightsControllerCreatePresignedUrls0V1Data = {
1295
+ body: CreateFileRequestDto;
1296
+ path?: never;
1297
+ query?: never;
1298
+ url: "/v1/flights/files";
1299
+ };
1300
+ type FlightsControllerCreatePresignedUrls0V1Errors = {
1301
+ 401: unknown;
1302
+ 403: unknown;
1303
+ };
1304
+ type FlightsControllerCreatePresignedUrls0V1Responses = {
1305
+ 201: CreateFileResponseDto;
1306
+ };
1307
+ type FlightsControllerCreatePresignedUrls0V1Response = FlightsControllerCreatePresignedUrls0V1Responses[keyof FlightsControllerCreatePresignedUrls0V1Responses];
1308
+ type FlightsControllerCreatePresignedUrls1Data = {
1070
1309
  body: CreateFileRequestDto;
1071
1310
  path?: never;
1072
1311
  query?: never;
1073
1312
  url: "/flights/files";
1074
1313
  };
1075
- type FlightsControllerCreatePresignedUrlsErrors = {
1314
+ type FlightsControllerCreatePresignedUrls1Errors = {
1076
1315
  401: unknown;
1077
1316
  403: unknown;
1078
1317
  };
1079
- type FlightsControllerCreatePresignedUrlsResponses = {
1318
+ type FlightsControllerCreatePresignedUrls1Responses = {
1080
1319
  201: CreateFileResponseDto;
1081
1320
  };
1082
- type FlightsControllerCreatePresignedUrlsResponse = FlightsControllerCreatePresignedUrlsResponses[keyof FlightsControllerCreatePresignedUrlsResponses];
1083
- type FlightsControllerValidateFlightData = {
1321
+ type FlightsControllerCreatePresignedUrls1Response = FlightsControllerCreatePresignedUrls1Responses[keyof FlightsControllerCreatePresignedUrls1Responses];
1322
+ type FlightsControllerValidateFlight0V1Data = {
1323
+ body: ValidateFlightRequestDto;
1324
+ path?: never;
1325
+ query?: never;
1326
+ url: "/v1/flights";
1327
+ };
1328
+ type FlightsControllerValidateFlight0V1Errors = {
1329
+ 401: unknown;
1330
+ 403: unknown;
1331
+ };
1332
+ type FlightsControllerValidateFlight0V1Responses = {
1333
+ 200: ValidateFlightResponseDto;
1334
+ };
1335
+ type FlightsControllerValidateFlight0V1Response = FlightsControllerValidateFlight0V1Responses[keyof FlightsControllerValidateFlight0V1Responses];
1336
+ type FlightsControllerValidateFlight1Data = {
1084
1337
  body: ValidateFlightRequestDto;
1085
1338
  path?: never;
1086
1339
  query?: never;
1087
1340
  url: "/flights";
1088
1341
  };
1089
- type FlightsControllerValidateFlightErrors = {
1342
+ type FlightsControllerValidateFlight1Errors = {
1090
1343
  401: unknown;
1091
1344
  403: unknown;
1092
1345
  };
1093
- type FlightsControllerValidateFlightResponses = {
1346
+ type FlightsControllerValidateFlight1Responses = {
1094
1347
  200: ValidateFlightResponseDto;
1095
1348
  };
1096
- type FlightsControllerValidateFlightResponse = FlightsControllerValidateFlightResponses[keyof FlightsControllerValidateFlightResponses];
1097
- type FlightPlansControllerGetManyData = {
1349
+ type FlightsControllerValidateFlight1Response = FlightsControllerValidateFlight1Responses[keyof FlightsControllerValidateFlight1Responses];
1350
+ type FlightPlansControllerGetMany0V1Data = {
1351
+ body?: never;
1352
+ path?: never;
1353
+ query?: never;
1354
+ url: "/v1/flight-plans";
1355
+ };
1356
+ type FlightPlansControllerGetMany0V1Errors = {
1357
+ 401: unknown;
1358
+ 403: unknown;
1359
+ };
1360
+ type FlightPlansControllerGetMany0V1Responses = {
1361
+ 200: GetFlightPlansResponse;
1362
+ };
1363
+ type FlightPlansControllerGetMany0V1Response = FlightPlansControllerGetMany0V1Responses[keyof FlightPlansControllerGetMany0V1Responses];
1364
+ type FlightPlansControllerCreate0V1Data = {
1365
+ body: CreateFlightPlanBody;
1366
+ path?: never;
1367
+ query?: never;
1368
+ url: "/v1/flight-plans";
1369
+ };
1370
+ type FlightPlansControllerCreate0V1Errors = {
1371
+ 401: unknown;
1372
+ 403: unknown;
1373
+ };
1374
+ type FlightPlansControllerCreate0V1Responses = {
1375
+ 201: CreateFlightPlanResponse;
1376
+ };
1377
+ type FlightPlansControllerCreate0V1Response = FlightPlansControllerCreate0V1Responses[keyof FlightPlansControllerCreate0V1Responses];
1378
+ type FlightPlansControllerGetMany1Data = {
1098
1379
  body?: never;
1099
1380
  path?: never;
1100
1381
  query?: never;
1101
1382
  url: "/flight-plans";
1102
1383
  };
1103
- type FlightPlansControllerGetManyErrors = {
1384
+ type FlightPlansControllerGetMany1Errors = {
1104
1385
  401: unknown;
1105
1386
  403: unknown;
1106
1387
  };
1107
- type FlightPlansControllerGetManyResponses = {
1388
+ type FlightPlansControllerGetMany1Responses = {
1108
1389
  200: GetFlightPlansResponse;
1109
1390
  };
1110
- type FlightPlansControllerGetManyResponse = FlightPlansControllerGetManyResponses[keyof FlightPlansControllerGetManyResponses];
1111
- type FlightPlansControllerCreateData = {
1391
+ type FlightPlansControllerGetMany1Response = FlightPlansControllerGetMany1Responses[keyof FlightPlansControllerGetMany1Responses];
1392
+ type FlightPlansControllerCreate1Data = {
1112
1393
  body: CreateFlightPlanBody;
1113
1394
  path?: never;
1114
1395
  query?: never;
1115
1396
  url: "/flight-plans";
1116
1397
  };
1117
- type FlightPlansControllerCreateErrors = {
1398
+ type FlightPlansControllerCreate1Errors = {
1118
1399
  401: unknown;
1119
1400
  403: unknown;
1120
1401
  };
1121
- type FlightPlansControllerCreateResponses = {
1402
+ type FlightPlansControllerCreate1Responses = {
1122
1403
  201: CreateFlightPlanResponse;
1123
1404
  };
1124
- type FlightPlansControllerCreateResponse = FlightPlansControllerCreateResponses[keyof FlightPlansControllerCreateResponses];
1125
- type FlightPlansControllerGetData = {
1405
+ type FlightPlansControllerCreate1Response = FlightPlansControllerCreate1Responses[keyof FlightPlansControllerCreate1Responses];
1406
+ type FlightPlansControllerGet0V1Data = {
1407
+ body?: never;
1408
+ path: {
1409
+ id: number;
1410
+ };
1411
+ query?: never;
1412
+ url: "/v1/flight-plans/{id}";
1413
+ };
1414
+ type FlightPlansControllerGet0V1Errors = {
1415
+ 401: unknown;
1416
+ 403: unknown;
1417
+ };
1418
+ type FlightPlansControllerGet0V1Responses = {
1419
+ 200: GetFlightPlanResponse;
1420
+ };
1421
+ type FlightPlansControllerGet0V1Response = FlightPlansControllerGet0V1Responses[keyof FlightPlansControllerGet0V1Responses];
1422
+ type FlightPlansControllerGet1Data = {
1126
1423
  body?: never;
1127
1424
  path: {
1128
1425
  id: number;
@@ -1130,15 +1427,32 @@ type FlightPlansControllerGetData = {
1130
1427
  query?: never;
1131
1428
  url: "/flight-plans/{id}";
1132
1429
  };
1133
- type FlightPlansControllerGetErrors = {
1430
+ type FlightPlansControllerGet1Errors = {
1134
1431
  401: unknown;
1135
1432
  403: unknown;
1136
1433
  };
1137
- type FlightPlansControllerGetResponses = {
1434
+ type FlightPlansControllerGet1Responses = {
1138
1435
  200: GetFlightPlanResponse;
1139
1436
  };
1140
- type FlightPlansControllerGetResponse = FlightPlansControllerGetResponses[keyof FlightPlansControllerGetResponses];
1141
- type FlightReviewsControllerGetFlightReviewData = {
1437
+ type FlightPlansControllerGet1Response = FlightPlansControllerGet1Responses[keyof FlightPlansControllerGet1Responses];
1438
+ type FlightReviewsControllerGetFlightReview0V1Data = {
1439
+ body?: never;
1440
+ path: {
1441
+ id: bigint;
1442
+ };
1443
+ query?: never;
1444
+ url: "/v1/flight-reviews/{id}";
1445
+ };
1446
+ type FlightReviewsControllerGetFlightReview0V1Errors = {
1447
+ 401: unknown;
1448
+ 403: unknown;
1449
+ 404: unknown;
1450
+ };
1451
+ type FlightReviewsControllerGetFlightReview0V1Responses = {
1452
+ 200: GetFlightReviewResponseDto;
1453
+ };
1454
+ type FlightReviewsControllerGetFlightReview0V1Response = FlightReviewsControllerGetFlightReview0V1Responses[keyof FlightReviewsControllerGetFlightReview0V1Responses];
1455
+ type FlightReviewsControllerGetFlightReview1Data = {
1142
1456
  body?: never;
1143
1457
  path: {
1144
1458
  id: bigint;
@@ -1146,16 +1460,33 @@ type FlightReviewsControllerGetFlightReviewData = {
1146
1460
  query?: never;
1147
1461
  url: "/flight-reviews/{id}";
1148
1462
  };
1149
- type FlightReviewsControllerGetFlightReviewErrors = {
1463
+ type FlightReviewsControllerGetFlightReview1Errors = {
1150
1464
  401: unknown;
1151
1465
  403: unknown;
1152
1466
  404: unknown;
1153
1467
  };
1154
- type FlightReviewsControllerGetFlightReviewResponses = {
1468
+ type FlightReviewsControllerGetFlightReview1Responses = {
1155
1469
  200: GetFlightReviewResponseDto;
1156
1470
  };
1157
- type FlightReviewsControllerGetFlightReviewResponse = FlightReviewsControllerGetFlightReviewResponses[keyof FlightReviewsControllerGetFlightReviewResponses];
1158
- type FlightReviewsControllerGetFlightReviewsData = {
1471
+ type FlightReviewsControllerGetFlightReview1Response = FlightReviewsControllerGetFlightReview1Responses[keyof FlightReviewsControllerGetFlightReview1Responses];
1472
+ type FlightReviewsControllerGetFlightReviews0V1Data = {
1473
+ body?: never;
1474
+ path?: never;
1475
+ query: {
1476
+ updated_at_gt: Date;
1477
+ updated_at_lt: Date;
1478
+ };
1479
+ url: "/v1/flight-reviews";
1480
+ };
1481
+ type FlightReviewsControllerGetFlightReviews0V1Errors = {
1482
+ 401: unknown;
1483
+ 403: unknown;
1484
+ };
1485
+ type FlightReviewsControllerGetFlightReviews0V1Responses = {
1486
+ 200: GetFlightReviewsResponseDto;
1487
+ };
1488
+ type FlightReviewsControllerGetFlightReviews0V1Response = FlightReviewsControllerGetFlightReviews0V1Responses[keyof FlightReviewsControllerGetFlightReviews0V1Responses];
1489
+ type FlightReviewsControllerGetFlightReviews1Data = {
1159
1490
  body?: never;
1160
1491
  path?: never;
1161
1492
  query: {
@@ -1164,25 +1495,54 @@ type FlightReviewsControllerGetFlightReviewsData = {
1164
1495
  };
1165
1496
  url: "/flight-reviews";
1166
1497
  };
1167
- type FlightReviewsControllerGetFlightReviewsErrors = {
1498
+ type FlightReviewsControllerGetFlightReviews1Errors = {
1168
1499
  401: unknown;
1169
1500
  403: unknown;
1170
1501
  };
1171
- type FlightReviewsControllerGetFlightReviewsResponses = {
1502
+ type FlightReviewsControllerGetFlightReviews1Responses = {
1172
1503
  200: GetFlightReviewsResponseDto;
1173
1504
  };
1174
- type FlightReviewsControllerGetFlightReviewsResponse = FlightReviewsControllerGetFlightReviewsResponses[keyof FlightReviewsControllerGetFlightReviewsResponses];
1175
- type KeysControllerGetProvenanceCryptoKeyData = {
1505
+ type FlightReviewsControllerGetFlightReviews1Response = FlightReviewsControllerGetFlightReviews1Responses[keyof FlightReviewsControllerGetFlightReviews1Responses];
1506
+ type KeysControllerGetProvenanceCryptoKey0V1Data = {
1507
+ body?: never;
1508
+ path?: never;
1509
+ query?: never;
1510
+ url: "/v1/keys";
1511
+ };
1512
+ type KeysControllerGetProvenanceCryptoKey0V1Responses = {
1513
+ 200: GetProvenanceCryptoKeyResponse;
1514
+ };
1515
+ type KeysControllerGetProvenanceCryptoKey0V1Response = KeysControllerGetProvenanceCryptoKey0V1Responses[keyof KeysControllerGetProvenanceCryptoKey0V1Responses];
1516
+ type KeysControllerGetProvenanceCryptoKey1Data = {
1176
1517
  body?: never;
1177
1518
  path?: never;
1178
1519
  query?: never;
1179
1520
  url: "/keys";
1180
1521
  };
1181
- type KeysControllerGetProvenanceCryptoKeyResponses = {
1522
+ type KeysControllerGetProvenanceCryptoKey1Responses = {
1182
1523
  200: GetProvenanceCryptoKeyResponse;
1183
1524
  };
1184
- type KeysControllerGetProvenanceCryptoKeyResponse = KeysControllerGetProvenanceCryptoKeyResponses[keyof KeysControllerGetProvenanceCryptoKeyResponses];
1185
- type MissionsControllerGetMissionData = {
1525
+ type KeysControllerGetProvenanceCryptoKey1Response = KeysControllerGetProvenanceCryptoKey1Responses[keyof KeysControllerGetProvenanceCryptoKey1Responses];
1526
+ type MissionsControllerGetMission0V1Data = {
1527
+ body?: never;
1528
+ path: {
1529
+ id: string;
1530
+ };
1531
+ query?: {
1532
+ relations?: "vault" | "payout" | "campaigns" | Array<"vault" | "payout" | "campaigns">;
1533
+ };
1534
+ url: "/v1/missions/{id}";
1535
+ };
1536
+ type MissionsControllerGetMission0V1Errors = {
1537
+ 401: unknown;
1538
+ 403: unknown;
1539
+ 404: unknown;
1540
+ };
1541
+ type MissionsControllerGetMission0V1Responses = {
1542
+ 200: GetMissionResponseDto;
1543
+ };
1544
+ type MissionsControllerGetMission0V1Response = MissionsControllerGetMission0V1Responses[keyof MissionsControllerGetMission0V1Responses];
1545
+ type MissionsControllerGetMission1Data = {
1186
1546
  body?: never;
1187
1547
  path: {
1188
1548
  id: string;
@@ -1192,16 +1552,16 @@ type MissionsControllerGetMissionData = {
1192
1552
  };
1193
1553
  url: "/missions/{id}";
1194
1554
  };
1195
- type MissionsControllerGetMissionErrors = {
1555
+ type MissionsControllerGetMission1Errors = {
1196
1556
  401: unknown;
1197
1557
  403: unknown;
1198
1558
  404: unknown;
1199
1559
  };
1200
- type MissionsControllerGetMissionResponses = {
1560
+ type MissionsControllerGetMission1Responses = {
1201
1561
  200: GetMissionResponseDto;
1202
1562
  };
1203
- type MissionsControllerGetMissionResponse = MissionsControllerGetMissionResponses[keyof MissionsControllerGetMissionResponses];
1204
- type MissionsControllerGetMissionsData = {
1563
+ type MissionsControllerGetMission1Response = MissionsControllerGetMission1Responses[keyof MissionsControllerGetMission1Responses];
1564
+ type MissionsControllerGetMissions0V1Data = {
1205
1565
  body?: never;
1206
1566
  path?: never;
1207
1567
  query?: {
@@ -1215,100 +1575,222 @@ type MissionsControllerGetMissionsData = {
1215
1575
  page?: number;
1216
1576
  relations?: "vault" | "payout" | "campaigns" | Array<"vault" | "payout" | "campaigns">;
1217
1577
  };
1218
- url: "/missions";
1578
+ url: "/v1/missions";
1219
1579
  };
1220
- type MissionsControllerGetMissionsErrors = {
1580
+ type MissionsControllerGetMissions0V1Errors = {
1221
1581
  401: unknown;
1222
1582
  403: unknown;
1223
1583
  };
1224
- type MissionsControllerGetMissionsResponses = {
1584
+ type MissionsControllerGetMissions0V1Responses = {
1225
1585
  200: GetMissionsResponseDto;
1226
1586
  };
1227
- type MissionsControllerGetMissionsResponse = MissionsControllerGetMissionsResponses[keyof MissionsControllerGetMissionsResponses];
1228
- type MissionsControllerCreateMissionsData = {
1587
+ type MissionsControllerGetMissions0V1Response = MissionsControllerGetMissions0V1Responses[keyof MissionsControllerGetMissions0V1Responses];
1588
+ type MissionsControllerCreateMissions0V1Data = {
1229
1589
  body: CreateMissionRequestDto;
1230
1590
  path?: never;
1231
1591
  query?: never;
1232
- url: "/missions";
1592
+ url: "/v1/missions";
1233
1593
  };
1234
- type MissionsControllerCreateMissionsErrors = {
1594
+ type MissionsControllerCreateMissions0V1Errors = {
1235
1595
  400: unknown;
1236
1596
  401: unknown;
1237
1597
  403: unknown;
1238
1598
  500: unknown;
1239
1599
  };
1240
- type MissionsControllerCreateMissionsResponses = {
1600
+ type MissionsControllerCreateMissions0V1Responses = {
1241
1601
  201: CreateMissionResponseDto;
1242
1602
  };
1243
- type MissionsControllerCreateMissionsResponse = MissionsControllerCreateMissionsResponses[keyof MissionsControllerCreateMissionsResponses];
1244
- type MissionsControllerUpdateMissionsData = {
1603
+ type MissionsControllerCreateMissions0V1Response = MissionsControllerCreateMissions0V1Responses[keyof MissionsControllerCreateMissions0V1Responses];
1604
+ type MissionsControllerUpdateMissions0V1Data = {
1245
1605
  body: UpdateMissionsRequestDto;
1246
1606
  path?: never;
1247
1607
  query?: never;
1248
- url: "/missions";
1608
+ url: "/v1/missions";
1249
1609
  };
1250
- type MissionsControllerUpdateMissionsErrors = {
1610
+ type MissionsControllerUpdateMissions0V1Errors = {
1251
1611
  401: unknown;
1252
1612
  403: unknown;
1253
1613
  };
1254
- type MissionsControllerUpdateMissionsResponses = {
1614
+ type MissionsControllerUpdateMissions0V1Responses = {
1255
1615
  200: UpdateMissionsResponseDto;
1256
1616
  };
1257
- type MissionsControllerUpdateMissionsResponse = MissionsControllerUpdateMissionsResponses[keyof MissionsControllerUpdateMissionsResponses];
1258
- type MissionsControllerRepriceMissionsData = {
1259
- body: RepriceMissionsRequestDto;
1617
+ type MissionsControllerUpdateMissions0V1Response = MissionsControllerUpdateMissions0V1Responses[keyof MissionsControllerUpdateMissions0V1Responses];
1618
+ type MissionsControllerGetMissions1Data = {
1619
+ body?: never;
1260
1620
  path?: never;
1261
- query?: never;
1262
- url: "/missions/amounts";
1263
- };
1264
- type MissionsControllerRepriceMissionsErrors = {
1621
+ query?: {
1622
+ updatedAt_gt?: Date;
1623
+ updatedAt_lt?: Date;
1624
+ createdAt_gt?: Date;
1625
+ createdAt_lt?: Date;
1626
+ isOpen?: string;
1627
+ zoneIds?: string | Array<string>;
1628
+ flightPlanId?: number;
1629
+ page?: number;
1630
+ relations?: "vault" | "payout" | "campaigns" | Array<"vault" | "payout" | "campaigns">;
1631
+ };
1632
+ url: "/missions";
1633
+ };
1634
+ type MissionsControllerGetMissions1Errors = {
1635
+ 401: unknown;
1636
+ 403: unknown;
1637
+ };
1638
+ type MissionsControllerGetMissions1Responses = {
1639
+ 200: GetMissionsResponseDto;
1640
+ };
1641
+ type MissionsControllerGetMissions1Response = MissionsControllerGetMissions1Responses[keyof MissionsControllerGetMissions1Responses];
1642
+ type MissionsControllerCreateMissions1Data = {
1643
+ body: CreateMissionRequestDto;
1644
+ path?: never;
1645
+ query?: never;
1646
+ url: "/missions";
1647
+ };
1648
+ type MissionsControllerCreateMissions1Errors = {
1649
+ 400: unknown;
1650
+ 401: unknown;
1651
+ 403: unknown;
1652
+ 500: unknown;
1653
+ };
1654
+ type MissionsControllerCreateMissions1Responses = {
1655
+ 201: CreateMissionResponseDto;
1656
+ };
1657
+ type MissionsControllerCreateMissions1Response = MissionsControllerCreateMissions1Responses[keyof MissionsControllerCreateMissions1Responses];
1658
+ type MissionsControllerUpdateMissions1Data = {
1659
+ body: UpdateMissionsRequestDto;
1660
+ path?: never;
1661
+ query?: never;
1662
+ url: "/missions";
1663
+ };
1664
+ type MissionsControllerUpdateMissions1Errors = {
1265
1665
  401: unknown;
1266
1666
  403: unknown;
1267
1667
  };
1268
- type MissionsControllerRepriceMissionsResponses = {
1668
+ type MissionsControllerUpdateMissions1Responses = {
1669
+ 200: UpdateMissionsResponseDto;
1670
+ };
1671
+ type MissionsControllerUpdateMissions1Response = MissionsControllerUpdateMissions1Responses[keyof MissionsControllerUpdateMissions1Responses];
1672
+ type MissionsControllerRepriceMissions0V1Data = {
1673
+ body: RepriceMissionsRequestDto;
1674
+ path?: never;
1675
+ query?: never;
1676
+ url: "/v1/missions/amounts";
1677
+ };
1678
+ type MissionsControllerRepriceMissions0V1Errors = {
1679
+ 401: unknown;
1680
+ 403: unknown;
1681
+ };
1682
+ type MissionsControllerRepriceMissions0V1Responses = {
1683
+ 200: RepriceMissionsResponseDto;
1684
+ };
1685
+ type MissionsControllerRepriceMissions0V1Response = MissionsControllerRepriceMissions0V1Responses[keyof MissionsControllerRepriceMissions0V1Responses];
1686
+ type MissionsControllerRepriceMissions1Data = {
1687
+ body: RepriceMissionsRequestDto;
1688
+ path?: never;
1689
+ query?: never;
1690
+ url: "/missions/amounts";
1691
+ };
1692
+ type MissionsControllerRepriceMissions1Errors = {
1693
+ 401: unknown;
1694
+ 403: unknown;
1695
+ };
1696
+ type MissionsControllerRepriceMissions1Responses = {
1269
1697
  200: RepriceMissionsResponseDto;
1270
1698
  };
1271
- type MissionsControllerRepriceMissionsResponse = MissionsControllerRepriceMissionsResponses[keyof MissionsControllerRepriceMissionsResponses];
1272
- type ProtocolTriggersApiControllerTriggerPayoutData = {
1699
+ type MissionsControllerRepriceMissions1Response = MissionsControllerRepriceMissions1Responses[keyof MissionsControllerRepriceMissions1Responses];
1700
+ type ProtocolTriggersApiControllerTriggerPayout0V1Data = {
1701
+ body: TriggerPayoutRequestDto;
1702
+ path?: never;
1703
+ query?: never;
1704
+ url: "/v1/protocol-triggers/missions/payout";
1705
+ };
1706
+ type ProtocolTriggersApiControllerTriggerPayout0V1Errors = {
1707
+ 401: unknown;
1708
+ 403: unknown;
1709
+ };
1710
+ type ProtocolTriggersApiControllerTriggerPayout0V1Responses = {
1711
+ 201: unknown;
1712
+ };
1713
+ type ProtocolTriggersApiControllerTriggerPayout1Data = {
1273
1714
  body: TriggerPayoutRequestDto;
1274
1715
  path?: never;
1275
1716
  query?: never;
1276
1717
  url: "/protocol-triggers/missions/payout";
1277
1718
  };
1278
- type ProtocolTriggersApiControllerTriggerPayoutErrors = {
1719
+ type ProtocolTriggersApiControllerTriggerPayout1Errors = {
1279
1720
  401: unknown;
1280
1721
  403: unknown;
1281
1722
  };
1282
- type ProtocolTriggersApiControllerTriggerPayoutResponses = {
1723
+ type ProtocolTriggersApiControllerTriggerPayout1Responses = {
1283
1724
  201: unknown;
1284
1725
  };
1285
- type ProtocolTriggersApiControllerTriggerMissionCloseData = {
1726
+ type ProtocolTriggersApiControllerTriggerMissionClose0V1Data = {
1727
+ body: TriggerMissionCloseRequestDto;
1728
+ path?: never;
1729
+ query?: never;
1730
+ url: "/v1/protocol-triggers/missions/close";
1731
+ };
1732
+ type ProtocolTriggersApiControllerTriggerMissionClose0V1Errors = {
1733
+ 401: unknown;
1734
+ 403: unknown;
1735
+ };
1736
+ type ProtocolTriggersApiControllerTriggerMissionClose0V1Responses = {
1737
+ 201: unknown;
1738
+ };
1739
+ type ProtocolTriggersApiControllerTriggerMissionClose1Data = {
1286
1740
  body: TriggerMissionCloseRequestDto;
1287
1741
  path?: never;
1288
1742
  query?: never;
1289
1743
  url: "/protocol-triggers/missions/close";
1290
1744
  };
1291
- type ProtocolTriggersApiControllerTriggerMissionCloseErrors = {
1745
+ type ProtocolTriggersApiControllerTriggerMissionClose1Errors = {
1292
1746
  401: unknown;
1293
1747
  403: unknown;
1294
1748
  };
1295
- type ProtocolTriggersApiControllerTriggerMissionCloseResponses = {
1749
+ type ProtocolTriggersApiControllerTriggerMissionClose1Responses = {
1296
1750
  201: unknown;
1297
1751
  };
1298
- type QuotesControllerCreateQuoteData = {
1752
+ type QuotesControllerCreateQuote0V1Data = {
1753
+ body: CreateQuoteRequestDto;
1754
+ path?: never;
1755
+ query?: never;
1756
+ url: "/v1/quotes";
1757
+ };
1758
+ type QuotesControllerCreateQuote0V1Errors = {
1759
+ 401: unknown;
1760
+ 403: unknown;
1761
+ };
1762
+ type QuotesControllerCreateQuote0V1Responses = {
1763
+ 201: unknown;
1764
+ };
1765
+ type QuotesControllerCreateQuote1Data = {
1299
1766
  body: CreateQuoteRequestDto;
1300
1767
  path?: never;
1301
1768
  query?: never;
1302
1769
  url: "/quotes";
1303
1770
  };
1304
- type QuotesControllerCreateQuoteErrors = {
1771
+ type QuotesControllerCreateQuote1Errors = {
1305
1772
  401: unknown;
1306
1773
  403: unknown;
1307
1774
  };
1308
- type QuotesControllerCreateQuoteResponses = {
1775
+ type QuotesControllerCreateQuote1Responses = {
1309
1776
  201: unknown;
1310
1777
  };
1311
- type QuotesControllerGetQuoteData = {
1778
+ type QuotesControllerGetQuote0V1Data = {
1779
+ body?: never;
1780
+ path: {
1781
+ id: string;
1782
+ };
1783
+ query?: never;
1784
+ url: "/v1/quotes/{id}";
1785
+ };
1786
+ type QuotesControllerGetQuote0V1Errors = {
1787
+ 401: unknown;
1788
+ 403: unknown;
1789
+ };
1790
+ type QuotesControllerGetQuote0V1Responses = {
1791
+ 200: unknown;
1792
+ };
1793
+ type QuotesControllerGetQuote1Data = {
1312
1794
  body?: never;
1313
1795
  path: {
1314
1796
  id: string;
@@ -1316,39 +1798,96 @@ type QuotesControllerGetQuoteData = {
1316
1798
  query?: never;
1317
1799
  url: "/quotes/{id}";
1318
1800
  };
1319
- type QuotesControllerGetQuoteErrors = {
1801
+ type QuotesControllerGetQuote1Errors = {
1320
1802
  401: unknown;
1321
1803
  403: unknown;
1322
1804
  };
1323
- type QuotesControllerGetQuoteResponses = {
1805
+ type QuotesControllerGetQuote1Responses = {
1806
+ 200: unknown;
1807
+ };
1808
+ type SchemaControllerGetEventSchema0V1Data = {
1809
+ body?: never;
1810
+ path?: never;
1811
+ query?: never;
1812
+ url: "/v1/schema/event";
1813
+ };
1814
+ type SchemaControllerGetEventSchema0V1Responses = {
1324
1815
  200: unknown;
1325
1816
  };
1326
- type SchemaControllerGetEventSchemaData = {
1817
+ type SchemaControllerGetEventSchema1Data = {
1327
1818
  body?: never;
1328
1819
  path?: never;
1329
1820
  query?: never;
1330
1821
  url: "/schema/event";
1331
1822
  };
1332
- type SchemaControllerGetEventSchemaResponses = {
1823
+ type SchemaControllerGetEventSchema1Responses = {
1333
1824
  200: unknown;
1334
1825
  };
1335
- type VaultsControllerCreateVaultsData = {
1826
+ type VaultsControllerCreateVaults0V1Data = {
1827
+ body: CreateVaultsRequestDto;
1828
+ path?: never;
1829
+ query?: never;
1830
+ url: "/v1/vaults";
1831
+ };
1832
+ type VaultsControllerCreateVaults0V1Errors = {
1833
+ 400: unknown;
1834
+ 401: unknown;
1835
+ 403: unknown;
1836
+ 500: unknown;
1837
+ };
1838
+ type VaultsControllerCreateVaults0V1Responses = {
1839
+ 201: CreateVaultsResponseDto;
1840
+ };
1841
+ type VaultsControllerCreateVaults0V1Response = VaultsControllerCreateVaults0V1Responses[keyof VaultsControllerCreateVaults0V1Responses];
1842
+ type VaultsControllerCreateVaults1Data = {
1336
1843
  body: CreateVaultsRequestDto;
1337
1844
  path?: never;
1338
1845
  query?: never;
1339
1846
  url: "/vaults";
1340
1847
  };
1341
- type VaultsControllerCreateVaultsErrors = {
1848
+ type VaultsControllerCreateVaults1Errors = {
1342
1849
  400: unknown;
1343
1850
  401: unknown;
1344
1851
  403: unknown;
1345
1852
  500: unknown;
1346
1853
  };
1347
- type VaultsControllerCreateVaultsResponses = {
1854
+ type VaultsControllerCreateVaults1Responses = {
1348
1855
  201: CreateVaultsResponseDto;
1349
1856
  };
1350
- type VaultsControllerCreateVaultsResponse = VaultsControllerCreateVaultsResponses[keyof VaultsControllerCreateVaultsResponses];
1351
- type WebhooksControllerGetManyData = {
1857
+ type VaultsControllerCreateVaults1Response = VaultsControllerCreateVaults1Responses[keyof VaultsControllerCreateVaults1Responses];
1858
+ type WebhooksControllerGetMany0V1Data = {
1859
+ body?: never;
1860
+ path: {
1861
+ org_id: number;
1862
+ };
1863
+ query?: never;
1864
+ url: "/v1/org/{org_id}/webhooks";
1865
+ };
1866
+ type WebhooksControllerGetMany0V1Errors = {
1867
+ 401: unknown;
1868
+ 403: unknown;
1869
+ };
1870
+ type WebhooksControllerGetMany0V1Responses = {
1871
+ 200: GetWebhooksResponse;
1872
+ };
1873
+ type WebhooksControllerGetMany0V1Response = WebhooksControllerGetMany0V1Responses[keyof WebhooksControllerGetMany0V1Responses];
1874
+ type WebhooksControllerCreate0V1Data = {
1875
+ body: CreateWebhookBody;
1876
+ path: {
1877
+ org_id: number;
1878
+ };
1879
+ query?: never;
1880
+ url: "/v1/org/{org_id}/webhooks";
1881
+ };
1882
+ type WebhooksControllerCreate0V1Errors = {
1883
+ 401: unknown;
1884
+ 403: unknown;
1885
+ };
1886
+ type WebhooksControllerCreate0V1Responses = {
1887
+ 201: CreateWebhookResponse;
1888
+ };
1889
+ type WebhooksControllerCreate0V1Response = WebhooksControllerCreate0V1Responses[keyof WebhooksControllerCreate0V1Responses];
1890
+ type WebhooksControllerGetMany1Data = {
1352
1891
  body?: never;
1353
1892
  path: {
1354
1893
  org_id: number;
@@ -1356,15 +1895,15 @@ type WebhooksControllerGetManyData = {
1356
1895
  query?: never;
1357
1896
  url: "/org/{org_id}/webhooks";
1358
1897
  };
1359
- type WebhooksControllerGetManyErrors = {
1898
+ type WebhooksControllerGetMany1Errors = {
1360
1899
  401: unknown;
1361
1900
  403: unknown;
1362
1901
  };
1363
- type WebhooksControllerGetManyResponses = {
1902
+ type WebhooksControllerGetMany1Responses = {
1364
1903
  200: GetWebhooksResponse;
1365
1904
  };
1366
- type WebhooksControllerGetManyResponse = WebhooksControllerGetManyResponses[keyof WebhooksControllerGetManyResponses];
1367
- type WebhooksControllerCreateData = {
1905
+ type WebhooksControllerGetMany1Response = WebhooksControllerGetMany1Responses[keyof WebhooksControllerGetMany1Responses];
1906
+ type WebhooksControllerCreate1Data = {
1368
1907
  body: CreateWebhookBody;
1369
1908
  path: {
1370
1909
  org_id: number;
@@ -1372,15 +1911,66 @@ type WebhooksControllerCreateData = {
1372
1911
  query?: never;
1373
1912
  url: "/org/{org_id}/webhooks";
1374
1913
  };
1375
- type WebhooksControllerCreateErrors = {
1914
+ type WebhooksControllerCreate1Errors = {
1376
1915
  401: unknown;
1377
1916
  403: unknown;
1378
1917
  };
1379
- type WebhooksControllerCreateResponses = {
1918
+ type WebhooksControllerCreate1Responses = {
1380
1919
  201: CreateWebhookResponse;
1381
1920
  };
1382
- type WebhooksControllerCreateResponse = WebhooksControllerCreateResponses[keyof WebhooksControllerCreateResponses];
1383
- type WebhooksControllerDeleteData = {
1921
+ type WebhooksControllerCreate1Response = WebhooksControllerCreate1Responses[keyof WebhooksControllerCreate1Responses];
1922
+ type WebhooksControllerDelete0V1Data = {
1923
+ body?: never;
1924
+ path: {
1925
+ org_id: number;
1926
+ id: number;
1927
+ };
1928
+ query?: never;
1929
+ url: "/v1/org/{org_id}/webhooks/{id}";
1930
+ };
1931
+ type WebhooksControllerDelete0V1Errors = {
1932
+ 401: unknown;
1933
+ 403: unknown;
1934
+ };
1935
+ type WebhooksControllerDelete0V1Responses = {
1936
+ 200: DeleteWebhookResponse;
1937
+ };
1938
+ type WebhooksControllerDelete0V1Response = WebhooksControllerDelete0V1Responses[keyof WebhooksControllerDelete0V1Responses];
1939
+ type WebhooksControllerGet0V1Data = {
1940
+ body?: never;
1941
+ path: {
1942
+ org_id: number;
1943
+ id: number;
1944
+ };
1945
+ query?: never;
1946
+ url: "/v1/org/{org_id}/webhooks/{id}";
1947
+ };
1948
+ type WebhooksControllerGet0V1Errors = {
1949
+ 401: unknown;
1950
+ 403: unknown;
1951
+ };
1952
+ type WebhooksControllerGet0V1Responses = {
1953
+ 200: GetWebhookResponse;
1954
+ };
1955
+ type WebhooksControllerGet0V1Response = WebhooksControllerGet0V1Responses[keyof WebhooksControllerGet0V1Responses];
1956
+ type WebhooksControllerUpdate0V1Data = {
1957
+ body: UpdateWebhookBody;
1958
+ path: {
1959
+ org_id: number;
1960
+ id: number;
1961
+ };
1962
+ query?: never;
1963
+ url: "/v1/org/{org_id}/webhooks/{id}";
1964
+ };
1965
+ type WebhooksControllerUpdate0V1Errors = {
1966
+ 401: unknown;
1967
+ 403: unknown;
1968
+ };
1969
+ type WebhooksControllerUpdate0V1Responses = {
1970
+ 200: UpdateWebhookResponse;
1971
+ };
1972
+ type WebhooksControllerUpdate0V1Response = WebhooksControllerUpdate0V1Responses[keyof WebhooksControllerUpdate0V1Responses];
1973
+ type WebhooksControllerDelete1Data = {
1384
1974
  body?: never;
1385
1975
  path: {
1386
1976
  org_id: number;
@@ -1389,15 +1979,15 @@ type WebhooksControllerDeleteData = {
1389
1979
  query?: never;
1390
1980
  url: "/org/{org_id}/webhooks/{id}";
1391
1981
  };
1392
- type WebhooksControllerDeleteErrors = {
1982
+ type WebhooksControllerDelete1Errors = {
1393
1983
  401: unknown;
1394
1984
  403: unknown;
1395
1985
  };
1396
- type WebhooksControllerDeleteResponses = {
1986
+ type WebhooksControllerDelete1Responses = {
1397
1987
  200: DeleteWebhookResponse;
1398
1988
  };
1399
- type WebhooksControllerDeleteResponse = WebhooksControllerDeleteResponses[keyof WebhooksControllerDeleteResponses];
1400
- type WebhooksControllerGetData = {
1989
+ type WebhooksControllerDelete1Response = WebhooksControllerDelete1Responses[keyof WebhooksControllerDelete1Responses];
1990
+ type WebhooksControllerGet1Data = {
1401
1991
  body?: never;
1402
1992
  path: {
1403
1993
  org_id: number;
@@ -1406,15 +1996,15 @@ type WebhooksControllerGetData = {
1406
1996
  query?: never;
1407
1997
  url: "/org/{org_id}/webhooks/{id}";
1408
1998
  };
1409
- type WebhooksControllerGetErrors = {
1999
+ type WebhooksControllerGet1Errors = {
1410
2000
  401: unknown;
1411
2001
  403: unknown;
1412
2002
  };
1413
- type WebhooksControllerGetResponses = {
2003
+ type WebhooksControllerGet1Responses = {
1414
2004
  200: GetWebhookResponse;
1415
2005
  };
1416
- type WebhooksControllerGetResponse = WebhooksControllerGetResponses[keyof WebhooksControllerGetResponses];
1417
- type WebhooksControllerUpdateData = {
2006
+ type WebhooksControllerGet1Response = WebhooksControllerGet1Responses[keyof WebhooksControllerGet1Responses];
2007
+ type WebhooksControllerUpdate1Data = {
1418
2008
  body: UpdateWebhookBody;
1419
2009
  path: {
1420
2010
  org_id: number;
@@ -1423,15 +2013,32 @@ type WebhooksControllerUpdateData = {
1423
2013
  query?: never;
1424
2014
  url: "/org/{org_id}/webhooks/{id}";
1425
2015
  };
1426
- type WebhooksControllerUpdateErrors = {
2016
+ type WebhooksControllerUpdate1Errors = {
1427
2017
  401: unknown;
1428
2018
  403: unknown;
1429
2019
  };
1430
- type WebhooksControllerUpdateResponses = {
2020
+ type WebhooksControllerUpdate1Responses = {
1431
2021
  200: UpdateWebhookResponse;
1432
2022
  };
1433
- type WebhooksControllerUpdateResponse = WebhooksControllerUpdateResponses[keyof WebhooksControllerUpdateResponses];
1434
- type WebhooksControllerRegenerateSecretData = {
2023
+ type WebhooksControllerUpdate1Response = WebhooksControllerUpdate1Responses[keyof WebhooksControllerUpdate1Responses];
2024
+ type WebhooksControllerRegenerateSecret0V1Data = {
2025
+ body: RegenerateWebhookSecretBody;
2026
+ path: {
2027
+ org_id: number;
2028
+ id: number;
2029
+ };
2030
+ query?: never;
2031
+ url: "/v1/org/{org_id}/webhooks/{id}/regenerate-secret";
2032
+ };
2033
+ type WebhooksControllerRegenerateSecret0V1Errors = {
2034
+ 401: unknown;
2035
+ 403: unknown;
2036
+ };
2037
+ type WebhooksControllerRegenerateSecret0V1Responses = {
2038
+ 200: RegenerateWebhookSecretResponseDto;
2039
+ };
2040
+ type WebhooksControllerRegenerateSecret0V1Response = WebhooksControllerRegenerateSecret0V1Responses[keyof WebhooksControllerRegenerateSecret0V1Responses];
2041
+ type WebhooksControllerRegenerateSecret1Data = {
1435
2042
  body: RegenerateWebhookSecretBody;
1436
2043
  path: {
1437
2044
  org_id: number;
@@ -1440,15 +2047,32 @@ type WebhooksControllerRegenerateSecretData = {
1440
2047
  query?: never;
1441
2048
  url: "/org/{org_id}/webhooks/{id}/regenerate-secret";
1442
2049
  };
1443
- type WebhooksControllerRegenerateSecretErrors = {
2050
+ type WebhooksControllerRegenerateSecret1Errors = {
1444
2051
  401: unknown;
1445
2052
  403: unknown;
1446
2053
  };
1447
- type WebhooksControllerRegenerateSecretResponses = {
2054
+ type WebhooksControllerRegenerateSecret1Responses = {
1448
2055
  200: RegenerateWebhookSecretResponseDto;
1449
2056
  };
1450
- type WebhooksControllerRegenerateSecretResponse = WebhooksControllerRegenerateSecretResponses[keyof WebhooksControllerRegenerateSecretResponses];
1451
- type WebhooksControllerTestData = {
2057
+ type WebhooksControllerRegenerateSecret1Response = WebhooksControllerRegenerateSecret1Responses[keyof WebhooksControllerRegenerateSecret1Responses];
2058
+ type WebhooksControllerTest0V1Data = {
2059
+ body?: never;
2060
+ path: {
2061
+ org_id: number;
2062
+ id: number;
2063
+ };
2064
+ query?: never;
2065
+ url: "/v1/org/{org_id}/webhooks/{id}/test";
2066
+ };
2067
+ type WebhooksControllerTest0V1Errors = {
2068
+ 401: unknown;
2069
+ 403: unknown;
2070
+ };
2071
+ type WebhooksControllerTest0V1Responses = {
2072
+ 200: TestWebhookResponse;
2073
+ };
2074
+ type WebhooksControllerTest0V1Response = WebhooksControllerTest0V1Responses[keyof WebhooksControllerTest0V1Responses];
2075
+ type WebhooksControllerTest1Data = {
1452
2076
  body?: never;
1453
2077
  path: {
1454
2078
  org_id: number;
@@ -1457,15 +2081,32 @@ type WebhooksControllerTestData = {
1457
2081
  query?: never;
1458
2082
  url: "/org/{org_id}/webhooks/{id}/test";
1459
2083
  };
1460
- type WebhooksControllerTestErrors = {
2084
+ type WebhooksControllerTest1Errors = {
1461
2085
  401: unknown;
1462
2086
  403: unknown;
1463
2087
  };
1464
- type WebhooksControllerTestResponses = {
2088
+ type WebhooksControllerTest1Responses = {
1465
2089
  200: TestWebhookResponse;
1466
2090
  };
1467
- type WebhooksControllerTestResponse = WebhooksControllerTestResponses[keyof WebhooksControllerTestResponses];
1468
- type WebhooksControllerGetStatusData = {
2091
+ type WebhooksControllerTest1Response = WebhooksControllerTest1Responses[keyof WebhooksControllerTest1Responses];
2092
+ type WebhooksControllerGetStatus0V1Data = {
2093
+ body?: never;
2094
+ path: {
2095
+ org_id: number;
2096
+ id: number;
2097
+ };
2098
+ query?: never;
2099
+ url: "/v1/org/{org_id}/webhooks/{id}/status";
2100
+ };
2101
+ type WebhooksControllerGetStatus0V1Errors = {
2102
+ 401: unknown;
2103
+ 403: unknown;
2104
+ };
2105
+ type WebhooksControllerGetStatus0V1Responses = {
2106
+ 200: GetWebhookStatusResponse;
2107
+ };
2108
+ type WebhooksControllerGetStatus0V1Response = WebhooksControllerGetStatus0V1Responses[keyof WebhooksControllerGetStatus0V1Responses];
2109
+ type WebhooksControllerGetStatus1Data = {
1469
2110
  body?: never;
1470
2111
  path: {
1471
2112
  org_id: number;
@@ -1474,31 +2115,81 @@ type WebhooksControllerGetStatusData = {
1474
2115
  query?: never;
1475
2116
  url: "/org/{org_id}/webhooks/{id}/status";
1476
2117
  };
1477
- type WebhooksControllerGetStatusErrors = {
2118
+ type WebhooksControllerGetStatus1Errors = {
1478
2119
  401: unknown;
1479
2120
  403: unknown;
1480
2121
  };
1481
- type WebhooksControllerGetStatusResponses = {
2122
+ type WebhooksControllerGetStatus1Responses = {
1482
2123
  200: GetWebhookStatusResponse;
1483
2124
  };
1484
- type WebhooksControllerGetStatusResponse = WebhooksControllerGetStatusResponses[keyof WebhooksControllerGetStatusResponses];
1485
- type ZonesControllerCreateZoneData = {
2125
+ type WebhooksControllerGetStatus1Response = WebhooksControllerGetStatus1Responses[keyof WebhooksControllerGetStatus1Responses];
2126
+ type ZonesControllerCreateZone0V1Data = {
2127
+ body: CreateZoneDto;
2128
+ path?: never;
2129
+ query?: never;
2130
+ url: "/v1/zones";
2131
+ };
2132
+ type ZonesControllerCreateZone0V1Errors = {
2133
+ 400: unknown;
2134
+ 401: unknown;
2135
+ 403: unknown;
2136
+ 409: unknown;
2137
+ };
2138
+ type ZonesControllerCreateZone0V1Responses = {
2139
+ 201: ZoneResponseDto;
2140
+ };
2141
+ type ZonesControllerCreateZone0V1Response = ZonesControllerCreateZone0V1Responses[keyof ZonesControllerCreateZone0V1Responses];
2142
+ type ZonesControllerCreateZone1Data = {
1486
2143
  body: CreateZoneDto;
1487
2144
  path?: never;
1488
2145
  query?: never;
1489
2146
  url: "/zones";
1490
2147
  };
1491
- type ZonesControllerCreateZoneErrors = {
2148
+ type ZonesControllerCreateZone1Errors = {
1492
2149
  400: unknown;
1493
2150
  401: unknown;
1494
2151
  403: unknown;
1495
2152
  409: unknown;
1496
2153
  };
1497
- type ZonesControllerCreateZoneResponses = {
2154
+ type ZonesControllerCreateZone1Responses = {
1498
2155
  201: ZoneResponseDto;
1499
2156
  };
1500
- type ZonesControllerCreateZoneResponse = ZonesControllerCreateZoneResponses[keyof ZonesControllerCreateZoneResponses];
1501
- type ZonesControllerDeleteZoneData = {
2157
+ type ZonesControllerCreateZone1Response = ZonesControllerCreateZone1Responses[keyof ZonesControllerCreateZone1Responses];
2158
+ type ZonesControllerDeleteZone0V1Data = {
2159
+ body?: never;
2160
+ path: {
2161
+ id: string;
2162
+ };
2163
+ query?: never;
2164
+ url: "/v1/zones/{id}";
2165
+ };
2166
+ type ZonesControllerDeleteZone0V1Errors = {
2167
+ 401: unknown;
2168
+ 403: unknown;
2169
+ 404: unknown;
2170
+ };
2171
+ type ZonesControllerDeleteZone0V1Responses = {
2172
+ 204: void;
2173
+ };
2174
+ type ZonesControllerDeleteZone0V1Response = ZonesControllerDeleteZone0V1Responses[keyof ZonesControllerDeleteZone0V1Responses];
2175
+ type ZonesControllerUpdateZone0V1Data = {
2176
+ body: UpdateZoneDto;
2177
+ path: {
2178
+ id: string;
2179
+ };
2180
+ query?: never;
2181
+ url: "/v1/zones/{id}";
2182
+ };
2183
+ type ZonesControllerUpdateZone0V1Errors = {
2184
+ 401: unknown;
2185
+ 403: unknown;
2186
+ 404: unknown;
2187
+ };
2188
+ type ZonesControllerUpdateZone0V1Responses = {
2189
+ 200: ZoneResponseDto;
2190
+ };
2191
+ type ZonesControllerUpdateZone0V1Response = ZonesControllerUpdateZone0V1Responses[keyof ZonesControllerUpdateZone0V1Responses];
2192
+ type ZonesControllerDeleteZone1Data = {
1502
2193
  body?: never;
1503
2194
  path: {
1504
2195
  id: string;
@@ -1506,16 +2197,16 @@ type ZonesControllerDeleteZoneData = {
1506
2197
  query?: never;
1507
2198
  url: "/zones/{id}";
1508
2199
  };
1509
- type ZonesControllerDeleteZoneErrors = {
2200
+ type ZonesControllerDeleteZone1Errors = {
1510
2201
  401: unknown;
1511
2202
  403: unknown;
1512
2203
  404: unknown;
1513
2204
  };
1514
- type ZonesControllerDeleteZoneResponses = {
2205
+ type ZonesControllerDeleteZone1Responses = {
1515
2206
  204: void;
1516
2207
  };
1517
- type ZonesControllerDeleteZoneResponse = ZonesControllerDeleteZoneResponses[keyof ZonesControllerDeleteZoneResponses];
1518
- type ZonesControllerUpdateZoneData = {
2208
+ type ZonesControllerDeleteZone1Response = ZonesControllerDeleteZone1Responses[keyof ZonesControllerDeleteZone1Responses];
2209
+ type ZonesControllerUpdateZone1Data = {
1519
2210
  body: UpdateZoneDto;
1520
2211
  path: {
1521
2212
  id: string;
@@ -1523,81 +2214,194 @@ type ZonesControllerUpdateZoneData = {
1523
2214
  query?: never;
1524
2215
  url: "/zones/{id}";
1525
2216
  };
1526
- type ZonesControllerUpdateZoneErrors = {
2217
+ type ZonesControllerUpdateZone1Errors = {
1527
2218
  401: unknown;
1528
2219
  403: unknown;
1529
2220
  404: unknown;
1530
2221
  };
1531
- type ZonesControllerUpdateZoneResponses = {
2222
+ type ZonesControllerUpdateZone1Responses = {
1532
2223
  200: ZoneResponseDto;
1533
2224
  };
1534
- type ZonesControllerUpdateZoneResponse = ZonesControllerUpdateZoneResponses[keyof ZonesControllerUpdateZoneResponses];
1535
- type EventProcessorMissionsSyncControllerResyncMissionsData = {
2225
+ type ZonesControllerUpdateZone1Response = ZonesControllerUpdateZone1Responses[keyof ZonesControllerUpdateZone1Responses];
2226
+ type EventProcessorMissionsSyncControllerResyncMissions0V1Data = {
2227
+ body: SyncEventProcessorMissionsRequestDto;
2228
+ path?: never;
2229
+ query?: never;
2230
+ url: "/v1/event-processor/missions/sync";
2231
+ };
2232
+ type EventProcessorMissionsSyncControllerResyncMissions0V1Errors = {
2233
+ 401: unknown;
2234
+ 403: unknown;
2235
+ };
2236
+ type EventProcessorMissionsSyncControllerResyncMissions0V1Responses = {
2237
+ 200: SyncEventProcessorMissionsResponseDto;
2238
+ };
2239
+ type EventProcessorMissionsSyncControllerResyncMissions0V1Response = EventProcessorMissionsSyncControllerResyncMissions0V1Responses[keyof EventProcessorMissionsSyncControllerResyncMissions0V1Responses];
2240
+ type EventProcessorMissionsSyncControllerResyncMissions1Data = {
1536
2241
  body: SyncEventProcessorMissionsRequestDto;
1537
2242
  path?: never;
1538
2243
  query?: never;
1539
2244
  url: "/event-processor/missions/sync";
1540
2245
  };
1541
- type EventProcessorMissionsSyncControllerResyncMissionsErrors = {
2246
+ type EventProcessorMissionsSyncControllerResyncMissions1Errors = {
1542
2247
  401: unknown;
1543
2248
  403: unknown;
1544
2249
  };
1545
- type EventProcessorMissionsSyncControllerResyncMissionsResponses = {
2250
+ type EventProcessorMissionsSyncControllerResyncMissions1Responses = {
1546
2251
  200: SyncEventProcessorMissionsResponseDto;
1547
2252
  };
1548
- type EventProcessorMissionsSyncControllerResyncMissionsResponse = EventProcessorMissionsSyncControllerResyncMissionsResponses[keyof EventProcessorMissionsSyncControllerResyncMissionsResponses];
1549
- type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsData = {
2253
+ type EventProcessorMissionsSyncControllerResyncMissions1Response = EventProcessorMissionsSyncControllerResyncMissions1Responses[keyof EventProcessorMissionsSyncControllerResyncMissions1Responses];
2254
+ type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Data = {
2255
+ body: SyncEventProcessorFlightReviewsRequestDto;
2256
+ path?: never;
2257
+ query?: never;
2258
+ url: "/v1/event-processor/flightreviews";
2259
+ };
2260
+ type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Errors = {
2261
+ 401: unknown;
2262
+ 403: unknown;
2263
+ };
2264
+ type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses = {
2265
+ 200: SyncEventProcessorFlightReviewsResponseDto;
2266
+ };
2267
+ type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Response = EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses[keyof EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses];
2268
+ type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Data = {
1550
2269
  body: SyncEventProcessorFlightReviewsRequestDto;
1551
2270
  path?: never;
1552
2271
  query?: never;
1553
2272
  url: "/event-processor/flightreviews";
1554
2273
  };
1555
- type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsErrors = {
2274
+ type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Errors = {
1556
2275
  401: unknown;
1557
2276
  403: unknown;
1558
2277
  };
1559
- type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses = {
2278
+ type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses = {
1560
2279
  200: SyncEventProcessorFlightReviewsResponseDto;
1561
2280
  };
1562
- type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponse = EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses[keyof EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses];
1563
- type AlchemyControllerHandleWebhookData = {
2281
+ type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Response = EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses[keyof EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses];
2282
+ type AlchemyControllerHandleWebhook0V1Data = {
2283
+ body: AlchemyWebhookBodyDto;
2284
+ path?: never;
2285
+ query?: never;
2286
+ url: "/v1/webhooks/inbound/alchemy";
2287
+ };
2288
+ type AlchemyControllerHandleWebhook0V1Responses = {
2289
+ 200: unknown;
2290
+ };
2291
+ type AlchemyControllerHandleWebhook1Data = {
1564
2292
  body: AlchemyWebhookBodyDto;
1565
2293
  path?: never;
1566
2294
  query?: never;
1567
2295
  url: "/webhooks/inbound/alchemy";
1568
2296
  };
1569
- type AlchemyControllerHandleWebhookResponses = {
2297
+ type AlchemyControllerHandleWebhook1Responses = {
1570
2298
  200: unknown;
1571
2299
  };
1572
- type InboundWebhookConfigsControllerGetManyData = {
2300
+ type InboundWebhookConfigsControllerGetMany0V1Data = {
2301
+ body?: never;
2302
+ path?: never;
2303
+ query?: never;
2304
+ url: "/v1/webhooks/inbound/configs";
2305
+ };
2306
+ type InboundWebhookConfigsControllerGetMany0V1Errors = {
2307
+ 401: unknown;
2308
+ 403: unknown;
2309
+ };
2310
+ type InboundWebhookConfigsControllerGetMany0V1Responses = {
2311
+ 200: GetInboundWebhookConfigsResponse;
2312
+ };
2313
+ type InboundWebhookConfigsControllerGetMany0V1Response = InboundWebhookConfigsControllerGetMany0V1Responses[keyof InboundWebhookConfigsControllerGetMany0V1Responses];
2314
+ type InboundWebhookConfigsControllerCreate0V1Data = {
2315
+ body: CreateInboundWebhookConfigBody;
2316
+ path?: never;
2317
+ query?: never;
2318
+ url: "/v1/webhooks/inbound/configs";
2319
+ };
2320
+ type InboundWebhookConfigsControllerCreate0V1Errors = {
2321
+ 401: unknown;
2322
+ 403: unknown;
2323
+ };
2324
+ type InboundWebhookConfigsControllerCreate0V1Responses = {
2325
+ 201: CreateInboundWebhookConfigResponse;
2326
+ };
2327
+ type InboundWebhookConfigsControllerCreate0V1Response = InboundWebhookConfigsControllerCreate0V1Responses[keyof InboundWebhookConfigsControllerCreate0V1Responses];
2328
+ type InboundWebhookConfigsControllerGetMany1Data = {
1573
2329
  body?: never;
1574
2330
  path?: never;
1575
2331
  query?: never;
1576
2332
  url: "/webhooks/inbound/configs";
1577
2333
  };
1578
- type InboundWebhookConfigsControllerGetManyErrors = {
2334
+ type InboundWebhookConfigsControllerGetMany1Errors = {
1579
2335
  401: unknown;
1580
2336
  403: unknown;
1581
2337
  };
1582
- type InboundWebhookConfigsControllerGetManyResponses = {
2338
+ type InboundWebhookConfigsControllerGetMany1Responses = {
1583
2339
  200: GetInboundWebhookConfigsResponse;
1584
2340
  };
1585
- type InboundWebhookConfigsControllerGetManyResponse = InboundWebhookConfigsControllerGetManyResponses[keyof InboundWebhookConfigsControllerGetManyResponses];
1586
- type InboundWebhookConfigsControllerCreateData = {
2341
+ type InboundWebhookConfigsControllerGetMany1Response = InboundWebhookConfigsControllerGetMany1Responses[keyof InboundWebhookConfigsControllerGetMany1Responses];
2342
+ type InboundWebhookConfigsControllerCreate1Data = {
1587
2343
  body: CreateInboundWebhookConfigBody;
1588
2344
  path?: never;
1589
2345
  query?: never;
1590
2346
  url: "/webhooks/inbound/configs";
1591
2347
  };
1592
- type InboundWebhookConfigsControllerCreateErrors = {
2348
+ type InboundWebhookConfigsControllerCreate1Errors = {
1593
2349
  401: unknown;
1594
2350
  403: unknown;
1595
2351
  };
1596
- type InboundWebhookConfigsControllerCreateResponses = {
2352
+ type InboundWebhookConfigsControllerCreate1Responses = {
1597
2353
  201: CreateInboundWebhookConfigResponse;
1598
2354
  };
1599
- type InboundWebhookConfigsControllerCreateResponse = InboundWebhookConfigsControllerCreateResponses[keyof InboundWebhookConfigsControllerCreateResponses];
1600
- type InboundWebhookConfigsControllerDeleteData = {
2355
+ type InboundWebhookConfigsControllerCreate1Response = InboundWebhookConfigsControllerCreate1Responses[keyof InboundWebhookConfigsControllerCreate1Responses];
2356
+ type InboundWebhookConfigsControllerDelete0V1Data = {
2357
+ body?: never;
2358
+ path: {
2359
+ id: number;
2360
+ };
2361
+ query?: never;
2362
+ url: "/v1/webhooks/inbound/configs/{id}";
2363
+ };
2364
+ type InboundWebhookConfigsControllerDelete0V1Errors = {
2365
+ 401: unknown;
2366
+ 403: unknown;
2367
+ };
2368
+ type InboundWebhookConfigsControllerDelete0V1Responses = {
2369
+ 200: DeleteInboundWebhookConfigResponse;
2370
+ };
2371
+ type InboundWebhookConfigsControllerDelete0V1Response = InboundWebhookConfigsControllerDelete0V1Responses[keyof InboundWebhookConfigsControllerDelete0V1Responses];
2372
+ type InboundWebhookConfigsControllerGet0V1Data = {
2373
+ body?: never;
2374
+ path: {
2375
+ id: number;
2376
+ };
2377
+ query?: never;
2378
+ url: "/v1/webhooks/inbound/configs/{id}";
2379
+ };
2380
+ type InboundWebhookConfigsControllerGet0V1Errors = {
2381
+ 401: unknown;
2382
+ 403: unknown;
2383
+ };
2384
+ type InboundWebhookConfigsControllerGet0V1Responses = {
2385
+ 200: GetInboundWebhookConfigResponse;
2386
+ };
2387
+ type InboundWebhookConfigsControllerGet0V1Response = InboundWebhookConfigsControllerGet0V1Responses[keyof InboundWebhookConfigsControllerGet0V1Responses];
2388
+ type InboundWebhookConfigsControllerUpdate0V1Data = {
2389
+ body: UpdateInboundWebhookConfigBody;
2390
+ path: {
2391
+ id: number;
2392
+ };
2393
+ query?: never;
2394
+ url: "/v1/webhooks/inbound/configs/{id}";
2395
+ };
2396
+ type InboundWebhookConfigsControllerUpdate0V1Errors = {
2397
+ 401: unknown;
2398
+ 403: unknown;
2399
+ };
2400
+ type InboundWebhookConfigsControllerUpdate0V1Responses = {
2401
+ 200: UpdateInboundWebhookConfigResponse;
2402
+ };
2403
+ type InboundWebhookConfigsControllerUpdate0V1Response = InboundWebhookConfigsControllerUpdate0V1Responses[keyof InboundWebhookConfigsControllerUpdate0V1Responses];
2404
+ type InboundWebhookConfigsControllerDelete1Data = {
1601
2405
  body?: never;
1602
2406
  path: {
1603
2407
  id: number;
@@ -1605,15 +2409,15 @@ type InboundWebhookConfigsControllerDeleteData = {
1605
2409
  query?: never;
1606
2410
  url: "/webhooks/inbound/configs/{id}";
1607
2411
  };
1608
- type InboundWebhookConfigsControllerDeleteErrors = {
2412
+ type InboundWebhookConfigsControllerDelete1Errors = {
1609
2413
  401: unknown;
1610
2414
  403: unknown;
1611
2415
  };
1612
- type InboundWebhookConfigsControllerDeleteResponses = {
2416
+ type InboundWebhookConfigsControllerDelete1Responses = {
1613
2417
  200: DeleteInboundWebhookConfigResponse;
1614
2418
  };
1615
- type InboundWebhookConfigsControllerDeleteResponse = InboundWebhookConfigsControllerDeleteResponses[keyof InboundWebhookConfigsControllerDeleteResponses];
1616
- type InboundWebhookConfigsControllerGetData = {
2419
+ type InboundWebhookConfigsControllerDelete1Response = InboundWebhookConfigsControllerDelete1Responses[keyof InboundWebhookConfigsControllerDelete1Responses];
2420
+ type InboundWebhookConfigsControllerGet1Data = {
1617
2421
  body?: never;
1618
2422
  path: {
1619
2423
  id: number;
@@ -1621,15 +2425,15 @@ type InboundWebhookConfigsControllerGetData = {
1621
2425
  query?: never;
1622
2426
  url: "/webhooks/inbound/configs/{id}";
1623
2427
  };
1624
- type InboundWebhookConfigsControllerGetErrors = {
2428
+ type InboundWebhookConfigsControllerGet1Errors = {
1625
2429
  401: unknown;
1626
2430
  403: unknown;
1627
2431
  };
1628
- type InboundWebhookConfigsControllerGetResponses = {
2432
+ type InboundWebhookConfigsControllerGet1Responses = {
1629
2433
  200: GetInboundWebhookConfigResponse;
1630
2434
  };
1631
- type InboundWebhookConfigsControllerGetResponse = InboundWebhookConfigsControllerGetResponses[keyof InboundWebhookConfigsControllerGetResponses];
1632
- type InboundWebhookConfigsControllerUpdateData = {
2435
+ type InboundWebhookConfigsControllerGet1Response = InboundWebhookConfigsControllerGet1Responses[keyof InboundWebhookConfigsControllerGet1Responses];
2436
+ type InboundWebhookConfigsControllerUpdate1Data = {
1633
2437
  body: UpdateInboundWebhookConfigBody;
1634
2438
  path: {
1635
2439
  id: number;
@@ -1637,14 +2441,14 @@ type InboundWebhookConfigsControllerUpdateData = {
1637
2441
  query?: never;
1638
2442
  url: "/webhooks/inbound/configs/{id}";
1639
2443
  };
1640
- type InboundWebhookConfigsControllerUpdateErrors = {
2444
+ type InboundWebhookConfigsControllerUpdate1Errors = {
1641
2445
  401: unknown;
1642
2446
  403: unknown;
1643
2447
  };
1644
- type InboundWebhookConfigsControllerUpdateResponses = {
2448
+ type InboundWebhookConfigsControllerUpdate1Responses = {
1645
2449
  200: UpdateInboundWebhookConfigResponse;
1646
2450
  };
1647
- type InboundWebhookConfigsControllerUpdateResponse = InboundWebhookConfigsControllerUpdateResponses[keyof InboundWebhookConfigsControllerUpdateResponses];
2451
+ type InboundWebhookConfigsControllerUpdate1Response = InboundWebhookConfigsControllerUpdate1Responses[keyof InboundWebhookConfigsControllerUpdate1Responses];
1648
2452
  type ClientOptions$1 = {
1649
2453
  baseUrl: string;
1650
2454
  };
@@ -1823,59 +2627,112 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
1823
2627
  client?: Client;
1824
2628
  meta?: Record<string, unknown>;
1825
2629
  };
1826
- declare const apiControllerGetHello: <ThrowOnError extends boolean = false>(options?: Options<ApiControllerGetHelloData, ThrowOnError>) => RequestResult<ApiControllerGetHelloResponses, unknown, ThrowOnError, "fields">;
1827
- declare const apiControllerGetError: <ThrowOnError extends boolean = false>(options?: Options<ApiControllerGetErrorData, ThrowOnError>) => RequestResult<ApiControllerGetErrorResponses, unknown, ThrowOnError, "fields">;
1828
- declare const apiTokenControllerCreateToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerCreateTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerCreateTokenResponses, ApiTokenControllerCreateTokenErrors, ThrowOnError, "fields">;
1829
- declare const apiTokenControllerDeleteToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerDeleteTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerDeleteTokenResponses, ApiTokenControllerDeleteTokenErrors, ThrowOnError, "fields">;
1830
- declare const apiTokenControllerGetToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerGetTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerGetTokenResponses, ApiTokenControllerGetTokenErrors, ThrowOnError, "fields">;
1831
- declare const apiTokenControllerUpdateToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerUpdateTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerUpdateTokenResponses, ApiTokenControllerUpdateTokenErrors, ThrowOnError, "fields">;
1832
- declare const conditionsControllerGetSunAltitudeTimeLimits: <ThrowOnError extends boolean = false>(options: Options<ConditionsControllerGetSunAltitudeTimeLimitsData, ThrowOnError>) => RequestResult<ConditionsControllerGetSunAltitudeTimeLimitsResponses, unknown, ThrowOnError, "fields">;
1833
- declare const contractsControllerGetAllContracts: <ThrowOnError extends boolean = false>(options?: Options<ContractsControllerGetAllContractsData, ThrowOnError>) => RequestResult<ContractsControllerGetAllContractsResponses, ContractsControllerGetAllContractsErrors, ThrowOnError, "fields">;
1834
- declare const contractsControllerCreateContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerCreateContractData, ThrowOnError>) => RequestResult<ContractsControllerCreateContractResponses, ContractsControllerCreateContractErrors, ThrowOnError, "fields">;
1835
- declare const contractsControllerDeleteContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerDeleteContractData, ThrowOnError>) => RequestResult<ContractsControllerDeleteContractResponses, ContractsControllerDeleteContractErrors, ThrowOnError, "fields">;
1836
- declare const contractsControllerGetContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerGetContractData, ThrowOnError>) => RequestResult<ContractsControllerGetContractResponses, ContractsControllerGetContractErrors, ThrowOnError, "fields">;
1837
- declare const contractsControllerUpdateContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerUpdateContractData, ThrowOnError>) => RequestResult<ContractsControllerUpdateContractResponses, ContractsControllerUpdateContractErrors, ThrowOnError, "fields">;
1838
- declare const dlqRedriverControllerRedriveDlq: <ThrowOnError extends boolean = false>(options: Options<DlqRedriverControllerRedriveDlqData, ThrowOnError>) => RequestResult<DlqRedriverControllerRedriveDlqResponses, DlqRedriverControllerRedriveDlqErrors, ThrowOnError, "fields">;
1839
- declare const flightsControllerGenerateStorageKey: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGenerateStorageKeyData, ThrowOnError>) => RequestResult<FlightsControllerGenerateStorageKeyResponses, FlightsControllerGenerateStorageKeyErrors, ThrowOnError, "fields">;
1840
- declare const flightsControllerGetFlight: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGetFlightData, ThrowOnError>) => RequestResult<FlightsControllerGetFlightResponses, FlightsControllerGetFlightErrors, ThrowOnError, "fields">;
1841
- declare const flightsControllerCreatePresignedUrls: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerCreatePresignedUrlsData, ThrowOnError>) => RequestResult<FlightsControllerCreatePresignedUrlsResponses, FlightsControllerCreatePresignedUrlsErrors, ThrowOnError, "fields">;
1842
- declare const flightsControllerValidateFlight: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerValidateFlightData, ThrowOnError>) => RequestResult<FlightsControllerValidateFlightResponses, FlightsControllerValidateFlightErrors, ThrowOnError, "fields">;
1843
- declare const flightPlansControllerGetMany: <ThrowOnError extends boolean = false>(options?: Options<FlightPlansControllerGetManyData, ThrowOnError>) => RequestResult<FlightPlansControllerGetManyResponses, FlightPlansControllerGetManyErrors, ThrowOnError, "fields">;
1844
- declare const flightPlansControllerCreate: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerCreateData, ThrowOnError>) => RequestResult<FlightPlansControllerCreateResponses, FlightPlansControllerCreateErrors, ThrowOnError, "fields">;
1845
- declare const flightPlansControllerGet: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerGetData, ThrowOnError>) => RequestResult<FlightPlansControllerGetResponses, FlightPlansControllerGetErrors, ThrowOnError, "fields">;
1846
- declare const flightReviewsControllerGetFlightReview: <ThrowOnError extends boolean = false>(options: Options<FlightReviewsControllerGetFlightReviewData, ThrowOnError>) => RequestResult<FlightReviewsControllerGetFlightReviewResponses, FlightReviewsControllerGetFlightReviewErrors, ThrowOnError, "fields">;
1847
- declare const flightReviewsControllerGetFlightReviews: <ThrowOnError extends boolean = false>(options: Options<FlightReviewsControllerGetFlightReviewsData, ThrowOnError>) => RequestResult<FlightReviewsControllerGetFlightReviewsResponses, FlightReviewsControllerGetFlightReviewsErrors, ThrowOnError, "fields">;
1848
- declare const keysControllerGetProvenanceCryptoKey: <ThrowOnError extends boolean = false>(options?: Options<KeysControllerGetProvenanceCryptoKeyData, ThrowOnError>) => RequestResult<KeysControllerGetProvenanceCryptoKeyResponses, unknown, ThrowOnError, "fields">;
1849
- declare const missionsControllerGetMission: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerGetMissionData, ThrowOnError>) => RequestResult<MissionsControllerGetMissionResponses, MissionsControllerGetMissionErrors, ThrowOnError, "fields">;
1850
- declare const missionsControllerGetMissions: <ThrowOnError extends boolean = false>(options?: Options<MissionsControllerGetMissionsData, ThrowOnError>) => RequestResult<MissionsControllerGetMissionsResponses, MissionsControllerGetMissionsErrors, ThrowOnError, "fields">;
1851
- declare const missionsControllerCreateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerCreateMissionsResponses, MissionsControllerCreateMissionsErrors, ThrowOnError, "fields">;
1852
- declare const missionsControllerUpdateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissionsResponses, MissionsControllerUpdateMissionsErrors, ThrowOnError, "fields">;
1853
- declare const missionsControllerRepriceMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerRepriceMissionsData, ThrowOnError>) => RequestResult<MissionsControllerRepriceMissionsResponses, MissionsControllerRepriceMissionsErrors, ThrowOnError, "fields">;
1854
- declare const protocolTriggersApiControllerTriggerPayout: <ThrowOnError extends boolean = false>(options: Options<ProtocolTriggersApiControllerTriggerPayoutData, ThrowOnError>) => RequestResult<ProtocolTriggersApiControllerTriggerPayoutResponses, ProtocolTriggersApiControllerTriggerPayoutErrors, ThrowOnError, "fields">;
1855
- declare const protocolTriggersApiControllerTriggerMissionClose: <ThrowOnError extends boolean = false>(options: Options<ProtocolTriggersApiControllerTriggerMissionCloseData, ThrowOnError>) => RequestResult<ProtocolTriggersApiControllerTriggerMissionCloseResponses, ProtocolTriggersApiControllerTriggerMissionCloseErrors, ThrowOnError, "fields">;
1856
- declare const quotesControllerCreateQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuoteData, ThrowOnError>) => RequestResult<QuotesControllerCreateQuoteResponses, QuotesControllerCreateQuoteErrors, ThrowOnError, "fields">;
1857
- declare const quotesControllerGetQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuoteData, ThrowOnError>) => RequestResult<QuotesControllerGetQuoteResponses, QuotesControllerGetQuoteErrors, ThrowOnError, "fields">;
1858
- declare const schemaControllerGetEventSchema: <ThrowOnError extends boolean = false>(options?: Options<SchemaControllerGetEventSchemaData, ThrowOnError>) => RequestResult<SchemaControllerGetEventSchemaResponses, unknown, ThrowOnError, "fields">;
1859
- declare const vaultsControllerCreateVaults: <ThrowOnError extends boolean = false>(options: Options<VaultsControllerCreateVaultsData, ThrowOnError>) => RequestResult<VaultsControllerCreateVaultsResponses, VaultsControllerCreateVaultsErrors, ThrowOnError, "fields">;
1860
- declare const webhooksControllerGetMany: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetManyData, ThrowOnError>) => RequestResult<WebhooksControllerGetManyResponses, WebhooksControllerGetManyErrors, ThrowOnError, "fields">;
1861
- declare const webhooksControllerCreate: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerCreateData, ThrowOnError>) => RequestResult<WebhooksControllerCreateResponses, WebhooksControllerCreateErrors, ThrowOnError, "fields">;
1862
- declare const webhooksControllerDelete: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerDeleteData, ThrowOnError>) => RequestResult<WebhooksControllerDeleteResponses, WebhooksControllerDeleteErrors, ThrowOnError, "fields">;
1863
- declare const webhooksControllerGet: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetData, ThrowOnError>) => RequestResult<WebhooksControllerGetResponses, WebhooksControllerGetErrors, ThrowOnError, "fields">;
1864
- declare const webhooksControllerUpdate: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerUpdateData, ThrowOnError>) => RequestResult<WebhooksControllerUpdateResponses, WebhooksControllerUpdateErrors, ThrowOnError, "fields">;
1865
- declare const webhooksControllerRegenerateSecret: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerRegenerateSecretData, ThrowOnError>) => RequestResult<WebhooksControllerRegenerateSecretResponses, WebhooksControllerRegenerateSecretErrors, ThrowOnError, "fields">;
1866
- declare const webhooksControllerTest: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerTestData, ThrowOnError>) => RequestResult<WebhooksControllerTestResponses, WebhooksControllerTestErrors, ThrowOnError, "fields">;
1867
- declare const webhooksControllerGetStatus: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetStatusData, ThrowOnError>) => RequestResult<WebhooksControllerGetStatusResponses, WebhooksControllerGetStatusErrors, ThrowOnError, "fields">;
1868
- declare const zonesControllerCreateZone: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerCreateZoneData, ThrowOnError>) => RequestResult<ZonesControllerCreateZoneResponses, ZonesControllerCreateZoneErrors, ThrowOnError, "fields">;
1869
- declare const zonesControllerDeleteZone: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerDeleteZoneData, ThrowOnError>) => RequestResult<ZonesControllerDeleteZoneResponses, ZonesControllerDeleteZoneErrors, ThrowOnError, "fields">;
1870
- declare const zonesControllerUpdateZone: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerUpdateZoneData, ThrowOnError>) => RequestResult<ZonesControllerUpdateZoneResponses, ZonesControllerUpdateZoneErrors, ThrowOnError, "fields">;
1871
- declare const eventProcessorMissionsSyncControllerResyncMissions: <ThrowOnError extends boolean = false>(options: Options<EventProcessorMissionsSyncControllerResyncMissionsData, ThrowOnError>) => RequestResult<EventProcessorMissionsSyncControllerResyncMissionsResponses, EventProcessorMissionsSyncControllerResyncMissionsErrors, ThrowOnError, "fields">;
1872
- declare const eventProcessorFlightReviewsSyncControllerResyncFlightReviews: <ThrowOnError extends boolean = false>(options: Options<EventProcessorFlightReviewsSyncControllerResyncFlightReviewsData, ThrowOnError>) => RequestResult<EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses, EventProcessorFlightReviewsSyncControllerResyncFlightReviewsErrors, ThrowOnError, "fields">;
1873
- declare const alchemyControllerHandleWebhook: <ThrowOnError extends boolean = false>(options: Options<AlchemyControllerHandleWebhookData, ThrowOnError>) => RequestResult<AlchemyControllerHandleWebhookResponses, unknown, ThrowOnError, "fields">;
1874
- declare const inboundWebhookConfigsControllerGetMany: <ThrowOnError extends boolean = false>(options?: Options<InboundWebhookConfigsControllerGetManyData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetManyResponses, InboundWebhookConfigsControllerGetManyErrors, ThrowOnError, "fields">;
1875
- declare const inboundWebhookConfigsControllerCreate: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerCreateData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerCreateResponses, InboundWebhookConfigsControllerCreateErrors, ThrowOnError, "fields">;
1876
- declare const inboundWebhookConfigsControllerDelete: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerDeleteData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerDeleteResponses, InboundWebhookConfigsControllerDeleteErrors, ThrowOnError, "fields">;
1877
- declare const inboundWebhookConfigsControllerGet: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerGetData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetResponses, InboundWebhookConfigsControllerGetErrors, ThrowOnError, "fields">;
1878
- declare const inboundWebhookConfigsControllerUpdate: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerUpdateData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerUpdateResponses, InboundWebhookConfigsControllerUpdateErrors, ThrowOnError, "fields">;
2630
+ declare const apiControllerGetHello0V1: <ThrowOnError extends boolean = false>(options?: Options<ApiControllerGetHello0V1Data, ThrowOnError>) => RequestResult<ApiControllerGetHello0V1Responses, unknown, ThrowOnError, "fields">;
2631
+ declare const apiControllerGetHello1: <ThrowOnError extends boolean = false>(options?: Options<ApiControllerGetHello1Data, ThrowOnError>) => RequestResult<ApiControllerGetHello1Responses, unknown, ThrowOnError, "fields">;
2632
+ declare const apiControllerGetError0V1: <ThrowOnError extends boolean = false>(options?: Options<ApiControllerGetError0V1Data, ThrowOnError>) => RequestResult<ApiControllerGetError0V1Responses, unknown, ThrowOnError, "fields">;
2633
+ declare const apiControllerGetError1: <ThrowOnError extends boolean = false>(options?: Options<ApiControllerGetError1Data, ThrowOnError>) => RequestResult<ApiControllerGetError1Responses, unknown, ThrowOnError, "fields">;
2634
+ declare const apiTokenControllerCreateToken0V1: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerCreateToken0V1Data, ThrowOnError>) => RequestResult<ApiTokenControllerCreateToken0V1Responses, ApiTokenControllerCreateToken0V1Errors, ThrowOnError, "fields">;
2635
+ declare const apiTokenControllerCreateToken1: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerCreateToken1Data, ThrowOnError>) => RequestResult<ApiTokenControllerCreateToken1Responses, ApiTokenControllerCreateToken1Errors, ThrowOnError, "fields">;
2636
+ declare const apiTokenControllerDeleteToken0V1: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerDeleteToken0V1Data, ThrowOnError>) => RequestResult<ApiTokenControllerDeleteToken0V1Responses, ApiTokenControllerDeleteToken0V1Errors, ThrowOnError, "fields">;
2637
+ declare const apiTokenControllerGetToken0V1: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerGetToken0V1Data, ThrowOnError>) => RequestResult<ApiTokenControllerGetToken0V1Responses, ApiTokenControllerGetToken0V1Errors, ThrowOnError, "fields">;
2638
+ declare const apiTokenControllerUpdateToken0V1: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerUpdateToken0V1Data, ThrowOnError>) => RequestResult<ApiTokenControllerUpdateToken0V1Responses, ApiTokenControllerUpdateToken0V1Errors, ThrowOnError, "fields">;
2639
+ declare const apiTokenControllerDeleteToken1: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerDeleteToken1Data, ThrowOnError>) => RequestResult<ApiTokenControllerDeleteToken1Responses, ApiTokenControllerDeleteToken1Errors, ThrowOnError, "fields">;
2640
+ declare const apiTokenControllerGetToken1: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerGetToken1Data, ThrowOnError>) => RequestResult<ApiTokenControllerGetToken1Responses, ApiTokenControllerGetToken1Errors, ThrowOnError, "fields">;
2641
+ declare const apiTokenControllerUpdateToken1: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerUpdateToken1Data, ThrowOnError>) => RequestResult<ApiTokenControllerUpdateToken1Responses, ApiTokenControllerUpdateToken1Errors, ThrowOnError, "fields">;
2642
+ declare const conditionsControllerGetSunAltitudeTimeLimits0V1: <ThrowOnError extends boolean = false>(options: Options<ConditionsControllerGetSunAltitudeTimeLimits0V1Data, ThrowOnError>) => RequestResult<ConditionsControllerGetSunAltitudeTimeLimits0V1Responses, unknown, ThrowOnError, "fields">;
2643
+ declare const conditionsControllerGetSunAltitudeTimeLimits1: <ThrowOnError extends boolean = false>(options: Options<ConditionsControllerGetSunAltitudeTimeLimits1Data, ThrowOnError>) => RequestResult<ConditionsControllerGetSunAltitudeTimeLimits1Responses, unknown, ThrowOnError, "fields">;
2644
+ declare const contractsControllerGetAllContracts0V1: <ThrowOnError extends boolean = false>(options?: Options<ContractsControllerGetAllContracts0V1Data, ThrowOnError>) => RequestResult<ContractsControllerGetAllContracts0V1Responses, ContractsControllerGetAllContracts0V1Errors, ThrowOnError, "fields">;
2645
+ declare const contractsControllerCreateContract0V1: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerCreateContract0V1Data, ThrowOnError>) => RequestResult<ContractsControllerCreateContract0V1Responses, ContractsControllerCreateContract0V1Errors, ThrowOnError, "fields">;
2646
+ declare const contractsControllerGetAllContracts1: <ThrowOnError extends boolean = false>(options?: Options<ContractsControllerGetAllContracts1Data, ThrowOnError>) => RequestResult<ContractsControllerGetAllContracts1Responses, ContractsControllerGetAllContracts1Errors, ThrowOnError, "fields">;
2647
+ declare const contractsControllerCreateContract1: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerCreateContract1Data, ThrowOnError>) => RequestResult<ContractsControllerCreateContract1Responses, ContractsControllerCreateContract1Errors, ThrowOnError, "fields">;
2648
+ declare const contractsControllerDeleteContract0V1: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerDeleteContract0V1Data, ThrowOnError>) => RequestResult<ContractsControllerDeleteContract0V1Responses, ContractsControllerDeleteContract0V1Errors, ThrowOnError, "fields">;
2649
+ declare const contractsControllerGetContract0V1: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerGetContract0V1Data, ThrowOnError>) => RequestResult<ContractsControllerGetContract0V1Responses, ContractsControllerGetContract0V1Errors, ThrowOnError, "fields">;
2650
+ declare const contractsControllerUpdateContract0V1: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerUpdateContract0V1Data, ThrowOnError>) => RequestResult<ContractsControllerUpdateContract0V1Responses, ContractsControllerUpdateContract0V1Errors, ThrowOnError, "fields">;
2651
+ declare const contractsControllerDeleteContract1: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerDeleteContract1Data, ThrowOnError>) => RequestResult<ContractsControllerDeleteContract1Responses, ContractsControllerDeleteContract1Errors, ThrowOnError, "fields">;
2652
+ declare const contractsControllerGetContract1: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerGetContract1Data, ThrowOnError>) => RequestResult<ContractsControllerGetContract1Responses, ContractsControllerGetContract1Errors, ThrowOnError, "fields">;
2653
+ declare const contractsControllerUpdateContract1: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerUpdateContract1Data, ThrowOnError>) => RequestResult<ContractsControllerUpdateContract1Responses, ContractsControllerUpdateContract1Errors, ThrowOnError, "fields">;
2654
+ declare const dlqRedriverControllerRedriveDlq0V1: <ThrowOnError extends boolean = false>(options: Options<DlqRedriverControllerRedriveDlq0V1Data, ThrowOnError>) => RequestResult<DlqRedriverControllerRedriveDlq0V1Responses, DlqRedriverControllerRedriveDlq0V1Errors, ThrowOnError, "fields">;
2655
+ declare const dlqRedriverControllerRedriveDlq1: <ThrowOnError extends boolean = false>(options: Options<DlqRedriverControllerRedriveDlq1Data, ThrowOnError>) => RequestResult<DlqRedriverControllerRedriveDlq1Responses, DlqRedriverControllerRedriveDlq1Errors, ThrowOnError, "fields">;
2656
+ declare const flightsControllerGenerateStorageKey0V1: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGenerateStorageKey0V1Data, ThrowOnError>) => RequestResult<FlightsControllerGenerateStorageKey0V1Responses, FlightsControllerGenerateStorageKey0V1Errors, ThrowOnError, "fields">;
2657
+ declare const flightsControllerGenerateStorageKey1: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGenerateStorageKey1Data, ThrowOnError>) => RequestResult<FlightsControllerGenerateStorageKey1Responses, FlightsControllerGenerateStorageKey1Errors, ThrowOnError, "fields">;
2658
+ declare const flightsControllerGetFlight0V1: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGetFlight0V1Data, ThrowOnError>) => RequestResult<FlightsControllerGetFlight0V1Responses, FlightsControllerGetFlight0V1Errors, ThrowOnError, "fields">;
2659
+ declare const flightsControllerGetFlight1: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGetFlight1Data, ThrowOnError>) => RequestResult<FlightsControllerGetFlight1Responses, FlightsControllerGetFlight1Errors, ThrowOnError, "fields">;
2660
+ declare const flightsControllerCreatePresignedUrls0V1: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerCreatePresignedUrls0V1Data, ThrowOnError>) => RequestResult<FlightsControllerCreatePresignedUrls0V1Responses, FlightsControllerCreatePresignedUrls0V1Errors, ThrowOnError, "fields">;
2661
+ declare const flightsControllerCreatePresignedUrls1: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerCreatePresignedUrls1Data, ThrowOnError>) => RequestResult<FlightsControllerCreatePresignedUrls1Responses, FlightsControllerCreatePresignedUrls1Errors, ThrowOnError, "fields">;
2662
+ declare const flightsControllerValidateFlight0V1: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerValidateFlight0V1Data, ThrowOnError>) => RequestResult<FlightsControllerValidateFlight0V1Responses, FlightsControllerValidateFlight0V1Errors, ThrowOnError, "fields">;
2663
+ declare const flightsControllerValidateFlight1: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerValidateFlight1Data, ThrowOnError>) => RequestResult<FlightsControllerValidateFlight1Responses, FlightsControllerValidateFlight1Errors, ThrowOnError, "fields">;
2664
+ declare const flightPlansControllerGetMany0V1: <ThrowOnError extends boolean = false>(options?: Options<FlightPlansControllerGetMany0V1Data, ThrowOnError>) => RequestResult<FlightPlansControllerGetMany0V1Responses, FlightPlansControllerGetMany0V1Errors, ThrowOnError, "fields">;
2665
+ declare const flightPlansControllerCreate0V1: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerCreate0V1Data, ThrowOnError>) => RequestResult<FlightPlansControllerCreate0V1Responses, FlightPlansControllerCreate0V1Errors, ThrowOnError, "fields">;
2666
+ declare const flightPlansControllerGetMany1: <ThrowOnError extends boolean = false>(options?: Options<FlightPlansControllerGetMany1Data, ThrowOnError>) => RequestResult<FlightPlansControllerGetMany1Responses, FlightPlansControllerGetMany1Errors, ThrowOnError, "fields">;
2667
+ declare const flightPlansControllerCreate1: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerCreate1Data, ThrowOnError>) => RequestResult<FlightPlansControllerCreate1Responses, FlightPlansControllerCreate1Errors, ThrowOnError, "fields">;
2668
+ declare const flightPlansControllerGet0V1: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerGet0V1Data, ThrowOnError>) => RequestResult<FlightPlansControllerGet0V1Responses, FlightPlansControllerGet0V1Errors, ThrowOnError, "fields">;
2669
+ declare const flightPlansControllerGet1: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerGet1Data, ThrowOnError>) => RequestResult<FlightPlansControllerGet1Responses, FlightPlansControllerGet1Errors, ThrowOnError, "fields">;
2670
+ declare const flightReviewsControllerGetFlightReview0V1: <ThrowOnError extends boolean = false>(options: Options<FlightReviewsControllerGetFlightReview0V1Data, ThrowOnError>) => RequestResult<FlightReviewsControllerGetFlightReview0V1Responses, FlightReviewsControllerGetFlightReview0V1Errors, ThrowOnError, "fields">;
2671
+ declare const flightReviewsControllerGetFlightReview1: <ThrowOnError extends boolean = false>(options: Options<FlightReviewsControllerGetFlightReview1Data, ThrowOnError>) => RequestResult<FlightReviewsControllerGetFlightReview1Responses, FlightReviewsControllerGetFlightReview1Errors, ThrowOnError, "fields">;
2672
+ declare const flightReviewsControllerGetFlightReviews0V1: <ThrowOnError extends boolean = false>(options: Options<FlightReviewsControllerGetFlightReviews0V1Data, ThrowOnError>) => RequestResult<FlightReviewsControllerGetFlightReviews0V1Responses, FlightReviewsControllerGetFlightReviews0V1Errors, ThrowOnError, "fields">;
2673
+ declare const flightReviewsControllerGetFlightReviews1: <ThrowOnError extends boolean = false>(options: Options<FlightReviewsControllerGetFlightReviews1Data, ThrowOnError>) => RequestResult<FlightReviewsControllerGetFlightReviews1Responses, FlightReviewsControllerGetFlightReviews1Errors, ThrowOnError, "fields">;
2674
+ declare const keysControllerGetProvenanceCryptoKey0V1: <ThrowOnError extends boolean = false>(options?: Options<KeysControllerGetProvenanceCryptoKey0V1Data, ThrowOnError>) => RequestResult<KeysControllerGetProvenanceCryptoKey0V1Responses, unknown, ThrowOnError, "fields">;
2675
+ declare const keysControllerGetProvenanceCryptoKey1: <ThrowOnError extends boolean = false>(options?: Options<KeysControllerGetProvenanceCryptoKey1Data, ThrowOnError>) => RequestResult<KeysControllerGetProvenanceCryptoKey1Responses, unknown, ThrowOnError, "fields">;
2676
+ declare const missionsControllerGetMission0V1: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerGetMission0V1Data, ThrowOnError>) => RequestResult<MissionsControllerGetMission0V1Responses, MissionsControllerGetMission0V1Errors, ThrowOnError, "fields">;
2677
+ declare const missionsControllerGetMission1: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerGetMission1Data, ThrowOnError>) => RequestResult<MissionsControllerGetMission1Responses, MissionsControllerGetMission1Errors, ThrowOnError, "fields">;
2678
+ declare const missionsControllerGetMissions0V1: <ThrowOnError extends boolean = false>(options?: Options<MissionsControllerGetMissions0V1Data, ThrowOnError>) => RequestResult<MissionsControllerGetMissions0V1Responses, MissionsControllerGetMissions0V1Errors, ThrowOnError, "fields">;
2679
+ declare const missionsControllerCreateMissions0V1: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissions0V1Data, ThrowOnError>) => RequestResult<MissionsControllerCreateMissions0V1Responses, MissionsControllerCreateMissions0V1Errors, ThrowOnError, "fields">;
2680
+ declare const missionsControllerUpdateMissions0V1: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissions0V1Data, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissions0V1Responses, MissionsControllerUpdateMissions0V1Errors, ThrowOnError, "fields">;
2681
+ declare const missionsControllerGetMissions1: <ThrowOnError extends boolean = false>(options?: Options<MissionsControllerGetMissions1Data, ThrowOnError>) => RequestResult<MissionsControllerGetMissions1Responses, MissionsControllerGetMissions1Errors, ThrowOnError, "fields">;
2682
+ declare const missionsControllerCreateMissions1: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissions1Data, ThrowOnError>) => RequestResult<MissionsControllerCreateMissions1Responses, MissionsControllerCreateMissions1Errors, ThrowOnError, "fields">;
2683
+ declare const missionsControllerUpdateMissions1: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissions1Data, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissions1Responses, MissionsControllerUpdateMissions1Errors, ThrowOnError, "fields">;
2684
+ declare const missionsControllerRepriceMissions0V1: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerRepriceMissions0V1Data, ThrowOnError>) => RequestResult<MissionsControllerRepriceMissions0V1Responses, MissionsControllerRepriceMissions0V1Errors, ThrowOnError, "fields">;
2685
+ declare const missionsControllerRepriceMissions1: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerRepriceMissions1Data, ThrowOnError>) => RequestResult<MissionsControllerRepriceMissions1Responses, MissionsControllerRepriceMissions1Errors, ThrowOnError, "fields">;
2686
+ declare const protocolTriggersApiControllerTriggerPayout0V1: <ThrowOnError extends boolean = false>(options: Options<ProtocolTriggersApiControllerTriggerPayout0V1Data, ThrowOnError>) => RequestResult<ProtocolTriggersApiControllerTriggerPayout0V1Responses, ProtocolTriggersApiControllerTriggerPayout0V1Errors, ThrowOnError, "fields">;
2687
+ declare const protocolTriggersApiControllerTriggerPayout1: <ThrowOnError extends boolean = false>(options: Options<ProtocolTriggersApiControllerTriggerPayout1Data, ThrowOnError>) => RequestResult<ProtocolTriggersApiControllerTriggerPayout1Responses, ProtocolTriggersApiControllerTriggerPayout1Errors, ThrowOnError, "fields">;
2688
+ declare const protocolTriggersApiControllerTriggerMissionClose0V1: <ThrowOnError extends boolean = false>(options: Options<ProtocolTriggersApiControllerTriggerMissionClose0V1Data, ThrowOnError>) => RequestResult<ProtocolTriggersApiControllerTriggerMissionClose0V1Responses, ProtocolTriggersApiControllerTriggerMissionClose0V1Errors, ThrowOnError, "fields">;
2689
+ declare const protocolTriggersApiControllerTriggerMissionClose1: <ThrowOnError extends boolean = false>(options: Options<ProtocolTriggersApiControllerTriggerMissionClose1Data, ThrowOnError>) => RequestResult<ProtocolTriggersApiControllerTriggerMissionClose1Responses, ProtocolTriggersApiControllerTriggerMissionClose1Errors, ThrowOnError, "fields">;
2690
+ declare const quotesControllerCreateQuote0V1: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuote0V1Data, ThrowOnError>) => RequestResult<QuotesControllerCreateQuote0V1Responses, QuotesControllerCreateQuote0V1Errors, ThrowOnError, "fields">;
2691
+ declare const quotesControllerCreateQuote1: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuote1Data, ThrowOnError>) => RequestResult<QuotesControllerCreateQuote1Responses, QuotesControllerCreateQuote1Errors, ThrowOnError, "fields">;
2692
+ declare const quotesControllerGetQuote0V1: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuote0V1Data, ThrowOnError>) => RequestResult<QuotesControllerGetQuote0V1Responses, QuotesControllerGetQuote0V1Errors, ThrowOnError, "fields">;
2693
+ declare const quotesControllerGetQuote1: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuote1Data, ThrowOnError>) => RequestResult<QuotesControllerGetQuote1Responses, QuotesControllerGetQuote1Errors, ThrowOnError, "fields">;
2694
+ declare const schemaControllerGetEventSchema0V1: <ThrowOnError extends boolean = false>(options?: Options<SchemaControllerGetEventSchema0V1Data, ThrowOnError>) => RequestResult<SchemaControllerGetEventSchema0V1Responses, unknown, ThrowOnError, "fields">;
2695
+ declare const schemaControllerGetEventSchema1: <ThrowOnError extends boolean = false>(options?: Options<SchemaControllerGetEventSchema1Data, ThrowOnError>) => RequestResult<SchemaControllerGetEventSchema1Responses, unknown, ThrowOnError, "fields">;
2696
+ declare const vaultsControllerCreateVaults0V1: <ThrowOnError extends boolean = false>(options: Options<VaultsControllerCreateVaults0V1Data, ThrowOnError>) => RequestResult<VaultsControllerCreateVaults0V1Responses, VaultsControllerCreateVaults0V1Errors, ThrowOnError, "fields">;
2697
+ declare const vaultsControllerCreateVaults1: <ThrowOnError extends boolean = false>(options: Options<VaultsControllerCreateVaults1Data, ThrowOnError>) => RequestResult<VaultsControllerCreateVaults1Responses, VaultsControllerCreateVaults1Errors, ThrowOnError, "fields">;
2698
+ declare const webhooksControllerGetMany0V1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetMany0V1Data, ThrowOnError>) => RequestResult<WebhooksControllerGetMany0V1Responses, WebhooksControllerGetMany0V1Errors, ThrowOnError, "fields">;
2699
+ declare const webhooksControllerCreate0V1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerCreate0V1Data, ThrowOnError>) => RequestResult<WebhooksControllerCreate0V1Responses, WebhooksControllerCreate0V1Errors, ThrowOnError, "fields">;
2700
+ declare const webhooksControllerGetMany1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetMany1Data, ThrowOnError>) => RequestResult<WebhooksControllerGetMany1Responses, WebhooksControllerGetMany1Errors, ThrowOnError, "fields">;
2701
+ declare const webhooksControllerCreate1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerCreate1Data, ThrowOnError>) => RequestResult<WebhooksControllerCreate1Responses, WebhooksControllerCreate1Errors, ThrowOnError, "fields">;
2702
+ declare const webhooksControllerDelete0V1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerDelete0V1Data, ThrowOnError>) => RequestResult<WebhooksControllerDelete0V1Responses, WebhooksControllerDelete0V1Errors, ThrowOnError, "fields">;
2703
+ declare const webhooksControllerGet0V1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGet0V1Data, ThrowOnError>) => RequestResult<WebhooksControllerGet0V1Responses, WebhooksControllerGet0V1Errors, ThrowOnError, "fields">;
2704
+ declare const webhooksControllerUpdate0V1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerUpdate0V1Data, ThrowOnError>) => RequestResult<WebhooksControllerUpdate0V1Responses, WebhooksControllerUpdate0V1Errors, ThrowOnError, "fields">;
2705
+ declare const webhooksControllerDelete1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerDelete1Data, ThrowOnError>) => RequestResult<WebhooksControllerDelete1Responses, WebhooksControllerDelete1Errors, ThrowOnError, "fields">;
2706
+ declare const webhooksControllerGet1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGet1Data, ThrowOnError>) => RequestResult<WebhooksControllerGet1Responses, WebhooksControllerGet1Errors, ThrowOnError, "fields">;
2707
+ declare const webhooksControllerUpdate1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerUpdate1Data, ThrowOnError>) => RequestResult<WebhooksControllerUpdate1Responses, WebhooksControllerUpdate1Errors, ThrowOnError, "fields">;
2708
+ declare const webhooksControllerRegenerateSecret0V1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerRegenerateSecret0V1Data, ThrowOnError>) => RequestResult<WebhooksControllerRegenerateSecret0V1Responses, WebhooksControllerRegenerateSecret0V1Errors, ThrowOnError, "fields">;
2709
+ declare const webhooksControllerRegenerateSecret1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerRegenerateSecret1Data, ThrowOnError>) => RequestResult<WebhooksControllerRegenerateSecret1Responses, WebhooksControllerRegenerateSecret1Errors, ThrowOnError, "fields">;
2710
+ declare const webhooksControllerTest0V1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerTest0V1Data, ThrowOnError>) => RequestResult<WebhooksControllerTest0V1Responses, WebhooksControllerTest0V1Errors, ThrowOnError, "fields">;
2711
+ declare const webhooksControllerTest1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerTest1Data, ThrowOnError>) => RequestResult<WebhooksControllerTest1Responses, WebhooksControllerTest1Errors, ThrowOnError, "fields">;
2712
+ declare const webhooksControllerGetStatus0V1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetStatus0V1Data, ThrowOnError>) => RequestResult<WebhooksControllerGetStatus0V1Responses, WebhooksControllerGetStatus0V1Errors, ThrowOnError, "fields">;
2713
+ declare const webhooksControllerGetStatus1: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetStatus1Data, ThrowOnError>) => RequestResult<WebhooksControllerGetStatus1Responses, WebhooksControllerGetStatus1Errors, ThrowOnError, "fields">;
2714
+ declare const zonesControllerCreateZone0V1: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerCreateZone0V1Data, ThrowOnError>) => RequestResult<ZonesControllerCreateZone0V1Responses, ZonesControllerCreateZone0V1Errors, ThrowOnError, "fields">;
2715
+ declare const zonesControllerCreateZone1: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerCreateZone1Data, ThrowOnError>) => RequestResult<ZonesControllerCreateZone1Responses, ZonesControllerCreateZone1Errors, ThrowOnError, "fields">;
2716
+ declare const zonesControllerDeleteZone0V1: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerDeleteZone0V1Data, ThrowOnError>) => RequestResult<ZonesControllerDeleteZone0V1Responses, ZonesControllerDeleteZone0V1Errors, ThrowOnError, "fields">;
2717
+ declare const zonesControllerUpdateZone0V1: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerUpdateZone0V1Data, ThrowOnError>) => RequestResult<ZonesControllerUpdateZone0V1Responses, ZonesControllerUpdateZone0V1Errors, ThrowOnError, "fields">;
2718
+ declare const zonesControllerDeleteZone1: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerDeleteZone1Data, ThrowOnError>) => RequestResult<ZonesControllerDeleteZone1Responses, ZonesControllerDeleteZone1Errors, ThrowOnError, "fields">;
2719
+ declare const zonesControllerUpdateZone1: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerUpdateZone1Data, ThrowOnError>) => RequestResult<ZonesControllerUpdateZone1Responses, ZonesControllerUpdateZone1Errors, ThrowOnError, "fields">;
2720
+ declare const eventProcessorMissionsSyncControllerResyncMissions0V1: <ThrowOnError extends boolean = false>(options: Options<EventProcessorMissionsSyncControllerResyncMissions0V1Data, ThrowOnError>) => RequestResult<EventProcessorMissionsSyncControllerResyncMissions0V1Responses, EventProcessorMissionsSyncControllerResyncMissions0V1Errors, ThrowOnError, "fields">;
2721
+ declare const eventProcessorMissionsSyncControllerResyncMissions1: <ThrowOnError extends boolean = false>(options: Options<EventProcessorMissionsSyncControllerResyncMissions1Data, ThrowOnError>) => RequestResult<EventProcessorMissionsSyncControllerResyncMissions1Responses, EventProcessorMissionsSyncControllerResyncMissions1Errors, ThrowOnError, "fields">;
2722
+ declare const eventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1: <ThrowOnError extends boolean = false>(options: Options<EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Data, ThrowOnError>) => RequestResult<EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses, EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Errors, ThrowOnError, "fields">;
2723
+ declare const eventProcessorFlightReviewsSyncControllerResyncFlightReviews1: <ThrowOnError extends boolean = false>(options: Options<EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Data, ThrowOnError>) => RequestResult<EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses, EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Errors, ThrowOnError, "fields">;
2724
+ declare const alchemyControllerHandleWebhook0V1: <ThrowOnError extends boolean = false>(options: Options<AlchemyControllerHandleWebhook0V1Data, ThrowOnError>) => RequestResult<AlchemyControllerHandleWebhook0V1Responses, unknown, ThrowOnError, "fields">;
2725
+ declare const alchemyControllerHandleWebhook1: <ThrowOnError extends boolean = false>(options: Options<AlchemyControllerHandleWebhook1Data, ThrowOnError>) => RequestResult<AlchemyControllerHandleWebhook1Responses, unknown, ThrowOnError, "fields">;
2726
+ declare const inboundWebhookConfigsControllerGetMany0V1: <ThrowOnError extends boolean = false>(options?: Options<InboundWebhookConfigsControllerGetMany0V1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetMany0V1Responses, InboundWebhookConfigsControllerGetMany0V1Errors, ThrowOnError, "fields">;
2727
+ declare const inboundWebhookConfigsControllerCreate0V1: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerCreate0V1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerCreate0V1Responses, InboundWebhookConfigsControllerCreate0V1Errors, ThrowOnError, "fields">;
2728
+ declare const inboundWebhookConfigsControllerGetMany1: <ThrowOnError extends boolean = false>(options?: Options<InboundWebhookConfigsControllerGetMany1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetMany1Responses, InboundWebhookConfigsControllerGetMany1Errors, ThrowOnError, "fields">;
2729
+ declare const inboundWebhookConfigsControllerCreate1: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerCreate1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerCreate1Responses, InboundWebhookConfigsControllerCreate1Errors, ThrowOnError, "fields">;
2730
+ declare const inboundWebhookConfigsControllerDelete0V1: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerDelete0V1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerDelete0V1Responses, InboundWebhookConfigsControllerDelete0V1Errors, ThrowOnError, "fields">;
2731
+ declare const inboundWebhookConfigsControllerGet0V1: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerGet0V1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGet0V1Responses, InboundWebhookConfigsControllerGet0V1Errors, ThrowOnError, "fields">;
2732
+ declare const inboundWebhookConfigsControllerUpdate0V1: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerUpdate0V1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerUpdate0V1Responses, InboundWebhookConfigsControllerUpdate0V1Errors, ThrowOnError, "fields">;
2733
+ declare const inboundWebhookConfigsControllerDelete1: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerDelete1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerDelete1Responses, InboundWebhookConfigsControllerDelete1Errors, ThrowOnError, "fields">;
2734
+ declare const inboundWebhookConfigsControllerGet1: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerGet1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGet1Responses, InboundWebhookConfigsControllerGet1Errors, ThrowOnError, "fields">;
2735
+ declare const inboundWebhookConfigsControllerUpdate1: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerUpdate1Data, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerUpdate1Responses, InboundWebhookConfigsControllerUpdate1Errors, ThrowOnError, "fields">;
1879
2736
 
1880
2737
  declare const Event: z.ZodUnion<[z.ZodObject<{
1881
2738
  id: z.ZodString;
@@ -4315,4 +5172,4 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
4315
5172
  }, zod.ZodAny, "strip">>;
4316
5173
  }, zod.ZodAny, "strip">;
4317
5174
 
4318
- export { type AlchemyControllerHandleWebhookData, type AlchemyControllerHandleWebhookResponses, type AlchemyWebhookBodyDto, type ApiControllerGetErrorData, type ApiControllerGetErrorResponses, type ApiControllerGetHelloData, type ApiControllerGetHelloResponses, type ApiTokenControllerCreateTokenData, type ApiTokenControllerCreateTokenErrors, type ApiTokenControllerCreateTokenResponse, type ApiTokenControllerCreateTokenResponses, type ApiTokenControllerDeleteTokenData, type ApiTokenControllerDeleteTokenErrors, type ApiTokenControllerDeleteTokenResponses, type ApiTokenControllerGetTokenData, type ApiTokenControllerGetTokenErrors, type ApiTokenControllerGetTokenResponses, type ApiTokenControllerUpdateTokenData, type ApiTokenControllerUpdateTokenErrors, type ApiTokenControllerUpdateTokenResponse, type ApiTokenControllerUpdateTokenResponses, type Auth, type Client, type ClientOptions$1 as ClientOptions, type ConditionsControllerGetSunAltitudeTimeLimitsData, type ConditionsControllerGetSunAltitudeTimeLimitsResponse, type ConditionsControllerGetSunAltitudeTimeLimitsResponses, type Config, type ContractsControllerCreateContractData, type ContractsControllerCreateContractErrors, type ContractsControllerCreateContractResponse, type ContractsControllerCreateContractResponses, type ContractsControllerDeleteContractData, type ContractsControllerDeleteContractErrors, type ContractsControllerDeleteContractResponse, type ContractsControllerDeleteContractResponses, type ContractsControllerGetAllContractsData, type ContractsControllerGetAllContractsErrors, type ContractsControllerGetAllContractsResponse, type ContractsControllerGetAllContractsResponses, type ContractsControllerGetContractData, type ContractsControllerGetContractErrors, type ContractsControllerGetContractResponse, type ContractsControllerGetContractResponses, type ContractsControllerUpdateContractData, type ContractsControllerUpdateContractErrors, type ContractsControllerUpdateContractResponse, type ContractsControllerUpdateContractResponses, type CreateApiTokenRequestDto, type CreateApiTokenResponseDto, type CreateClientConfig, type CreateContractRequestDto, type CreateContractResponseDto, type CreateFileRequestDto, type CreateFileResponseDto, type CreateFlightPlanBody, type CreateFlightPlanResponse, type CreateInboundWebhookConfigBody, type CreateInboundWebhookConfigResponse, type CreateMissionRequestDto, type CreateMissionResponseDto, type CreateQuoteRequestDto, type CreateVaultsRequestDto, type CreateVaultsResponseDto, type CreateWebhookBody, type CreateWebhookResponse, type CreateZoneDto, type DeleteContractResponseDto, type DeleteInboundWebhookConfigResponse, type DeleteWebhookResponse, type DlqRedriverControllerRedriveDlqData, type DlqRedriverControllerRedriveDlqErrors, type DlqRedriverControllerRedriveDlqResponse, type DlqRedriverControllerRedriveDlqResponses, Event, type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsData, type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsErrors, type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponse, type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses, type EventProcessorMissionsSyncControllerResyncMissionsData, type EventProcessorMissionsSyncControllerResyncMissionsErrors, type EventProcessorMissionsSyncControllerResyncMissionsResponse, type EventProcessorMissionsSyncControllerResyncMissionsResponses, type FlightDto, type FlightPlansControllerCreateData, type FlightPlansControllerCreateErrors, type FlightPlansControllerCreateResponse, type FlightPlansControllerCreateResponses, type FlightPlansControllerGetData, type FlightPlansControllerGetErrors, type FlightPlansControllerGetManyData, type FlightPlansControllerGetManyErrors, type FlightPlansControllerGetManyResponse, type FlightPlansControllerGetManyResponses, type FlightPlansControllerGetResponse, type FlightPlansControllerGetResponses, type FlightReviewedEvent, type FlightReviewsControllerGetFlightReviewData, type FlightReviewsControllerGetFlightReviewErrors, type FlightReviewsControllerGetFlightReviewResponse, type FlightReviewsControllerGetFlightReviewResponses, type FlightReviewsControllerGetFlightReviewsData, type FlightReviewsControllerGetFlightReviewsErrors, type FlightReviewsControllerGetFlightReviewsResponse, type FlightReviewsControllerGetFlightReviewsResponses, type FlightSubmittedEvent, type FlightsControllerCreatePresignedUrlsData, type FlightsControllerCreatePresignedUrlsErrors, type FlightsControllerCreatePresignedUrlsResponse, type FlightsControllerCreatePresignedUrlsResponses, type FlightsControllerGenerateStorageKeyData, type FlightsControllerGenerateStorageKeyErrors, type FlightsControllerGenerateStorageKeyResponse, type FlightsControllerGenerateStorageKeyResponses, type FlightsControllerGetFlightData, type FlightsControllerGetFlightErrors, type FlightsControllerGetFlightResponse, type FlightsControllerGetFlightResponses, type FlightsControllerValidateFlightData, type FlightsControllerValidateFlightErrors, type FlightsControllerValidateFlightResponse, type FlightsControllerValidateFlightResponses, type GetContractResponseDto, type GetContractsResponseDto, type GetFlightPlanResponse, type GetFlightPlansResponse, type GetFlightReviewResponseDto, type GetFlightReviewsResponseDto, type GetInboundWebhookConfigResponse, type GetInboundWebhookConfigsResponse, type GetMissionResponseDto, type GetMissionsResponseDto, type GetProvenanceCryptoKeyResponse, type GetTimeLimitsForSunAltitudeResponse, type GetWebhookResponse, type GetWebhookStatusResponse, type GetWebhooksResponse, type InboundWebhookConfigsControllerCreateData, type InboundWebhookConfigsControllerCreateErrors, type InboundWebhookConfigsControllerCreateResponse, type InboundWebhookConfigsControllerCreateResponses, type InboundWebhookConfigsControllerDeleteData, type InboundWebhookConfigsControllerDeleteErrors, type InboundWebhookConfigsControllerDeleteResponse, type InboundWebhookConfigsControllerDeleteResponses, type InboundWebhookConfigsControllerGetData, type InboundWebhookConfigsControllerGetErrors, type InboundWebhookConfigsControllerGetManyData, type InboundWebhookConfigsControllerGetManyErrors, type InboundWebhookConfigsControllerGetManyResponse, type InboundWebhookConfigsControllerGetManyResponses, type InboundWebhookConfigsControllerGetResponse, type InboundWebhookConfigsControllerGetResponses, type InboundWebhookConfigsControllerUpdateData, type InboundWebhookConfigsControllerUpdateErrors, type InboundWebhookConfigsControllerUpdateResponse, type InboundWebhookConfigsControllerUpdateResponses, type KeysControllerGetProvenanceCryptoKeyData, type KeysControllerGetProvenanceCryptoKeyResponse, type KeysControllerGetProvenanceCryptoKeyResponses, type MissionCreatedEvent, type MissionPaidEvent, type MissionUpdatedEvent, type MissionsControllerCreateMissionsData, type MissionsControllerCreateMissionsErrors, type MissionsControllerCreateMissionsResponse, type MissionsControllerCreateMissionsResponses, type MissionsControllerGetMissionData, type MissionsControllerGetMissionErrors, type MissionsControllerGetMissionResponse, type MissionsControllerGetMissionResponses, type MissionsControllerGetMissionsData, type MissionsControllerGetMissionsErrors, type MissionsControllerGetMissionsResponse, type MissionsControllerGetMissionsResponses, type MissionsControllerRepriceMissionsData, type MissionsControllerRepriceMissionsErrors, type MissionsControllerRepriceMissionsResponse, type MissionsControllerRepriceMissionsResponses, type MissionsControllerUpdateMissionsData, type MissionsControllerUpdateMissionsErrors, type MissionsControllerUpdateMissionsResponse, type MissionsControllerUpdateMissionsResponses, type Options, type OptionsLegacyParser, type ProtocolTriggersApiControllerTriggerMissionCloseData, type ProtocolTriggersApiControllerTriggerMissionCloseErrors, type ProtocolTriggersApiControllerTriggerMissionCloseResponses, type ProtocolTriggersApiControllerTriggerPayoutData, type ProtocolTriggersApiControllerTriggerPayoutErrors, type ProtocolTriggersApiControllerTriggerPayoutResponses, type QuerySerializerOptions, type QuotesControllerCreateQuoteData, type QuotesControllerCreateQuoteErrors, type QuotesControllerCreateQuoteResponses, type QuotesControllerGetQuoteData, type QuotesControllerGetQuoteErrors, type QuotesControllerGetQuoteResponses, type RedriveDlqRequestDto, type RedriveDlqResponseDto, type RegenerateWebhookSecretBody, type RegenerateWebhookSecretResponseDto, type RepriceMissionsRequestDto, type RepriceMissionsResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type SchemaControllerGetEventSchemaData, type SchemaControllerGetEventSchemaResponses, type SyncEventProcessorFlightReviewsRequestDto, type SyncEventProcessorFlightReviewsResponseDto, type SyncEventProcessorMissionsRequestDto, type SyncEventProcessorMissionsResponseDto, type TDataShape, type TestEvent, type TestWebhookResponse, type TriggerMissionCloseRequestDto, type TriggerPayoutRequestDto, type UpdateApiTokenRequestDto, type UpdateApiTokenResponseDto, type UpdateContractRequestDto, type UpdateContractResponseDto, type UpdateInboundWebhookConfigBody, type UpdateInboundWebhookConfigResponse, type UpdateMissionsRequestDto, type UpdateMissionsResponseDto, type UpdateWebhookBody, type UpdateWebhookResponse, type UpdateZoneDto, type ValidateFlightRequestDto, type ValidateFlightResponseDto, type VaultsControllerCreateVaultsData, type VaultsControllerCreateVaultsErrors, type VaultsControllerCreateVaultsResponse, type VaultsControllerCreateVaultsResponses, WEBHOOK_PREVIOUS_SECRET_EXPIRES_AT_HEADER, WEBHOOK_PREVIOUS_SECRET_HEADER, WEBHOOK_SECRET_HEADER, type WebhooksControllerCreateData, type WebhooksControllerCreateErrors, type WebhooksControllerCreateResponse, type WebhooksControllerCreateResponses, type WebhooksControllerDeleteData, type WebhooksControllerDeleteErrors, type WebhooksControllerDeleteResponse, type WebhooksControllerDeleteResponses, type WebhooksControllerGetData, type WebhooksControllerGetErrors, type WebhooksControllerGetManyData, type WebhooksControllerGetManyErrors, type WebhooksControllerGetManyResponse, type WebhooksControllerGetManyResponses, type WebhooksControllerGetResponse, type WebhooksControllerGetResponses, type WebhooksControllerGetStatusData, type WebhooksControllerGetStatusErrors, type WebhooksControllerGetStatusResponse, type WebhooksControllerGetStatusResponses, type WebhooksControllerRegenerateSecretData, type WebhooksControllerRegenerateSecretErrors, type WebhooksControllerRegenerateSecretResponse, type WebhooksControllerRegenerateSecretResponses, type WebhooksControllerTestData, type WebhooksControllerTestErrors, type WebhooksControllerTestResponse, type WebhooksControllerTestResponses, type WebhooksControllerUpdateData, type WebhooksControllerUpdateErrors, type WebhooksControllerUpdateResponse, type WebhooksControllerUpdateResponses, type ZoneResponseDto, type ZonesControllerCreateZoneData, type ZonesControllerCreateZoneErrors, type ZonesControllerCreateZoneResponse, type ZonesControllerCreateZoneResponses, type ZonesControllerDeleteZoneData, type ZonesControllerDeleteZoneErrors, type ZonesControllerDeleteZoneResponse, type ZonesControllerDeleteZoneResponses, type ZonesControllerUpdateZoneData, type ZonesControllerUpdateZoneErrors, type ZonesControllerUpdateZoneResponse, type ZonesControllerUpdateZoneResponses, alchemyControllerHandleWebhook, apiControllerGetError, apiControllerGetHello, apiTokenControllerCreateToken, apiTokenControllerDeleteToken, apiTokenControllerGetToken, apiTokenControllerUpdateToken, buildClientParams, conditionsControllerGetSunAltitudeTimeLimits, contractsControllerCreateContract, contractsControllerDeleteContract, contractsControllerGetAllContracts, contractsControllerGetContract, contractsControllerUpdateContract, createClient, createConfig, dlqRedriverControllerRedriveDlq, eventProcessorFlightReviewsSyncControllerResyncFlightReviews, eventProcessorMissionsSyncControllerResyncMissions, flightPlansControllerCreate, flightPlansControllerGet, flightPlansControllerGetMany, flightReviewsControllerGetFlightReview, flightReviewsControllerGetFlightReviews, flightsControllerCreatePresignedUrls, flightsControllerGenerateStorageKey, flightsControllerGetFlight, flightsControllerValidateFlight, formDataBodySerializer, inboundWebhookConfigsControllerCreate, inboundWebhookConfigsControllerDelete, inboundWebhookConfigsControllerGet, inboundWebhookConfigsControllerGetMany, inboundWebhookConfigsControllerUpdate, jsonBodySerializer, keysControllerGetProvenanceCryptoKey, mergeHeaders, missionsControllerCreateMissions, missionsControllerGetMission, missionsControllerGetMissions, missionsControllerRepriceMissions, missionsControllerUpdateMissions, parseWebhookEvent, protocolTriggersApiControllerTriggerMissionClose, protocolTriggersApiControllerTriggerPayout, quotesControllerCreateQuote, quotesControllerGetQuote, schemaControllerGetEventSchema, urlSearchParamsBodySerializer, vaultsControllerCreateVaults, webhooksControllerCreate, webhooksControllerDelete, webhooksControllerGet, webhooksControllerGetMany, webhooksControllerGetStatus, webhooksControllerRegenerateSecret, webhooksControllerTest, webhooksControllerUpdate, zonesControllerCreateZone, zonesControllerDeleteZone, zonesControllerUpdateZone };
5175
+ export { type AlchemyControllerHandleWebhook0V1Data, type AlchemyControllerHandleWebhook0V1Responses, type AlchemyControllerHandleWebhook1Data, type AlchemyControllerHandleWebhook1Responses, type AlchemyWebhookBodyDto, type ApiControllerGetError0V1Data, type ApiControllerGetError0V1Responses, type ApiControllerGetError1Data, type ApiControllerGetError1Responses, type ApiControllerGetHello0V1Data, type ApiControllerGetHello0V1Responses, type ApiControllerGetHello1Data, type ApiControllerGetHello1Responses, type ApiTokenControllerCreateToken0V1Data, type ApiTokenControllerCreateToken0V1Errors, type ApiTokenControllerCreateToken0V1Response, type ApiTokenControllerCreateToken0V1Responses, type ApiTokenControllerCreateToken1Data, type ApiTokenControllerCreateToken1Errors, type ApiTokenControllerCreateToken1Response, type ApiTokenControllerCreateToken1Responses, type ApiTokenControllerDeleteToken0V1Data, type ApiTokenControllerDeleteToken0V1Errors, type ApiTokenControllerDeleteToken0V1Responses, type ApiTokenControllerDeleteToken1Data, type ApiTokenControllerDeleteToken1Errors, type ApiTokenControllerDeleteToken1Responses, type ApiTokenControllerGetToken0V1Data, type ApiTokenControllerGetToken0V1Errors, type ApiTokenControllerGetToken0V1Responses, type ApiTokenControllerGetToken1Data, type ApiTokenControllerGetToken1Errors, type ApiTokenControllerGetToken1Responses, type ApiTokenControllerUpdateToken0V1Data, type ApiTokenControllerUpdateToken0V1Errors, type ApiTokenControllerUpdateToken0V1Response, type ApiTokenControllerUpdateToken0V1Responses, type ApiTokenControllerUpdateToken1Data, type ApiTokenControllerUpdateToken1Errors, type ApiTokenControllerUpdateToken1Response, type ApiTokenControllerUpdateToken1Responses, type Auth, type Client, type ClientOptions$1 as ClientOptions, type ConditionsControllerGetSunAltitudeTimeLimits0V1Data, type ConditionsControllerGetSunAltitudeTimeLimits0V1Response, type ConditionsControllerGetSunAltitudeTimeLimits0V1Responses, type ConditionsControllerGetSunAltitudeTimeLimits1Data, type ConditionsControllerGetSunAltitudeTimeLimits1Response, type ConditionsControllerGetSunAltitudeTimeLimits1Responses, type Config, type ContractsControllerCreateContract0V1Data, type ContractsControllerCreateContract0V1Errors, type ContractsControllerCreateContract0V1Response, type ContractsControllerCreateContract0V1Responses, type ContractsControllerCreateContract1Data, type ContractsControllerCreateContract1Errors, type ContractsControllerCreateContract1Response, type ContractsControllerCreateContract1Responses, type ContractsControllerDeleteContract0V1Data, type ContractsControllerDeleteContract0V1Errors, type ContractsControllerDeleteContract0V1Response, type ContractsControllerDeleteContract0V1Responses, type ContractsControllerDeleteContract1Data, type ContractsControllerDeleteContract1Errors, type ContractsControllerDeleteContract1Response, type ContractsControllerDeleteContract1Responses, type ContractsControllerGetAllContracts0V1Data, type ContractsControllerGetAllContracts0V1Errors, type ContractsControllerGetAllContracts0V1Response, type ContractsControllerGetAllContracts0V1Responses, type ContractsControllerGetAllContracts1Data, type ContractsControllerGetAllContracts1Errors, type ContractsControllerGetAllContracts1Response, type ContractsControllerGetAllContracts1Responses, type ContractsControllerGetContract0V1Data, type ContractsControllerGetContract0V1Errors, type ContractsControllerGetContract0V1Response, type ContractsControllerGetContract0V1Responses, type ContractsControllerGetContract1Data, type ContractsControllerGetContract1Errors, type ContractsControllerGetContract1Response, type ContractsControllerGetContract1Responses, type ContractsControllerUpdateContract0V1Data, type ContractsControllerUpdateContract0V1Errors, type ContractsControllerUpdateContract0V1Response, type ContractsControllerUpdateContract0V1Responses, type ContractsControllerUpdateContract1Data, type ContractsControllerUpdateContract1Errors, type ContractsControllerUpdateContract1Response, type ContractsControllerUpdateContract1Responses, type CreateApiTokenRequestDto, type CreateApiTokenResponseDto, type CreateClientConfig, type CreateContractRequestDto, type CreateContractResponseDto, type CreateFileRequestDto, type CreateFileResponseDto, type CreateFlightPlanBody, type CreateFlightPlanResponse, type CreateInboundWebhookConfigBody, type CreateInboundWebhookConfigResponse, type CreateMissionRequestDto, type CreateMissionResponseDto, type CreateQuoteRequestDto, type CreateVaultsRequestDto, type CreateVaultsResponseDto, type CreateWebhookBody, type CreateWebhookResponse, type CreateZoneDto, type DeleteContractResponseDto, type DeleteInboundWebhookConfigResponse, type DeleteWebhookResponse, type DlqRedriverControllerRedriveDlq0V1Data, type DlqRedriverControllerRedriveDlq0V1Errors, type DlqRedriverControllerRedriveDlq0V1Response, type DlqRedriverControllerRedriveDlq0V1Responses, type DlqRedriverControllerRedriveDlq1Data, type DlqRedriverControllerRedriveDlq1Errors, type DlqRedriverControllerRedriveDlq1Response, type DlqRedriverControllerRedriveDlq1Responses, Event, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Data, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Errors, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Response, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Data, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Errors, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Response, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses, type EventProcessorMissionsSyncControllerResyncMissions0V1Data, type EventProcessorMissionsSyncControllerResyncMissions0V1Errors, type EventProcessorMissionsSyncControllerResyncMissions0V1Response, type EventProcessorMissionsSyncControllerResyncMissions0V1Responses, type EventProcessorMissionsSyncControllerResyncMissions1Data, type EventProcessorMissionsSyncControllerResyncMissions1Errors, type EventProcessorMissionsSyncControllerResyncMissions1Response, type EventProcessorMissionsSyncControllerResyncMissions1Responses, type FlightDto, type FlightPlansControllerCreate0V1Data, type FlightPlansControllerCreate0V1Errors, type FlightPlansControllerCreate0V1Response, type FlightPlansControllerCreate0V1Responses, type FlightPlansControllerCreate1Data, type FlightPlansControllerCreate1Errors, type FlightPlansControllerCreate1Response, type FlightPlansControllerCreate1Responses, type FlightPlansControllerGet0V1Data, type FlightPlansControllerGet0V1Errors, type FlightPlansControllerGet0V1Response, type FlightPlansControllerGet0V1Responses, type FlightPlansControllerGet1Data, type FlightPlansControllerGet1Errors, type FlightPlansControllerGet1Response, type FlightPlansControllerGet1Responses, type FlightPlansControllerGetMany0V1Data, type FlightPlansControllerGetMany0V1Errors, type FlightPlansControllerGetMany0V1Response, type FlightPlansControllerGetMany0V1Responses, type FlightPlansControllerGetMany1Data, type FlightPlansControllerGetMany1Errors, type FlightPlansControllerGetMany1Response, type FlightPlansControllerGetMany1Responses, type FlightReviewedEvent, type FlightReviewsControllerGetFlightReview0V1Data, type FlightReviewsControllerGetFlightReview0V1Errors, type FlightReviewsControllerGetFlightReview0V1Response, type FlightReviewsControllerGetFlightReview0V1Responses, type FlightReviewsControllerGetFlightReview1Data, type FlightReviewsControllerGetFlightReview1Errors, type FlightReviewsControllerGetFlightReview1Response, type FlightReviewsControllerGetFlightReview1Responses, type FlightReviewsControllerGetFlightReviews0V1Data, type FlightReviewsControllerGetFlightReviews0V1Errors, type FlightReviewsControllerGetFlightReviews0V1Response, type FlightReviewsControllerGetFlightReviews0V1Responses, type FlightReviewsControllerGetFlightReviews1Data, type FlightReviewsControllerGetFlightReviews1Errors, type FlightReviewsControllerGetFlightReviews1Response, type FlightReviewsControllerGetFlightReviews1Responses, type FlightSubmittedEvent, type FlightsControllerCreatePresignedUrls0V1Data, type FlightsControllerCreatePresignedUrls0V1Errors, type FlightsControllerCreatePresignedUrls0V1Response, type FlightsControllerCreatePresignedUrls0V1Responses, type FlightsControllerCreatePresignedUrls1Data, type FlightsControllerCreatePresignedUrls1Errors, type FlightsControllerCreatePresignedUrls1Response, type FlightsControllerCreatePresignedUrls1Responses, type FlightsControllerGenerateStorageKey0V1Data, type FlightsControllerGenerateStorageKey0V1Errors, type FlightsControllerGenerateStorageKey0V1Response, type FlightsControllerGenerateStorageKey0V1Responses, type FlightsControllerGenerateStorageKey1Data, type FlightsControllerGenerateStorageKey1Errors, type FlightsControllerGenerateStorageKey1Response, type FlightsControllerGenerateStorageKey1Responses, type FlightsControllerGetFlight0V1Data, type FlightsControllerGetFlight0V1Errors, type FlightsControllerGetFlight0V1Response, type FlightsControllerGetFlight0V1Responses, type FlightsControllerGetFlight1Data, type FlightsControllerGetFlight1Errors, type FlightsControllerGetFlight1Response, type FlightsControllerGetFlight1Responses, type FlightsControllerValidateFlight0V1Data, type FlightsControllerValidateFlight0V1Errors, type FlightsControllerValidateFlight0V1Response, type FlightsControllerValidateFlight0V1Responses, type FlightsControllerValidateFlight1Data, type FlightsControllerValidateFlight1Errors, type FlightsControllerValidateFlight1Response, type FlightsControllerValidateFlight1Responses, type GetContractResponseDto, type GetContractsResponseDto, type GetFlightPlanResponse, type GetFlightPlansResponse, type GetFlightReviewResponseDto, type GetFlightReviewsResponseDto, type GetInboundWebhookConfigResponse, type GetInboundWebhookConfigsResponse, type GetMissionResponseDto, type GetMissionsResponseDto, type GetProvenanceCryptoKeyResponse, type GetTimeLimitsForSunAltitudeResponse, type GetWebhookResponse, type GetWebhookStatusResponse, type GetWebhooksResponse, type InboundWebhookConfigsControllerCreate0V1Data, type InboundWebhookConfigsControllerCreate0V1Errors, type InboundWebhookConfigsControllerCreate0V1Response, type InboundWebhookConfigsControllerCreate0V1Responses, type InboundWebhookConfigsControllerCreate1Data, type InboundWebhookConfigsControllerCreate1Errors, type InboundWebhookConfigsControllerCreate1Response, type InboundWebhookConfigsControllerCreate1Responses, type InboundWebhookConfigsControllerDelete0V1Data, type InboundWebhookConfigsControllerDelete0V1Errors, type InboundWebhookConfigsControllerDelete0V1Response, type InboundWebhookConfigsControllerDelete0V1Responses, type InboundWebhookConfigsControllerDelete1Data, type InboundWebhookConfigsControllerDelete1Errors, type InboundWebhookConfigsControllerDelete1Response, type InboundWebhookConfigsControllerDelete1Responses, type InboundWebhookConfigsControllerGet0V1Data, type InboundWebhookConfigsControllerGet0V1Errors, type InboundWebhookConfigsControllerGet0V1Response, type InboundWebhookConfigsControllerGet0V1Responses, type InboundWebhookConfigsControllerGet1Data, type InboundWebhookConfigsControllerGet1Errors, type InboundWebhookConfigsControllerGet1Response, type InboundWebhookConfigsControllerGet1Responses, type InboundWebhookConfigsControllerGetMany0V1Data, type InboundWebhookConfigsControllerGetMany0V1Errors, type InboundWebhookConfigsControllerGetMany0V1Response, type InboundWebhookConfigsControllerGetMany0V1Responses, type InboundWebhookConfigsControllerGetMany1Data, type InboundWebhookConfigsControllerGetMany1Errors, type InboundWebhookConfigsControllerGetMany1Response, type InboundWebhookConfigsControllerGetMany1Responses, type InboundWebhookConfigsControllerUpdate0V1Data, type InboundWebhookConfigsControllerUpdate0V1Errors, type InboundWebhookConfigsControllerUpdate0V1Response, type InboundWebhookConfigsControllerUpdate0V1Responses, type InboundWebhookConfigsControllerUpdate1Data, type InboundWebhookConfigsControllerUpdate1Errors, type InboundWebhookConfigsControllerUpdate1Response, type InboundWebhookConfigsControllerUpdate1Responses, type KeysControllerGetProvenanceCryptoKey0V1Data, type KeysControllerGetProvenanceCryptoKey0V1Response, type KeysControllerGetProvenanceCryptoKey0V1Responses, type KeysControllerGetProvenanceCryptoKey1Data, type KeysControllerGetProvenanceCryptoKey1Response, type KeysControllerGetProvenanceCryptoKey1Responses, type MissionCreatedEvent, type MissionPaidEvent, type MissionUpdatedEvent, type MissionsControllerCreateMissions0V1Data, type MissionsControllerCreateMissions0V1Errors, type MissionsControllerCreateMissions0V1Response, type MissionsControllerCreateMissions0V1Responses, type MissionsControllerCreateMissions1Data, type MissionsControllerCreateMissions1Errors, type MissionsControllerCreateMissions1Response, type MissionsControllerCreateMissions1Responses, type MissionsControllerGetMission0V1Data, type MissionsControllerGetMission0V1Errors, type MissionsControllerGetMission0V1Response, type MissionsControllerGetMission0V1Responses, type MissionsControllerGetMission1Data, type MissionsControllerGetMission1Errors, type MissionsControllerGetMission1Response, type MissionsControllerGetMission1Responses, type MissionsControllerGetMissions0V1Data, type MissionsControllerGetMissions0V1Errors, type MissionsControllerGetMissions0V1Response, type MissionsControllerGetMissions0V1Responses, type MissionsControllerGetMissions1Data, type MissionsControllerGetMissions1Errors, type MissionsControllerGetMissions1Response, type MissionsControllerGetMissions1Responses, type MissionsControllerRepriceMissions0V1Data, type MissionsControllerRepriceMissions0V1Errors, type MissionsControllerRepriceMissions0V1Response, type MissionsControllerRepriceMissions0V1Responses, type MissionsControllerRepriceMissions1Data, type MissionsControllerRepriceMissions1Errors, type MissionsControllerRepriceMissions1Response, type MissionsControllerRepriceMissions1Responses, type MissionsControllerUpdateMissions0V1Data, type MissionsControllerUpdateMissions0V1Errors, type MissionsControllerUpdateMissions0V1Response, type MissionsControllerUpdateMissions0V1Responses, type MissionsControllerUpdateMissions1Data, type MissionsControllerUpdateMissions1Errors, type MissionsControllerUpdateMissions1Response, type MissionsControllerUpdateMissions1Responses, type Options, type OptionsLegacyParser, type ProtocolTriggersApiControllerTriggerMissionClose0V1Data, type ProtocolTriggersApiControllerTriggerMissionClose0V1Errors, type ProtocolTriggersApiControllerTriggerMissionClose0V1Responses, type ProtocolTriggersApiControllerTriggerMissionClose1Data, type ProtocolTriggersApiControllerTriggerMissionClose1Errors, type ProtocolTriggersApiControllerTriggerMissionClose1Responses, type ProtocolTriggersApiControllerTriggerPayout0V1Data, type ProtocolTriggersApiControllerTriggerPayout0V1Errors, type ProtocolTriggersApiControllerTriggerPayout0V1Responses, type ProtocolTriggersApiControllerTriggerPayout1Data, type ProtocolTriggersApiControllerTriggerPayout1Errors, type ProtocolTriggersApiControllerTriggerPayout1Responses, type QuerySerializerOptions, type QuotesControllerCreateQuote0V1Data, type QuotesControllerCreateQuote0V1Errors, type QuotesControllerCreateQuote0V1Responses, type QuotesControllerCreateQuote1Data, type QuotesControllerCreateQuote1Errors, type QuotesControllerCreateQuote1Responses, type QuotesControllerGetQuote0V1Data, type QuotesControllerGetQuote0V1Errors, type QuotesControllerGetQuote0V1Responses, type QuotesControllerGetQuote1Data, type QuotesControllerGetQuote1Errors, type QuotesControllerGetQuote1Responses, type RedriveDlqRequestDto, type RedriveDlqResponseDto, type RegenerateWebhookSecretBody, type RegenerateWebhookSecretResponseDto, type RepriceMissionsRequestDto, type RepriceMissionsResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type SchemaControllerGetEventSchema0V1Data, type SchemaControllerGetEventSchema0V1Responses, type SchemaControllerGetEventSchema1Data, type SchemaControllerGetEventSchema1Responses, type SyncEventProcessorFlightReviewsRequestDto, type SyncEventProcessorFlightReviewsResponseDto, type SyncEventProcessorMissionsRequestDto, type SyncEventProcessorMissionsResponseDto, type TDataShape, type TestEvent, type TestWebhookResponse, type TriggerMissionCloseRequestDto, type TriggerPayoutRequestDto, type UpdateApiTokenRequestDto, type UpdateApiTokenResponseDto, type UpdateContractRequestDto, type UpdateContractResponseDto, type UpdateInboundWebhookConfigBody, type UpdateInboundWebhookConfigResponse, type UpdateMissionsRequestDto, type UpdateMissionsResponseDto, type UpdateWebhookBody, type UpdateWebhookResponse, type UpdateZoneDto, type ValidateFlightRequestDto, type ValidateFlightResponseDto, type VaultsControllerCreateVaults0V1Data, type VaultsControllerCreateVaults0V1Errors, type VaultsControllerCreateVaults0V1Response, type VaultsControllerCreateVaults0V1Responses, type VaultsControllerCreateVaults1Data, type VaultsControllerCreateVaults1Errors, type VaultsControllerCreateVaults1Response, type VaultsControllerCreateVaults1Responses, WEBHOOK_PREVIOUS_SECRET_EXPIRES_AT_HEADER, WEBHOOK_PREVIOUS_SECRET_HEADER, WEBHOOK_SECRET_HEADER, type WebhooksControllerCreate0V1Data, type WebhooksControllerCreate0V1Errors, type WebhooksControllerCreate0V1Response, type WebhooksControllerCreate0V1Responses, type WebhooksControllerCreate1Data, type WebhooksControllerCreate1Errors, type WebhooksControllerCreate1Response, type WebhooksControllerCreate1Responses, type WebhooksControllerDelete0V1Data, type WebhooksControllerDelete0V1Errors, type WebhooksControllerDelete0V1Response, type WebhooksControllerDelete0V1Responses, type WebhooksControllerDelete1Data, type WebhooksControllerDelete1Errors, type WebhooksControllerDelete1Response, type WebhooksControllerDelete1Responses, type WebhooksControllerGet0V1Data, type WebhooksControllerGet0V1Errors, type WebhooksControllerGet0V1Response, type WebhooksControllerGet0V1Responses, type WebhooksControllerGet1Data, type WebhooksControllerGet1Errors, type WebhooksControllerGet1Response, type WebhooksControllerGet1Responses, type WebhooksControllerGetMany0V1Data, type WebhooksControllerGetMany0V1Errors, type WebhooksControllerGetMany0V1Response, type WebhooksControllerGetMany0V1Responses, type WebhooksControllerGetMany1Data, type WebhooksControllerGetMany1Errors, type WebhooksControllerGetMany1Response, type WebhooksControllerGetMany1Responses, type WebhooksControllerGetStatus0V1Data, type WebhooksControllerGetStatus0V1Errors, type WebhooksControllerGetStatus0V1Response, type WebhooksControllerGetStatus0V1Responses, type WebhooksControllerGetStatus1Data, type WebhooksControllerGetStatus1Errors, type WebhooksControllerGetStatus1Response, type WebhooksControllerGetStatus1Responses, type WebhooksControllerRegenerateSecret0V1Data, type WebhooksControllerRegenerateSecret0V1Errors, type WebhooksControllerRegenerateSecret0V1Response, type WebhooksControllerRegenerateSecret0V1Responses, type WebhooksControllerRegenerateSecret1Data, type WebhooksControllerRegenerateSecret1Errors, type WebhooksControllerRegenerateSecret1Response, type WebhooksControllerRegenerateSecret1Responses, type WebhooksControllerTest0V1Data, type WebhooksControllerTest0V1Errors, type WebhooksControllerTest0V1Response, type WebhooksControllerTest0V1Responses, type WebhooksControllerTest1Data, type WebhooksControllerTest1Errors, type WebhooksControllerTest1Response, type WebhooksControllerTest1Responses, type WebhooksControllerUpdate0V1Data, type WebhooksControllerUpdate0V1Errors, type WebhooksControllerUpdate0V1Response, type WebhooksControllerUpdate0V1Responses, type WebhooksControllerUpdate1Data, type WebhooksControllerUpdate1Errors, type WebhooksControllerUpdate1Response, type WebhooksControllerUpdate1Responses, type ZoneResponseDto, type ZonesControllerCreateZone0V1Data, type ZonesControllerCreateZone0V1Errors, type ZonesControllerCreateZone0V1Response, type ZonesControllerCreateZone0V1Responses, type ZonesControllerCreateZone1Data, type ZonesControllerCreateZone1Errors, type ZonesControllerCreateZone1Response, type ZonesControllerCreateZone1Responses, type ZonesControllerDeleteZone0V1Data, type ZonesControllerDeleteZone0V1Errors, type ZonesControllerDeleteZone0V1Response, type ZonesControllerDeleteZone0V1Responses, type ZonesControllerDeleteZone1Data, type ZonesControllerDeleteZone1Errors, type ZonesControllerDeleteZone1Response, type ZonesControllerDeleteZone1Responses, type ZonesControllerUpdateZone0V1Data, type ZonesControllerUpdateZone0V1Errors, type ZonesControllerUpdateZone0V1Response, type ZonesControllerUpdateZone0V1Responses, type ZonesControllerUpdateZone1Data, type ZonesControllerUpdateZone1Errors, type ZonesControllerUpdateZone1Response, type ZonesControllerUpdateZone1Responses, alchemyControllerHandleWebhook0V1, alchemyControllerHandleWebhook1, apiControllerGetError0V1, apiControllerGetError1, apiControllerGetHello0V1, apiControllerGetHello1, apiTokenControllerCreateToken0V1, apiTokenControllerCreateToken1, apiTokenControllerDeleteToken0V1, apiTokenControllerDeleteToken1, apiTokenControllerGetToken0V1, apiTokenControllerGetToken1, apiTokenControllerUpdateToken0V1, apiTokenControllerUpdateToken1, buildClientParams, conditionsControllerGetSunAltitudeTimeLimits0V1, conditionsControllerGetSunAltitudeTimeLimits1, contractsControllerCreateContract0V1, contractsControllerCreateContract1, contractsControllerDeleteContract0V1, contractsControllerDeleteContract1, contractsControllerGetAllContracts0V1, contractsControllerGetAllContracts1, contractsControllerGetContract0V1, contractsControllerGetContract1, contractsControllerUpdateContract0V1, contractsControllerUpdateContract1, createClient, createConfig, dlqRedriverControllerRedriveDlq0V1, dlqRedriverControllerRedriveDlq1, eventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1, eventProcessorFlightReviewsSyncControllerResyncFlightReviews1, eventProcessorMissionsSyncControllerResyncMissions0V1, eventProcessorMissionsSyncControllerResyncMissions1, flightPlansControllerCreate0V1, flightPlansControllerCreate1, flightPlansControllerGet0V1, flightPlansControllerGet1, flightPlansControllerGetMany0V1, flightPlansControllerGetMany1, flightReviewsControllerGetFlightReview0V1, flightReviewsControllerGetFlightReview1, flightReviewsControllerGetFlightReviews0V1, flightReviewsControllerGetFlightReviews1, flightsControllerCreatePresignedUrls0V1, flightsControllerCreatePresignedUrls1, flightsControllerGenerateStorageKey0V1, flightsControllerGenerateStorageKey1, flightsControllerGetFlight0V1, flightsControllerGetFlight1, flightsControllerValidateFlight0V1, flightsControllerValidateFlight1, formDataBodySerializer, inboundWebhookConfigsControllerCreate0V1, inboundWebhookConfigsControllerCreate1, inboundWebhookConfigsControllerDelete0V1, inboundWebhookConfigsControllerDelete1, inboundWebhookConfigsControllerGet0V1, inboundWebhookConfigsControllerGet1, inboundWebhookConfigsControllerGetMany0V1, inboundWebhookConfigsControllerGetMany1, inboundWebhookConfigsControllerUpdate0V1, inboundWebhookConfigsControllerUpdate1, jsonBodySerializer, keysControllerGetProvenanceCryptoKey0V1, keysControllerGetProvenanceCryptoKey1, mergeHeaders, missionsControllerCreateMissions0V1, missionsControllerCreateMissions1, missionsControllerGetMission0V1, missionsControllerGetMission1, missionsControllerGetMissions0V1, missionsControllerGetMissions1, missionsControllerRepriceMissions0V1, missionsControllerRepriceMissions1, missionsControllerUpdateMissions0V1, missionsControllerUpdateMissions1, parseWebhookEvent, protocolTriggersApiControllerTriggerMissionClose0V1, protocolTriggersApiControllerTriggerMissionClose1, protocolTriggersApiControllerTriggerPayout0V1, protocolTriggersApiControllerTriggerPayout1, quotesControllerCreateQuote0V1, quotesControllerCreateQuote1, quotesControllerGetQuote0V1, quotesControllerGetQuote1, schemaControllerGetEventSchema0V1, schemaControllerGetEventSchema1, urlSearchParamsBodySerializer, vaultsControllerCreateVaults0V1, vaultsControllerCreateVaults1, webhooksControllerCreate0V1, webhooksControllerCreate1, webhooksControllerDelete0V1, webhooksControllerDelete1, webhooksControllerGet0V1, webhooksControllerGet1, webhooksControllerGetMany0V1, webhooksControllerGetMany1, webhooksControllerGetStatus0V1, webhooksControllerGetStatus1, webhooksControllerRegenerateSecret0V1, webhooksControllerRegenerateSecret1, webhooksControllerTest0V1, webhooksControllerTest1, webhooksControllerUpdate0V1, webhooksControllerUpdate1, zonesControllerCreateZone0V1, zonesControllerCreateZone1, zonesControllerDeleteZone0V1, zonesControllerDeleteZone1, zonesControllerUpdateZone0V1, zonesControllerUpdateZone1 };