@layer-drone/protocol 0.8.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1114 -257
- package/dist/index.d.ts +1114 -257
- package/dist/index.js +1308 -383
- package/dist/index.mjs +1202 -330
- package/package.json +3 -3
- package/src/client/sdk.gen.ts +2228 -611
- package/src/client/transformers.gen.ts +269 -77
- package/src/client/types.gen.ts +1527 -349
package/src/client/types.gen.ts
CHANGED
|
@@ -1074,49 +1074,148 @@ export type DeleteInboundWebhookConfigResponse = {
|
|
|
1074
1074
|
message: string;
|
|
1075
1075
|
};
|
|
1076
1076
|
|
|
1077
|
-
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 = {
|
|
1078
1089
|
body?: never;
|
|
1079
1090
|
path?: never;
|
|
1080
1091
|
query?: never;
|
|
1081
1092
|
url: "/";
|
|
1082
1093
|
};
|
|
1083
1094
|
|
|
1084
|
-
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 = {
|
|
1085
1107
|
200: unknown;
|
|
1086
1108
|
};
|
|
1087
1109
|
|
|
1088
|
-
export type
|
|
1110
|
+
export type ApiControllerGetError1Data = {
|
|
1089
1111
|
body?: never;
|
|
1090
1112
|
path?: never;
|
|
1091
1113
|
query?: never;
|
|
1092
1114
|
url: "/debug-sentry";
|
|
1093
1115
|
};
|
|
1094
1116
|
|
|
1095
|
-
export type
|
|
1117
|
+
export type ApiControllerGetError1Responses = {
|
|
1096
1118
|
200: unknown;
|
|
1097
1119
|
};
|
|
1098
1120
|
|
|
1099
|
-
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 = {
|
|
1100
1142
|
body: CreateApiTokenRequestDto;
|
|
1101
1143
|
path?: never;
|
|
1102
1144
|
query?: never;
|
|
1103
1145
|
url: "/tokens";
|
|
1104
1146
|
};
|
|
1105
1147
|
|
|
1106
|
-
export type
|
|
1148
|
+
export type ApiTokenControllerCreateToken1Errors = {
|
|
1107
1149
|
401: unknown;
|
|
1108
1150
|
403: unknown;
|
|
1109
1151
|
};
|
|
1110
1152
|
|
|
1111
|
-
export type
|
|
1153
|
+
export type ApiTokenControllerCreateToken1Responses = {
|
|
1112
1154
|
200: CreateApiTokenResponseDto;
|
|
1113
1155
|
201: unknown;
|
|
1114
1156
|
};
|
|
1115
1157
|
|
|
1116
|
-
export type
|
|
1117
|
-
|
|
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];
|
|
1118
1217
|
|
|
1119
|
-
export type
|
|
1218
|
+
export type ApiTokenControllerDeleteToken1Data = {
|
|
1120
1219
|
body?: never;
|
|
1121
1220
|
path: {
|
|
1122
1221
|
id: string;
|
|
@@ -1125,16 +1224,16 @@ export type ApiTokenControllerDeleteTokenData = {
|
|
|
1125
1224
|
url: "/tokens/{id}";
|
|
1126
1225
|
};
|
|
1127
1226
|
|
|
1128
|
-
export type
|
|
1227
|
+
export type ApiTokenControllerDeleteToken1Errors = {
|
|
1129
1228
|
401: unknown;
|
|
1130
1229
|
403: unknown;
|
|
1131
1230
|
};
|
|
1132
1231
|
|
|
1133
|
-
export type
|
|
1232
|
+
export type ApiTokenControllerDeleteToken1Responses = {
|
|
1134
1233
|
200: unknown;
|
|
1135
1234
|
};
|
|
1136
1235
|
|
|
1137
|
-
export type
|
|
1236
|
+
export type ApiTokenControllerGetToken1Data = {
|
|
1138
1237
|
body?: never;
|
|
1139
1238
|
path: {
|
|
1140
1239
|
id: string;
|
|
@@ -1143,16 +1242,16 @@ export type ApiTokenControllerGetTokenData = {
|
|
|
1143
1242
|
url: "/tokens/{id}";
|
|
1144
1243
|
};
|
|
1145
1244
|
|
|
1146
|
-
export type
|
|
1245
|
+
export type ApiTokenControllerGetToken1Errors = {
|
|
1147
1246
|
401: unknown;
|
|
1148
1247
|
403: unknown;
|
|
1149
1248
|
};
|
|
1150
1249
|
|
|
1151
|
-
export type
|
|
1250
|
+
export type ApiTokenControllerGetToken1Responses = {
|
|
1152
1251
|
200: unknown;
|
|
1153
1252
|
};
|
|
1154
1253
|
|
|
1155
|
-
export type
|
|
1254
|
+
export type ApiTokenControllerUpdateToken1Data = {
|
|
1156
1255
|
body: UpdateApiTokenRequestDto;
|
|
1157
1256
|
path: {
|
|
1158
1257
|
id: string;
|
|
@@ -1161,19 +1260,49 @@ export type ApiTokenControllerUpdateTokenData = {
|
|
|
1161
1260
|
url: "/tokens/{id}";
|
|
1162
1261
|
};
|
|
1163
1262
|
|
|
1164
|
-
export type
|
|
1263
|
+
export type ApiTokenControllerUpdateToken1Errors = {
|
|
1165
1264
|
401: unknown;
|
|
1166
1265
|
403: unknown;
|
|
1167
1266
|
};
|
|
1168
1267
|
|
|
1169
|
-
export type
|
|
1268
|
+
export type ApiTokenControllerUpdateToken1Responses = {
|
|
1170
1269
|
200: UpdateApiTokenResponseDto;
|
|
1171
1270
|
};
|
|
1172
1271
|
|
|
1173
|
-
export type
|
|
1174
|
-
|
|
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];
|
|
1175
1304
|
|
|
1176
|
-
export type
|
|
1305
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits1Data = {
|
|
1177
1306
|
body?: never;
|
|
1178
1307
|
path?: never;
|
|
1179
1308
|
query: {
|
|
@@ -1193,46 +1322,98 @@ export type ConditionsControllerGetSunAltitudeTimeLimitsData = {
|
|
|
1193
1322
|
url: "/conditions/sun-altitude";
|
|
1194
1323
|
};
|
|
1195
1324
|
|
|
1196
|
-
export type
|
|
1325
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits1Responses = {
|
|
1197
1326
|
/**
|
|
1198
1327
|
* Returns sun altitude time limits for given coordinates and time
|
|
1199
1328
|
*/
|
|
1200
1329
|
200: GetTimeLimitsForSunAltitudeResponse;
|
|
1201
1330
|
};
|
|
1202
1331
|
|
|
1203
|
-
export type
|
|
1204
|
-
|
|
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];
|
|
1205
1386
|
|
|
1206
|
-
export type
|
|
1387
|
+
export type ContractsControllerGetAllContracts1Data = {
|
|
1207
1388
|
body?: never;
|
|
1208
1389
|
path?: never;
|
|
1209
1390
|
query?: never;
|
|
1210
1391
|
url: "/contracts";
|
|
1211
1392
|
};
|
|
1212
1393
|
|
|
1213
|
-
export type
|
|
1394
|
+
export type ContractsControllerGetAllContracts1Errors = {
|
|
1214
1395
|
401: unknown;
|
|
1215
1396
|
403: unknown;
|
|
1216
1397
|
};
|
|
1217
1398
|
|
|
1218
|
-
export type
|
|
1399
|
+
export type ContractsControllerGetAllContracts1Responses = {
|
|
1219
1400
|
/**
|
|
1220
1401
|
* Contracts retrieved successfully
|
|
1221
1402
|
*/
|
|
1222
1403
|
200: GetContractsResponseDto;
|
|
1223
1404
|
};
|
|
1224
1405
|
|
|
1225
|
-
export type
|
|
1226
|
-
|
|
1406
|
+
export type ContractsControllerGetAllContracts1Response =
|
|
1407
|
+
ContractsControllerGetAllContracts1Responses[keyof ContractsControllerGetAllContracts1Responses];
|
|
1227
1408
|
|
|
1228
|
-
export type
|
|
1409
|
+
export type ContractsControllerCreateContract1Data = {
|
|
1229
1410
|
body: CreateContractRequestDto;
|
|
1230
1411
|
path?: never;
|
|
1231
1412
|
query?: never;
|
|
1232
1413
|
url: "/contracts";
|
|
1233
1414
|
};
|
|
1234
1415
|
|
|
1235
|
-
export type
|
|
1416
|
+
export type ContractsControllerCreateContract1Errors = {
|
|
1236
1417
|
/**
|
|
1237
1418
|
* Validation failed
|
|
1238
1419
|
*/
|
|
@@ -1245,26 +1426,26 @@ export type ContractsControllerCreateContractErrors = {
|
|
|
1245
1426
|
409: unknown;
|
|
1246
1427
|
};
|
|
1247
1428
|
|
|
1248
|
-
export type
|
|
1429
|
+
export type ContractsControllerCreateContract1Responses = {
|
|
1249
1430
|
/**
|
|
1250
1431
|
* Contract created successfully
|
|
1251
1432
|
*/
|
|
1252
1433
|
201: CreateContractResponseDto;
|
|
1253
1434
|
};
|
|
1254
1435
|
|
|
1255
|
-
export type
|
|
1256
|
-
|
|
1436
|
+
export type ContractsControllerCreateContract1Response =
|
|
1437
|
+
ContractsControllerCreateContract1Responses[keyof ContractsControllerCreateContract1Responses];
|
|
1257
1438
|
|
|
1258
|
-
export type
|
|
1439
|
+
export type ContractsControllerDeleteContract0V1Data = {
|
|
1259
1440
|
body?: never;
|
|
1260
1441
|
path: {
|
|
1261
1442
|
id: number;
|
|
1262
1443
|
};
|
|
1263
1444
|
query?: never;
|
|
1264
|
-
url: "/contracts/{id}";
|
|
1445
|
+
url: "/v1/contracts/{id}";
|
|
1265
1446
|
};
|
|
1266
1447
|
|
|
1267
|
-
export type
|
|
1448
|
+
export type ContractsControllerDeleteContract0V1Errors = {
|
|
1268
1449
|
401: unknown;
|
|
1269
1450
|
403: unknown;
|
|
1270
1451
|
/**
|
|
@@ -1273,26 +1454,26 @@ export type ContractsControllerDeleteContractErrors = {
|
|
|
1273
1454
|
404: unknown;
|
|
1274
1455
|
};
|
|
1275
1456
|
|
|
1276
|
-
export type
|
|
1457
|
+
export type ContractsControllerDeleteContract0V1Responses = {
|
|
1277
1458
|
/**
|
|
1278
1459
|
* Contract deleted successfully
|
|
1279
1460
|
*/
|
|
1280
1461
|
200: DeleteContractResponseDto;
|
|
1281
1462
|
};
|
|
1282
1463
|
|
|
1283
|
-
export type
|
|
1284
|
-
|
|
1464
|
+
export type ContractsControllerDeleteContract0V1Response =
|
|
1465
|
+
ContractsControllerDeleteContract0V1Responses[keyof ContractsControllerDeleteContract0V1Responses];
|
|
1285
1466
|
|
|
1286
|
-
export type
|
|
1467
|
+
export type ContractsControllerGetContract0V1Data = {
|
|
1287
1468
|
body?: never;
|
|
1288
1469
|
path: {
|
|
1289
1470
|
id: number;
|
|
1290
1471
|
};
|
|
1291
1472
|
query?: never;
|
|
1292
|
-
url: "/contracts/{id}";
|
|
1473
|
+
url: "/v1/contracts/{id}";
|
|
1293
1474
|
};
|
|
1294
1475
|
|
|
1295
|
-
export type
|
|
1476
|
+
export type ContractsControllerGetContract0V1Errors = {
|
|
1296
1477
|
401: unknown;
|
|
1297
1478
|
403: unknown;
|
|
1298
1479
|
/**
|
|
@@ -1301,26 +1482,26 @@ export type ContractsControllerGetContractErrors = {
|
|
|
1301
1482
|
404: unknown;
|
|
1302
1483
|
};
|
|
1303
1484
|
|
|
1304
|
-
export type
|
|
1485
|
+
export type ContractsControllerGetContract0V1Responses = {
|
|
1305
1486
|
/**
|
|
1306
1487
|
* Contract retrieved successfully
|
|
1307
1488
|
*/
|
|
1308
1489
|
200: GetContractResponseDto;
|
|
1309
1490
|
};
|
|
1310
1491
|
|
|
1311
|
-
export type
|
|
1312
|
-
|
|
1492
|
+
export type ContractsControllerGetContract0V1Response =
|
|
1493
|
+
ContractsControllerGetContract0V1Responses[keyof ContractsControllerGetContract0V1Responses];
|
|
1313
1494
|
|
|
1314
|
-
export type
|
|
1495
|
+
export type ContractsControllerUpdateContract0V1Data = {
|
|
1315
1496
|
body: UpdateContractRequestDto;
|
|
1316
1497
|
path: {
|
|
1317
1498
|
id: number;
|
|
1318
1499
|
};
|
|
1319
1500
|
query?: never;
|
|
1320
|
-
url: "/contracts/{id}";
|
|
1501
|
+
url: "/v1/contracts/{id}";
|
|
1321
1502
|
};
|
|
1322
1503
|
|
|
1323
|
-
export type
|
|
1504
|
+
export type ContractsControllerUpdateContract0V1Errors = {
|
|
1324
1505
|
401: unknown;
|
|
1325
1506
|
403: unknown;
|
|
1326
1507
|
/**
|
|
@@ -1333,200 +1514,496 @@ export type ContractsControllerUpdateContractErrors = {
|
|
|
1333
1514
|
409: unknown;
|
|
1334
1515
|
};
|
|
1335
1516
|
|
|
1336
|
-
export type
|
|
1517
|
+
export type ContractsControllerUpdateContract0V1Responses = {
|
|
1337
1518
|
/**
|
|
1338
1519
|
* Contract updated successfully
|
|
1339
1520
|
*/
|
|
1340
1521
|
200: UpdateContractResponseDto;
|
|
1341
1522
|
};
|
|
1342
1523
|
|
|
1343
|
-
export type
|
|
1344
|
-
|
|
1524
|
+
export type ContractsControllerUpdateContract0V1Response =
|
|
1525
|
+
ContractsControllerUpdateContract0V1Responses[keyof ContractsControllerUpdateContract0V1Responses];
|
|
1345
1526
|
|
|
1346
|
-
export type
|
|
1347
|
-
body
|
|
1348
|
-
path
|
|
1527
|
+
export type ContractsControllerDeleteContract1Data = {
|
|
1528
|
+
body?: never;
|
|
1529
|
+
path: {
|
|
1530
|
+
id: number;
|
|
1531
|
+
};
|
|
1349
1532
|
query?: never;
|
|
1350
|
-
url: "/
|
|
1533
|
+
url: "/contracts/{id}";
|
|
1351
1534
|
};
|
|
1352
1535
|
|
|
1353
|
-
export type
|
|
1354
|
-
/**
|
|
1355
|
-
* Invalid request parameters
|
|
1356
|
-
*/
|
|
1357
|
-
400: unknown;
|
|
1536
|
+
export type ContractsControllerDeleteContract1Errors = {
|
|
1358
1537
|
401: unknown;
|
|
1359
1538
|
403: unknown;
|
|
1360
1539
|
/**
|
|
1361
|
-
*
|
|
1540
|
+
* Contract not found
|
|
1362
1541
|
*/
|
|
1363
|
-
|
|
1542
|
+
404: unknown;
|
|
1364
1543
|
};
|
|
1365
1544
|
|
|
1366
|
-
export type
|
|
1545
|
+
export type ContractsControllerDeleteContract1Responses = {
|
|
1367
1546
|
/**
|
|
1368
|
-
*
|
|
1547
|
+
* Contract deleted successfully
|
|
1369
1548
|
*/
|
|
1370
|
-
200:
|
|
1549
|
+
200: DeleteContractResponseDto;
|
|
1371
1550
|
};
|
|
1372
1551
|
|
|
1373
|
-
export type
|
|
1374
|
-
|
|
1552
|
+
export type ContractsControllerDeleteContract1Response =
|
|
1553
|
+
ContractsControllerDeleteContract1Responses[keyof ContractsControllerDeleteContract1Responses];
|
|
1375
1554
|
|
|
1376
|
-
export type
|
|
1555
|
+
export type ContractsControllerGetContract1Data = {
|
|
1377
1556
|
body?: never;
|
|
1378
|
-
path
|
|
1379
|
-
|
|
1380
|
-
missionId: string | number | bigint;
|
|
1381
|
-
pilotAddress: string;
|
|
1382
|
-
flightTimestamp?: string;
|
|
1557
|
+
path: {
|
|
1558
|
+
id: number;
|
|
1383
1559
|
};
|
|
1384
|
-
|
|
1560
|
+
query?: never;
|
|
1561
|
+
url: "/contracts/{id}";
|
|
1385
1562
|
};
|
|
1386
1563
|
|
|
1387
|
-
export type
|
|
1564
|
+
export type ContractsControllerGetContract1Errors = {
|
|
1388
1565
|
401: unknown;
|
|
1389
1566
|
403: unknown;
|
|
1567
|
+
/**
|
|
1568
|
+
* Contract not found
|
|
1569
|
+
*/
|
|
1570
|
+
404: unknown;
|
|
1390
1571
|
};
|
|
1391
1572
|
|
|
1392
|
-
export type
|
|
1573
|
+
export type ContractsControllerGetContract1Responses = {
|
|
1393
1574
|
/**
|
|
1394
|
-
*
|
|
1575
|
+
* Contract retrieved successfully
|
|
1395
1576
|
*/
|
|
1396
|
-
200:
|
|
1577
|
+
200: GetContractResponseDto;
|
|
1397
1578
|
};
|
|
1398
1579
|
|
|
1399
|
-
export type
|
|
1400
|
-
|
|
1580
|
+
export type ContractsControllerGetContract1Response =
|
|
1581
|
+
ContractsControllerGetContract1Responses[keyof ContractsControllerGetContract1Responses];
|
|
1401
1582
|
|
|
1402
|
-
export type
|
|
1403
|
-
body
|
|
1583
|
+
export type ContractsControllerUpdateContract1Data = {
|
|
1584
|
+
body: UpdateContractRequestDto;
|
|
1404
1585
|
path: {
|
|
1405
|
-
|
|
1586
|
+
id: number;
|
|
1406
1587
|
};
|
|
1407
1588
|
query?: never;
|
|
1408
|
-
url: "/
|
|
1589
|
+
url: "/contracts/{id}";
|
|
1409
1590
|
};
|
|
1410
1591
|
|
|
1411
|
-
export type
|
|
1592
|
+
export type ContractsControllerUpdateContract1Errors = {
|
|
1412
1593
|
401: unknown;
|
|
1413
1594
|
403: unknown;
|
|
1595
|
+
/**
|
|
1596
|
+
* Contract not found
|
|
1597
|
+
*/
|
|
1598
|
+
404: unknown;
|
|
1599
|
+
/**
|
|
1600
|
+
* Contract with this address already exists
|
|
1601
|
+
*/
|
|
1602
|
+
409: unknown;
|
|
1414
1603
|
};
|
|
1415
1604
|
|
|
1416
|
-
export type
|
|
1605
|
+
export type ContractsControllerUpdateContract1Responses = {
|
|
1417
1606
|
/**
|
|
1418
|
-
*
|
|
1607
|
+
* Contract updated successfully
|
|
1419
1608
|
*/
|
|
1420
|
-
200:
|
|
1609
|
+
200: UpdateContractResponseDto;
|
|
1421
1610
|
};
|
|
1422
1611
|
|
|
1423
|
-
export type
|
|
1424
|
-
|
|
1612
|
+
export type ContractsControllerUpdateContract1Response =
|
|
1613
|
+
ContractsControllerUpdateContract1Responses[keyof ContractsControllerUpdateContract1Responses];
|
|
1425
1614
|
|
|
1426
|
-
export type
|
|
1427
|
-
body:
|
|
1615
|
+
export type DlqRedriverControllerRedriveDlq0V1Data = {
|
|
1616
|
+
body: RedriveDlqRequestDto;
|
|
1428
1617
|
path?: never;
|
|
1429
1618
|
query?: never;
|
|
1430
|
-
url: "/
|
|
1619
|
+
url: "/v1/dlq-redriver/redrive";
|
|
1431
1620
|
};
|
|
1432
1621
|
|
|
1433
|
-
export type
|
|
1622
|
+
export type DlqRedriverControllerRedriveDlq0V1Errors = {
|
|
1623
|
+
/**
|
|
1624
|
+
* Invalid request parameters
|
|
1625
|
+
*/
|
|
1626
|
+
400: unknown;
|
|
1434
1627
|
401: unknown;
|
|
1435
1628
|
403: unknown;
|
|
1629
|
+
/**
|
|
1630
|
+
* Error during DLQ redrive
|
|
1631
|
+
*/
|
|
1632
|
+
500: unknown;
|
|
1436
1633
|
};
|
|
1437
1634
|
|
|
1438
|
-
export type
|
|
1635
|
+
export type DlqRedriverControllerRedriveDlq0V1Responses = {
|
|
1439
1636
|
/**
|
|
1440
|
-
*
|
|
1637
|
+
* DLQ redrive completed successfully
|
|
1441
1638
|
*/
|
|
1442
|
-
|
|
1639
|
+
200: RedriveDlqResponseDto;
|
|
1443
1640
|
};
|
|
1444
1641
|
|
|
1445
|
-
export type
|
|
1446
|
-
|
|
1642
|
+
export type DlqRedriverControllerRedriveDlq0V1Response =
|
|
1643
|
+
DlqRedriverControllerRedriveDlq0V1Responses[keyof DlqRedriverControllerRedriveDlq0V1Responses];
|
|
1447
1644
|
|
|
1448
|
-
export type
|
|
1449
|
-
body:
|
|
1645
|
+
export type DlqRedriverControllerRedriveDlq1Data = {
|
|
1646
|
+
body: RedriveDlqRequestDto;
|
|
1450
1647
|
path?: never;
|
|
1451
1648
|
query?: never;
|
|
1452
|
-
url: "/
|
|
1649
|
+
url: "/dlq-redriver/redrive";
|
|
1453
1650
|
};
|
|
1454
1651
|
|
|
1455
|
-
export type
|
|
1652
|
+
export type DlqRedriverControllerRedriveDlq1Errors = {
|
|
1653
|
+
/**
|
|
1654
|
+
* Invalid request parameters
|
|
1655
|
+
*/
|
|
1656
|
+
400: unknown;
|
|
1456
1657
|
401: unknown;
|
|
1457
1658
|
403: unknown;
|
|
1659
|
+
/**
|
|
1660
|
+
* Error during DLQ redrive
|
|
1661
|
+
*/
|
|
1662
|
+
500: unknown;
|
|
1458
1663
|
};
|
|
1459
1664
|
|
|
1460
|
-
export type
|
|
1665
|
+
export type DlqRedriverControllerRedriveDlq1Responses = {
|
|
1461
1666
|
/**
|
|
1462
|
-
*
|
|
1667
|
+
* DLQ redrive completed successfully
|
|
1463
1668
|
*/
|
|
1464
|
-
200:
|
|
1669
|
+
200: RedriveDlqResponseDto;
|
|
1465
1670
|
};
|
|
1466
1671
|
|
|
1467
|
-
export type
|
|
1468
|
-
|
|
1672
|
+
export type DlqRedriverControllerRedriveDlq1Response =
|
|
1673
|
+
DlqRedriverControllerRedriveDlq1Responses[keyof DlqRedriverControllerRedriveDlq1Responses];
|
|
1469
1674
|
|
|
1470
|
-
export type
|
|
1675
|
+
export type FlightsControllerGenerateStorageKey0V1Data = {
|
|
1471
1676
|
body?: never;
|
|
1472
1677
|
path?: never;
|
|
1473
|
-
query
|
|
1474
|
-
|
|
1678
|
+
query: {
|
|
1679
|
+
missionId: string | number | bigint;
|
|
1680
|
+
pilotAddress: string;
|
|
1681
|
+
flightTimestamp?: string;
|
|
1682
|
+
};
|
|
1683
|
+
url: "/v1/flights/storage-key";
|
|
1475
1684
|
};
|
|
1476
1685
|
|
|
1477
|
-
export type
|
|
1686
|
+
export type FlightsControllerGenerateStorageKey0V1Errors = {
|
|
1478
1687
|
401: unknown;
|
|
1479
1688
|
403: unknown;
|
|
1480
1689
|
};
|
|
1481
1690
|
|
|
1482
|
-
export type
|
|
1483
|
-
|
|
1691
|
+
export type FlightsControllerGenerateStorageKey0V1Responses = {
|
|
1692
|
+
/**
|
|
1693
|
+
* Returns the generated storage key
|
|
1694
|
+
*/
|
|
1695
|
+
200: string;
|
|
1484
1696
|
};
|
|
1485
1697
|
|
|
1486
|
-
export type
|
|
1487
|
-
|
|
1698
|
+
export type FlightsControllerGenerateStorageKey0V1Response =
|
|
1699
|
+
FlightsControllerGenerateStorageKey0V1Responses[keyof FlightsControllerGenerateStorageKey0V1Responses];
|
|
1488
1700
|
|
|
1489
|
-
export type
|
|
1490
|
-
body
|
|
1701
|
+
export type FlightsControllerGenerateStorageKey1Data = {
|
|
1702
|
+
body?: never;
|
|
1491
1703
|
path?: never;
|
|
1492
|
-
query
|
|
1493
|
-
|
|
1704
|
+
query: {
|
|
1705
|
+
missionId: string | number | bigint;
|
|
1706
|
+
pilotAddress: string;
|
|
1707
|
+
flightTimestamp?: string;
|
|
1708
|
+
};
|
|
1709
|
+
url: "/flights/storage-key";
|
|
1494
1710
|
};
|
|
1495
1711
|
|
|
1496
|
-
export type
|
|
1712
|
+
export type FlightsControllerGenerateStorageKey1Errors = {
|
|
1497
1713
|
401: unknown;
|
|
1498
1714
|
403: unknown;
|
|
1499
1715
|
};
|
|
1500
1716
|
|
|
1501
|
-
export type
|
|
1502
|
-
|
|
1717
|
+
export type FlightsControllerGenerateStorageKey1Responses = {
|
|
1718
|
+
/**
|
|
1719
|
+
* Returns the generated storage key
|
|
1720
|
+
*/
|
|
1721
|
+
200: string;
|
|
1503
1722
|
};
|
|
1504
1723
|
|
|
1505
|
-
export type
|
|
1506
|
-
|
|
1724
|
+
export type FlightsControllerGenerateStorageKey1Response =
|
|
1725
|
+
FlightsControllerGenerateStorageKey1Responses[keyof FlightsControllerGenerateStorageKey1Responses];
|
|
1507
1726
|
|
|
1508
|
-
export type
|
|
1727
|
+
export type FlightsControllerGetFlight0V1Data = {
|
|
1509
1728
|
body?: never;
|
|
1510
1729
|
path: {
|
|
1511
|
-
|
|
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
|
+
};
|
|
1956
|
+
|
|
1957
|
+
export type FlightPlansControllerGet0V1Response =
|
|
1958
|
+
FlightPlansControllerGet0V1Responses[keyof FlightPlansControllerGet0V1Responses];
|
|
1959
|
+
|
|
1960
|
+
export type FlightPlansControllerGet1Data = {
|
|
1961
|
+
body?: never;
|
|
1962
|
+
path: {
|
|
1963
|
+
id: number;
|
|
1512
1964
|
};
|
|
1513
1965
|
query?: never;
|
|
1514
1966
|
url: "/flight-plans/{id}";
|
|
1515
1967
|
};
|
|
1516
1968
|
|
|
1517
|
-
export type
|
|
1969
|
+
export type FlightPlansControllerGet1Errors = {
|
|
1518
1970
|
401: unknown;
|
|
1519
1971
|
403: unknown;
|
|
1520
1972
|
};
|
|
1521
1973
|
|
|
1522
|
-
export type
|
|
1974
|
+
export type FlightPlansControllerGet1Responses = {
|
|
1523
1975
|
200: GetFlightPlanResponse;
|
|
1524
1976
|
};
|
|
1525
1977
|
|
|
1526
|
-
export type
|
|
1527
|
-
|
|
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];
|
|
1528
2005
|
|
|
1529
|
-
export type
|
|
2006
|
+
export type FlightReviewsControllerGetFlightReview1Data = {
|
|
1530
2007
|
body?: never;
|
|
1531
2008
|
path: {
|
|
1532
2009
|
id: bigint;
|
|
@@ -1535,7 +2012,7 @@ export type FlightReviewsControllerGetFlightReviewData = {
|
|
|
1535
2012
|
url: "/flight-reviews/{id}";
|
|
1536
2013
|
};
|
|
1537
2014
|
|
|
1538
|
-
export type
|
|
2015
|
+
export type FlightReviewsControllerGetFlightReview1Errors = {
|
|
1539
2016
|
401: unknown;
|
|
1540
2017
|
403: unknown;
|
|
1541
2018
|
/**
|
|
@@ -1544,14 +2021,36 @@ export type FlightReviewsControllerGetFlightReviewErrors = {
|
|
|
1544
2021
|
404: unknown;
|
|
1545
2022
|
};
|
|
1546
2023
|
|
|
1547
|
-
export type
|
|
2024
|
+
export type FlightReviewsControllerGetFlightReview1Responses = {
|
|
1548
2025
|
200: GetFlightReviewResponseDto;
|
|
1549
2026
|
};
|
|
1550
2027
|
|
|
1551
|
-
export type
|
|
1552
|
-
|
|
2028
|
+
export type FlightReviewsControllerGetFlightReview1Response =
|
|
2029
|
+
FlightReviewsControllerGetFlightReview1Responses[keyof FlightReviewsControllerGetFlightReview1Responses];
|
|
1553
2030
|
|
|
1554
|
-
export type
|
|
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];
|
|
2052
|
+
|
|
2053
|
+
export type FlightReviewsControllerGetFlightReviews1Data = {
|
|
1555
2054
|
body?: never;
|
|
1556
2055
|
path?: never;
|
|
1557
2056
|
query: {
|
|
@@ -1561,33 +2060,78 @@ export type FlightReviewsControllerGetFlightReviewsData = {
|
|
|
1561
2060
|
url: "/flight-reviews";
|
|
1562
2061
|
};
|
|
1563
2062
|
|
|
1564
|
-
export type
|
|
2063
|
+
export type FlightReviewsControllerGetFlightReviews1Errors = {
|
|
1565
2064
|
401: unknown;
|
|
1566
2065
|
403: unknown;
|
|
1567
2066
|
};
|
|
1568
2067
|
|
|
1569
|
-
export type
|
|
2068
|
+
export type FlightReviewsControllerGetFlightReviews1Responses = {
|
|
1570
2069
|
200: GetFlightReviewsResponseDto;
|
|
1571
2070
|
};
|
|
1572
2071
|
|
|
1573
|
-
export type
|
|
1574
|
-
|
|
2072
|
+
export type FlightReviewsControllerGetFlightReviews1Response =
|
|
2073
|
+
FlightReviewsControllerGetFlightReviews1Responses[keyof FlightReviewsControllerGetFlightReviews1Responses];
|
|
1575
2074
|
|
|
1576
|
-
export type
|
|
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];
|
|
2088
|
+
|
|
2089
|
+
export type KeysControllerGetProvenanceCryptoKey1Data = {
|
|
1577
2090
|
body?: never;
|
|
1578
2091
|
path?: never;
|
|
1579
2092
|
query?: never;
|
|
1580
2093
|
url: "/keys";
|
|
1581
2094
|
};
|
|
1582
2095
|
|
|
1583
|
-
export type
|
|
2096
|
+
export type KeysControllerGetProvenanceCryptoKey1Responses = {
|
|
1584
2097
|
200: GetProvenanceCryptoKeyResponse;
|
|
1585
2098
|
};
|
|
1586
2099
|
|
|
1587
|
-
export type
|
|
1588
|
-
|
|
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];
|
|
1589
2133
|
|
|
1590
|
-
export type
|
|
2134
|
+
export type MissionsControllerGetMission1Data = {
|
|
1591
2135
|
body?: never;
|
|
1592
2136
|
path: {
|
|
1593
2137
|
id: string;
|
|
@@ -1602,7 +2146,7 @@ export type MissionsControllerGetMissionData = {
|
|
|
1602
2146
|
url: "/missions/{id}";
|
|
1603
2147
|
};
|
|
1604
2148
|
|
|
1605
|
-
export type
|
|
2149
|
+
export type MissionsControllerGetMission1Errors = {
|
|
1606
2150
|
401: unknown;
|
|
1607
2151
|
403: unknown;
|
|
1608
2152
|
/**
|
|
@@ -1611,14 +2155,14 @@ export type MissionsControllerGetMissionErrors = {
|
|
|
1611
2155
|
404: unknown;
|
|
1612
2156
|
};
|
|
1613
2157
|
|
|
1614
|
-
export type
|
|
2158
|
+
export type MissionsControllerGetMission1Responses = {
|
|
1615
2159
|
200: GetMissionResponseDto;
|
|
1616
2160
|
};
|
|
1617
2161
|
|
|
1618
|
-
export type
|
|
1619
|
-
|
|
2162
|
+
export type MissionsControllerGetMission1Response =
|
|
2163
|
+
MissionsControllerGetMission1Responses[keyof MissionsControllerGetMission1Responses];
|
|
1620
2164
|
|
|
1621
|
-
export type
|
|
2165
|
+
export type MissionsControllerGetMissions0V1Data = {
|
|
1622
2166
|
body?: never;
|
|
1623
2167
|
path?: never;
|
|
1624
2168
|
query?: {
|
|
@@ -1636,29 +2180,29 @@ export type MissionsControllerGetMissionsData = {
|
|
|
1636
2180
|
| "campaigns"
|
|
1637
2181
|
| Array<"vault" | "payout" | "campaigns">;
|
|
1638
2182
|
};
|
|
1639
|
-
url: "/missions";
|
|
2183
|
+
url: "/v1/missions";
|
|
1640
2184
|
};
|
|
1641
2185
|
|
|
1642
|
-
export type
|
|
2186
|
+
export type MissionsControllerGetMissions0V1Errors = {
|
|
1643
2187
|
401: unknown;
|
|
1644
2188
|
403: unknown;
|
|
1645
2189
|
};
|
|
1646
2190
|
|
|
1647
|
-
export type
|
|
2191
|
+
export type MissionsControllerGetMissions0V1Responses = {
|
|
1648
2192
|
200: GetMissionsResponseDto;
|
|
1649
2193
|
};
|
|
1650
2194
|
|
|
1651
|
-
export type
|
|
1652
|
-
|
|
2195
|
+
export type MissionsControllerGetMissions0V1Response =
|
|
2196
|
+
MissionsControllerGetMissions0V1Responses[keyof MissionsControllerGetMissions0V1Responses];
|
|
1653
2197
|
|
|
1654
|
-
export type
|
|
2198
|
+
export type MissionsControllerCreateMissions0V1Data = {
|
|
1655
2199
|
body: CreateMissionRequestDto;
|
|
1656
2200
|
path?: never;
|
|
1657
2201
|
query?: never;
|
|
1658
|
-
url: "/missions";
|
|
2202
|
+
url: "/v1/missions";
|
|
1659
2203
|
};
|
|
1660
2204
|
|
|
1661
|
-
export type
|
|
2205
|
+
export type MissionsControllerCreateMissions0V1Errors = {
|
|
1662
2206
|
/**
|
|
1663
2207
|
* Validation failed - invalid Zones, mission types, or times
|
|
1664
2208
|
*/
|
|
@@ -1674,323 +2218,717 @@ export type MissionsControllerCreateMissionsErrors = {
|
|
|
1674
2218
|
500: unknown;
|
|
1675
2219
|
};
|
|
1676
2220
|
|
|
1677
|
-
export type
|
|
2221
|
+
export type MissionsControllerCreateMissions0V1Responses = {
|
|
1678
2222
|
/**
|
|
1679
2223
|
* Transaction to create mission, queued successfully
|
|
1680
2224
|
*/
|
|
1681
2225
|
201: CreateMissionResponseDto;
|
|
1682
2226
|
};
|
|
1683
2227
|
|
|
1684
|
-
export type
|
|
1685
|
-
|
|
2228
|
+
export type MissionsControllerCreateMissions0V1Response =
|
|
2229
|
+
MissionsControllerCreateMissions0V1Responses[keyof MissionsControllerCreateMissions0V1Responses];
|
|
1686
2230
|
|
|
1687
|
-
export type
|
|
2231
|
+
export type MissionsControllerUpdateMissions0V1Data = {
|
|
1688
2232
|
body: UpdateMissionsRequestDto;
|
|
1689
2233
|
path?: never;
|
|
1690
2234
|
query?: never;
|
|
1691
|
-
url: "/missions";
|
|
2235
|
+
url: "/v1/missions";
|
|
1692
2236
|
};
|
|
1693
2237
|
|
|
1694
|
-
export type
|
|
2238
|
+
export type MissionsControllerUpdateMissions0V1Errors = {
|
|
1695
2239
|
401: unknown;
|
|
1696
2240
|
403: unknown;
|
|
1697
2241
|
};
|
|
1698
2242
|
|
|
1699
|
-
export type
|
|
2243
|
+
export type MissionsControllerUpdateMissions0V1Responses = {
|
|
1700
2244
|
/**
|
|
1701
2245
|
* Missions update transaction queued successfully
|
|
1702
2246
|
*/
|
|
1703
2247
|
200: UpdateMissionsResponseDto;
|
|
1704
2248
|
};
|
|
1705
2249
|
|
|
1706
|
-
export type
|
|
1707
|
-
|
|
2250
|
+
export type MissionsControllerUpdateMissions0V1Response =
|
|
2251
|
+
MissionsControllerUpdateMissions0V1Responses[keyof MissionsControllerUpdateMissions0V1Responses];
|
|
1708
2252
|
|
|
1709
|
-
export type
|
|
1710
|
-
body
|
|
2253
|
+
export type MissionsControllerGetMissions1Data = {
|
|
2254
|
+
body?: never;
|
|
1711
2255
|
path?: never;
|
|
1712
|
-
query?:
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
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;
|
|
2328
|
+
403: unknown;
|
|
2329
|
+
};
|
|
2330
|
+
|
|
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 = {
|
|
2354
|
+
/**
|
|
1723
2355
|
* Mission repricing queued successfully
|
|
1724
2356
|
*/
|
|
1725
2357
|
200: RepriceMissionsResponseDto;
|
|
1726
2358
|
};
|
|
1727
2359
|
|
|
1728
|
-
export type
|
|
1729
|
-
|
|
2360
|
+
export type MissionsControllerRepriceMissions0V1Response =
|
|
2361
|
+
MissionsControllerRepriceMissions0V1Responses[keyof MissionsControllerRepriceMissions0V1Responses];
|
|
1730
2362
|
|
|
1731
|
-
export type
|
|
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 = {
|
|
1732
2402
|
body: TriggerPayoutRequestDto;
|
|
1733
2403
|
path?: never;
|
|
1734
2404
|
query?: never;
|
|
1735
2405
|
url: "/protocol-triggers/missions/payout";
|
|
1736
2406
|
};
|
|
1737
2407
|
|
|
1738
|
-
export type
|
|
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 = {
|
|
1739
2425
|
401: unknown;
|
|
1740
2426
|
403: unknown;
|
|
1741
2427
|
};
|
|
1742
2428
|
|
|
1743
|
-
export type
|
|
2429
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose0V1Responses = {
|
|
1744
2430
|
201: unknown;
|
|
1745
2431
|
};
|
|
1746
2432
|
|
|
1747
|
-
export type
|
|
2433
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose1Data = {
|
|
1748
2434
|
body: TriggerMissionCloseRequestDto;
|
|
1749
2435
|
path?: never;
|
|
1750
2436
|
query?: never;
|
|
1751
2437
|
url: "/protocol-triggers/missions/close";
|
|
1752
2438
|
};
|
|
1753
2439
|
|
|
1754
|
-
export type
|
|
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 = {
|
|
1755
2457
|
401: unknown;
|
|
1756
2458
|
403: unknown;
|
|
1757
2459
|
};
|
|
1758
2460
|
|
|
1759
|
-
export type
|
|
2461
|
+
export type QuotesControllerCreateQuote0V1Responses = {
|
|
1760
2462
|
201: unknown;
|
|
1761
2463
|
};
|
|
1762
2464
|
|
|
1763
|
-
export type
|
|
2465
|
+
export type QuotesControllerCreateQuote1Data = {
|
|
1764
2466
|
body: CreateQuoteRequestDto;
|
|
1765
2467
|
path?: never;
|
|
1766
2468
|
query?: never;
|
|
1767
|
-
url: "/quotes";
|
|
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
|
+
};
|
|
2494
|
+
|
|
2495
|
+
export type QuotesControllerGetQuote0V1Responses = {
|
|
2496
|
+
200: unknown;
|
|
2497
|
+
};
|
|
2498
|
+
|
|
2499
|
+
export type QuotesControllerGetQuote1Data = {
|
|
2500
|
+
body?: never;
|
|
2501
|
+
path: {
|
|
2502
|
+
id: string;
|
|
2503
|
+
};
|
|
2504
|
+
query?: never;
|
|
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";
|
|
2550
|
+
};
|
|
2551
|
+
|
|
2552
|
+
export type VaultsControllerCreateVaults0V1Errors = {
|
|
2553
|
+
/**
|
|
2554
|
+
* Validation failed - invalid funder, amount, or contract address
|
|
2555
|
+
*/
|
|
2556
|
+
400: unknown;
|
|
2557
|
+
401: unknown;
|
|
2558
|
+
403: unknown;
|
|
2559
|
+
/**
|
|
2560
|
+
* Internal server error during vault request creation
|
|
2561
|
+
*/
|
|
2562
|
+
500: unknown;
|
|
2563
|
+
};
|
|
2564
|
+
|
|
2565
|
+
export type VaultsControllerCreateVaults0V1Responses = {
|
|
2566
|
+
/**
|
|
2567
|
+
* Vault requests posted successfully
|
|
2568
|
+
*/
|
|
2569
|
+
201: CreateVaultsResponseDto;
|
|
2570
|
+
};
|
|
2571
|
+
|
|
2572
|
+
export type VaultsControllerCreateVaults0V1Response =
|
|
2573
|
+
VaultsControllerCreateVaults0V1Responses[keyof VaultsControllerCreateVaults0V1Responses];
|
|
2574
|
+
|
|
2575
|
+
export type VaultsControllerCreateVaults1Data = {
|
|
2576
|
+
body: CreateVaultsRequestDto;
|
|
2577
|
+
path?: never;
|
|
2578
|
+
query?: never;
|
|
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}";
|
|
1768
2719
|
};
|
|
1769
2720
|
|
|
1770
|
-
export type
|
|
2721
|
+
export type WebhooksControllerGet0V1Errors = {
|
|
1771
2722
|
401: unknown;
|
|
1772
2723
|
403: unknown;
|
|
1773
2724
|
};
|
|
1774
2725
|
|
|
1775
|
-
export type
|
|
1776
|
-
|
|
2726
|
+
export type WebhooksControllerGet0V1Responses = {
|
|
2727
|
+
200: GetWebhookResponse;
|
|
1777
2728
|
};
|
|
1778
2729
|
|
|
1779
|
-
export type
|
|
1780
|
-
|
|
2730
|
+
export type WebhooksControllerGet0V1Response =
|
|
2731
|
+
WebhooksControllerGet0V1Responses[keyof WebhooksControllerGet0V1Responses];
|
|
2732
|
+
|
|
2733
|
+
export type WebhooksControllerUpdate0V1Data = {
|
|
2734
|
+
body: UpdateWebhookBody;
|
|
1781
2735
|
path: {
|
|
1782
|
-
|
|
2736
|
+
org_id: number;
|
|
2737
|
+
id: number;
|
|
1783
2738
|
};
|
|
1784
2739
|
query?: never;
|
|
1785
|
-
url: "/
|
|
2740
|
+
url: "/v1/org/{org_id}/webhooks/{id}";
|
|
1786
2741
|
};
|
|
1787
2742
|
|
|
1788
|
-
export type
|
|
2743
|
+
export type WebhooksControllerUpdate0V1Errors = {
|
|
1789
2744
|
401: unknown;
|
|
1790
2745
|
403: unknown;
|
|
1791
2746
|
};
|
|
1792
2747
|
|
|
1793
|
-
export type
|
|
1794
|
-
200:
|
|
1795
|
-
};
|
|
1796
|
-
|
|
1797
|
-
export type SchemaControllerGetEventSchemaData = {
|
|
1798
|
-
body?: never;
|
|
1799
|
-
path?: never;
|
|
1800
|
-
query?: never;
|
|
1801
|
-
url: "/schema/event";
|
|
2748
|
+
export type WebhooksControllerUpdate0V1Responses = {
|
|
2749
|
+
200: UpdateWebhookResponse;
|
|
1802
2750
|
};
|
|
1803
2751
|
|
|
1804
|
-
export type
|
|
1805
|
-
|
|
1806
|
-
* Get event schema
|
|
1807
|
-
*/
|
|
1808
|
-
200: unknown;
|
|
1809
|
-
};
|
|
2752
|
+
export type WebhooksControllerUpdate0V1Response =
|
|
2753
|
+
WebhooksControllerUpdate0V1Responses[keyof WebhooksControllerUpdate0V1Responses];
|
|
1810
2754
|
|
|
1811
|
-
export type
|
|
1812
|
-
body
|
|
1813
|
-
path
|
|
2755
|
+
export type WebhooksControllerDelete1Data = {
|
|
2756
|
+
body?: never;
|
|
2757
|
+
path: {
|
|
2758
|
+
org_id: number;
|
|
2759
|
+
id: number;
|
|
2760
|
+
};
|
|
1814
2761
|
query?: never;
|
|
1815
|
-
url: "/
|
|
2762
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1816
2763
|
};
|
|
1817
2764
|
|
|
1818
|
-
export type
|
|
1819
|
-
/**
|
|
1820
|
-
* Validation failed - invalid funder, amount, or contract address
|
|
1821
|
-
*/
|
|
1822
|
-
400: unknown;
|
|
2765
|
+
export type WebhooksControllerDelete1Errors = {
|
|
1823
2766
|
401: unknown;
|
|
1824
2767
|
403: unknown;
|
|
1825
|
-
/**
|
|
1826
|
-
* Internal server error during vault request creation
|
|
1827
|
-
*/
|
|
1828
|
-
500: unknown;
|
|
1829
2768
|
};
|
|
1830
2769
|
|
|
1831
|
-
export type
|
|
1832
|
-
|
|
1833
|
-
* Vault requests posted successfully
|
|
1834
|
-
*/
|
|
1835
|
-
201: CreateVaultsResponseDto;
|
|
2770
|
+
export type WebhooksControllerDelete1Responses = {
|
|
2771
|
+
200: DeleteWebhookResponse;
|
|
1836
2772
|
};
|
|
1837
2773
|
|
|
1838
|
-
export type
|
|
1839
|
-
|
|
2774
|
+
export type WebhooksControllerDelete1Response =
|
|
2775
|
+
WebhooksControllerDelete1Responses[keyof WebhooksControllerDelete1Responses];
|
|
1840
2776
|
|
|
1841
|
-
export type
|
|
2777
|
+
export type WebhooksControllerGet1Data = {
|
|
1842
2778
|
body?: never;
|
|
1843
2779
|
path: {
|
|
1844
2780
|
org_id: number;
|
|
2781
|
+
id: number;
|
|
1845
2782
|
};
|
|
1846
2783
|
query?: never;
|
|
1847
|
-
url: "/org/{org_id}/webhooks";
|
|
2784
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1848
2785
|
};
|
|
1849
2786
|
|
|
1850
|
-
export type
|
|
2787
|
+
export type WebhooksControllerGet1Errors = {
|
|
1851
2788
|
401: unknown;
|
|
1852
2789
|
403: unknown;
|
|
1853
2790
|
};
|
|
1854
2791
|
|
|
1855
|
-
export type
|
|
1856
|
-
200:
|
|
2792
|
+
export type WebhooksControllerGet1Responses = {
|
|
2793
|
+
200: GetWebhookResponse;
|
|
1857
2794
|
};
|
|
1858
2795
|
|
|
1859
|
-
export type
|
|
1860
|
-
|
|
2796
|
+
export type WebhooksControllerGet1Response =
|
|
2797
|
+
WebhooksControllerGet1Responses[keyof WebhooksControllerGet1Responses];
|
|
1861
2798
|
|
|
1862
|
-
export type
|
|
1863
|
-
body:
|
|
2799
|
+
export type WebhooksControllerUpdate1Data = {
|
|
2800
|
+
body: UpdateWebhookBody;
|
|
1864
2801
|
path: {
|
|
1865
2802
|
org_id: number;
|
|
2803
|
+
id: number;
|
|
1866
2804
|
};
|
|
1867
2805
|
query?: never;
|
|
1868
|
-
url: "/org/{org_id}/webhooks";
|
|
2806
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1869
2807
|
};
|
|
1870
2808
|
|
|
1871
|
-
export type
|
|
2809
|
+
export type WebhooksControllerUpdate1Errors = {
|
|
1872
2810
|
401: unknown;
|
|
1873
2811
|
403: unknown;
|
|
1874
2812
|
};
|
|
1875
2813
|
|
|
1876
|
-
export type
|
|
1877
|
-
|
|
2814
|
+
export type WebhooksControllerUpdate1Responses = {
|
|
2815
|
+
200: UpdateWebhookResponse;
|
|
1878
2816
|
};
|
|
1879
2817
|
|
|
1880
|
-
export type
|
|
1881
|
-
|
|
2818
|
+
export type WebhooksControllerUpdate1Response =
|
|
2819
|
+
WebhooksControllerUpdate1Responses[keyof WebhooksControllerUpdate1Responses];
|
|
1882
2820
|
|
|
1883
|
-
export type
|
|
1884
|
-
body
|
|
2821
|
+
export type WebhooksControllerRegenerateSecret0V1Data = {
|
|
2822
|
+
body: RegenerateWebhookSecretBody;
|
|
1885
2823
|
path: {
|
|
1886
2824
|
org_id: number;
|
|
1887
2825
|
id: number;
|
|
1888
2826
|
};
|
|
1889
2827
|
query?: never;
|
|
1890
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
2828
|
+
url: "/v1/org/{org_id}/webhooks/{id}/regenerate-secret";
|
|
1891
2829
|
};
|
|
1892
2830
|
|
|
1893
|
-
export type
|
|
2831
|
+
export type WebhooksControllerRegenerateSecret0V1Errors = {
|
|
1894
2832
|
401: unknown;
|
|
1895
2833
|
403: unknown;
|
|
1896
2834
|
};
|
|
1897
2835
|
|
|
1898
|
-
export type
|
|
1899
|
-
200:
|
|
2836
|
+
export type WebhooksControllerRegenerateSecret0V1Responses = {
|
|
2837
|
+
200: RegenerateWebhookSecretResponseDto;
|
|
1900
2838
|
};
|
|
1901
2839
|
|
|
1902
|
-
export type
|
|
1903
|
-
|
|
2840
|
+
export type WebhooksControllerRegenerateSecret0V1Response =
|
|
2841
|
+
WebhooksControllerRegenerateSecret0V1Responses[keyof WebhooksControllerRegenerateSecret0V1Responses];
|
|
1904
2842
|
|
|
1905
|
-
export type
|
|
1906
|
-
body
|
|
2843
|
+
export type WebhooksControllerRegenerateSecret1Data = {
|
|
2844
|
+
body: RegenerateWebhookSecretBody;
|
|
1907
2845
|
path: {
|
|
1908
2846
|
org_id: number;
|
|
1909
2847
|
id: number;
|
|
1910
2848
|
};
|
|
1911
2849
|
query?: never;
|
|
1912
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
2850
|
+
url: "/org/{org_id}/webhooks/{id}/regenerate-secret";
|
|
1913
2851
|
};
|
|
1914
2852
|
|
|
1915
|
-
export type
|
|
2853
|
+
export type WebhooksControllerRegenerateSecret1Errors = {
|
|
1916
2854
|
401: unknown;
|
|
1917
2855
|
403: unknown;
|
|
1918
2856
|
};
|
|
1919
2857
|
|
|
1920
|
-
export type
|
|
1921
|
-
200:
|
|
2858
|
+
export type WebhooksControllerRegenerateSecret1Responses = {
|
|
2859
|
+
200: RegenerateWebhookSecretResponseDto;
|
|
1922
2860
|
};
|
|
1923
2861
|
|
|
1924
|
-
export type
|
|
1925
|
-
|
|
2862
|
+
export type WebhooksControllerRegenerateSecret1Response =
|
|
2863
|
+
WebhooksControllerRegenerateSecret1Responses[keyof WebhooksControllerRegenerateSecret1Responses];
|
|
1926
2864
|
|
|
1927
|
-
export type
|
|
1928
|
-
body
|
|
2865
|
+
export type WebhooksControllerTest0V1Data = {
|
|
2866
|
+
body?: never;
|
|
1929
2867
|
path: {
|
|
1930
2868
|
org_id: number;
|
|
1931
2869
|
id: number;
|
|
1932
2870
|
};
|
|
1933
2871
|
query?: never;
|
|
1934
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
2872
|
+
url: "/v1/org/{org_id}/webhooks/{id}/test";
|
|
1935
2873
|
};
|
|
1936
2874
|
|
|
1937
|
-
export type
|
|
2875
|
+
export type WebhooksControllerTest0V1Errors = {
|
|
1938
2876
|
401: unknown;
|
|
1939
2877
|
403: unknown;
|
|
1940
2878
|
};
|
|
1941
2879
|
|
|
1942
|
-
export type
|
|
1943
|
-
200:
|
|
2880
|
+
export type WebhooksControllerTest0V1Responses = {
|
|
2881
|
+
200: TestWebhookResponse;
|
|
1944
2882
|
};
|
|
1945
2883
|
|
|
1946
|
-
export type
|
|
1947
|
-
|
|
2884
|
+
export type WebhooksControllerTest0V1Response =
|
|
2885
|
+
WebhooksControllerTest0V1Responses[keyof WebhooksControllerTest0V1Responses];
|
|
1948
2886
|
|
|
1949
|
-
export type
|
|
1950
|
-
body
|
|
2887
|
+
export type WebhooksControllerTest1Data = {
|
|
2888
|
+
body?: never;
|
|
1951
2889
|
path: {
|
|
1952
2890
|
org_id: number;
|
|
1953
2891
|
id: number;
|
|
1954
2892
|
};
|
|
1955
2893
|
query?: never;
|
|
1956
|
-
url: "/org/{org_id}/webhooks/{id}/
|
|
2894
|
+
url: "/org/{org_id}/webhooks/{id}/test";
|
|
1957
2895
|
};
|
|
1958
2896
|
|
|
1959
|
-
export type
|
|
2897
|
+
export type WebhooksControllerTest1Errors = {
|
|
1960
2898
|
401: unknown;
|
|
1961
2899
|
403: unknown;
|
|
1962
2900
|
};
|
|
1963
2901
|
|
|
1964
|
-
export type
|
|
1965
|
-
200:
|
|
2902
|
+
export type WebhooksControllerTest1Responses = {
|
|
2903
|
+
200: TestWebhookResponse;
|
|
1966
2904
|
};
|
|
1967
2905
|
|
|
1968
|
-
export type
|
|
1969
|
-
|
|
2906
|
+
export type WebhooksControllerTest1Response =
|
|
2907
|
+
WebhooksControllerTest1Responses[keyof WebhooksControllerTest1Responses];
|
|
1970
2908
|
|
|
1971
|
-
export type
|
|
2909
|
+
export type WebhooksControllerGetStatus0V1Data = {
|
|
1972
2910
|
body?: never;
|
|
1973
2911
|
path: {
|
|
1974
2912
|
org_id: number;
|
|
1975
2913
|
id: number;
|
|
1976
2914
|
};
|
|
1977
2915
|
query?: never;
|
|
1978
|
-
url: "/org/{org_id}/webhooks/{id}/
|
|
2916
|
+
url: "/v1/org/{org_id}/webhooks/{id}/status";
|
|
1979
2917
|
};
|
|
1980
2918
|
|
|
1981
|
-
export type
|
|
2919
|
+
export type WebhooksControllerGetStatus0V1Errors = {
|
|
1982
2920
|
401: unknown;
|
|
1983
2921
|
403: unknown;
|
|
1984
2922
|
};
|
|
1985
2923
|
|
|
1986
|
-
export type
|
|
1987
|
-
200:
|
|
2924
|
+
export type WebhooksControllerGetStatus0V1Responses = {
|
|
2925
|
+
200: GetWebhookStatusResponse;
|
|
1988
2926
|
};
|
|
1989
2927
|
|
|
1990
|
-
export type
|
|
1991
|
-
|
|
2928
|
+
export type WebhooksControllerGetStatus0V1Response =
|
|
2929
|
+
WebhooksControllerGetStatus0V1Responses[keyof WebhooksControllerGetStatus0V1Responses];
|
|
1992
2930
|
|
|
1993
|
-
export type
|
|
2931
|
+
export type WebhooksControllerGetStatus1Data = {
|
|
1994
2932
|
body?: never;
|
|
1995
2933
|
path: {
|
|
1996
2934
|
org_id: number;
|
|
@@ -2000,26 +2938,53 @@ export type WebhooksControllerGetStatusData = {
|
|
|
2000
2938
|
url: "/org/{org_id}/webhooks/{id}/status";
|
|
2001
2939
|
};
|
|
2002
2940
|
|
|
2003
|
-
export type
|
|
2941
|
+
export type WebhooksControllerGetStatus1Errors = {
|
|
2004
2942
|
401: unknown;
|
|
2005
2943
|
403: unknown;
|
|
2006
2944
|
};
|
|
2007
2945
|
|
|
2008
|
-
export type
|
|
2946
|
+
export type WebhooksControllerGetStatus1Responses = {
|
|
2009
2947
|
200: GetWebhookStatusResponse;
|
|
2010
2948
|
};
|
|
2011
2949
|
|
|
2012
|
-
export type
|
|
2013
|
-
|
|
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
|
+
};
|
|
2014
2976
|
|
|
2015
|
-
export type
|
|
2977
|
+
export type ZonesControllerCreateZone0V1Response =
|
|
2978
|
+
ZonesControllerCreateZone0V1Responses[keyof ZonesControllerCreateZone0V1Responses];
|
|
2979
|
+
|
|
2980
|
+
export type ZonesControllerCreateZone1Data = {
|
|
2016
2981
|
body: CreateZoneDto;
|
|
2017
2982
|
path?: never;
|
|
2018
2983
|
query?: never;
|
|
2019
2984
|
url: "/zones";
|
|
2020
2985
|
};
|
|
2021
2986
|
|
|
2022
|
-
export type
|
|
2987
|
+
export type ZonesControllerCreateZone1Errors = {
|
|
2023
2988
|
/**
|
|
2024
2989
|
* Invalid zone id (must be a valid level-9 H3 cell)
|
|
2025
2990
|
*/
|
|
@@ -2032,14 +2997,67 @@ export type ZonesControllerCreateZoneErrors = {
|
|
|
2032
2997
|
409: unknown;
|
|
2033
2998
|
};
|
|
2034
2999
|
|
|
2035
|
-
export type
|
|
3000
|
+
export type ZonesControllerCreateZone1Responses = {
|
|
2036
3001
|
201: ZoneResponseDto;
|
|
2037
3002
|
};
|
|
2038
3003
|
|
|
2039
|
-
export type
|
|
2040
|
-
|
|
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];
|
|
2041
3059
|
|
|
2042
|
-
export type
|
|
3060
|
+
export type ZonesControllerDeleteZone1Data = {
|
|
2043
3061
|
body?: never;
|
|
2044
3062
|
path: {
|
|
2045
3063
|
id: string;
|
|
@@ -2048,7 +3066,7 @@ export type ZonesControllerDeleteZoneData = {
|
|
|
2048
3066
|
url: "/zones/{id}";
|
|
2049
3067
|
};
|
|
2050
3068
|
|
|
2051
|
-
export type
|
|
3069
|
+
export type ZonesControllerDeleteZone1Errors = {
|
|
2052
3070
|
401: unknown;
|
|
2053
3071
|
403: unknown;
|
|
2054
3072
|
/**
|
|
@@ -2057,17 +3075,17 @@ export type ZonesControllerDeleteZoneErrors = {
|
|
|
2057
3075
|
404: unknown;
|
|
2058
3076
|
};
|
|
2059
3077
|
|
|
2060
|
-
export type
|
|
3078
|
+
export type ZonesControllerDeleteZone1Responses = {
|
|
2061
3079
|
/**
|
|
2062
3080
|
* Zone deleted
|
|
2063
3081
|
*/
|
|
2064
3082
|
204: void;
|
|
2065
3083
|
};
|
|
2066
3084
|
|
|
2067
|
-
export type
|
|
2068
|
-
|
|
3085
|
+
export type ZonesControllerDeleteZone1Response =
|
|
3086
|
+
ZonesControllerDeleteZone1Responses[keyof ZonesControllerDeleteZone1Responses];
|
|
2069
3087
|
|
|
2070
|
-
export type
|
|
3088
|
+
export type ZonesControllerUpdateZone1Data = {
|
|
2071
3089
|
body: UpdateZoneDto;
|
|
2072
3090
|
path: {
|
|
2073
3091
|
id: string;
|
|
@@ -2076,7 +3094,7 @@ export type ZonesControllerUpdateZoneData = {
|
|
|
2076
3094
|
url: "/zones/{id}";
|
|
2077
3095
|
};
|
|
2078
3096
|
|
|
2079
|
-
export type
|
|
3097
|
+
export type ZonesControllerUpdateZone1Errors = {
|
|
2080
3098
|
401: unknown;
|
|
2081
3099
|
403: unknown;
|
|
2082
3100
|
/**
|
|
@@ -2085,49 +3103,97 @@ export type ZonesControllerUpdateZoneErrors = {
|
|
|
2085
3103
|
404: unknown;
|
|
2086
3104
|
};
|
|
2087
3105
|
|
|
2088
|
-
export type
|
|
3106
|
+
export type ZonesControllerUpdateZone1Responses = {
|
|
2089
3107
|
200: ZoneResponseDto;
|
|
2090
3108
|
};
|
|
2091
3109
|
|
|
2092
|
-
export type
|
|
2093
|
-
|
|
3110
|
+
export type ZonesControllerUpdateZone1Response =
|
|
3111
|
+
ZonesControllerUpdateZone1Responses[keyof ZonesControllerUpdateZone1Responses];
|
|
2094
3112
|
|
|
2095
|
-
export type
|
|
3113
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Data = {
|
|
2096
3114
|
body: SyncEventProcessorMissionsRequestDto;
|
|
2097
3115
|
path?: never;
|
|
2098
3116
|
query?: never;
|
|
2099
|
-
url: "/event-processor/missions/sync";
|
|
3117
|
+
url: "/v1/event-processor/missions/sync";
|
|
2100
3118
|
};
|
|
2101
3119
|
|
|
2102
|
-
export type
|
|
3120
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Errors = {
|
|
2103
3121
|
401: unknown;
|
|
2104
3122
|
403: unknown;
|
|
2105
3123
|
};
|
|
2106
3124
|
|
|
2107
|
-
export type
|
|
3125
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Responses = {
|
|
2108
3126
|
/**
|
|
2109
3127
|
* Per-mission success or failure.
|
|
2110
3128
|
*/
|
|
2111
3129
|
200: SyncEventProcessorMissionsResponseDto;
|
|
2112
3130
|
};
|
|
2113
3131
|
|
|
2114
|
-
export type
|
|
2115
|
-
|
|
3132
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Response =
|
|
3133
|
+
EventProcessorMissionsSyncControllerResyncMissions0V1Responses[keyof EventProcessorMissionsSyncControllerResyncMissions0V1Responses];
|
|
2116
3134
|
|
|
2117
|
-
export type
|
|
2118
|
-
body:
|
|
3135
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Data = {
|
|
3136
|
+
body: SyncEventProcessorMissionsRequestDto;
|
|
2119
3137
|
path?: never;
|
|
2120
3138
|
query?: never;
|
|
2121
|
-
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;
|
|
2122
3152
|
};
|
|
2123
3153
|
|
|
2124
|
-
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 =
|
|
2125
3191
|
{
|
|
2126
3192
|
401: unknown;
|
|
2127
3193
|
403: unknown;
|
|
2128
3194
|
};
|
|
2129
3195
|
|
|
2130
|
-
export type
|
|
3196
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses =
|
|
2131
3197
|
{
|
|
2132
3198
|
/**
|
|
2133
3199
|
* Per-flight success or failure.
|
|
@@ -2135,59 +3201,171 @@ export type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponse
|
|
|
2135
3201
|
200: SyncEventProcessorFlightReviewsResponseDto;
|
|
2136
3202
|
};
|
|
2137
3203
|
|
|
2138
|
-
export type
|
|
2139
|
-
|
|
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
|
+
};
|
|
2140
3217
|
|
|
2141
|
-
export type
|
|
3218
|
+
export type AlchemyControllerHandleWebhook1Data = {
|
|
2142
3219
|
body: AlchemyWebhookBodyDto;
|
|
2143
3220
|
path?: never;
|
|
2144
3221
|
query?: never;
|
|
2145
3222
|
url: "/webhooks/inbound/alchemy";
|
|
2146
3223
|
};
|
|
2147
3224
|
|
|
2148
|
-
export type
|
|
3225
|
+
export type AlchemyControllerHandleWebhook1Responses = {
|
|
2149
3226
|
200: unknown;
|
|
2150
3227
|
};
|
|
2151
3228
|
|
|
2152
|
-
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 = {
|
|
2153
3268
|
body?: never;
|
|
2154
3269
|
path?: never;
|
|
2155
3270
|
query?: never;
|
|
2156
3271
|
url: "/webhooks/inbound/configs";
|
|
2157
3272
|
};
|
|
2158
3273
|
|
|
2159
|
-
export type
|
|
3274
|
+
export type InboundWebhookConfigsControllerGetMany1Errors = {
|
|
2160
3275
|
401: unknown;
|
|
2161
3276
|
403: unknown;
|
|
2162
3277
|
};
|
|
2163
3278
|
|
|
2164
|
-
export type
|
|
3279
|
+
export type InboundWebhookConfigsControllerGetMany1Responses = {
|
|
2165
3280
|
200: GetInboundWebhookConfigsResponse;
|
|
2166
3281
|
};
|
|
2167
3282
|
|
|
2168
|
-
export type
|
|
2169
|
-
|
|
3283
|
+
export type InboundWebhookConfigsControllerGetMany1Response =
|
|
3284
|
+
InboundWebhookConfigsControllerGetMany1Responses[keyof InboundWebhookConfigsControllerGetMany1Responses];
|
|
2170
3285
|
|
|
2171
|
-
export type
|
|
3286
|
+
export type InboundWebhookConfigsControllerCreate1Data = {
|
|
2172
3287
|
body: CreateInboundWebhookConfigBody;
|
|
2173
3288
|
path?: never;
|
|
2174
3289
|
query?: never;
|
|
2175
3290
|
url: "/webhooks/inbound/configs";
|
|
2176
3291
|
};
|
|
2177
3292
|
|
|
2178
|
-
export type
|
|
3293
|
+
export type InboundWebhookConfigsControllerCreate1Errors = {
|
|
2179
3294
|
401: unknown;
|
|
2180
3295
|
403: unknown;
|
|
2181
3296
|
};
|
|
2182
3297
|
|
|
2183
|
-
export type
|
|
3298
|
+
export type InboundWebhookConfigsControllerCreate1Responses = {
|
|
2184
3299
|
201: CreateInboundWebhookConfigResponse;
|
|
2185
3300
|
};
|
|
2186
3301
|
|
|
2187
|
-
export type
|
|
2188
|
-
|
|
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];
|
|
2189
3367
|
|
|
2190
|
-
export type
|
|
3368
|
+
export type InboundWebhookConfigsControllerDelete1Data = {
|
|
2191
3369
|
body?: never;
|
|
2192
3370
|
path: {
|
|
2193
3371
|
id: number;
|
|
@@ -2196,19 +3374,19 @@ export type InboundWebhookConfigsControllerDeleteData = {
|
|
|
2196
3374
|
url: "/webhooks/inbound/configs/{id}";
|
|
2197
3375
|
};
|
|
2198
3376
|
|
|
2199
|
-
export type
|
|
3377
|
+
export type InboundWebhookConfigsControllerDelete1Errors = {
|
|
2200
3378
|
401: unknown;
|
|
2201
3379
|
403: unknown;
|
|
2202
3380
|
};
|
|
2203
3381
|
|
|
2204
|
-
export type
|
|
3382
|
+
export type InboundWebhookConfigsControllerDelete1Responses = {
|
|
2205
3383
|
200: DeleteInboundWebhookConfigResponse;
|
|
2206
3384
|
};
|
|
2207
3385
|
|
|
2208
|
-
export type
|
|
2209
|
-
|
|
3386
|
+
export type InboundWebhookConfigsControllerDelete1Response =
|
|
3387
|
+
InboundWebhookConfigsControllerDelete1Responses[keyof InboundWebhookConfigsControllerDelete1Responses];
|
|
2210
3388
|
|
|
2211
|
-
export type
|
|
3389
|
+
export type InboundWebhookConfigsControllerGet1Data = {
|
|
2212
3390
|
body?: never;
|
|
2213
3391
|
path: {
|
|
2214
3392
|
id: number;
|
|
@@ -2217,19 +3395,19 @@ export type InboundWebhookConfigsControllerGetData = {
|
|
|
2217
3395
|
url: "/webhooks/inbound/configs/{id}";
|
|
2218
3396
|
};
|
|
2219
3397
|
|
|
2220
|
-
export type
|
|
3398
|
+
export type InboundWebhookConfigsControllerGet1Errors = {
|
|
2221
3399
|
401: unknown;
|
|
2222
3400
|
403: unknown;
|
|
2223
3401
|
};
|
|
2224
3402
|
|
|
2225
|
-
export type
|
|
3403
|
+
export type InboundWebhookConfigsControllerGet1Responses = {
|
|
2226
3404
|
200: GetInboundWebhookConfigResponse;
|
|
2227
3405
|
};
|
|
2228
3406
|
|
|
2229
|
-
export type
|
|
2230
|
-
|
|
3407
|
+
export type InboundWebhookConfigsControllerGet1Response =
|
|
3408
|
+
InboundWebhookConfigsControllerGet1Responses[keyof InboundWebhookConfigsControllerGet1Responses];
|
|
2231
3409
|
|
|
2232
|
-
export type
|
|
3410
|
+
export type InboundWebhookConfigsControllerUpdate1Data = {
|
|
2233
3411
|
body: UpdateInboundWebhookConfigBody;
|
|
2234
3412
|
path: {
|
|
2235
3413
|
id: number;
|
|
@@ -2238,17 +3416,17 @@ export type InboundWebhookConfigsControllerUpdateData = {
|
|
|
2238
3416
|
url: "/webhooks/inbound/configs/{id}";
|
|
2239
3417
|
};
|
|
2240
3418
|
|
|
2241
|
-
export type
|
|
3419
|
+
export type InboundWebhookConfigsControllerUpdate1Errors = {
|
|
2242
3420
|
401: unknown;
|
|
2243
3421
|
403: unknown;
|
|
2244
3422
|
};
|
|
2245
3423
|
|
|
2246
|
-
export type
|
|
3424
|
+
export type InboundWebhookConfigsControllerUpdate1Responses = {
|
|
2247
3425
|
200: UpdateInboundWebhookConfigResponse;
|
|
2248
3426
|
};
|
|
2249
3427
|
|
|
2250
|
-
export type
|
|
2251
|
-
|
|
3428
|
+
export type InboundWebhookConfigsControllerUpdate1Response =
|
|
3429
|
+
InboundWebhookConfigsControllerUpdate1Responses[keyof InboundWebhookConfigsControllerUpdate1Responses];
|
|
2252
3430
|
|
|
2253
3431
|
export type ClientOptions = {
|
|
2254
3432
|
baseUrl: string;
|