@layer-drone/protocol 0.7.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/README.md +1 -1
- package/dist/index.d.mts +1137 -271
- package/dist/index.d.ts +1137 -271
- package/dist/index.js +1328 -385
- package/dist/index.mjs +1222 -333
- package/package.json +3 -3
- package/src/client/sdk.gen.ts +2231 -584
- package/src/client/transformers.gen.ts +269 -77
- package/src/client/types.gen.ts +1541 -359
package/src/client/types.gen.ts
CHANGED
|
@@ -21,6 +21,7 @@ export type CreateApiTokenResponseDto = {
|
|
|
21
21
|
| "manageZones"
|
|
22
22
|
| "manageProposals"
|
|
23
23
|
| "approveProposals"
|
|
24
|
+
| "manageProtocolTriggers"
|
|
24
25
|
| "all"
|
|
25
26
|
>;
|
|
26
27
|
};
|
|
@@ -42,6 +43,7 @@ export type CreateApiTokenRequestDto = {
|
|
|
42
43
|
| "manageZones"
|
|
43
44
|
| "manageProposals"
|
|
44
45
|
| "approveProposals"
|
|
46
|
+
| "manageProtocolTriggers"
|
|
45
47
|
| "all"
|
|
46
48
|
>;
|
|
47
49
|
orgId: number;
|
|
@@ -64,6 +66,7 @@ export type UpdateApiTokenRequestDto = {
|
|
|
64
66
|
| "manageZones"
|
|
65
67
|
| "manageProposals"
|
|
66
68
|
| "approveProposals"
|
|
69
|
+
| "manageProtocolTriggers"
|
|
67
70
|
| "all"
|
|
68
71
|
>;
|
|
69
72
|
};
|
|
@@ -89,6 +92,7 @@ export type UpdateApiTokenResponseDto = {
|
|
|
89
92
|
| "manageZones"
|
|
90
93
|
| "manageProposals"
|
|
91
94
|
| "approveProposals"
|
|
95
|
+
| "manageProtocolTriggers"
|
|
92
96
|
| "all"
|
|
93
97
|
>;
|
|
94
98
|
};
|
|
@@ -613,14 +617,14 @@ export type GetMissionResponseDto = {
|
|
|
613
617
|
chainId: number;
|
|
614
618
|
createdAt: Date;
|
|
615
619
|
updatedAt: Date;
|
|
616
|
-
payout
|
|
620
|
+
payout?: {
|
|
617
621
|
id: string;
|
|
618
622
|
recipient: string;
|
|
619
623
|
amount: string;
|
|
620
624
|
flightReviewId: string;
|
|
621
625
|
createdAt: Date;
|
|
622
626
|
};
|
|
623
|
-
vault
|
|
627
|
+
vault?: {
|
|
624
628
|
id: string;
|
|
625
629
|
amount: string;
|
|
626
630
|
collateralTokenAddress: string;
|
|
@@ -651,14 +655,14 @@ export type GetMissionsResponseDto = {
|
|
|
651
655
|
chainId: number;
|
|
652
656
|
createdAt: Date;
|
|
653
657
|
updatedAt: Date;
|
|
654
|
-
payout
|
|
658
|
+
payout?: {
|
|
655
659
|
id: string;
|
|
656
660
|
recipient: string;
|
|
657
661
|
amount: string;
|
|
658
662
|
flightReviewId: string;
|
|
659
663
|
createdAt: Date;
|
|
660
664
|
};
|
|
661
|
-
vault
|
|
665
|
+
vault?: {
|
|
662
666
|
id: string;
|
|
663
667
|
amount: string;
|
|
664
668
|
collateralTokenAddress: string;
|
|
@@ -751,12 +755,12 @@ export type RepriceMissionsResponseDto = {
|
|
|
751
755
|
};
|
|
752
756
|
};
|
|
753
757
|
|
|
754
|
-
export type
|
|
755
|
-
|
|
758
|
+
export type TriggerPayoutRequestDto = {
|
|
759
|
+
missionIds: Array<string>;
|
|
756
760
|
};
|
|
757
761
|
|
|
758
|
-
export type
|
|
759
|
-
|
|
762
|
+
export type TriggerMissionCloseRequestDto = {
|
|
763
|
+
missionIds: Array<string>;
|
|
760
764
|
};
|
|
761
765
|
|
|
762
766
|
export type CreateQuoteRequestDto = {
|
|
@@ -1070,49 +1074,148 @@ export type DeleteInboundWebhookConfigResponse = {
|
|
|
1070
1074
|
message: string;
|
|
1071
1075
|
};
|
|
1072
1076
|
|
|
1073
|
-
export type
|
|
1077
|
+
export type ApiControllerGetHello0V1Data = {
|
|
1078
|
+
body?: never;
|
|
1079
|
+
path?: never;
|
|
1080
|
+
query?: never;
|
|
1081
|
+
url: "/v1";
|
|
1082
|
+
};
|
|
1083
|
+
|
|
1084
|
+
export type ApiControllerGetHello0V1Responses = {
|
|
1085
|
+
200: unknown;
|
|
1086
|
+
};
|
|
1087
|
+
|
|
1088
|
+
export type ApiControllerGetHello1Data = {
|
|
1074
1089
|
body?: never;
|
|
1075
1090
|
path?: never;
|
|
1076
1091
|
query?: never;
|
|
1077
1092
|
url: "/";
|
|
1078
1093
|
};
|
|
1079
1094
|
|
|
1080
|
-
export type
|
|
1095
|
+
export type ApiControllerGetHello1Responses = {
|
|
1096
|
+
200: unknown;
|
|
1097
|
+
};
|
|
1098
|
+
|
|
1099
|
+
export type ApiControllerGetError0V1Data = {
|
|
1100
|
+
body?: never;
|
|
1101
|
+
path?: never;
|
|
1102
|
+
query?: never;
|
|
1103
|
+
url: "/v1/debug-sentry";
|
|
1104
|
+
};
|
|
1105
|
+
|
|
1106
|
+
export type ApiControllerGetError0V1Responses = {
|
|
1081
1107
|
200: unknown;
|
|
1082
1108
|
};
|
|
1083
1109
|
|
|
1084
|
-
export type
|
|
1110
|
+
export type ApiControllerGetError1Data = {
|
|
1085
1111
|
body?: never;
|
|
1086
1112
|
path?: never;
|
|
1087
1113
|
query?: never;
|
|
1088
1114
|
url: "/debug-sentry";
|
|
1089
1115
|
};
|
|
1090
1116
|
|
|
1091
|
-
export type
|
|
1117
|
+
export type ApiControllerGetError1Responses = {
|
|
1092
1118
|
200: unknown;
|
|
1093
1119
|
};
|
|
1094
1120
|
|
|
1095
|
-
export type
|
|
1121
|
+
export type ApiTokenControllerCreateToken0V1Data = {
|
|
1122
|
+
body: CreateApiTokenRequestDto;
|
|
1123
|
+
path?: never;
|
|
1124
|
+
query?: never;
|
|
1125
|
+
url: "/v1/tokens";
|
|
1126
|
+
};
|
|
1127
|
+
|
|
1128
|
+
export type ApiTokenControllerCreateToken0V1Errors = {
|
|
1129
|
+
401: unknown;
|
|
1130
|
+
403: unknown;
|
|
1131
|
+
};
|
|
1132
|
+
|
|
1133
|
+
export type ApiTokenControllerCreateToken0V1Responses = {
|
|
1134
|
+
200: CreateApiTokenResponseDto;
|
|
1135
|
+
201: unknown;
|
|
1136
|
+
};
|
|
1137
|
+
|
|
1138
|
+
export type ApiTokenControllerCreateToken0V1Response =
|
|
1139
|
+
ApiTokenControllerCreateToken0V1Responses[keyof ApiTokenControllerCreateToken0V1Responses];
|
|
1140
|
+
|
|
1141
|
+
export type ApiTokenControllerCreateToken1Data = {
|
|
1096
1142
|
body: CreateApiTokenRequestDto;
|
|
1097
1143
|
path?: never;
|
|
1098
1144
|
query?: never;
|
|
1099
1145
|
url: "/tokens";
|
|
1100
1146
|
};
|
|
1101
1147
|
|
|
1102
|
-
export type
|
|
1148
|
+
export type ApiTokenControllerCreateToken1Errors = {
|
|
1103
1149
|
401: unknown;
|
|
1104
1150
|
403: unknown;
|
|
1105
1151
|
};
|
|
1106
1152
|
|
|
1107
|
-
export type
|
|
1153
|
+
export type ApiTokenControllerCreateToken1Responses = {
|
|
1108
1154
|
200: CreateApiTokenResponseDto;
|
|
1109
1155
|
201: unknown;
|
|
1110
1156
|
};
|
|
1111
1157
|
|
|
1112
|
-
export type
|
|
1113
|
-
|
|
1158
|
+
export type ApiTokenControllerCreateToken1Response =
|
|
1159
|
+
ApiTokenControllerCreateToken1Responses[keyof ApiTokenControllerCreateToken1Responses];
|
|
1160
|
+
|
|
1161
|
+
export type ApiTokenControllerDeleteToken0V1Data = {
|
|
1162
|
+
body?: never;
|
|
1163
|
+
path: {
|
|
1164
|
+
id: string;
|
|
1165
|
+
};
|
|
1166
|
+
query?: never;
|
|
1167
|
+
url: "/v1/tokens/{id}";
|
|
1168
|
+
};
|
|
1169
|
+
|
|
1170
|
+
export type ApiTokenControllerDeleteToken0V1Errors = {
|
|
1171
|
+
401: unknown;
|
|
1172
|
+
403: unknown;
|
|
1173
|
+
};
|
|
1174
|
+
|
|
1175
|
+
export type ApiTokenControllerDeleteToken0V1Responses = {
|
|
1176
|
+
200: unknown;
|
|
1177
|
+
};
|
|
1178
|
+
|
|
1179
|
+
export type ApiTokenControllerGetToken0V1Data = {
|
|
1180
|
+
body?: never;
|
|
1181
|
+
path: {
|
|
1182
|
+
id: string;
|
|
1183
|
+
};
|
|
1184
|
+
query?: never;
|
|
1185
|
+
url: "/v1/tokens/{id}";
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
export type ApiTokenControllerGetToken0V1Errors = {
|
|
1189
|
+
401: unknown;
|
|
1190
|
+
403: unknown;
|
|
1191
|
+
};
|
|
1192
|
+
|
|
1193
|
+
export type ApiTokenControllerGetToken0V1Responses = {
|
|
1194
|
+
200: unknown;
|
|
1195
|
+
};
|
|
1196
|
+
|
|
1197
|
+
export type ApiTokenControllerUpdateToken0V1Data = {
|
|
1198
|
+
body: UpdateApiTokenRequestDto;
|
|
1199
|
+
path: {
|
|
1200
|
+
id: string;
|
|
1201
|
+
};
|
|
1202
|
+
query?: never;
|
|
1203
|
+
url: "/v1/tokens/{id}";
|
|
1204
|
+
};
|
|
1205
|
+
|
|
1206
|
+
export type ApiTokenControllerUpdateToken0V1Errors = {
|
|
1207
|
+
401: unknown;
|
|
1208
|
+
403: unknown;
|
|
1209
|
+
};
|
|
1210
|
+
|
|
1211
|
+
export type ApiTokenControllerUpdateToken0V1Responses = {
|
|
1212
|
+
200: UpdateApiTokenResponseDto;
|
|
1213
|
+
};
|
|
1214
|
+
|
|
1215
|
+
export type ApiTokenControllerUpdateToken0V1Response =
|
|
1216
|
+
ApiTokenControllerUpdateToken0V1Responses[keyof ApiTokenControllerUpdateToken0V1Responses];
|
|
1114
1217
|
|
|
1115
|
-
export type
|
|
1218
|
+
export type ApiTokenControllerDeleteToken1Data = {
|
|
1116
1219
|
body?: never;
|
|
1117
1220
|
path: {
|
|
1118
1221
|
id: string;
|
|
@@ -1121,16 +1224,16 @@ export type ApiTokenControllerDeleteTokenData = {
|
|
|
1121
1224
|
url: "/tokens/{id}";
|
|
1122
1225
|
};
|
|
1123
1226
|
|
|
1124
|
-
export type
|
|
1227
|
+
export type ApiTokenControllerDeleteToken1Errors = {
|
|
1125
1228
|
401: unknown;
|
|
1126
1229
|
403: unknown;
|
|
1127
1230
|
};
|
|
1128
1231
|
|
|
1129
|
-
export type
|
|
1232
|
+
export type ApiTokenControllerDeleteToken1Responses = {
|
|
1130
1233
|
200: unknown;
|
|
1131
1234
|
};
|
|
1132
1235
|
|
|
1133
|
-
export type
|
|
1236
|
+
export type ApiTokenControllerGetToken1Data = {
|
|
1134
1237
|
body?: never;
|
|
1135
1238
|
path: {
|
|
1136
1239
|
id: string;
|
|
@@ -1139,16 +1242,16 @@ export type ApiTokenControllerGetTokenData = {
|
|
|
1139
1242
|
url: "/tokens/{id}";
|
|
1140
1243
|
};
|
|
1141
1244
|
|
|
1142
|
-
export type
|
|
1245
|
+
export type ApiTokenControllerGetToken1Errors = {
|
|
1143
1246
|
401: unknown;
|
|
1144
1247
|
403: unknown;
|
|
1145
1248
|
};
|
|
1146
1249
|
|
|
1147
|
-
export type
|
|
1250
|
+
export type ApiTokenControllerGetToken1Responses = {
|
|
1148
1251
|
200: unknown;
|
|
1149
1252
|
};
|
|
1150
1253
|
|
|
1151
|
-
export type
|
|
1254
|
+
export type ApiTokenControllerUpdateToken1Data = {
|
|
1152
1255
|
body: UpdateApiTokenRequestDto;
|
|
1153
1256
|
path: {
|
|
1154
1257
|
id: string;
|
|
@@ -1157,19 +1260,49 @@ export type ApiTokenControllerUpdateTokenData = {
|
|
|
1157
1260
|
url: "/tokens/{id}";
|
|
1158
1261
|
};
|
|
1159
1262
|
|
|
1160
|
-
export type
|
|
1263
|
+
export type ApiTokenControllerUpdateToken1Errors = {
|
|
1161
1264
|
401: unknown;
|
|
1162
1265
|
403: unknown;
|
|
1163
1266
|
};
|
|
1164
1267
|
|
|
1165
|
-
export type
|
|
1268
|
+
export type ApiTokenControllerUpdateToken1Responses = {
|
|
1166
1269
|
200: UpdateApiTokenResponseDto;
|
|
1167
1270
|
};
|
|
1168
1271
|
|
|
1169
|
-
export type
|
|
1170
|
-
|
|
1272
|
+
export type ApiTokenControllerUpdateToken1Response =
|
|
1273
|
+
ApiTokenControllerUpdateToken1Responses[keyof ApiTokenControllerUpdateToken1Responses];
|
|
1274
|
+
|
|
1275
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits0V1Data = {
|
|
1276
|
+
body?: never;
|
|
1277
|
+
path?: never;
|
|
1278
|
+
query: {
|
|
1279
|
+
/**
|
|
1280
|
+
* Latitude in degress (decimal number)
|
|
1281
|
+
*/
|
|
1282
|
+
lat: number;
|
|
1283
|
+
/**
|
|
1284
|
+
* Longitude in degress (decimal number)
|
|
1285
|
+
*/
|
|
1286
|
+
lon: number;
|
|
1287
|
+
/**
|
|
1288
|
+
* Local time in ISO time format with correct timezone YYYY-MM-DDTHH:MM:SS+hh:mm
|
|
1289
|
+
*/
|
|
1290
|
+
time: Date;
|
|
1291
|
+
};
|
|
1292
|
+
url: "/v1/conditions/sun-altitude";
|
|
1293
|
+
};
|
|
1294
|
+
|
|
1295
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits0V1Responses = {
|
|
1296
|
+
/**
|
|
1297
|
+
* Returns sun altitude time limits for given coordinates and time
|
|
1298
|
+
*/
|
|
1299
|
+
200: GetTimeLimitsForSunAltitudeResponse;
|
|
1300
|
+
};
|
|
1301
|
+
|
|
1302
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits0V1Response =
|
|
1303
|
+
ConditionsControllerGetSunAltitudeTimeLimits0V1Responses[keyof ConditionsControllerGetSunAltitudeTimeLimits0V1Responses];
|
|
1171
1304
|
|
|
1172
|
-
export type
|
|
1305
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits1Data = {
|
|
1173
1306
|
body?: never;
|
|
1174
1307
|
path?: never;
|
|
1175
1308
|
query: {
|
|
@@ -1189,46 +1322,98 @@ export type ConditionsControllerGetSunAltitudeTimeLimitsData = {
|
|
|
1189
1322
|
url: "/conditions/sun-altitude";
|
|
1190
1323
|
};
|
|
1191
1324
|
|
|
1192
|
-
export type
|
|
1325
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits1Responses = {
|
|
1193
1326
|
/**
|
|
1194
1327
|
* Returns sun altitude time limits for given coordinates and time
|
|
1195
1328
|
*/
|
|
1196
1329
|
200: GetTimeLimitsForSunAltitudeResponse;
|
|
1197
1330
|
};
|
|
1198
1331
|
|
|
1199
|
-
export type
|
|
1200
|
-
|
|
1332
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits1Response =
|
|
1333
|
+
ConditionsControllerGetSunAltitudeTimeLimits1Responses[keyof ConditionsControllerGetSunAltitudeTimeLimits1Responses];
|
|
1334
|
+
|
|
1335
|
+
export type ContractsControllerGetAllContracts0V1Data = {
|
|
1336
|
+
body?: never;
|
|
1337
|
+
path?: never;
|
|
1338
|
+
query?: never;
|
|
1339
|
+
url: "/v1/contracts";
|
|
1340
|
+
};
|
|
1341
|
+
|
|
1342
|
+
export type ContractsControllerGetAllContracts0V1Errors = {
|
|
1343
|
+
401: unknown;
|
|
1344
|
+
403: unknown;
|
|
1345
|
+
};
|
|
1346
|
+
|
|
1347
|
+
export type ContractsControllerGetAllContracts0V1Responses = {
|
|
1348
|
+
/**
|
|
1349
|
+
* Contracts retrieved successfully
|
|
1350
|
+
*/
|
|
1351
|
+
200: GetContractsResponseDto;
|
|
1352
|
+
};
|
|
1353
|
+
|
|
1354
|
+
export type ContractsControllerGetAllContracts0V1Response =
|
|
1355
|
+
ContractsControllerGetAllContracts0V1Responses[keyof ContractsControllerGetAllContracts0V1Responses];
|
|
1356
|
+
|
|
1357
|
+
export type ContractsControllerCreateContract0V1Data = {
|
|
1358
|
+
body: CreateContractRequestDto;
|
|
1359
|
+
path?: never;
|
|
1360
|
+
query?: never;
|
|
1361
|
+
url: "/v1/contracts";
|
|
1362
|
+
};
|
|
1363
|
+
|
|
1364
|
+
export type ContractsControllerCreateContract0V1Errors = {
|
|
1365
|
+
/**
|
|
1366
|
+
* Validation failed
|
|
1367
|
+
*/
|
|
1368
|
+
400: unknown;
|
|
1369
|
+
401: unknown;
|
|
1370
|
+
403: unknown;
|
|
1371
|
+
/**
|
|
1372
|
+
* Contract with this address already exists
|
|
1373
|
+
*/
|
|
1374
|
+
409: unknown;
|
|
1375
|
+
};
|
|
1376
|
+
|
|
1377
|
+
export type ContractsControllerCreateContract0V1Responses = {
|
|
1378
|
+
/**
|
|
1379
|
+
* Contract created successfully
|
|
1380
|
+
*/
|
|
1381
|
+
201: CreateContractResponseDto;
|
|
1382
|
+
};
|
|
1383
|
+
|
|
1384
|
+
export type ContractsControllerCreateContract0V1Response =
|
|
1385
|
+
ContractsControllerCreateContract0V1Responses[keyof ContractsControllerCreateContract0V1Responses];
|
|
1201
1386
|
|
|
1202
|
-
export type
|
|
1387
|
+
export type ContractsControllerGetAllContracts1Data = {
|
|
1203
1388
|
body?: never;
|
|
1204
1389
|
path?: never;
|
|
1205
1390
|
query?: never;
|
|
1206
1391
|
url: "/contracts";
|
|
1207
1392
|
};
|
|
1208
1393
|
|
|
1209
|
-
export type
|
|
1394
|
+
export type ContractsControllerGetAllContracts1Errors = {
|
|
1210
1395
|
401: unknown;
|
|
1211
1396
|
403: unknown;
|
|
1212
1397
|
};
|
|
1213
1398
|
|
|
1214
|
-
export type
|
|
1399
|
+
export type ContractsControllerGetAllContracts1Responses = {
|
|
1215
1400
|
/**
|
|
1216
1401
|
* Contracts retrieved successfully
|
|
1217
1402
|
*/
|
|
1218
1403
|
200: GetContractsResponseDto;
|
|
1219
1404
|
};
|
|
1220
1405
|
|
|
1221
|
-
export type
|
|
1222
|
-
|
|
1406
|
+
export type ContractsControllerGetAllContracts1Response =
|
|
1407
|
+
ContractsControllerGetAllContracts1Responses[keyof ContractsControllerGetAllContracts1Responses];
|
|
1223
1408
|
|
|
1224
|
-
export type
|
|
1409
|
+
export type ContractsControllerCreateContract1Data = {
|
|
1225
1410
|
body: CreateContractRequestDto;
|
|
1226
1411
|
path?: never;
|
|
1227
1412
|
query?: never;
|
|
1228
1413
|
url: "/contracts";
|
|
1229
1414
|
};
|
|
1230
1415
|
|
|
1231
|
-
export type
|
|
1416
|
+
export type ContractsControllerCreateContract1Errors = {
|
|
1232
1417
|
/**
|
|
1233
1418
|
* Validation failed
|
|
1234
1419
|
*/
|
|
@@ -1241,26 +1426,26 @@ export type ContractsControllerCreateContractErrors = {
|
|
|
1241
1426
|
409: unknown;
|
|
1242
1427
|
};
|
|
1243
1428
|
|
|
1244
|
-
export type
|
|
1429
|
+
export type ContractsControllerCreateContract1Responses = {
|
|
1245
1430
|
/**
|
|
1246
1431
|
* Contract created successfully
|
|
1247
1432
|
*/
|
|
1248
1433
|
201: CreateContractResponseDto;
|
|
1249
1434
|
};
|
|
1250
1435
|
|
|
1251
|
-
export type
|
|
1252
|
-
|
|
1436
|
+
export type ContractsControllerCreateContract1Response =
|
|
1437
|
+
ContractsControllerCreateContract1Responses[keyof ContractsControllerCreateContract1Responses];
|
|
1253
1438
|
|
|
1254
|
-
export type
|
|
1439
|
+
export type ContractsControllerDeleteContract0V1Data = {
|
|
1255
1440
|
body?: never;
|
|
1256
1441
|
path: {
|
|
1257
1442
|
id: number;
|
|
1258
1443
|
};
|
|
1259
1444
|
query?: never;
|
|
1260
|
-
url: "/contracts/{id}";
|
|
1445
|
+
url: "/v1/contracts/{id}";
|
|
1261
1446
|
};
|
|
1262
1447
|
|
|
1263
|
-
export type
|
|
1448
|
+
export type ContractsControllerDeleteContract0V1Errors = {
|
|
1264
1449
|
401: unknown;
|
|
1265
1450
|
403: unknown;
|
|
1266
1451
|
/**
|
|
@@ -1269,26 +1454,26 @@ export type ContractsControllerDeleteContractErrors = {
|
|
|
1269
1454
|
404: unknown;
|
|
1270
1455
|
};
|
|
1271
1456
|
|
|
1272
|
-
export type
|
|
1457
|
+
export type ContractsControllerDeleteContract0V1Responses = {
|
|
1273
1458
|
/**
|
|
1274
1459
|
* Contract deleted successfully
|
|
1275
1460
|
*/
|
|
1276
1461
|
200: DeleteContractResponseDto;
|
|
1277
1462
|
};
|
|
1278
1463
|
|
|
1279
|
-
export type
|
|
1280
|
-
|
|
1464
|
+
export type ContractsControllerDeleteContract0V1Response =
|
|
1465
|
+
ContractsControllerDeleteContract0V1Responses[keyof ContractsControllerDeleteContract0V1Responses];
|
|
1281
1466
|
|
|
1282
|
-
export type
|
|
1467
|
+
export type ContractsControllerGetContract0V1Data = {
|
|
1283
1468
|
body?: never;
|
|
1284
1469
|
path: {
|
|
1285
1470
|
id: number;
|
|
1286
1471
|
};
|
|
1287
1472
|
query?: never;
|
|
1288
|
-
url: "/contracts/{id}";
|
|
1473
|
+
url: "/v1/contracts/{id}";
|
|
1289
1474
|
};
|
|
1290
1475
|
|
|
1291
|
-
export type
|
|
1476
|
+
export type ContractsControllerGetContract0V1Errors = {
|
|
1292
1477
|
401: unknown;
|
|
1293
1478
|
403: unknown;
|
|
1294
1479
|
/**
|
|
@@ -1297,26 +1482,26 @@ export type ContractsControllerGetContractErrors = {
|
|
|
1297
1482
|
404: unknown;
|
|
1298
1483
|
};
|
|
1299
1484
|
|
|
1300
|
-
export type
|
|
1485
|
+
export type ContractsControllerGetContract0V1Responses = {
|
|
1301
1486
|
/**
|
|
1302
1487
|
* Contract retrieved successfully
|
|
1303
1488
|
*/
|
|
1304
1489
|
200: GetContractResponseDto;
|
|
1305
1490
|
};
|
|
1306
1491
|
|
|
1307
|
-
export type
|
|
1308
|
-
|
|
1492
|
+
export type ContractsControllerGetContract0V1Response =
|
|
1493
|
+
ContractsControllerGetContract0V1Responses[keyof ContractsControllerGetContract0V1Responses];
|
|
1309
1494
|
|
|
1310
|
-
export type
|
|
1495
|
+
export type ContractsControllerUpdateContract0V1Data = {
|
|
1311
1496
|
body: UpdateContractRequestDto;
|
|
1312
1497
|
path: {
|
|
1313
1498
|
id: number;
|
|
1314
1499
|
};
|
|
1315
1500
|
query?: never;
|
|
1316
|
-
url: "/contracts/{id}";
|
|
1501
|
+
url: "/v1/contracts/{id}";
|
|
1317
1502
|
};
|
|
1318
1503
|
|
|
1319
|
-
export type
|
|
1504
|
+
export type ContractsControllerUpdateContract0V1Errors = {
|
|
1320
1505
|
401: unknown;
|
|
1321
1506
|
403: unknown;
|
|
1322
1507
|
/**
|
|
@@ -1329,179 +1514,450 @@ export type ContractsControllerUpdateContractErrors = {
|
|
|
1329
1514
|
409: unknown;
|
|
1330
1515
|
};
|
|
1331
1516
|
|
|
1332
|
-
export type
|
|
1517
|
+
export type ContractsControllerUpdateContract0V1Responses = {
|
|
1333
1518
|
/**
|
|
1334
1519
|
* Contract updated successfully
|
|
1335
1520
|
*/
|
|
1336
1521
|
200: UpdateContractResponseDto;
|
|
1337
1522
|
};
|
|
1338
1523
|
|
|
1339
|
-
export type
|
|
1340
|
-
|
|
1524
|
+
export type ContractsControllerUpdateContract0V1Response =
|
|
1525
|
+
ContractsControllerUpdateContract0V1Responses[keyof ContractsControllerUpdateContract0V1Responses];
|
|
1341
1526
|
|
|
1342
|
-
export type
|
|
1343
|
-
body
|
|
1344
|
-
path
|
|
1527
|
+
export type ContractsControllerDeleteContract1Data = {
|
|
1528
|
+
body?: never;
|
|
1529
|
+
path: {
|
|
1530
|
+
id: number;
|
|
1531
|
+
};
|
|
1345
1532
|
query?: never;
|
|
1346
|
-
url: "/
|
|
1533
|
+
url: "/contracts/{id}";
|
|
1347
1534
|
};
|
|
1348
1535
|
|
|
1349
|
-
export type
|
|
1350
|
-
/**
|
|
1351
|
-
* Invalid request parameters
|
|
1352
|
-
*/
|
|
1353
|
-
400: unknown;
|
|
1536
|
+
export type ContractsControllerDeleteContract1Errors = {
|
|
1354
1537
|
401: unknown;
|
|
1355
1538
|
403: unknown;
|
|
1356
1539
|
/**
|
|
1357
|
-
*
|
|
1540
|
+
* Contract not found
|
|
1358
1541
|
*/
|
|
1359
|
-
|
|
1542
|
+
404: unknown;
|
|
1360
1543
|
};
|
|
1361
1544
|
|
|
1362
|
-
export type
|
|
1545
|
+
export type ContractsControllerDeleteContract1Responses = {
|
|
1363
1546
|
/**
|
|
1364
|
-
*
|
|
1547
|
+
* Contract deleted successfully
|
|
1365
1548
|
*/
|
|
1366
|
-
200:
|
|
1549
|
+
200: DeleteContractResponseDto;
|
|
1367
1550
|
};
|
|
1368
1551
|
|
|
1369
|
-
export type
|
|
1370
|
-
|
|
1552
|
+
export type ContractsControllerDeleteContract1Response =
|
|
1553
|
+
ContractsControllerDeleteContract1Responses[keyof ContractsControllerDeleteContract1Responses];
|
|
1371
1554
|
|
|
1372
|
-
export type
|
|
1555
|
+
export type ContractsControllerGetContract1Data = {
|
|
1373
1556
|
body?: never;
|
|
1374
|
-
path
|
|
1375
|
-
|
|
1376
|
-
missionId: string | number | bigint;
|
|
1377
|
-
pilotAddress: string;
|
|
1378
|
-
flightTimestamp?: string;
|
|
1557
|
+
path: {
|
|
1558
|
+
id: number;
|
|
1379
1559
|
};
|
|
1380
|
-
|
|
1560
|
+
query?: never;
|
|
1561
|
+
url: "/contracts/{id}";
|
|
1381
1562
|
};
|
|
1382
1563
|
|
|
1383
|
-
export type
|
|
1564
|
+
export type ContractsControllerGetContract1Errors = {
|
|
1384
1565
|
401: unknown;
|
|
1385
1566
|
403: unknown;
|
|
1567
|
+
/**
|
|
1568
|
+
* Contract not found
|
|
1569
|
+
*/
|
|
1570
|
+
404: unknown;
|
|
1386
1571
|
};
|
|
1387
1572
|
|
|
1388
|
-
export type
|
|
1573
|
+
export type ContractsControllerGetContract1Responses = {
|
|
1389
1574
|
/**
|
|
1390
|
-
*
|
|
1575
|
+
* Contract retrieved successfully
|
|
1391
1576
|
*/
|
|
1392
|
-
200:
|
|
1577
|
+
200: GetContractResponseDto;
|
|
1393
1578
|
};
|
|
1394
1579
|
|
|
1395
|
-
export type
|
|
1396
|
-
|
|
1580
|
+
export type ContractsControllerGetContract1Response =
|
|
1581
|
+
ContractsControllerGetContract1Responses[keyof ContractsControllerGetContract1Responses];
|
|
1397
1582
|
|
|
1398
|
-
export type
|
|
1399
|
-
body
|
|
1583
|
+
export type ContractsControllerUpdateContract1Data = {
|
|
1584
|
+
body: UpdateContractRequestDto;
|
|
1400
1585
|
path: {
|
|
1401
|
-
|
|
1586
|
+
id: number;
|
|
1402
1587
|
};
|
|
1403
1588
|
query?: never;
|
|
1404
|
-
url: "/
|
|
1589
|
+
url: "/contracts/{id}";
|
|
1405
1590
|
};
|
|
1406
1591
|
|
|
1407
|
-
export type
|
|
1592
|
+
export type ContractsControllerUpdateContract1Errors = {
|
|
1408
1593
|
401: unknown;
|
|
1409
1594
|
403: unknown;
|
|
1595
|
+
/**
|
|
1596
|
+
* Contract not found
|
|
1597
|
+
*/
|
|
1598
|
+
404: unknown;
|
|
1599
|
+
/**
|
|
1600
|
+
* Contract with this address already exists
|
|
1601
|
+
*/
|
|
1602
|
+
409: unknown;
|
|
1410
1603
|
};
|
|
1411
1604
|
|
|
1412
|
-
export type
|
|
1605
|
+
export type ContractsControllerUpdateContract1Responses = {
|
|
1413
1606
|
/**
|
|
1414
|
-
*
|
|
1607
|
+
* Contract updated successfully
|
|
1415
1608
|
*/
|
|
1416
|
-
200:
|
|
1609
|
+
200: UpdateContractResponseDto;
|
|
1417
1610
|
};
|
|
1418
1611
|
|
|
1419
|
-
export type
|
|
1420
|
-
|
|
1612
|
+
export type ContractsControllerUpdateContract1Response =
|
|
1613
|
+
ContractsControllerUpdateContract1Responses[keyof ContractsControllerUpdateContract1Responses];
|
|
1421
1614
|
|
|
1422
|
-
export type
|
|
1423
|
-
body:
|
|
1615
|
+
export type DlqRedriverControllerRedriveDlq0V1Data = {
|
|
1616
|
+
body: RedriveDlqRequestDto;
|
|
1424
1617
|
path?: never;
|
|
1425
1618
|
query?: never;
|
|
1426
|
-
url: "/
|
|
1619
|
+
url: "/v1/dlq-redriver/redrive";
|
|
1427
1620
|
};
|
|
1428
1621
|
|
|
1429
|
-
export type
|
|
1622
|
+
export type DlqRedriverControllerRedriveDlq0V1Errors = {
|
|
1623
|
+
/**
|
|
1624
|
+
* Invalid request parameters
|
|
1625
|
+
*/
|
|
1626
|
+
400: unknown;
|
|
1430
1627
|
401: unknown;
|
|
1431
1628
|
403: unknown;
|
|
1629
|
+
/**
|
|
1630
|
+
* Error during DLQ redrive
|
|
1631
|
+
*/
|
|
1632
|
+
500: unknown;
|
|
1432
1633
|
};
|
|
1433
1634
|
|
|
1434
|
-
export type
|
|
1635
|
+
export type DlqRedriverControllerRedriveDlq0V1Responses = {
|
|
1435
1636
|
/**
|
|
1436
|
-
*
|
|
1637
|
+
* DLQ redrive completed successfully
|
|
1437
1638
|
*/
|
|
1438
|
-
|
|
1639
|
+
200: RedriveDlqResponseDto;
|
|
1439
1640
|
};
|
|
1440
1641
|
|
|
1441
|
-
export type
|
|
1442
|
-
|
|
1642
|
+
export type DlqRedriverControllerRedriveDlq0V1Response =
|
|
1643
|
+
DlqRedriverControllerRedriveDlq0V1Responses[keyof DlqRedriverControllerRedriveDlq0V1Responses];
|
|
1443
1644
|
|
|
1444
|
-
export type
|
|
1445
|
-
body:
|
|
1645
|
+
export type DlqRedriverControllerRedriveDlq1Data = {
|
|
1646
|
+
body: RedriveDlqRequestDto;
|
|
1446
1647
|
path?: never;
|
|
1447
1648
|
query?: never;
|
|
1448
|
-
url: "/
|
|
1649
|
+
url: "/dlq-redriver/redrive";
|
|
1449
1650
|
};
|
|
1450
1651
|
|
|
1451
|
-
export type
|
|
1652
|
+
export type DlqRedriverControllerRedriveDlq1Errors = {
|
|
1653
|
+
/**
|
|
1654
|
+
* Invalid request parameters
|
|
1655
|
+
*/
|
|
1656
|
+
400: unknown;
|
|
1452
1657
|
401: unknown;
|
|
1453
1658
|
403: unknown;
|
|
1659
|
+
/**
|
|
1660
|
+
* Error during DLQ redrive
|
|
1661
|
+
*/
|
|
1662
|
+
500: unknown;
|
|
1454
1663
|
};
|
|
1455
1664
|
|
|
1456
|
-
export type
|
|
1665
|
+
export type DlqRedriverControllerRedriveDlq1Responses = {
|
|
1457
1666
|
/**
|
|
1458
|
-
*
|
|
1667
|
+
* DLQ redrive completed successfully
|
|
1459
1668
|
*/
|
|
1460
|
-
200:
|
|
1669
|
+
200: RedriveDlqResponseDto;
|
|
1461
1670
|
};
|
|
1462
1671
|
|
|
1463
|
-
export type
|
|
1464
|
-
|
|
1672
|
+
export type DlqRedriverControllerRedriveDlq1Response =
|
|
1673
|
+
DlqRedriverControllerRedriveDlq1Responses[keyof DlqRedriverControllerRedriveDlq1Responses];
|
|
1465
1674
|
|
|
1466
|
-
export type
|
|
1675
|
+
export type FlightsControllerGenerateStorageKey0V1Data = {
|
|
1467
1676
|
body?: never;
|
|
1468
1677
|
path?: never;
|
|
1469
|
-
query
|
|
1470
|
-
|
|
1678
|
+
query: {
|
|
1679
|
+
missionId: string | number | bigint;
|
|
1680
|
+
pilotAddress: string;
|
|
1681
|
+
flightTimestamp?: string;
|
|
1682
|
+
};
|
|
1683
|
+
url: "/v1/flights/storage-key";
|
|
1471
1684
|
};
|
|
1472
1685
|
|
|
1473
|
-
export type
|
|
1686
|
+
export type FlightsControllerGenerateStorageKey0V1Errors = {
|
|
1474
1687
|
401: unknown;
|
|
1475
1688
|
403: unknown;
|
|
1476
1689
|
};
|
|
1477
1690
|
|
|
1478
|
-
export type
|
|
1479
|
-
|
|
1691
|
+
export type FlightsControllerGenerateStorageKey0V1Responses = {
|
|
1692
|
+
/**
|
|
1693
|
+
* Returns the generated storage key
|
|
1694
|
+
*/
|
|
1695
|
+
200: string;
|
|
1480
1696
|
};
|
|
1481
1697
|
|
|
1482
|
-
export type
|
|
1483
|
-
|
|
1698
|
+
export type FlightsControllerGenerateStorageKey0V1Response =
|
|
1699
|
+
FlightsControllerGenerateStorageKey0V1Responses[keyof FlightsControllerGenerateStorageKey0V1Responses];
|
|
1484
1700
|
|
|
1485
|
-
export type
|
|
1486
|
-
body
|
|
1701
|
+
export type FlightsControllerGenerateStorageKey1Data = {
|
|
1702
|
+
body?: never;
|
|
1487
1703
|
path?: never;
|
|
1488
|
-
query
|
|
1489
|
-
|
|
1704
|
+
query: {
|
|
1705
|
+
missionId: string | number | bigint;
|
|
1706
|
+
pilotAddress: string;
|
|
1707
|
+
flightTimestamp?: string;
|
|
1708
|
+
};
|
|
1709
|
+
url: "/flights/storage-key";
|
|
1490
1710
|
};
|
|
1491
1711
|
|
|
1492
|
-
export type
|
|
1712
|
+
export type FlightsControllerGenerateStorageKey1Errors = {
|
|
1493
1713
|
401: unknown;
|
|
1494
1714
|
403: unknown;
|
|
1495
1715
|
};
|
|
1496
1716
|
|
|
1497
|
-
export type
|
|
1498
|
-
|
|
1499
|
-
|
|
1717
|
+
export type FlightsControllerGenerateStorageKey1Responses = {
|
|
1718
|
+
/**
|
|
1719
|
+
* Returns the generated storage key
|
|
1720
|
+
*/
|
|
1721
|
+
200: string;
|
|
1722
|
+
};
|
|
1723
|
+
|
|
1724
|
+
export type FlightsControllerGenerateStorageKey1Response =
|
|
1725
|
+
FlightsControllerGenerateStorageKey1Responses[keyof FlightsControllerGenerateStorageKey1Responses];
|
|
1726
|
+
|
|
1727
|
+
export type FlightsControllerGetFlight0V1Data = {
|
|
1728
|
+
body?: never;
|
|
1729
|
+
path: {
|
|
1730
|
+
flightId: bigint;
|
|
1731
|
+
};
|
|
1732
|
+
query?: never;
|
|
1733
|
+
url: "/v1/flights/{flightId}";
|
|
1734
|
+
};
|
|
1735
|
+
|
|
1736
|
+
export type FlightsControllerGetFlight0V1Errors = {
|
|
1737
|
+
401: unknown;
|
|
1738
|
+
403: unknown;
|
|
1739
|
+
};
|
|
1740
|
+
|
|
1741
|
+
export type FlightsControllerGetFlight0V1Responses = {
|
|
1742
|
+
/**
|
|
1743
|
+
* Returns flight details
|
|
1744
|
+
*/
|
|
1745
|
+
200: FlightDto;
|
|
1746
|
+
};
|
|
1747
|
+
|
|
1748
|
+
export type FlightsControllerGetFlight0V1Response =
|
|
1749
|
+
FlightsControllerGetFlight0V1Responses[keyof FlightsControllerGetFlight0V1Responses];
|
|
1750
|
+
|
|
1751
|
+
export type FlightsControllerGetFlight1Data = {
|
|
1752
|
+
body?: never;
|
|
1753
|
+
path: {
|
|
1754
|
+
flightId: bigint;
|
|
1755
|
+
};
|
|
1756
|
+
query?: never;
|
|
1757
|
+
url: "/flights/{flightId}";
|
|
1758
|
+
};
|
|
1759
|
+
|
|
1760
|
+
export type FlightsControllerGetFlight1Errors = {
|
|
1761
|
+
401: unknown;
|
|
1762
|
+
403: unknown;
|
|
1763
|
+
};
|
|
1764
|
+
|
|
1765
|
+
export type FlightsControllerGetFlight1Responses = {
|
|
1766
|
+
/**
|
|
1767
|
+
* Returns flight details
|
|
1768
|
+
*/
|
|
1769
|
+
200: FlightDto;
|
|
1770
|
+
};
|
|
1771
|
+
|
|
1772
|
+
export type FlightsControllerGetFlight1Response =
|
|
1773
|
+
FlightsControllerGetFlight1Responses[keyof FlightsControllerGetFlight1Responses];
|
|
1774
|
+
|
|
1775
|
+
export type FlightsControllerCreatePresignedUrls0V1Data = {
|
|
1776
|
+
body: CreateFileRequestDto;
|
|
1777
|
+
path?: never;
|
|
1778
|
+
query?: never;
|
|
1779
|
+
url: "/v1/flights/files";
|
|
1780
|
+
};
|
|
1781
|
+
|
|
1782
|
+
export type FlightsControllerCreatePresignedUrls0V1Errors = {
|
|
1783
|
+
401: unknown;
|
|
1784
|
+
403: unknown;
|
|
1785
|
+
};
|
|
1786
|
+
|
|
1787
|
+
export type FlightsControllerCreatePresignedUrls0V1Responses = {
|
|
1788
|
+
/**
|
|
1789
|
+
* Returns presigned URLs for file upload
|
|
1790
|
+
*/
|
|
1791
|
+
201: CreateFileResponseDto;
|
|
1792
|
+
};
|
|
1793
|
+
|
|
1794
|
+
export type FlightsControllerCreatePresignedUrls0V1Response =
|
|
1795
|
+
FlightsControllerCreatePresignedUrls0V1Responses[keyof FlightsControllerCreatePresignedUrls0V1Responses];
|
|
1796
|
+
|
|
1797
|
+
export type FlightsControllerCreatePresignedUrls1Data = {
|
|
1798
|
+
body: CreateFileRequestDto;
|
|
1799
|
+
path?: never;
|
|
1800
|
+
query?: never;
|
|
1801
|
+
url: "/flights/files";
|
|
1802
|
+
};
|
|
1803
|
+
|
|
1804
|
+
export type FlightsControllerCreatePresignedUrls1Errors = {
|
|
1805
|
+
401: unknown;
|
|
1806
|
+
403: unknown;
|
|
1807
|
+
};
|
|
1808
|
+
|
|
1809
|
+
export type FlightsControllerCreatePresignedUrls1Responses = {
|
|
1810
|
+
/**
|
|
1811
|
+
* Returns presigned URLs for file upload
|
|
1812
|
+
*/
|
|
1813
|
+
201: CreateFileResponseDto;
|
|
1814
|
+
};
|
|
1815
|
+
|
|
1816
|
+
export type FlightsControllerCreatePresignedUrls1Response =
|
|
1817
|
+
FlightsControllerCreatePresignedUrls1Responses[keyof FlightsControllerCreatePresignedUrls1Responses];
|
|
1818
|
+
|
|
1819
|
+
export type FlightsControllerValidateFlight0V1Data = {
|
|
1820
|
+
body: ValidateFlightRequestDto;
|
|
1821
|
+
path?: never;
|
|
1822
|
+
query?: never;
|
|
1823
|
+
url: "/v1/flights";
|
|
1824
|
+
};
|
|
1825
|
+
|
|
1826
|
+
export type FlightsControllerValidateFlight0V1Errors = {
|
|
1827
|
+
401: unknown;
|
|
1828
|
+
403: unknown;
|
|
1829
|
+
};
|
|
1830
|
+
|
|
1831
|
+
export type FlightsControllerValidateFlight0V1Responses = {
|
|
1832
|
+
/**
|
|
1833
|
+
* Result to track queued flight through its validation
|
|
1834
|
+
*/
|
|
1835
|
+
200: ValidateFlightResponseDto;
|
|
1836
|
+
};
|
|
1837
|
+
|
|
1838
|
+
export type FlightsControllerValidateFlight0V1Response =
|
|
1839
|
+
FlightsControllerValidateFlight0V1Responses[keyof FlightsControllerValidateFlight0V1Responses];
|
|
1840
|
+
|
|
1841
|
+
export type FlightsControllerValidateFlight1Data = {
|
|
1842
|
+
body: ValidateFlightRequestDto;
|
|
1843
|
+
path?: never;
|
|
1844
|
+
query?: never;
|
|
1845
|
+
url: "/flights";
|
|
1846
|
+
};
|
|
1847
|
+
|
|
1848
|
+
export type FlightsControllerValidateFlight1Errors = {
|
|
1849
|
+
401: unknown;
|
|
1850
|
+
403: unknown;
|
|
1851
|
+
};
|
|
1852
|
+
|
|
1853
|
+
export type FlightsControllerValidateFlight1Responses = {
|
|
1854
|
+
/**
|
|
1855
|
+
* Result to track queued flight through its validation
|
|
1856
|
+
*/
|
|
1857
|
+
200: ValidateFlightResponseDto;
|
|
1858
|
+
};
|
|
1859
|
+
|
|
1860
|
+
export type FlightsControllerValidateFlight1Response =
|
|
1861
|
+
FlightsControllerValidateFlight1Responses[keyof FlightsControllerValidateFlight1Responses];
|
|
1862
|
+
|
|
1863
|
+
export type FlightPlansControllerGetMany0V1Data = {
|
|
1864
|
+
body?: never;
|
|
1865
|
+
path?: never;
|
|
1866
|
+
query?: never;
|
|
1867
|
+
url: "/v1/flight-plans";
|
|
1868
|
+
};
|
|
1869
|
+
|
|
1870
|
+
export type FlightPlansControllerGetMany0V1Errors = {
|
|
1871
|
+
401: unknown;
|
|
1872
|
+
403: unknown;
|
|
1873
|
+
};
|
|
1874
|
+
|
|
1875
|
+
export type FlightPlansControllerGetMany0V1Responses = {
|
|
1876
|
+
200: GetFlightPlansResponse;
|
|
1877
|
+
};
|
|
1878
|
+
|
|
1879
|
+
export type FlightPlansControllerGetMany0V1Response =
|
|
1880
|
+
FlightPlansControllerGetMany0V1Responses[keyof FlightPlansControllerGetMany0V1Responses];
|
|
1881
|
+
|
|
1882
|
+
export type FlightPlansControllerCreate0V1Data = {
|
|
1883
|
+
body: CreateFlightPlanBody;
|
|
1884
|
+
path?: never;
|
|
1885
|
+
query?: never;
|
|
1886
|
+
url: "/v1/flight-plans";
|
|
1887
|
+
};
|
|
1888
|
+
|
|
1889
|
+
export type FlightPlansControllerCreate0V1Errors = {
|
|
1890
|
+
401: unknown;
|
|
1891
|
+
403: unknown;
|
|
1892
|
+
};
|
|
1893
|
+
|
|
1894
|
+
export type FlightPlansControllerCreate0V1Responses = {
|
|
1895
|
+
201: CreateFlightPlanResponse;
|
|
1896
|
+
};
|
|
1897
|
+
|
|
1898
|
+
export type FlightPlansControllerCreate0V1Response =
|
|
1899
|
+
FlightPlansControllerCreate0V1Responses[keyof FlightPlansControllerCreate0V1Responses];
|
|
1900
|
+
|
|
1901
|
+
export type FlightPlansControllerGetMany1Data = {
|
|
1902
|
+
body?: never;
|
|
1903
|
+
path?: never;
|
|
1904
|
+
query?: never;
|
|
1905
|
+
url: "/flight-plans";
|
|
1906
|
+
};
|
|
1907
|
+
|
|
1908
|
+
export type FlightPlansControllerGetMany1Errors = {
|
|
1909
|
+
401: unknown;
|
|
1910
|
+
403: unknown;
|
|
1911
|
+
};
|
|
1912
|
+
|
|
1913
|
+
export type FlightPlansControllerGetMany1Responses = {
|
|
1914
|
+
200: GetFlightPlansResponse;
|
|
1915
|
+
};
|
|
1916
|
+
|
|
1917
|
+
export type FlightPlansControllerGetMany1Response =
|
|
1918
|
+
FlightPlansControllerGetMany1Responses[keyof FlightPlansControllerGetMany1Responses];
|
|
1919
|
+
|
|
1920
|
+
export type FlightPlansControllerCreate1Data = {
|
|
1921
|
+
body: CreateFlightPlanBody;
|
|
1922
|
+
path?: never;
|
|
1923
|
+
query?: never;
|
|
1924
|
+
url: "/flight-plans";
|
|
1925
|
+
};
|
|
1926
|
+
|
|
1927
|
+
export type FlightPlansControllerCreate1Errors = {
|
|
1928
|
+
401: unknown;
|
|
1929
|
+
403: unknown;
|
|
1930
|
+
};
|
|
1931
|
+
|
|
1932
|
+
export type FlightPlansControllerCreate1Responses = {
|
|
1933
|
+
201: CreateFlightPlanResponse;
|
|
1934
|
+
};
|
|
1935
|
+
|
|
1936
|
+
export type FlightPlansControllerCreate1Response =
|
|
1937
|
+
FlightPlansControllerCreate1Responses[keyof FlightPlansControllerCreate1Responses];
|
|
1938
|
+
|
|
1939
|
+
export type FlightPlansControllerGet0V1Data = {
|
|
1940
|
+
body?: never;
|
|
1941
|
+
path: {
|
|
1942
|
+
id: number;
|
|
1943
|
+
};
|
|
1944
|
+
query?: never;
|
|
1945
|
+
url: "/v1/flight-plans/{id}";
|
|
1946
|
+
};
|
|
1947
|
+
|
|
1948
|
+
export type FlightPlansControllerGet0V1Errors = {
|
|
1949
|
+
401: unknown;
|
|
1950
|
+
403: unknown;
|
|
1951
|
+
};
|
|
1952
|
+
|
|
1953
|
+
export type FlightPlansControllerGet0V1Responses = {
|
|
1954
|
+
200: GetFlightPlanResponse;
|
|
1955
|
+
};
|
|
1500
1956
|
|
|
1501
|
-
export type
|
|
1502
|
-
|
|
1957
|
+
export type FlightPlansControllerGet0V1Response =
|
|
1958
|
+
FlightPlansControllerGet0V1Responses[keyof FlightPlansControllerGet0V1Responses];
|
|
1503
1959
|
|
|
1504
|
-
export type
|
|
1960
|
+
export type FlightPlansControllerGet1Data = {
|
|
1505
1961
|
body?: never;
|
|
1506
1962
|
path: {
|
|
1507
1963
|
id: number;
|
|
@@ -1510,19 +1966,44 @@ export type FlightPlansControllerGetData = {
|
|
|
1510
1966
|
url: "/flight-plans/{id}";
|
|
1511
1967
|
};
|
|
1512
1968
|
|
|
1513
|
-
export type
|
|
1969
|
+
export type FlightPlansControllerGet1Errors = {
|
|
1514
1970
|
401: unknown;
|
|
1515
1971
|
403: unknown;
|
|
1516
1972
|
};
|
|
1517
1973
|
|
|
1518
|
-
export type
|
|
1974
|
+
export type FlightPlansControllerGet1Responses = {
|
|
1519
1975
|
200: GetFlightPlanResponse;
|
|
1520
1976
|
};
|
|
1521
1977
|
|
|
1522
|
-
export type
|
|
1523
|
-
|
|
1978
|
+
export type FlightPlansControllerGet1Response =
|
|
1979
|
+
FlightPlansControllerGet1Responses[keyof FlightPlansControllerGet1Responses];
|
|
1980
|
+
|
|
1981
|
+
export type FlightReviewsControllerGetFlightReview0V1Data = {
|
|
1982
|
+
body?: never;
|
|
1983
|
+
path: {
|
|
1984
|
+
id: bigint;
|
|
1985
|
+
};
|
|
1986
|
+
query?: never;
|
|
1987
|
+
url: "/v1/flight-reviews/{id}";
|
|
1988
|
+
};
|
|
1989
|
+
|
|
1990
|
+
export type FlightReviewsControllerGetFlightReview0V1Errors = {
|
|
1991
|
+
401: unknown;
|
|
1992
|
+
403: unknown;
|
|
1993
|
+
/**
|
|
1994
|
+
* Flight review not found
|
|
1995
|
+
*/
|
|
1996
|
+
404: unknown;
|
|
1997
|
+
};
|
|
1998
|
+
|
|
1999
|
+
export type FlightReviewsControllerGetFlightReview0V1Responses = {
|
|
2000
|
+
200: GetFlightReviewResponseDto;
|
|
2001
|
+
};
|
|
2002
|
+
|
|
2003
|
+
export type FlightReviewsControllerGetFlightReview0V1Response =
|
|
2004
|
+
FlightReviewsControllerGetFlightReview0V1Responses[keyof FlightReviewsControllerGetFlightReview0V1Responses];
|
|
1524
2005
|
|
|
1525
|
-
export type
|
|
2006
|
+
export type FlightReviewsControllerGetFlightReview1Data = {
|
|
1526
2007
|
body?: never;
|
|
1527
2008
|
path: {
|
|
1528
2009
|
id: bigint;
|
|
@@ -1531,7 +2012,7 @@ export type FlightReviewsControllerGetFlightReviewData = {
|
|
|
1531
2012
|
url: "/flight-reviews/{id}";
|
|
1532
2013
|
};
|
|
1533
2014
|
|
|
1534
|
-
export type
|
|
2015
|
+
export type FlightReviewsControllerGetFlightReview1Errors = {
|
|
1535
2016
|
401: unknown;
|
|
1536
2017
|
403: unknown;
|
|
1537
2018
|
/**
|
|
@@ -1540,14 +2021,36 @@ export type FlightReviewsControllerGetFlightReviewErrors = {
|
|
|
1540
2021
|
404: unknown;
|
|
1541
2022
|
};
|
|
1542
2023
|
|
|
1543
|
-
export type
|
|
2024
|
+
export type FlightReviewsControllerGetFlightReview1Responses = {
|
|
1544
2025
|
200: GetFlightReviewResponseDto;
|
|
1545
2026
|
};
|
|
1546
2027
|
|
|
1547
|
-
export type
|
|
1548
|
-
|
|
2028
|
+
export type FlightReviewsControllerGetFlightReview1Response =
|
|
2029
|
+
FlightReviewsControllerGetFlightReview1Responses[keyof FlightReviewsControllerGetFlightReview1Responses];
|
|
2030
|
+
|
|
2031
|
+
export type FlightReviewsControllerGetFlightReviews0V1Data = {
|
|
2032
|
+
body?: never;
|
|
2033
|
+
path?: never;
|
|
2034
|
+
query: {
|
|
2035
|
+
updated_at_gt: Date;
|
|
2036
|
+
updated_at_lt: Date;
|
|
2037
|
+
};
|
|
2038
|
+
url: "/v1/flight-reviews";
|
|
2039
|
+
};
|
|
2040
|
+
|
|
2041
|
+
export type FlightReviewsControllerGetFlightReviews0V1Errors = {
|
|
2042
|
+
401: unknown;
|
|
2043
|
+
403: unknown;
|
|
2044
|
+
};
|
|
2045
|
+
|
|
2046
|
+
export type FlightReviewsControllerGetFlightReviews0V1Responses = {
|
|
2047
|
+
200: GetFlightReviewsResponseDto;
|
|
2048
|
+
};
|
|
2049
|
+
|
|
2050
|
+
export type FlightReviewsControllerGetFlightReviews0V1Response =
|
|
2051
|
+
FlightReviewsControllerGetFlightReviews0V1Responses[keyof FlightReviewsControllerGetFlightReviews0V1Responses];
|
|
1549
2052
|
|
|
1550
|
-
export type
|
|
2053
|
+
export type FlightReviewsControllerGetFlightReviews1Data = {
|
|
1551
2054
|
body?: never;
|
|
1552
2055
|
path?: never;
|
|
1553
2056
|
query: {
|
|
@@ -1557,33 +2060,78 @@ export type FlightReviewsControllerGetFlightReviewsData = {
|
|
|
1557
2060
|
url: "/flight-reviews";
|
|
1558
2061
|
};
|
|
1559
2062
|
|
|
1560
|
-
export type
|
|
2063
|
+
export type FlightReviewsControllerGetFlightReviews1Errors = {
|
|
1561
2064
|
401: unknown;
|
|
1562
2065
|
403: unknown;
|
|
1563
2066
|
};
|
|
1564
2067
|
|
|
1565
|
-
export type
|
|
2068
|
+
export type FlightReviewsControllerGetFlightReviews1Responses = {
|
|
1566
2069
|
200: GetFlightReviewsResponseDto;
|
|
1567
2070
|
};
|
|
1568
2071
|
|
|
1569
|
-
export type
|
|
1570
|
-
|
|
2072
|
+
export type FlightReviewsControllerGetFlightReviews1Response =
|
|
2073
|
+
FlightReviewsControllerGetFlightReviews1Responses[keyof FlightReviewsControllerGetFlightReviews1Responses];
|
|
2074
|
+
|
|
2075
|
+
export type KeysControllerGetProvenanceCryptoKey0V1Data = {
|
|
2076
|
+
body?: never;
|
|
2077
|
+
path?: never;
|
|
2078
|
+
query?: never;
|
|
2079
|
+
url: "/v1/keys";
|
|
2080
|
+
};
|
|
2081
|
+
|
|
2082
|
+
export type KeysControllerGetProvenanceCryptoKey0V1Responses = {
|
|
2083
|
+
200: GetProvenanceCryptoKeyResponse;
|
|
2084
|
+
};
|
|
2085
|
+
|
|
2086
|
+
export type KeysControllerGetProvenanceCryptoKey0V1Response =
|
|
2087
|
+
KeysControllerGetProvenanceCryptoKey0V1Responses[keyof KeysControllerGetProvenanceCryptoKey0V1Responses];
|
|
1571
2088
|
|
|
1572
|
-
export type
|
|
2089
|
+
export type KeysControllerGetProvenanceCryptoKey1Data = {
|
|
1573
2090
|
body?: never;
|
|
1574
2091
|
path?: never;
|
|
1575
2092
|
query?: never;
|
|
1576
2093
|
url: "/keys";
|
|
1577
2094
|
};
|
|
1578
2095
|
|
|
1579
|
-
export type
|
|
2096
|
+
export type KeysControllerGetProvenanceCryptoKey1Responses = {
|
|
1580
2097
|
200: GetProvenanceCryptoKeyResponse;
|
|
1581
2098
|
};
|
|
1582
2099
|
|
|
1583
|
-
export type
|
|
1584
|
-
|
|
2100
|
+
export type KeysControllerGetProvenanceCryptoKey1Response =
|
|
2101
|
+
KeysControllerGetProvenanceCryptoKey1Responses[keyof KeysControllerGetProvenanceCryptoKey1Responses];
|
|
2102
|
+
|
|
2103
|
+
export type MissionsControllerGetMission0V1Data = {
|
|
2104
|
+
body?: never;
|
|
2105
|
+
path: {
|
|
2106
|
+
id: string;
|
|
2107
|
+
};
|
|
2108
|
+
query?: {
|
|
2109
|
+
relations?:
|
|
2110
|
+
| "vault"
|
|
2111
|
+
| "payout"
|
|
2112
|
+
| "campaigns"
|
|
2113
|
+
| Array<"vault" | "payout" | "campaigns">;
|
|
2114
|
+
};
|
|
2115
|
+
url: "/v1/missions/{id}";
|
|
2116
|
+
};
|
|
2117
|
+
|
|
2118
|
+
export type MissionsControllerGetMission0V1Errors = {
|
|
2119
|
+
401: unknown;
|
|
2120
|
+
403: unknown;
|
|
2121
|
+
/**
|
|
2122
|
+
* Mission not found
|
|
2123
|
+
*/
|
|
2124
|
+
404: unknown;
|
|
2125
|
+
};
|
|
2126
|
+
|
|
2127
|
+
export type MissionsControllerGetMission0V1Responses = {
|
|
2128
|
+
200: GetMissionResponseDto;
|
|
2129
|
+
};
|
|
2130
|
+
|
|
2131
|
+
export type MissionsControllerGetMission0V1Response =
|
|
2132
|
+
MissionsControllerGetMission0V1Responses[keyof MissionsControllerGetMission0V1Responses];
|
|
1585
2133
|
|
|
1586
|
-
export type
|
|
2134
|
+
export type MissionsControllerGetMission1Data = {
|
|
1587
2135
|
body?: never;
|
|
1588
2136
|
path: {
|
|
1589
2137
|
id: string;
|
|
@@ -1598,7 +2146,7 @@ export type MissionsControllerGetMissionData = {
|
|
|
1598
2146
|
url: "/missions/{id}";
|
|
1599
2147
|
};
|
|
1600
2148
|
|
|
1601
|
-
export type
|
|
2149
|
+
export type MissionsControllerGetMission1Errors = {
|
|
1602
2150
|
401: unknown;
|
|
1603
2151
|
403: unknown;
|
|
1604
2152
|
/**
|
|
@@ -1607,14 +2155,14 @@ export type MissionsControllerGetMissionErrors = {
|
|
|
1607
2155
|
404: unknown;
|
|
1608
2156
|
};
|
|
1609
2157
|
|
|
1610
|
-
export type
|
|
2158
|
+
export type MissionsControllerGetMission1Responses = {
|
|
1611
2159
|
200: GetMissionResponseDto;
|
|
1612
2160
|
};
|
|
1613
2161
|
|
|
1614
|
-
export type
|
|
1615
|
-
|
|
2162
|
+
export type MissionsControllerGetMission1Response =
|
|
2163
|
+
MissionsControllerGetMission1Responses[keyof MissionsControllerGetMission1Responses];
|
|
1616
2164
|
|
|
1617
|
-
export type
|
|
2165
|
+
export type MissionsControllerGetMissions0V1Data = {
|
|
1618
2166
|
body?: never;
|
|
1619
2167
|
path?: never;
|
|
1620
2168
|
query?: {
|
|
@@ -1632,29 +2180,29 @@ export type MissionsControllerGetMissionsData = {
|
|
|
1632
2180
|
| "campaigns"
|
|
1633
2181
|
| Array<"vault" | "payout" | "campaigns">;
|
|
1634
2182
|
};
|
|
1635
|
-
url: "/missions";
|
|
2183
|
+
url: "/v1/missions";
|
|
1636
2184
|
};
|
|
1637
2185
|
|
|
1638
|
-
export type
|
|
2186
|
+
export type MissionsControllerGetMissions0V1Errors = {
|
|
1639
2187
|
401: unknown;
|
|
1640
2188
|
403: unknown;
|
|
1641
2189
|
};
|
|
1642
2190
|
|
|
1643
|
-
export type
|
|
2191
|
+
export type MissionsControllerGetMissions0V1Responses = {
|
|
1644
2192
|
200: GetMissionsResponseDto;
|
|
1645
2193
|
};
|
|
1646
2194
|
|
|
1647
|
-
export type
|
|
1648
|
-
|
|
2195
|
+
export type MissionsControllerGetMissions0V1Response =
|
|
2196
|
+
MissionsControllerGetMissions0V1Responses[keyof MissionsControllerGetMissions0V1Responses];
|
|
1649
2197
|
|
|
1650
|
-
export type
|
|
2198
|
+
export type MissionsControllerCreateMissions0V1Data = {
|
|
1651
2199
|
body: CreateMissionRequestDto;
|
|
1652
2200
|
path?: never;
|
|
1653
2201
|
query?: never;
|
|
1654
|
-
url: "/missions";
|
|
2202
|
+
url: "/v1/missions";
|
|
1655
2203
|
};
|
|
1656
2204
|
|
|
1657
|
-
export type
|
|
2205
|
+
export type MissionsControllerCreateMissions0V1Errors = {
|
|
1658
2206
|
/**
|
|
1659
2207
|
* Validation failed - invalid Zones, mission types, or times
|
|
1660
2208
|
*/
|
|
@@ -1670,323 +2218,717 @@ export type MissionsControllerCreateMissionsErrors = {
|
|
|
1670
2218
|
500: unknown;
|
|
1671
2219
|
};
|
|
1672
2220
|
|
|
1673
|
-
export type
|
|
2221
|
+
export type MissionsControllerCreateMissions0V1Responses = {
|
|
1674
2222
|
/**
|
|
1675
2223
|
* Transaction to create mission, queued successfully
|
|
1676
2224
|
*/
|
|
1677
2225
|
201: CreateMissionResponseDto;
|
|
1678
2226
|
};
|
|
1679
2227
|
|
|
1680
|
-
export type
|
|
1681
|
-
|
|
2228
|
+
export type MissionsControllerCreateMissions0V1Response =
|
|
2229
|
+
MissionsControllerCreateMissions0V1Responses[keyof MissionsControllerCreateMissions0V1Responses];
|
|
1682
2230
|
|
|
1683
|
-
export type
|
|
2231
|
+
export type MissionsControllerUpdateMissions0V1Data = {
|
|
1684
2232
|
body: UpdateMissionsRequestDto;
|
|
1685
2233
|
path?: never;
|
|
1686
2234
|
query?: never;
|
|
1687
|
-
url: "/missions";
|
|
2235
|
+
url: "/v1/missions";
|
|
1688
2236
|
};
|
|
1689
2237
|
|
|
1690
|
-
export type
|
|
2238
|
+
export type MissionsControllerUpdateMissions0V1Errors = {
|
|
1691
2239
|
401: unknown;
|
|
1692
2240
|
403: unknown;
|
|
1693
2241
|
};
|
|
1694
2242
|
|
|
1695
|
-
export type
|
|
2243
|
+
export type MissionsControllerUpdateMissions0V1Responses = {
|
|
1696
2244
|
/**
|
|
1697
2245
|
* Missions update transaction queued successfully
|
|
1698
2246
|
*/
|
|
1699
2247
|
200: UpdateMissionsResponseDto;
|
|
1700
2248
|
};
|
|
1701
2249
|
|
|
1702
|
-
export type
|
|
1703
|
-
|
|
2250
|
+
export type MissionsControllerUpdateMissions0V1Response =
|
|
2251
|
+
MissionsControllerUpdateMissions0V1Responses[keyof MissionsControllerUpdateMissions0V1Responses];
|
|
1704
2252
|
|
|
1705
|
-
export type
|
|
1706
|
-
body
|
|
2253
|
+
export type MissionsControllerGetMissions1Data = {
|
|
2254
|
+
body?: never;
|
|
1707
2255
|
path?: never;
|
|
1708
|
-
query?:
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
2256
|
+
query?: {
|
|
2257
|
+
updatedAt_gt?: Date;
|
|
2258
|
+
updatedAt_lt?: Date;
|
|
2259
|
+
createdAt_gt?: Date;
|
|
2260
|
+
createdAt_lt?: Date;
|
|
2261
|
+
isOpen?: string;
|
|
2262
|
+
zoneIds?: string | Array<string>;
|
|
2263
|
+
flightPlanId?: number;
|
|
2264
|
+
page?: number;
|
|
2265
|
+
relations?:
|
|
2266
|
+
| "vault"
|
|
2267
|
+
| "payout"
|
|
2268
|
+
| "campaigns"
|
|
2269
|
+
| Array<"vault" | "payout" | "campaigns">;
|
|
2270
|
+
};
|
|
2271
|
+
url: "/missions";
|
|
2272
|
+
};
|
|
2273
|
+
|
|
2274
|
+
export type MissionsControllerGetMissions1Errors = {
|
|
2275
|
+
401: unknown;
|
|
2276
|
+
403: unknown;
|
|
2277
|
+
};
|
|
2278
|
+
|
|
2279
|
+
export type MissionsControllerGetMissions1Responses = {
|
|
2280
|
+
200: GetMissionsResponseDto;
|
|
2281
|
+
};
|
|
2282
|
+
|
|
2283
|
+
export type MissionsControllerGetMissions1Response =
|
|
2284
|
+
MissionsControllerGetMissions1Responses[keyof MissionsControllerGetMissions1Responses];
|
|
2285
|
+
|
|
2286
|
+
export type MissionsControllerCreateMissions1Data = {
|
|
2287
|
+
body: CreateMissionRequestDto;
|
|
2288
|
+
path?: never;
|
|
2289
|
+
query?: never;
|
|
2290
|
+
url: "/missions";
|
|
2291
|
+
};
|
|
2292
|
+
|
|
2293
|
+
export type MissionsControllerCreateMissions1Errors = {
|
|
2294
|
+
/**
|
|
2295
|
+
* Validation failed - invalid Zones, mission types, or times
|
|
2296
|
+
*/
|
|
2297
|
+
400: unknown;
|
|
2298
|
+
401: unknown;
|
|
2299
|
+
/**
|
|
2300
|
+
* Insufficient treasury spending limit
|
|
2301
|
+
*/
|
|
2302
|
+
403: unknown;
|
|
2303
|
+
/**
|
|
2304
|
+
* Internal server error during mission creation
|
|
2305
|
+
*/
|
|
2306
|
+
500: unknown;
|
|
2307
|
+
};
|
|
2308
|
+
|
|
2309
|
+
export type MissionsControllerCreateMissions1Responses = {
|
|
2310
|
+
/**
|
|
2311
|
+
* Transaction to create mission, queued successfully
|
|
2312
|
+
*/
|
|
2313
|
+
201: CreateMissionResponseDto;
|
|
2314
|
+
};
|
|
2315
|
+
|
|
2316
|
+
export type MissionsControllerCreateMissions1Response =
|
|
2317
|
+
MissionsControllerCreateMissions1Responses[keyof MissionsControllerCreateMissions1Responses];
|
|
2318
|
+
|
|
2319
|
+
export type MissionsControllerUpdateMissions1Data = {
|
|
2320
|
+
body: UpdateMissionsRequestDto;
|
|
2321
|
+
path?: never;
|
|
2322
|
+
query?: never;
|
|
2323
|
+
url: "/missions";
|
|
2324
|
+
};
|
|
2325
|
+
|
|
2326
|
+
export type MissionsControllerUpdateMissions1Errors = {
|
|
2327
|
+
401: unknown;
|
|
1714
2328
|
403: unknown;
|
|
1715
2329
|
};
|
|
1716
2330
|
|
|
1717
|
-
export type
|
|
2331
|
+
export type MissionsControllerUpdateMissions1Responses = {
|
|
2332
|
+
/**
|
|
2333
|
+
* Missions update transaction queued successfully
|
|
2334
|
+
*/
|
|
2335
|
+
200: UpdateMissionsResponseDto;
|
|
2336
|
+
};
|
|
2337
|
+
|
|
2338
|
+
export type MissionsControllerUpdateMissions1Response =
|
|
2339
|
+
MissionsControllerUpdateMissions1Responses[keyof MissionsControllerUpdateMissions1Responses];
|
|
2340
|
+
|
|
2341
|
+
export type MissionsControllerRepriceMissions0V1Data = {
|
|
2342
|
+
body: RepriceMissionsRequestDto;
|
|
2343
|
+
path?: never;
|
|
2344
|
+
query?: never;
|
|
2345
|
+
url: "/v1/missions/amounts";
|
|
2346
|
+
};
|
|
2347
|
+
|
|
2348
|
+
export type MissionsControllerRepriceMissions0V1Errors = {
|
|
2349
|
+
401: unknown;
|
|
2350
|
+
403: unknown;
|
|
2351
|
+
};
|
|
2352
|
+
|
|
2353
|
+
export type MissionsControllerRepriceMissions0V1Responses = {
|
|
1718
2354
|
/**
|
|
1719
2355
|
* Mission repricing queued successfully
|
|
1720
2356
|
*/
|
|
1721
2357
|
200: RepriceMissionsResponseDto;
|
|
1722
2358
|
};
|
|
1723
2359
|
|
|
1724
|
-
export type
|
|
1725
|
-
|
|
2360
|
+
export type MissionsControllerRepriceMissions0V1Response =
|
|
2361
|
+
MissionsControllerRepriceMissions0V1Responses[keyof MissionsControllerRepriceMissions0V1Responses];
|
|
2362
|
+
|
|
2363
|
+
export type MissionsControllerRepriceMissions1Data = {
|
|
2364
|
+
body: RepriceMissionsRequestDto;
|
|
2365
|
+
path?: never;
|
|
2366
|
+
query?: never;
|
|
2367
|
+
url: "/missions/amounts";
|
|
2368
|
+
};
|
|
2369
|
+
|
|
2370
|
+
export type MissionsControllerRepriceMissions1Errors = {
|
|
2371
|
+
401: unknown;
|
|
2372
|
+
403: unknown;
|
|
2373
|
+
};
|
|
2374
|
+
|
|
2375
|
+
export type MissionsControllerRepriceMissions1Responses = {
|
|
2376
|
+
/**
|
|
2377
|
+
* Mission repricing queued successfully
|
|
2378
|
+
*/
|
|
2379
|
+
200: RepriceMissionsResponseDto;
|
|
2380
|
+
};
|
|
2381
|
+
|
|
2382
|
+
export type MissionsControllerRepriceMissions1Response =
|
|
2383
|
+
MissionsControllerRepriceMissions1Responses[keyof MissionsControllerRepriceMissions1Responses];
|
|
2384
|
+
|
|
2385
|
+
export type ProtocolTriggersApiControllerTriggerPayout0V1Data = {
|
|
2386
|
+
body: TriggerPayoutRequestDto;
|
|
2387
|
+
path?: never;
|
|
2388
|
+
query?: never;
|
|
2389
|
+
url: "/v1/protocol-triggers/missions/payout";
|
|
2390
|
+
};
|
|
2391
|
+
|
|
2392
|
+
export type ProtocolTriggersApiControllerTriggerPayout0V1Errors = {
|
|
2393
|
+
401: unknown;
|
|
2394
|
+
403: unknown;
|
|
2395
|
+
};
|
|
2396
|
+
|
|
2397
|
+
export type ProtocolTriggersApiControllerTriggerPayout0V1Responses = {
|
|
2398
|
+
201: unknown;
|
|
2399
|
+
};
|
|
2400
|
+
|
|
2401
|
+
export type ProtocolTriggersApiControllerTriggerPayout1Data = {
|
|
2402
|
+
body: TriggerPayoutRequestDto;
|
|
2403
|
+
path?: never;
|
|
2404
|
+
query?: never;
|
|
2405
|
+
url: "/protocol-triggers/missions/payout";
|
|
2406
|
+
};
|
|
2407
|
+
|
|
2408
|
+
export type ProtocolTriggersApiControllerTriggerPayout1Errors = {
|
|
2409
|
+
401: unknown;
|
|
2410
|
+
403: unknown;
|
|
2411
|
+
};
|
|
2412
|
+
|
|
2413
|
+
export type ProtocolTriggersApiControllerTriggerPayout1Responses = {
|
|
2414
|
+
201: unknown;
|
|
2415
|
+
};
|
|
2416
|
+
|
|
2417
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose0V1Data = {
|
|
2418
|
+
body: TriggerMissionCloseRequestDto;
|
|
2419
|
+
path?: never;
|
|
2420
|
+
query?: never;
|
|
2421
|
+
url: "/v1/protocol-triggers/missions/close";
|
|
2422
|
+
};
|
|
2423
|
+
|
|
2424
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose0V1Errors = {
|
|
2425
|
+
401: unknown;
|
|
2426
|
+
403: unknown;
|
|
2427
|
+
};
|
|
2428
|
+
|
|
2429
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose0V1Responses = {
|
|
2430
|
+
201: unknown;
|
|
2431
|
+
};
|
|
2432
|
+
|
|
2433
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose1Data = {
|
|
2434
|
+
body: TriggerMissionCloseRequestDto;
|
|
2435
|
+
path?: never;
|
|
2436
|
+
query?: never;
|
|
2437
|
+
url: "/protocol-triggers/missions/close";
|
|
2438
|
+
};
|
|
2439
|
+
|
|
2440
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose1Errors = {
|
|
2441
|
+
401: unknown;
|
|
2442
|
+
403: unknown;
|
|
2443
|
+
};
|
|
2444
|
+
|
|
2445
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose1Responses = {
|
|
2446
|
+
201: unknown;
|
|
2447
|
+
};
|
|
2448
|
+
|
|
2449
|
+
export type QuotesControllerCreateQuote0V1Data = {
|
|
2450
|
+
body: CreateQuoteRequestDto;
|
|
2451
|
+
path?: never;
|
|
2452
|
+
query?: never;
|
|
2453
|
+
url: "/v1/quotes";
|
|
2454
|
+
};
|
|
2455
|
+
|
|
2456
|
+
export type QuotesControllerCreateQuote0V1Errors = {
|
|
2457
|
+
401: unknown;
|
|
2458
|
+
403: unknown;
|
|
2459
|
+
};
|
|
2460
|
+
|
|
2461
|
+
export type QuotesControllerCreateQuote0V1Responses = {
|
|
2462
|
+
201: unknown;
|
|
2463
|
+
};
|
|
2464
|
+
|
|
2465
|
+
export type QuotesControllerCreateQuote1Data = {
|
|
2466
|
+
body: CreateQuoteRequestDto;
|
|
2467
|
+
path?: never;
|
|
2468
|
+
query?: never;
|
|
2469
|
+
url: "/quotes";
|
|
2470
|
+
};
|
|
2471
|
+
|
|
2472
|
+
export type QuotesControllerCreateQuote1Errors = {
|
|
2473
|
+
401: unknown;
|
|
2474
|
+
403: unknown;
|
|
2475
|
+
};
|
|
2476
|
+
|
|
2477
|
+
export type QuotesControllerCreateQuote1Responses = {
|
|
2478
|
+
201: unknown;
|
|
2479
|
+
};
|
|
2480
|
+
|
|
2481
|
+
export type QuotesControllerGetQuote0V1Data = {
|
|
2482
|
+
body?: never;
|
|
2483
|
+
path: {
|
|
2484
|
+
id: string;
|
|
2485
|
+
};
|
|
2486
|
+
query?: never;
|
|
2487
|
+
url: "/v1/quotes/{id}";
|
|
2488
|
+
};
|
|
2489
|
+
|
|
2490
|
+
export type QuotesControllerGetQuote0V1Errors = {
|
|
2491
|
+
401: unknown;
|
|
2492
|
+
403: unknown;
|
|
2493
|
+
};
|
|
1726
2494
|
|
|
1727
|
-
export type
|
|
1728
|
-
|
|
2495
|
+
export type QuotesControllerGetQuote0V1Responses = {
|
|
2496
|
+
200: unknown;
|
|
2497
|
+
};
|
|
2498
|
+
|
|
2499
|
+
export type QuotesControllerGetQuote1Data = {
|
|
2500
|
+
body?: never;
|
|
1729
2501
|
path: {
|
|
1730
2502
|
id: string;
|
|
1731
2503
|
};
|
|
1732
2504
|
query?: never;
|
|
1733
|
-
url: "/
|
|
2505
|
+
url: "/quotes/{id}";
|
|
2506
|
+
};
|
|
2507
|
+
|
|
2508
|
+
export type QuotesControllerGetQuote1Errors = {
|
|
2509
|
+
401: unknown;
|
|
2510
|
+
403: unknown;
|
|
2511
|
+
};
|
|
2512
|
+
|
|
2513
|
+
export type QuotesControllerGetQuote1Responses = {
|
|
2514
|
+
200: unknown;
|
|
2515
|
+
};
|
|
2516
|
+
|
|
2517
|
+
export type SchemaControllerGetEventSchema0V1Data = {
|
|
2518
|
+
body?: never;
|
|
2519
|
+
path?: never;
|
|
2520
|
+
query?: never;
|
|
2521
|
+
url: "/v1/schema/event";
|
|
2522
|
+
};
|
|
2523
|
+
|
|
2524
|
+
export type SchemaControllerGetEventSchema0V1Responses = {
|
|
2525
|
+
/**
|
|
2526
|
+
* Get event schema
|
|
2527
|
+
*/
|
|
2528
|
+
200: unknown;
|
|
2529
|
+
};
|
|
2530
|
+
|
|
2531
|
+
export type SchemaControllerGetEventSchema1Data = {
|
|
2532
|
+
body?: never;
|
|
2533
|
+
path?: never;
|
|
2534
|
+
query?: never;
|
|
2535
|
+
url: "/schema/event";
|
|
2536
|
+
};
|
|
2537
|
+
|
|
2538
|
+
export type SchemaControllerGetEventSchema1Responses = {
|
|
2539
|
+
/**
|
|
2540
|
+
* Get event schema
|
|
2541
|
+
*/
|
|
2542
|
+
200: unknown;
|
|
2543
|
+
};
|
|
2544
|
+
|
|
2545
|
+
export type VaultsControllerCreateVaults0V1Data = {
|
|
2546
|
+
body: CreateVaultsRequestDto;
|
|
2547
|
+
path?: never;
|
|
2548
|
+
query?: never;
|
|
2549
|
+
url: "/v1/vaults";
|
|
1734
2550
|
};
|
|
1735
2551
|
|
|
1736
|
-
export type
|
|
2552
|
+
export type VaultsControllerCreateVaults0V1Errors = {
|
|
1737
2553
|
/**
|
|
1738
|
-
*
|
|
2554
|
+
* Validation failed - invalid funder, amount, or contract address
|
|
1739
2555
|
*/
|
|
1740
2556
|
400: unknown;
|
|
1741
2557
|
401: unknown;
|
|
1742
2558
|
403: unknown;
|
|
1743
2559
|
/**
|
|
1744
|
-
* Internal server error during
|
|
2560
|
+
* Internal server error during vault request creation
|
|
1745
2561
|
*/
|
|
1746
2562
|
500: unknown;
|
|
1747
2563
|
};
|
|
1748
2564
|
|
|
1749
|
-
export type
|
|
2565
|
+
export type VaultsControllerCreateVaults0V1Responses = {
|
|
1750
2566
|
/**
|
|
1751
|
-
*
|
|
2567
|
+
* Vault requests posted successfully
|
|
1752
2568
|
*/
|
|
1753
|
-
201:
|
|
2569
|
+
201: CreateVaultsResponseDto;
|
|
1754
2570
|
};
|
|
1755
2571
|
|
|
1756
|
-
export type
|
|
1757
|
-
|
|
2572
|
+
export type VaultsControllerCreateVaults0V1Response =
|
|
2573
|
+
VaultsControllerCreateVaults0V1Responses[keyof VaultsControllerCreateVaults0V1Responses];
|
|
1758
2574
|
|
|
1759
|
-
export type
|
|
1760
|
-
body:
|
|
2575
|
+
export type VaultsControllerCreateVaults1Data = {
|
|
2576
|
+
body: CreateVaultsRequestDto;
|
|
1761
2577
|
path?: never;
|
|
1762
2578
|
query?: never;
|
|
1763
|
-
url: "/
|
|
2579
|
+
url: "/vaults";
|
|
2580
|
+
};
|
|
2581
|
+
|
|
2582
|
+
export type VaultsControllerCreateVaults1Errors = {
|
|
2583
|
+
/**
|
|
2584
|
+
* Validation failed - invalid funder, amount, or contract address
|
|
2585
|
+
*/
|
|
2586
|
+
400: unknown;
|
|
2587
|
+
401: unknown;
|
|
2588
|
+
403: unknown;
|
|
2589
|
+
/**
|
|
2590
|
+
* Internal server error during vault request creation
|
|
2591
|
+
*/
|
|
2592
|
+
500: unknown;
|
|
2593
|
+
};
|
|
2594
|
+
|
|
2595
|
+
export type VaultsControllerCreateVaults1Responses = {
|
|
2596
|
+
/**
|
|
2597
|
+
* Vault requests posted successfully
|
|
2598
|
+
*/
|
|
2599
|
+
201: CreateVaultsResponseDto;
|
|
2600
|
+
};
|
|
2601
|
+
|
|
2602
|
+
export type VaultsControllerCreateVaults1Response =
|
|
2603
|
+
VaultsControllerCreateVaults1Responses[keyof VaultsControllerCreateVaults1Responses];
|
|
2604
|
+
|
|
2605
|
+
export type WebhooksControllerGetMany0V1Data = {
|
|
2606
|
+
body?: never;
|
|
2607
|
+
path: {
|
|
2608
|
+
org_id: number;
|
|
2609
|
+
};
|
|
2610
|
+
query?: never;
|
|
2611
|
+
url: "/v1/org/{org_id}/webhooks";
|
|
2612
|
+
};
|
|
2613
|
+
|
|
2614
|
+
export type WebhooksControllerGetMany0V1Errors = {
|
|
2615
|
+
401: unknown;
|
|
2616
|
+
403: unknown;
|
|
2617
|
+
};
|
|
2618
|
+
|
|
2619
|
+
export type WebhooksControllerGetMany0V1Responses = {
|
|
2620
|
+
200: GetWebhooksResponse;
|
|
2621
|
+
};
|
|
2622
|
+
|
|
2623
|
+
export type WebhooksControllerGetMany0V1Response =
|
|
2624
|
+
WebhooksControllerGetMany0V1Responses[keyof WebhooksControllerGetMany0V1Responses];
|
|
2625
|
+
|
|
2626
|
+
export type WebhooksControllerCreate0V1Data = {
|
|
2627
|
+
body: CreateWebhookBody;
|
|
2628
|
+
path: {
|
|
2629
|
+
org_id: number;
|
|
2630
|
+
};
|
|
2631
|
+
query?: never;
|
|
2632
|
+
url: "/v1/org/{org_id}/webhooks";
|
|
2633
|
+
};
|
|
2634
|
+
|
|
2635
|
+
export type WebhooksControllerCreate0V1Errors = {
|
|
2636
|
+
401: unknown;
|
|
2637
|
+
403: unknown;
|
|
2638
|
+
};
|
|
2639
|
+
|
|
2640
|
+
export type WebhooksControllerCreate0V1Responses = {
|
|
2641
|
+
201: CreateWebhookResponse;
|
|
2642
|
+
};
|
|
2643
|
+
|
|
2644
|
+
export type WebhooksControllerCreate0V1Response =
|
|
2645
|
+
WebhooksControllerCreate0V1Responses[keyof WebhooksControllerCreate0V1Responses];
|
|
2646
|
+
|
|
2647
|
+
export type WebhooksControllerGetMany1Data = {
|
|
2648
|
+
body?: never;
|
|
2649
|
+
path: {
|
|
2650
|
+
org_id: number;
|
|
2651
|
+
};
|
|
2652
|
+
query?: never;
|
|
2653
|
+
url: "/org/{org_id}/webhooks";
|
|
2654
|
+
};
|
|
2655
|
+
|
|
2656
|
+
export type WebhooksControllerGetMany1Errors = {
|
|
2657
|
+
401: unknown;
|
|
2658
|
+
403: unknown;
|
|
2659
|
+
};
|
|
2660
|
+
|
|
2661
|
+
export type WebhooksControllerGetMany1Responses = {
|
|
2662
|
+
200: GetWebhooksResponse;
|
|
2663
|
+
};
|
|
2664
|
+
|
|
2665
|
+
export type WebhooksControllerGetMany1Response =
|
|
2666
|
+
WebhooksControllerGetMany1Responses[keyof WebhooksControllerGetMany1Responses];
|
|
2667
|
+
|
|
2668
|
+
export type WebhooksControllerCreate1Data = {
|
|
2669
|
+
body: CreateWebhookBody;
|
|
2670
|
+
path: {
|
|
2671
|
+
org_id: number;
|
|
2672
|
+
};
|
|
2673
|
+
query?: never;
|
|
2674
|
+
url: "/org/{org_id}/webhooks";
|
|
2675
|
+
};
|
|
2676
|
+
|
|
2677
|
+
export type WebhooksControllerCreate1Errors = {
|
|
2678
|
+
401: unknown;
|
|
2679
|
+
403: unknown;
|
|
2680
|
+
};
|
|
2681
|
+
|
|
2682
|
+
export type WebhooksControllerCreate1Responses = {
|
|
2683
|
+
201: CreateWebhookResponse;
|
|
2684
|
+
};
|
|
2685
|
+
|
|
2686
|
+
export type WebhooksControllerCreate1Response =
|
|
2687
|
+
WebhooksControllerCreate1Responses[keyof WebhooksControllerCreate1Responses];
|
|
2688
|
+
|
|
2689
|
+
export type WebhooksControllerDelete0V1Data = {
|
|
2690
|
+
body?: never;
|
|
2691
|
+
path: {
|
|
2692
|
+
org_id: number;
|
|
2693
|
+
id: number;
|
|
2694
|
+
};
|
|
2695
|
+
query?: never;
|
|
2696
|
+
url: "/v1/org/{org_id}/webhooks/{id}";
|
|
2697
|
+
};
|
|
2698
|
+
|
|
2699
|
+
export type WebhooksControllerDelete0V1Errors = {
|
|
2700
|
+
401: unknown;
|
|
2701
|
+
403: unknown;
|
|
2702
|
+
};
|
|
2703
|
+
|
|
2704
|
+
export type WebhooksControllerDelete0V1Responses = {
|
|
2705
|
+
200: DeleteWebhookResponse;
|
|
2706
|
+
};
|
|
2707
|
+
|
|
2708
|
+
export type WebhooksControllerDelete0V1Response =
|
|
2709
|
+
WebhooksControllerDelete0V1Responses[keyof WebhooksControllerDelete0V1Responses];
|
|
2710
|
+
|
|
2711
|
+
export type WebhooksControllerGet0V1Data = {
|
|
2712
|
+
body?: never;
|
|
2713
|
+
path: {
|
|
2714
|
+
org_id: number;
|
|
2715
|
+
id: number;
|
|
2716
|
+
};
|
|
2717
|
+
query?: never;
|
|
2718
|
+
url: "/v1/org/{org_id}/webhooks/{id}";
|
|
1764
2719
|
};
|
|
1765
2720
|
|
|
1766
|
-
export type
|
|
2721
|
+
export type WebhooksControllerGet0V1Errors = {
|
|
1767
2722
|
401: unknown;
|
|
1768
2723
|
403: unknown;
|
|
1769
2724
|
};
|
|
1770
2725
|
|
|
1771
|
-
export type
|
|
1772
|
-
|
|
2726
|
+
export type WebhooksControllerGet0V1Responses = {
|
|
2727
|
+
200: GetWebhookResponse;
|
|
1773
2728
|
};
|
|
1774
2729
|
|
|
1775
|
-
export type
|
|
1776
|
-
|
|
2730
|
+
export type WebhooksControllerGet0V1Response =
|
|
2731
|
+
WebhooksControllerGet0V1Responses[keyof WebhooksControllerGet0V1Responses];
|
|
2732
|
+
|
|
2733
|
+
export type WebhooksControllerUpdate0V1Data = {
|
|
2734
|
+
body: UpdateWebhookBody;
|
|
1777
2735
|
path: {
|
|
1778
|
-
|
|
2736
|
+
org_id: number;
|
|
2737
|
+
id: number;
|
|
1779
2738
|
};
|
|
1780
2739
|
query?: never;
|
|
1781
|
-
url: "/
|
|
2740
|
+
url: "/v1/org/{org_id}/webhooks/{id}";
|
|
1782
2741
|
};
|
|
1783
2742
|
|
|
1784
|
-
export type
|
|
2743
|
+
export type WebhooksControllerUpdate0V1Errors = {
|
|
1785
2744
|
401: unknown;
|
|
1786
2745
|
403: unknown;
|
|
1787
2746
|
};
|
|
1788
2747
|
|
|
1789
|
-
export type
|
|
1790
|
-
200:
|
|
1791
|
-
};
|
|
1792
|
-
|
|
1793
|
-
export type SchemaControllerGetEventSchemaData = {
|
|
1794
|
-
body?: never;
|
|
1795
|
-
path?: never;
|
|
1796
|
-
query?: never;
|
|
1797
|
-
url: "/schema/event";
|
|
2748
|
+
export type WebhooksControllerUpdate0V1Responses = {
|
|
2749
|
+
200: UpdateWebhookResponse;
|
|
1798
2750
|
};
|
|
1799
2751
|
|
|
1800
|
-
export type
|
|
1801
|
-
|
|
1802
|
-
* Get event schema
|
|
1803
|
-
*/
|
|
1804
|
-
200: unknown;
|
|
1805
|
-
};
|
|
2752
|
+
export type WebhooksControllerUpdate0V1Response =
|
|
2753
|
+
WebhooksControllerUpdate0V1Responses[keyof WebhooksControllerUpdate0V1Responses];
|
|
1806
2754
|
|
|
1807
|
-
export type
|
|
1808
|
-
body
|
|
1809
|
-
path
|
|
2755
|
+
export type WebhooksControllerDelete1Data = {
|
|
2756
|
+
body?: never;
|
|
2757
|
+
path: {
|
|
2758
|
+
org_id: number;
|
|
2759
|
+
id: number;
|
|
2760
|
+
};
|
|
1810
2761
|
query?: never;
|
|
1811
|
-
url: "/
|
|
2762
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1812
2763
|
};
|
|
1813
2764
|
|
|
1814
|
-
export type
|
|
1815
|
-
/**
|
|
1816
|
-
* Validation failed - invalid funder, amount, or contract address
|
|
1817
|
-
*/
|
|
1818
|
-
400: unknown;
|
|
2765
|
+
export type WebhooksControllerDelete1Errors = {
|
|
1819
2766
|
401: unknown;
|
|
1820
2767
|
403: unknown;
|
|
1821
|
-
/**
|
|
1822
|
-
* Internal server error during vault request creation
|
|
1823
|
-
*/
|
|
1824
|
-
500: unknown;
|
|
1825
2768
|
};
|
|
1826
2769
|
|
|
1827
|
-
export type
|
|
1828
|
-
|
|
1829
|
-
* Vault requests posted successfully
|
|
1830
|
-
*/
|
|
1831
|
-
201: CreateVaultsResponseDto;
|
|
2770
|
+
export type WebhooksControllerDelete1Responses = {
|
|
2771
|
+
200: DeleteWebhookResponse;
|
|
1832
2772
|
};
|
|
1833
2773
|
|
|
1834
|
-
export type
|
|
1835
|
-
|
|
2774
|
+
export type WebhooksControllerDelete1Response =
|
|
2775
|
+
WebhooksControllerDelete1Responses[keyof WebhooksControllerDelete1Responses];
|
|
1836
2776
|
|
|
1837
|
-
export type
|
|
2777
|
+
export type WebhooksControllerGet1Data = {
|
|
1838
2778
|
body?: never;
|
|
1839
2779
|
path: {
|
|
1840
2780
|
org_id: number;
|
|
2781
|
+
id: number;
|
|
1841
2782
|
};
|
|
1842
2783
|
query?: never;
|
|
1843
|
-
url: "/org/{org_id}/webhooks";
|
|
2784
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1844
2785
|
};
|
|
1845
2786
|
|
|
1846
|
-
export type
|
|
2787
|
+
export type WebhooksControllerGet1Errors = {
|
|
1847
2788
|
401: unknown;
|
|
1848
2789
|
403: unknown;
|
|
1849
2790
|
};
|
|
1850
2791
|
|
|
1851
|
-
export type
|
|
1852
|
-
200:
|
|
2792
|
+
export type WebhooksControllerGet1Responses = {
|
|
2793
|
+
200: GetWebhookResponse;
|
|
1853
2794
|
};
|
|
1854
2795
|
|
|
1855
|
-
export type
|
|
1856
|
-
|
|
2796
|
+
export type WebhooksControllerGet1Response =
|
|
2797
|
+
WebhooksControllerGet1Responses[keyof WebhooksControllerGet1Responses];
|
|
1857
2798
|
|
|
1858
|
-
export type
|
|
1859
|
-
body:
|
|
2799
|
+
export type WebhooksControllerUpdate1Data = {
|
|
2800
|
+
body: UpdateWebhookBody;
|
|
1860
2801
|
path: {
|
|
1861
2802
|
org_id: number;
|
|
2803
|
+
id: number;
|
|
1862
2804
|
};
|
|
1863
2805
|
query?: never;
|
|
1864
|
-
url: "/org/{org_id}/webhooks";
|
|
2806
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1865
2807
|
};
|
|
1866
2808
|
|
|
1867
|
-
export type
|
|
2809
|
+
export type WebhooksControllerUpdate1Errors = {
|
|
1868
2810
|
401: unknown;
|
|
1869
2811
|
403: unknown;
|
|
1870
2812
|
};
|
|
1871
2813
|
|
|
1872
|
-
export type
|
|
1873
|
-
|
|
2814
|
+
export type WebhooksControllerUpdate1Responses = {
|
|
2815
|
+
200: UpdateWebhookResponse;
|
|
1874
2816
|
};
|
|
1875
2817
|
|
|
1876
|
-
export type
|
|
1877
|
-
|
|
2818
|
+
export type WebhooksControllerUpdate1Response =
|
|
2819
|
+
WebhooksControllerUpdate1Responses[keyof WebhooksControllerUpdate1Responses];
|
|
1878
2820
|
|
|
1879
|
-
export type
|
|
1880
|
-
body
|
|
2821
|
+
export type WebhooksControllerRegenerateSecret0V1Data = {
|
|
2822
|
+
body: RegenerateWebhookSecretBody;
|
|
1881
2823
|
path: {
|
|
1882
2824
|
org_id: number;
|
|
1883
2825
|
id: number;
|
|
1884
2826
|
};
|
|
1885
2827
|
query?: never;
|
|
1886
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
2828
|
+
url: "/v1/org/{org_id}/webhooks/{id}/regenerate-secret";
|
|
1887
2829
|
};
|
|
1888
2830
|
|
|
1889
|
-
export type
|
|
2831
|
+
export type WebhooksControllerRegenerateSecret0V1Errors = {
|
|
1890
2832
|
401: unknown;
|
|
1891
2833
|
403: unknown;
|
|
1892
2834
|
};
|
|
1893
2835
|
|
|
1894
|
-
export type
|
|
1895
|
-
200:
|
|
2836
|
+
export type WebhooksControllerRegenerateSecret0V1Responses = {
|
|
2837
|
+
200: RegenerateWebhookSecretResponseDto;
|
|
1896
2838
|
};
|
|
1897
2839
|
|
|
1898
|
-
export type
|
|
1899
|
-
|
|
2840
|
+
export type WebhooksControllerRegenerateSecret0V1Response =
|
|
2841
|
+
WebhooksControllerRegenerateSecret0V1Responses[keyof WebhooksControllerRegenerateSecret0V1Responses];
|
|
1900
2842
|
|
|
1901
|
-
export type
|
|
1902
|
-
body
|
|
2843
|
+
export type WebhooksControllerRegenerateSecret1Data = {
|
|
2844
|
+
body: RegenerateWebhookSecretBody;
|
|
1903
2845
|
path: {
|
|
1904
2846
|
org_id: number;
|
|
1905
2847
|
id: number;
|
|
1906
2848
|
};
|
|
1907
2849
|
query?: never;
|
|
1908
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
2850
|
+
url: "/org/{org_id}/webhooks/{id}/regenerate-secret";
|
|
1909
2851
|
};
|
|
1910
2852
|
|
|
1911
|
-
export type
|
|
2853
|
+
export type WebhooksControllerRegenerateSecret1Errors = {
|
|
1912
2854
|
401: unknown;
|
|
1913
2855
|
403: unknown;
|
|
1914
2856
|
};
|
|
1915
2857
|
|
|
1916
|
-
export type
|
|
1917
|
-
200:
|
|
2858
|
+
export type WebhooksControllerRegenerateSecret1Responses = {
|
|
2859
|
+
200: RegenerateWebhookSecretResponseDto;
|
|
1918
2860
|
};
|
|
1919
2861
|
|
|
1920
|
-
export type
|
|
1921
|
-
|
|
2862
|
+
export type WebhooksControllerRegenerateSecret1Response =
|
|
2863
|
+
WebhooksControllerRegenerateSecret1Responses[keyof WebhooksControllerRegenerateSecret1Responses];
|
|
1922
2864
|
|
|
1923
|
-
export type
|
|
1924
|
-
body
|
|
2865
|
+
export type WebhooksControllerTest0V1Data = {
|
|
2866
|
+
body?: never;
|
|
1925
2867
|
path: {
|
|
1926
2868
|
org_id: number;
|
|
1927
2869
|
id: number;
|
|
1928
2870
|
};
|
|
1929
2871
|
query?: never;
|
|
1930
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
2872
|
+
url: "/v1/org/{org_id}/webhooks/{id}/test";
|
|
1931
2873
|
};
|
|
1932
2874
|
|
|
1933
|
-
export type
|
|
2875
|
+
export type WebhooksControllerTest0V1Errors = {
|
|
1934
2876
|
401: unknown;
|
|
1935
2877
|
403: unknown;
|
|
1936
2878
|
};
|
|
1937
2879
|
|
|
1938
|
-
export type
|
|
1939
|
-
200:
|
|
2880
|
+
export type WebhooksControllerTest0V1Responses = {
|
|
2881
|
+
200: TestWebhookResponse;
|
|
1940
2882
|
};
|
|
1941
2883
|
|
|
1942
|
-
export type
|
|
1943
|
-
|
|
2884
|
+
export type WebhooksControllerTest0V1Response =
|
|
2885
|
+
WebhooksControllerTest0V1Responses[keyof WebhooksControllerTest0V1Responses];
|
|
1944
2886
|
|
|
1945
|
-
export type
|
|
1946
|
-
body
|
|
2887
|
+
export type WebhooksControllerTest1Data = {
|
|
2888
|
+
body?: never;
|
|
1947
2889
|
path: {
|
|
1948
2890
|
org_id: number;
|
|
1949
2891
|
id: number;
|
|
1950
2892
|
};
|
|
1951
2893
|
query?: never;
|
|
1952
|
-
url: "/org/{org_id}/webhooks/{id}/
|
|
2894
|
+
url: "/org/{org_id}/webhooks/{id}/test";
|
|
1953
2895
|
};
|
|
1954
2896
|
|
|
1955
|
-
export type
|
|
2897
|
+
export type WebhooksControllerTest1Errors = {
|
|
1956
2898
|
401: unknown;
|
|
1957
2899
|
403: unknown;
|
|
1958
2900
|
};
|
|
1959
2901
|
|
|
1960
|
-
export type
|
|
1961
|
-
200:
|
|
2902
|
+
export type WebhooksControllerTest1Responses = {
|
|
2903
|
+
200: TestWebhookResponse;
|
|
1962
2904
|
};
|
|
1963
2905
|
|
|
1964
|
-
export type
|
|
1965
|
-
|
|
2906
|
+
export type WebhooksControllerTest1Response =
|
|
2907
|
+
WebhooksControllerTest1Responses[keyof WebhooksControllerTest1Responses];
|
|
1966
2908
|
|
|
1967
|
-
export type
|
|
2909
|
+
export type WebhooksControllerGetStatus0V1Data = {
|
|
1968
2910
|
body?: never;
|
|
1969
2911
|
path: {
|
|
1970
2912
|
org_id: number;
|
|
1971
2913
|
id: number;
|
|
1972
2914
|
};
|
|
1973
2915
|
query?: never;
|
|
1974
|
-
url: "/org/{org_id}/webhooks/{id}/
|
|
2916
|
+
url: "/v1/org/{org_id}/webhooks/{id}/status";
|
|
1975
2917
|
};
|
|
1976
2918
|
|
|
1977
|
-
export type
|
|
2919
|
+
export type WebhooksControllerGetStatus0V1Errors = {
|
|
1978
2920
|
401: unknown;
|
|
1979
2921
|
403: unknown;
|
|
1980
2922
|
};
|
|
1981
2923
|
|
|
1982
|
-
export type
|
|
1983
|
-
200:
|
|
2924
|
+
export type WebhooksControllerGetStatus0V1Responses = {
|
|
2925
|
+
200: GetWebhookStatusResponse;
|
|
1984
2926
|
};
|
|
1985
2927
|
|
|
1986
|
-
export type
|
|
1987
|
-
|
|
2928
|
+
export type WebhooksControllerGetStatus0V1Response =
|
|
2929
|
+
WebhooksControllerGetStatus0V1Responses[keyof WebhooksControllerGetStatus0V1Responses];
|
|
1988
2930
|
|
|
1989
|
-
export type
|
|
2931
|
+
export type WebhooksControllerGetStatus1Data = {
|
|
1990
2932
|
body?: never;
|
|
1991
2933
|
path: {
|
|
1992
2934
|
org_id: number;
|
|
@@ -1996,26 +2938,53 @@ export type WebhooksControllerGetStatusData = {
|
|
|
1996
2938
|
url: "/org/{org_id}/webhooks/{id}/status";
|
|
1997
2939
|
};
|
|
1998
2940
|
|
|
1999
|
-
export type
|
|
2941
|
+
export type WebhooksControllerGetStatus1Errors = {
|
|
2000
2942
|
401: unknown;
|
|
2001
2943
|
403: unknown;
|
|
2002
2944
|
};
|
|
2003
2945
|
|
|
2004
|
-
export type
|
|
2946
|
+
export type WebhooksControllerGetStatus1Responses = {
|
|
2005
2947
|
200: GetWebhookStatusResponse;
|
|
2006
2948
|
};
|
|
2007
2949
|
|
|
2008
|
-
export type
|
|
2009
|
-
|
|
2950
|
+
export type WebhooksControllerGetStatus1Response =
|
|
2951
|
+
WebhooksControllerGetStatus1Responses[keyof WebhooksControllerGetStatus1Responses];
|
|
2952
|
+
|
|
2953
|
+
export type ZonesControllerCreateZone0V1Data = {
|
|
2954
|
+
body: CreateZoneDto;
|
|
2955
|
+
path?: never;
|
|
2956
|
+
query?: never;
|
|
2957
|
+
url: "/v1/zones";
|
|
2958
|
+
};
|
|
2959
|
+
|
|
2960
|
+
export type ZonesControllerCreateZone0V1Errors = {
|
|
2961
|
+
/**
|
|
2962
|
+
* Invalid zone id (must be a valid level-9 H3 cell)
|
|
2963
|
+
*/
|
|
2964
|
+
400: unknown;
|
|
2965
|
+
401: unknown;
|
|
2966
|
+
403: unknown;
|
|
2967
|
+
/**
|
|
2968
|
+
* Zone already exists
|
|
2969
|
+
*/
|
|
2970
|
+
409: unknown;
|
|
2971
|
+
};
|
|
2972
|
+
|
|
2973
|
+
export type ZonesControllerCreateZone0V1Responses = {
|
|
2974
|
+
201: ZoneResponseDto;
|
|
2975
|
+
};
|
|
2010
2976
|
|
|
2011
|
-
export type
|
|
2977
|
+
export type ZonesControllerCreateZone0V1Response =
|
|
2978
|
+
ZonesControllerCreateZone0V1Responses[keyof ZonesControllerCreateZone0V1Responses];
|
|
2979
|
+
|
|
2980
|
+
export type ZonesControllerCreateZone1Data = {
|
|
2012
2981
|
body: CreateZoneDto;
|
|
2013
2982
|
path?: never;
|
|
2014
2983
|
query?: never;
|
|
2015
2984
|
url: "/zones";
|
|
2016
2985
|
};
|
|
2017
2986
|
|
|
2018
|
-
export type
|
|
2987
|
+
export type ZonesControllerCreateZone1Errors = {
|
|
2019
2988
|
/**
|
|
2020
2989
|
* Invalid zone id (must be a valid level-9 H3 cell)
|
|
2021
2990
|
*/
|
|
@@ -2028,14 +2997,67 @@ export type ZonesControllerCreateZoneErrors = {
|
|
|
2028
2997
|
409: unknown;
|
|
2029
2998
|
};
|
|
2030
2999
|
|
|
2031
|
-
export type
|
|
3000
|
+
export type ZonesControllerCreateZone1Responses = {
|
|
2032
3001
|
201: ZoneResponseDto;
|
|
2033
3002
|
};
|
|
2034
3003
|
|
|
2035
|
-
export type
|
|
2036
|
-
|
|
3004
|
+
export type ZonesControllerCreateZone1Response =
|
|
3005
|
+
ZonesControllerCreateZone1Responses[keyof ZonesControllerCreateZone1Responses];
|
|
3006
|
+
|
|
3007
|
+
export type ZonesControllerDeleteZone0V1Data = {
|
|
3008
|
+
body?: never;
|
|
3009
|
+
path: {
|
|
3010
|
+
id: string;
|
|
3011
|
+
};
|
|
3012
|
+
query?: never;
|
|
3013
|
+
url: "/v1/zones/{id}";
|
|
3014
|
+
};
|
|
3015
|
+
|
|
3016
|
+
export type ZonesControllerDeleteZone0V1Errors = {
|
|
3017
|
+
401: unknown;
|
|
3018
|
+
403: unknown;
|
|
3019
|
+
/**
|
|
3020
|
+
* Zone not found
|
|
3021
|
+
*/
|
|
3022
|
+
404: unknown;
|
|
3023
|
+
};
|
|
3024
|
+
|
|
3025
|
+
export type ZonesControllerDeleteZone0V1Responses = {
|
|
3026
|
+
/**
|
|
3027
|
+
* Zone deleted
|
|
3028
|
+
*/
|
|
3029
|
+
204: void;
|
|
3030
|
+
};
|
|
3031
|
+
|
|
3032
|
+
export type ZonesControllerDeleteZone0V1Response =
|
|
3033
|
+
ZonesControllerDeleteZone0V1Responses[keyof ZonesControllerDeleteZone0V1Responses];
|
|
3034
|
+
|
|
3035
|
+
export type ZonesControllerUpdateZone0V1Data = {
|
|
3036
|
+
body: UpdateZoneDto;
|
|
3037
|
+
path: {
|
|
3038
|
+
id: string;
|
|
3039
|
+
};
|
|
3040
|
+
query?: never;
|
|
3041
|
+
url: "/v1/zones/{id}";
|
|
3042
|
+
};
|
|
3043
|
+
|
|
3044
|
+
export type ZonesControllerUpdateZone0V1Errors = {
|
|
3045
|
+
401: unknown;
|
|
3046
|
+
403: unknown;
|
|
3047
|
+
/**
|
|
3048
|
+
* Zone not found
|
|
3049
|
+
*/
|
|
3050
|
+
404: unknown;
|
|
3051
|
+
};
|
|
3052
|
+
|
|
3053
|
+
export type ZonesControllerUpdateZone0V1Responses = {
|
|
3054
|
+
200: ZoneResponseDto;
|
|
3055
|
+
};
|
|
3056
|
+
|
|
3057
|
+
export type ZonesControllerUpdateZone0V1Response =
|
|
3058
|
+
ZonesControllerUpdateZone0V1Responses[keyof ZonesControllerUpdateZone0V1Responses];
|
|
2037
3059
|
|
|
2038
|
-
export type
|
|
3060
|
+
export type ZonesControllerDeleteZone1Data = {
|
|
2039
3061
|
body?: never;
|
|
2040
3062
|
path: {
|
|
2041
3063
|
id: string;
|
|
@@ -2044,7 +3066,7 @@ export type ZonesControllerDeleteZoneData = {
|
|
|
2044
3066
|
url: "/zones/{id}";
|
|
2045
3067
|
};
|
|
2046
3068
|
|
|
2047
|
-
export type
|
|
3069
|
+
export type ZonesControllerDeleteZone1Errors = {
|
|
2048
3070
|
401: unknown;
|
|
2049
3071
|
403: unknown;
|
|
2050
3072
|
/**
|
|
@@ -2053,17 +3075,17 @@ export type ZonesControllerDeleteZoneErrors = {
|
|
|
2053
3075
|
404: unknown;
|
|
2054
3076
|
};
|
|
2055
3077
|
|
|
2056
|
-
export type
|
|
3078
|
+
export type ZonesControllerDeleteZone1Responses = {
|
|
2057
3079
|
/**
|
|
2058
3080
|
* Zone deleted
|
|
2059
3081
|
*/
|
|
2060
3082
|
204: void;
|
|
2061
3083
|
};
|
|
2062
3084
|
|
|
2063
|
-
export type
|
|
2064
|
-
|
|
3085
|
+
export type ZonesControllerDeleteZone1Response =
|
|
3086
|
+
ZonesControllerDeleteZone1Responses[keyof ZonesControllerDeleteZone1Responses];
|
|
2065
3087
|
|
|
2066
|
-
export type
|
|
3088
|
+
export type ZonesControllerUpdateZone1Data = {
|
|
2067
3089
|
body: UpdateZoneDto;
|
|
2068
3090
|
path: {
|
|
2069
3091
|
id: string;
|
|
@@ -2072,7 +3094,7 @@ export type ZonesControllerUpdateZoneData = {
|
|
|
2072
3094
|
url: "/zones/{id}";
|
|
2073
3095
|
};
|
|
2074
3096
|
|
|
2075
|
-
export type
|
|
3097
|
+
export type ZonesControllerUpdateZone1Errors = {
|
|
2076
3098
|
401: unknown;
|
|
2077
3099
|
403: unknown;
|
|
2078
3100
|
/**
|
|
@@ -2081,49 +3103,97 @@ export type ZonesControllerUpdateZoneErrors = {
|
|
|
2081
3103
|
404: unknown;
|
|
2082
3104
|
};
|
|
2083
3105
|
|
|
2084
|
-
export type
|
|
3106
|
+
export type ZonesControllerUpdateZone1Responses = {
|
|
2085
3107
|
200: ZoneResponseDto;
|
|
2086
3108
|
};
|
|
2087
3109
|
|
|
2088
|
-
export type
|
|
2089
|
-
|
|
3110
|
+
export type ZonesControllerUpdateZone1Response =
|
|
3111
|
+
ZonesControllerUpdateZone1Responses[keyof ZonesControllerUpdateZone1Responses];
|
|
2090
3112
|
|
|
2091
|
-
export type
|
|
3113
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Data = {
|
|
2092
3114
|
body: SyncEventProcessorMissionsRequestDto;
|
|
2093
3115
|
path?: never;
|
|
2094
3116
|
query?: never;
|
|
2095
|
-
url: "/event-processor/missions/sync";
|
|
3117
|
+
url: "/v1/event-processor/missions/sync";
|
|
2096
3118
|
};
|
|
2097
3119
|
|
|
2098
|
-
export type
|
|
3120
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Errors = {
|
|
2099
3121
|
401: unknown;
|
|
2100
3122
|
403: unknown;
|
|
2101
3123
|
};
|
|
2102
3124
|
|
|
2103
|
-
export type
|
|
3125
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Responses = {
|
|
2104
3126
|
/**
|
|
2105
3127
|
* Per-mission success or failure.
|
|
2106
3128
|
*/
|
|
2107
3129
|
200: SyncEventProcessorMissionsResponseDto;
|
|
2108
3130
|
};
|
|
2109
3131
|
|
|
2110
|
-
export type
|
|
2111
|
-
|
|
3132
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Response =
|
|
3133
|
+
EventProcessorMissionsSyncControllerResyncMissions0V1Responses[keyof EventProcessorMissionsSyncControllerResyncMissions0V1Responses];
|
|
2112
3134
|
|
|
2113
|
-
export type
|
|
2114
|
-
body:
|
|
3135
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Data = {
|
|
3136
|
+
body: SyncEventProcessorMissionsRequestDto;
|
|
2115
3137
|
path?: never;
|
|
2116
3138
|
query?: never;
|
|
2117
|
-
url: "/event-processor/
|
|
3139
|
+
url: "/event-processor/missions/sync";
|
|
3140
|
+
};
|
|
3141
|
+
|
|
3142
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Errors = {
|
|
3143
|
+
401: unknown;
|
|
3144
|
+
403: unknown;
|
|
3145
|
+
};
|
|
3146
|
+
|
|
3147
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Responses = {
|
|
3148
|
+
/**
|
|
3149
|
+
* Per-mission success or failure.
|
|
3150
|
+
*/
|
|
3151
|
+
200: SyncEventProcessorMissionsResponseDto;
|
|
2118
3152
|
};
|
|
2119
3153
|
|
|
2120
|
-
export type
|
|
3154
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Response =
|
|
3155
|
+
EventProcessorMissionsSyncControllerResyncMissions1Responses[keyof EventProcessorMissionsSyncControllerResyncMissions1Responses];
|
|
3156
|
+
|
|
3157
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Data =
|
|
3158
|
+
{
|
|
3159
|
+
body: SyncEventProcessorFlightReviewsRequestDto;
|
|
3160
|
+
path?: never;
|
|
3161
|
+
query?: never;
|
|
3162
|
+
url: "/v1/event-processor/flightreviews";
|
|
3163
|
+
};
|
|
3164
|
+
|
|
3165
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Errors =
|
|
3166
|
+
{
|
|
3167
|
+
401: unknown;
|
|
3168
|
+
403: unknown;
|
|
3169
|
+
};
|
|
3170
|
+
|
|
3171
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses =
|
|
3172
|
+
{
|
|
3173
|
+
/**
|
|
3174
|
+
* Per-flight success or failure.
|
|
3175
|
+
*/
|
|
3176
|
+
200: SyncEventProcessorFlightReviewsResponseDto;
|
|
3177
|
+
};
|
|
3178
|
+
|
|
3179
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Response =
|
|
3180
|
+
EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses[keyof EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses];
|
|
3181
|
+
|
|
3182
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Data =
|
|
3183
|
+
{
|
|
3184
|
+
body: SyncEventProcessorFlightReviewsRequestDto;
|
|
3185
|
+
path?: never;
|
|
3186
|
+
query?: never;
|
|
3187
|
+
url: "/event-processor/flightreviews";
|
|
3188
|
+
};
|
|
3189
|
+
|
|
3190
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Errors =
|
|
2121
3191
|
{
|
|
2122
3192
|
401: unknown;
|
|
2123
3193
|
403: unknown;
|
|
2124
3194
|
};
|
|
2125
3195
|
|
|
2126
|
-
export type
|
|
3196
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses =
|
|
2127
3197
|
{
|
|
2128
3198
|
/**
|
|
2129
3199
|
* Per-flight success or failure.
|
|
@@ -2131,59 +3201,171 @@ export type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponse
|
|
|
2131
3201
|
200: SyncEventProcessorFlightReviewsResponseDto;
|
|
2132
3202
|
};
|
|
2133
3203
|
|
|
2134
|
-
export type
|
|
2135
|
-
|
|
3204
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Response =
|
|
3205
|
+
EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses[keyof EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses];
|
|
3206
|
+
|
|
3207
|
+
export type AlchemyControllerHandleWebhook0V1Data = {
|
|
3208
|
+
body: AlchemyWebhookBodyDto;
|
|
3209
|
+
path?: never;
|
|
3210
|
+
query?: never;
|
|
3211
|
+
url: "/v1/webhooks/inbound/alchemy";
|
|
3212
|
+
};
|
|
3213
|
+
|
|
3214
|
+
export type AlchemyControllerHandleWebhook0V1Responses = {
|
|
3215
|
+
200: unknown;
|
|
3216
|
+
};
|
|
2136
3217
|
|
|
2137
|
-
export type
|
|
3218
|
+
export type AlchemyControllerHandleWebhook1Data = {
|
|
2138
3219
|
body: AlchemyWebhookBodyDto;
|
|
2139
3220
|
path?: never;
|
|
2140
3221
|
query?: never;
|
|
2141
3222
|
url: "/webhooks/inbound/alchemy";
|
|
2142
3223
|
};
|
|
2143
3224
|
|
|
2144
|
-
export type
|
|
3225
|
+
export type AlchemyControllerHandleWebhook1Responses = {
|
|
2145
3226
|
200: unknown;
|
|
2146
3227
|
};
|
|
2147
3228
|
|
|
2148
|
-
export type
|
|
3229
|
+
export type InboundWebhookConfigsControllerGetMany0V1Data = {
|
|
3230
|
+
body?: never;
|
|
3231
|
+
path?: never;
|
|
3232
|
+
query?: never;
|
|
3233
|
+
url: "/v1/webhooks/inbound/configs";
|
|
3234
|
+
};
|
|
3235
|
+
|
|
3236
|
+
export type InboundWebhookConfigsControllerGetMany0V1Errors = {
|
|
3237
|
+
401: unknown;
|
|
3238
|
+
403: unknown;
|
|
3239
|
+
};
|
|
3240
|
+
|
|
3241
|
+
export type InboundWebhookConfigsControllerGetMany0V1Responses = {
|
|
3242
|
+
200: GetInboundWebhookConfigsResponse;
|
|
3243
|
+
};
|
|
3244
|
+
|
|
3245
|
+
export type InboundWebhookConfigsControllerGetMany0V1Response =
|
|
3246
|
+
InboundWebhookConfigsControllerGetMany0V1Responses[keyof InboundWebhookConfigsControllerGetMany0V1Responses];
|
|
3247
|
+
|
|
3248
|
+
export type InboundWebhookConfigsControllerCreate0V1Data = {
|
|
3249
|
+
body: CreateInboundWebhookConfigBody;
|
|
3250
|
+
path?: never;
|
|
3251
|
+
query?: never;
|
|
3252
|
+
url: "/v1/webhooks/inbound/configs";
|
|
3253
|
+
};
|
|
3254
|
+
|
|
3255
|
+
export type InboundWebhookConfigsControllerCreate0V1Errors = {
|
|
3256
|
+
401: unknown;
|
|
3257
|
+
403: unknown;
|
|
3258
|
+
};
|
|
3259
|
+
|
|
3260
|
+
export type InboundWebhookConfigsControllerCreate0V1Responses = {
|
|
3261
|
+
201: CreateInboundWebhookConfigResponse;
|
|
3262
|
+
};
|
|
3263
|
+
|
|
3264
|
+
export type InboundWebhookConfigsControllerCreate0V1Response =
|
|
3265
|
+
InboundWebhookConfigsControllerCreate0V1Responses[keyof InboundWebhookConfigsControllerCreate0V1Responses];
|
|
3266
|
+
|
|
3267
|
+
export type InboundWebhookConfigsControllerGetMany1Data = {
|
|
2149
3268
|
body?: never;
|
|
2150
3269
|
path?: never;
|
|
2151
3270
|
query?: never;
|
|
2152
3271
|
url: "/webhooks/inbound/configs";
|
|
2153
3272
|
};
|
|
2154
3273
|
|
|
2155
|
-
export type
|
|
3274
|
+
export type InboundWebhookConfigsControllerGetMany1Errors = {
|
|
2156
3275
|
401: unknown;
|
|
2157
3276
|
403: unknown;
|
|
2158
3277
|
};
|
|
2159
3278
|
|
|
2160
|
-
export type
|
|
3279
|
+
export type InboundWebhookConfigsControllerGetMany1Responses = {
|
|
2161
3280
|
200: GetInboundWebhookConfigsResponse;
|
|
2162
3281
|
};
|
|
2163
3282
|
|
|
2164
|
-
export type
|
|
2165
|
-
|
|
3283
|
+
export type InboundWebhookConfigsControllerGetMany1Response =
|
|
3284
|
+
InboundWebhookConfigsControllerGetMany1Responses[keyof InboundWebhookConfigsControllerGetMany1Responses];
|
|
2166
3285
|
|
|
2167
|
-
export type
|
|
3286
|
+
export type InboundWebhookConfigsControllerCreate1Data = {
|
|
2168
3287
|
body: CreateInboundWebhookConfigBody;
|
|
2169
3288
|
path?: never;
|
|
2170
3289
|
query?: never;
|
|
2171
3290
|
url: "/webhooks/inbound/configs";
|
|
2172
3291
|
};
|
|
2173
3292
|
|
|
2174
|
-
export type
|
|
3293
|
+
export type InboundWebhookConfigsControllerCreate1Errors = {
|
|
2175
3294
|
401: unknown;
|
|
2176
3295
|
403: unknown;
|
|
2177
3296
|
};
|
|
2178
3297
|
|
|
2179
|
-
export type
|
|
3298
|
+
export type InboundWebhookConfigsControllerCreate1Responses = {
|
|
2180
3299
|
201: CreateInboundWebhookConfigResponse;
|
|
2181
3300
|
};
|
|
2182
3301
|
|
|
2183
|
-
export type
|
|
2184
|
-
|
|
3302
|
+
export type InboundWebhookConfigsControllerCreate1Response =
|
|
3303
|
+
InboundWebhookConfigsControllerCreate1Responses[keyof InboundWebhookConfigsControllerCreate1Responses];
|
|
3304
|
+
|
|
3305
|
+
export type InboundWebhookConfigsControllerDelete0V1Data = {
|
|
3306
|
+
body?: never;
|
|
3307
|
+
path: {
|
|
3308
|
+
id: number;
|
|
3309
|
+
};
|
|
3310
|
+
query?: never;
|
|
3311
|
+
url: "/v1/webhooks/inbound/configs/{id}";
|
|
3312
|
+
};
|
|
3313
|
+
|
|
3314
|
+
export type InboundWebhookConfigsControllerDelete0V1Errors = {
|
|
3315
|
+
401: unknown;
|
|
3316
|
+
403: unknown;
|
|
3317
|
+
};
|
|
3318
|
+
|
|
3319
|
+
export type InboundWebhookConfigsControllerDelete0V1Responses = {
|
|
3320
|
+
200: DeleteInboundWebhookConfigResponse;
|
|
3321
|
+
};
|
|
3322
|
+
|
|
3323
|
+
export type InboundWebhookConfigsControllerDelete0V1Response =
|
|
3324
|
+
InboundWebhookConfigsControllerDelete0V1Responses[keyof InboundWebhookConfigsControllerDelete0V1Responses];
|
|
3325
|
+
|
|
3326
|
+
export type InboundWebhookConfigsControllerGet0V1Data = {
|
|
3327
|
+
body?: never;
|
|
3328
|
+
path: {
|
|
3329
|
+
id: number;
|
|
3330
|
+
};
|
|
3331
|
+
query?: never;
|
|
3332
|
+
url: "/v1/webhooks/inbound/configs/{id}";
|
|
3333
|
+
};
|
|
3334
|
+
|
|
3335
|
+
export type InboundWebhookConfigsControllerGet0V1Errors = {
|
|
3336
|
+
401: unknown;
|
|
3337
|
+
403: unknown;
|
|
3338
|
+
};
|
|
3339
|
+
|
|
3340
|
+
export type InboundWebhookConfigsControllerGet0V1Responses = {
|
|
3341
|
+
200: GetInboundWebhookConfigResponse;
|
|
3342
|
+
};
|
|
3343
|
+
|
|
3344
|
+
export type InboundWebhookConfigsControllerGet0V1Response =
|
|
3345
|
+
InboundWebhookConfigsControllerGet0V1Responses[keyof InboundWebhookConfigsControllerGet0V1Responses];
|
|
3346
|
+
|
|
3347
|
+
export type InboundWebhookConfigsControllerUpdate0V1Data = {
|
|
3348
|
+
body: UpdateInboundWebhookConfigBody;
|
|
3349
|
+
path: {
|
|
3350
|
+
id: number;
|
|
3351
|
+
};
|
|
3352
|
+
query?: never;
|
|
3353
|
+
url: "/v1/webhooks/inbound/configs/{id}";
|
|
3354
|
+
};
|
|
3355
|
+
|
|
3356
|
+
export type InboundWebhookConfigsControllerUpdate0V1Errors = {
|
|
3357
|
+
401: unknown;
|
|
3358
|
+
403: unknown;
|
|
3359
|
+
};
|
|
3360
|
+
|
|
3361
|
+
export type InboundWebhookConfigsControllerUpdate0V1Responses = {
|
|
3362
|
+
200: UpdateInboundWebhookConfigResponse;
|
|
3363
|
+
};
|
|
3364
|
+
|
|
3365
|
+
export type InboundWebhookConfigsControllerUpdate0V1Response =
|
|
3366
|
+
InboundWebhookConfigsControllerUpdate0V1Responses[keyof InboundWebhookConfigsControllerUpdate0V1Responses];
|
|
2185
3367
|
|
|
2186
|
-
export type
|
|
3368
|
+
export type InboundWebhookConfigsControllerDelete1Data = {
|
|
2187
3369
|
body?: never;
|
|
2188
3370
|
path: {
|
|
2189
3371
|
id: number;
|
|
@@ -2192,19 +3374,19 @@ export type InboundWebhookConfigsControllerDeleteData = {
|
|
|
2192
3374
|
url: "/webhooks/inbound/configs/{id}";
|
|
2193
3375
|
};
|
|
2194
3376
|
|
|
2195
|
-
export type
|
|
3377
|
+
export type InboundWebhookConfigsControllerDelete1Errors = {
|
|
2196
3378
|
401: unknown;
|
|
2197
3379
|
403: unknown;
|
|
2198
3380
|
};
|
|
2199
3381
|
|
|
2200
|
-
export type
|
|
3382
|
+
export type InboundWebhookConfigsControllerDelete1Responses = {
|
|
2201
3383
|
200: DeleteInboundWebhookConfigResponse;
|
|
2202
3384
|
};
|
|
2203
3385
|
|
|
2204
|
-
export type
|
|
2205
|
-
|
|
3386
|
+
export type InboundWebhookConfigsControllerDelete1Response =
|
|
3387
|
+
InboundWebhookConfigsControllerDelete1Responses[keyof InboundWebhookConfigsControllerDelete1Responses];
|
|
2206
3388
|
|
|
2207
|
-
export type
|
|
3389
|
+
export type InboundWebhookConfigsControllerGet1Data = {
|
|
2208
3390
|
body?: never;
|
|
2209
3391
|
path: {
|
|
2210
3392
|
id: number;
|
|
@@ -2213,19 +3395,19 @@ export type InboundWebhookConfigsControllerGetData = {
|
|
|
2213
3395
|
url: "/webhooks/inbound/configs/{id}";
|
|
2214
3396
|
};
|
|
2215
3397
|
|
|
2216
|
-
export type
|
|
3398
|
+
export type InboundWebhookConfigsControllerGet1Errors = {
|
|
2217
3399
|
401: unknown;
|
|
2218
3400
|
403: unknown;
|
|
2219
3401
|
};
|
|
2220
3402
|
|
|
2221
|
-
export type
|
|
3403
|
+
export type InboundWebhookConfigsControllerGet1Responses = {
|
|
2222
3404
|
200: GetInboundWebhookConfigResponse;
|
|
2223
3405
|
};
|
|
2224
3406
|
|
|
2225
|
-
export type
|
|
2226
|
-
|
|
3407
|
+
export type InboundWebhookConfigsControllerGet1Response =
|
|
3408
|
+
InboundWebhookConfigsControllerGet1Responses[keyof InboundWebhookConfigsControllerGet1Responses];
|
|
2227
3409
|
|
|
2228
|
-
export type
|
|
3410
|
+
export type InboundWebhookConfigsControllerUpdate1Data = {
|
|
2229
3411
|
body: UpdateInboundWebhookConfigBody;
|
|
2230
3412
|
path: {
|
|
2231
3413
|
id: number;
|
|
@@ -2234,17 +3416,17 @@ export type InboundWebhookConfigsControllerUpdateData = {
|
|
|
2234
3416
|
url: "/webhooks/inbound/configs/{id}";
|
|
2235
3417
|
};
|
|
2236
3418
|
|
|
2237
|
-
export type
|
|
3419
|
+
export type InboundWebhookConfigsControllerUpdate1Errors = {
|
|
2238
3420
|
401: unknown;
|
|
2239
3421
|
403: unknown;
|
|
2240
3422
|
};
|
|
2241
3423
|
|
|
2242
|
-
export type
|
|
3424
|
+
export type InboundWebhookConfigsControllerUpdate1Responses = {
|
|
2243
3425
|
200: UpdateInboundWebhookConfigResponse;
|
|
2244
3426
|
};
|
|
2245
3427
|
|
|
2246
|
-
export type
|
|
2247
|
-
|
|
3428
|
+
export type InboundWebhookConfigsControllerUpdate1Response =
|
|
3429
|
+
InboundWebhookConfigsControllerUpdate1Responses[keyof InboundWebhookConfigsControllerUpdate1Responses];
|
|
2248
3430
|
|
|
2249
3431
|
export type ClientOptions = {
|
|
2250
3432
|
baseUrl: string;
|