@layer-drone/protocol 0.8.0 → 1.0.1
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 +1593 -330
- package/dist/index.d.ts +1593 -330
- package/dist/index.js +1553 -393
- package/dist/index.mjs +1433 -340
- package/package.json +1 -1
- package/src/client/sdk.gen.ts +2585 -599
- package/src/client/transformers.gen.ts +304 -77
- package/src/client/types.gen.ts +2223 -491
package/src/client/types.gen.ts
CHANGED
|
@@ -22,6 +22,7 @@ export type CreateApiTokenResponseDto = {
|
|
|
22
22
|
| "manageProposals"
|
|
23
23
|
| "approveProposals"
|
|
24
24
|
| "manageProtocolTriggers"
|
|
25
|
+
| "manageCampaigns"
|
|
25
26
|
| "all"
|
|
26
27
|
>;
|
|
27
28
|
};
|
|
@@ -44,6 +45,7 @@ export type CreateApiTokenRequestDto = {
|
|
|
44
45
|
| "manageProposals"
|
|
45
46
|
| "approveProposals"
|
|
46
47
|
| "manageProtocolTriggers"
|
|
48
|
+
| "manageCampaigns"
|
|
47
49
|
| "all"
|
|
48
50
|
>;
|
|
49
51
|
orgId: number;
|
|
@@ -67,6 +69,7 @@ export type UpdateApiTokenRequestDto = {
|
|
|
67
69
|
| "manageProposals"
|
|
68
70
|
| "approveProposals"
|
|
69
71
|
| "manageProtocolTriggers"
|
|
72
|
+
| "manageCampaigns"
|
|
70
73
|
| "all"
|
|
71
74
|
>;
|
|
72
75
|
};
|
|
@@ -93,10 +96,52 @@ export type UpdateApiTokenResponseDto = {
|
|
|
93
96
|
| "manageProposals"
|
|
94
97
|
| "approveProposals"
|
|
95
98
|
| "manageProtocolTriggers"
|
|
99
|
+
| "manageCampaigns"
|
|
96
100
|
| "all"
|
|
97
101
|
>;
|
|
98
102
|
};
|
|
99
103
|
|
|
104
|
+
export type CreateCampaignBody = {
|
|
105
|
+
id: string;
|
|
106
|
+
name: string;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export type CreateCampaignResponse = {
|
|
110
|
+
id: string;
|
|
111
|
+
name: string;
|
|
112
|
+
created_at: string;
|
|
113
|
+
updated_at: string;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export type GetCampaignsResponse = Array<{
|
|
117
|
+
id: string;
|
|
118
|
+
name: string;
|
|
119
|
+
created_at: string;
|
|
120
|
+
updated_at: string;
|
|
121
|
+
}>;
|
|
122
|
+
|
|
123
|
+
export type GetCampaignResponse = {
|
|
124
|
+
id: string;
|
|
125
|
+
name: string;
|
|
126
|
+
created_at: string;
|
|
127
|
+
updated_at: string;
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
export type UpdateCampaignBody = {
|
|
131
|
+
name: string;
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
export type UpdateCampaignResponse = {
|
|
135
|
+
id: string;
|
|
136
|
+
name: string;
|
|
137
|
+
created_at: string;
|
|
138
|
+
updated_at: string;
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
export type DeleteCampaignResponse = {
|
|
142
|
+
message: string;
|
|
143
|
+
};
|
|
144
|
+
|
|
100
145
|
export type GetTimeLimitsForSunAltitudeResponse = {
|
|
101
146
|
OptimalSunAltitudePeriod: {
|
|
102
147
|
StartTime: Date;
|
|
@@ -724,6 +769,7 @@ export type UpdateMissionsRequestDto = {
|
|
|
724
769
|
isOpen?: boolean;
|
|
725
770
|
collateralToken?: string;
|
|
726
771
|
decimals?: number;
|
|
772
|
+
campaigns?: Array<string>;
|
|
727
773
|
}>;
|
|
728
774
|
treasuryAddress: string;
|
|
729
775
|
};
|
|
@@ -734,6 +780,7 @@ export type UpdateMissionsResponseDto = {
|
|
|
734
780
|
escrowRequestsQueued: Array<string>;
|
|
735
781
|
withdrawalRequestsQueued: Array<string>;
|
|
736
782
|
cancelRequestsQueued: Array<string>;
|
|
783
|
+
campaignsUpdated: Array<string>;
|
|
737
784
|
};
|
|
738
785
|
};
|
|
739
786
|
|
|
@@ -755,6 +802,159 @@ export type RepriceMissionsResponseDto = {
|
|
|
755
802
|
};
|
|
756
803
|
};
|
|
757
804
|
|
|
805
|
+
export type CreateProposalRequestDto = {
|
|
806
|
+
name: string;
|
|
807
|
+
created_by: string;
|
|
808
|
+
description?: string;
|
|
809
|
+
source?: {
|
|
810
|
+
tool: "arcgis-plugin";
|
|
811
|
+
version?: string;
|
|
812
|
+
};
|
|
813
|
+
changes: Array<
|
|
814
|
+
| {
|
|
815
|
+
payload: {
|
|
816
|
+
id: string;
|
|
817
|
+
region_id: number;
|
|
818
|
+
is_flyable?: boolean;
|
|
819
|
+
};
|
|
820
|
+
action: "zone.create";
|
|
821
|
+
}
|
|
822
|
+
| {
|
|
823
|
+
resource_id: string;
|
|
824
|
+
payload: {
|
|
825
|
+
is_flyable: boolean;
|
|
826
|
+
};
|
|
827
|
+
action: "zone.update";
|
|
828
|
+
}
|
|
829
|
+
| {
|
|
830
|
+
resource_id: string;
|
|
831
|
+
action: "zone.delete";
|
|
832
|
+
}
|
|
833
|
+
| {
|
|
834
|
+
payload: {
|
|
835
|
+
id: string;
|
|
836
|
+
name: string;
|
|
837
|
+
};
|
|
838
|
+
action: "campaign.create";
|
|
839
|
+
}
|
|
840
|
+
| {
|
|
841
|
+
resource_id: string;
|
|
842
|
+
payload: {
|
|
843
|
+
name?: string;
|
|
844
|
+
};
|
|
845
|
+
action: "campaign.update";
|
|
846
|
+
}
|
|
847
|
+
| {
|
|
848
|
+
resource_id: string;
|
|
849
|
+
action: "campaign.delete";
|
|
850
|
+
}
|
|
851
|
+
| {
|
|
852
|
+
payload: {
|
|
853
|
+
requestor: string;
|
|
854
|
+
zone_id: string;
|
|
855
|
+
campaigns: Array<string>;
|
|
856
|
+
flight_plan_id: number;
|
|
857
|
+
amount: string | number | bigint;
|
|
858
|
+
collateral_token: string;
|
|
859
|
+
decimals: number;
|
|
860
|
+
capture_start_time: Date;
|
|
861
|
+
capture_end_time: Date;
|
|
862
|
+
is_reservable?: boolean;
|
|
863
|
+
tags?: {
|
|
864
|
+
[key: string]: string;
|
|
865
|
+
};
|
|
866
|
+
};
|
|
867
|
+
action: "mission.create";
|
|
868
|
+
}
|
|
869
|
+
| {
|
|
870
|
+
resource_id: string;
|
|
871
|
+
payload: {
|
|
872
|
+
amount?: string | number | bigint;
|
|
873
|
+
is_open?: boolean;
|
|
874
|
+
collateral_token?: string;
|
|
875
|
+
decimals?: number;
|
|
876
|
+
campaigns?: Array<string>;
|
|
877
|
+
};
|
|
878
|
+
action: "mission.update";
|
|
879
|
+
}
|
|
880
|
+
>;
|
|
881
|
+
};
|
|
882
|
+
|
|
883
|
+
export type CreateProposalResponseDto = {
|
|
884
|
+
proposal_id: string;
|
|
885
|
+
total_items_changed: number;
|
|
886
|
+
estimated_cost: number;
|
|
887
|
+
};
|
|
888
|
+
|
|
889
|
+
export type GetProposalsResponseDto = {
|
|
890
|
+
proposals: Array<{
|
|
891
|
+
id: string;
|
|
892
|
+
name: string;
|
|
893
|
+
created_at: Date;
|
|
894
|
+
created_by: string;
|
|
895
|
+
total_items: number;
|
|
896
|
+
pending_count: number;
|
|
897
|
+
dispatched_count: number;
|
|
898
|
+
verified_count: number;
|
|
899
|
+
failed_count: number;
|
|
900
|
+
status:
|
|
901
|
+
| "pending"
|
|
902
|
+
| "approved"
|
|
903
|
+
| "rejected"
|
|
904
|
+
| "dispatched"
|
|
905
|
+
| "verified"
|
|
906
|
+
| "error";
|
|
907
|
+
}>;
|
|
908
|
+
hasNextPage: boolean;
|
|
909
|
+
};
|
|
910
|
+
|
|
911
|
+
export type GetProposalResponseDto = {
|
|
912
|
+
id: string;
|
|
913
|
+
name: string;
|
|
914
|
+
description: string;
|
|
915
|
+
source: {
|
|
916
|
+
tool: "arcgis-plugin";
|
|
917
|
+
version?: string;
|
|
918
|
+
};
|
|
919
|
+
created_at: Date;
|
|
920
|
+
created_by: string;
|
|
921
|
+
total_items: number;
|
|
922
|
+
pending_count: number;
|
|
923
|
+
dispatched_count: number;
|
|
924
|
+
verified_count: number;
|
|
925
|
+
failed_count: number;
|
|
926
|
+
estimated_cost: string;
|
|
927
|
+
status:
|
|
928
|
+
| "pending"
|
|
929
|
+
| "approved"
|
|
930
|
+
| "rejected"
|
|
931
|
+
| "dispatched"
|
|
932
|
+
| "verified"
|
|
933
|
+
| "error";
|
|
934
|
+
changes: Array<{
|
|
935
|
+
id: string;
|
|
936
|
+
resource: string;
|
|
937
|
+
action: string;
|
|
938
|
+
resource_id: string;
|
|
939
|
+
payload: {
|
|
940
|
+
[key: string]: unknown;
|
|
941
|
+
};
|
|
942
|
+
dispatched_at: Date;
|
|
943
|
+
verified_at: Date;
|
|
944
|
+
failed_at: Date;
|
|
945
|
+
error: string;
|
|
946
|
+
}>;
|
|
947
|
+
};
|
|
948
|
+
|
|
949
|
+
export type ReviewProposalRequestDto = {
|
|
950
|
+
approved: boolean;
|
|
951
|
+
reviewed_by: string;
|
|
952
|
+
};
|
|
953
|
+
|
|
954
|
+
export type ReviewProposalResponseDto = {
|
|
955
|
+
review_id: string;
|
|
956
|
+
};
|
|
957
|
+
|
|
758
958
|
export type TriggerPayoutRequestDto = {
|
|
759
959
|
missionIds: Array<string>;
|
|
760
960
|
};
|
|
@@ -1074,49 +1274,148 @@ export type DeleteInboundWebhookConfigResponse = {
|
|
|
1074
1274
|
message: string;
|
|
1075
1275
|
};
|
|
1076
1276
|
|
|
1077
|
-
export type
|
|
1277
|
+
export type ApiControllerGetHello0V1Data = {
|
|
1278
|
+
body?: never;
|
|
1279
|
+
path?: never;
|
|
1280
|
+
query?: never;
|
|
1281
|
+
url: "/v1";
|
|
1282
|
+
};
|
|
1283
|
+
|
|
1284
|
+
export type ApiControllerGetHello0V1Responses = {
|
|
1285
|
+
200: unknown;
|
|
1286
|
+
};
|
|
1287
|
+
|
|
1288
|
+
export type ApiControllerGetHello1Data = {
|
|
1078
1289
|
body?: never;
|
|
1079
1290
|
path?: never;
|
|
1080
1291
|
query?: never;
|
|
1081
1292
|
url: "/";
|
|
1082
1293
|
};
|
|
1083
1294
|
|
|
1084
|
-
export type
|
|
1295
|
+
export type ApiControllerGetHello1Responses = {
|
|
1296
|
+
200: unknown;
|
|
1297
|
+
};
|
|
1298
|
+
|
|
1299
|
+
export type ApiControllerGetError0V1Data = {
|
|
1300
|
+
body?: never;
|
|
1301
|
+
path?: never;
|
|
1302
|
+
query?: never;
|
|
1303
|
+
url: "/v1/debug-sentry";
|
|
1304
|
+
};
|
|
1305
|
+
|
|
1306
|
+
export type ApiControllerGetError0V1Responses = {
|
|
1085
1307
|
200: unknown;
|
|
1086
1308
|
};
|
|
1087
1309
|
|
|
1088
|
-
export type
|
|
1310
|
+
export type ApiControllerGetError1Data = {
|
|
1089
1311
|
body?: never;
|
|
1090
1312
|
path?: never;
|
|
1091
1313
|
query?: never;
|
|
1092
1314
|
url: "/debug-sentry";
|
|
1093
1315
|
};
|
|
1094
1316
|
|
|
1095
|
-
export type
|
|
1317
|
+
export type ApiControllerGetError1Responses = {
|
|
1096
1318
|
200: unknown;
|
|
1097
1319
|
};
|
|
1098
1320
|
|
|
1099
|
-
export type
|
|
1321
|
+
export type ApiTokenControllerCreateToken0V1Data = {
|
|
1322
|
+
body: CreateApiTokenRequestDto;
|
|
1323
|
+
path?: never;
|
|
1324
|
+
query?: never;
|
|
1325
|
+
url: "/v1/tokens";
|
|
1326
|
+
};
|
|
1327
|
+
|
|
1328
|
+
export type ApiTokenControllerCreateToken0V1Errors = {
|
|
1329
|
+
401: unknown;
|
|
1330
|
+
403: unknown;
|
|
1331
|
+
};
|
|
1332
|
+
|
|
1333
|
+
export type ApiTokenControllerCreateToken0V1Responses = {
|
|
1334
|
+
200: CreateApiTokenResponseDto;
|
|
1335
|
+
201: unknown;
|
|
1336
|
+
};
|
|
1337
|
+
|
|
1338
|
+
export type ApiTokenControllerCreateToken0V1Response =
|
|
1339
|
+
ApiTokenControllerCreateToken0V1Responses[keyof ApiTokenControllerCreateToken0V1Responses];
|
|
1340
|
+
|
|
1341
|
+
export type ApiTokenControllerCreateToken1Data = {
|
|
1100
1342
|
body: CreateApiTokenRequestDto;
|
|
1101
1343
|
path?: never;
|
|
1102
1344
|
query?: never;
|
|
1103
1345
|
url: "/tokens";
|
|
1104
1346
|
};
|
|
1105
1347
|
|
|
1106
|
-
export type
|
|
1348
|
+
export type ApiTokenControllerCreateToken1Errors = {
|
|
1107
1349
|
401: unknown;
|
|
1108
1350
|
403: unknown;
|
|
1109
1351
|
};
|
|
1110
1352
|
|
|
1111
|
-
export type
|
|
1353
|
+
export type ApiTokenControllerCreateToken1Responses = {
|
|
1112
1354
|
200: CreateApiTokenResponseDto;
|
|
1113
1355
|
201: unknown;
|
|
1114
1356
|
};
|
|
1115
1357
|
|
|
1116
|
-
export type
|
|
1117
|
-
|
|
1358
|
+
export type ApiTokenControllerCreateToken1Response =
|
|
1359
|
+
ApiTokenControllerCreateToken1Responses[keyof ApiTokenControllerCreateToken1Responses];
|
|
1360
|
+
|
|
1361
|
+
export type ApiTokenControllerDeleteToken0V1Data = {
|
|
1362
|
+
body?: never;
|
|
1363
|
+
path: {
|
|
1364
|
+
id: string;
|
|
1365
|
+
};
|
|
1366
|
+
query?: never;
|
|
1367
|
+
url: "/v1/tokens/{id}";
|
|
1368
|
+
};
|
|
1369
|
+
|
|
1370
|
+
export type ApiTokenControllerDeleteToken0V1Errors = {
|
|
1371
|
+
401: unknown;
|
|
1372
|
+
403: unknown;
|
|
1373
|
+
};
|
|
1374
|
+
|
|
1375
|
+
export type ApiTokenControllerDeleteToken0V1Responses = {
|
|
1376
|
+
200: unknown;
|
|
1377
|
+
};
|
|
1378
|
+
|
|
1379
|
+
export type ApiTokenControllerGetToken0V1Data = {
|
|
1380
|
+
body?: never;
|
|
1381
|
+
path: {
|
|
1382
|
+
id: string;
|
|
1383
|
+
};
|
|
1384
|
+
query?: never;
|
|
1385
|
+
url: "/v1/tokens/{id}";
|
|
1386
|
+
};
|
|
1387
|
+
|
|
1388
|
+
export type ApiTokenControllerGetToken0V1Errors = {
|
|
1389
|
+
401: unknown;
|
|
1390
|
+
403: unknown;
|
|
1391
|
+
};
|
|
1392
|
+
|
|
1393
|
+
export type ApiTokenControllerGetToken0V1Responses = {
|
|
1394
|
+
200: unknown;
|
|
1395
|
+
};
|
|
1396
|
+
|
|
1397
|
+
export type ApiTokenControllerUpdateToken0V1Data = {
|
|
1398
|
+
body: UpdateApiTokenRequestDto;
|
|
1399
|
+
path: {
|
|
1400
|
+
id: string;
|
|
1401
|
+
};
|
|
1402
|
+
query?: never;
|
|
1403
|
+
url: "/v1/tokens/{id}";
|
|
1404
|
+
};
|
|
1405
|
+
|
|
1406
|
+
export type ApiTokenControllerUpdateToken0V1Errors = {
|
|
1407
|
+
401: unknown;
|
|
1408
|
+
403: unknown;
|
|
1409
|
+
};
|
|
1410
|
+
|
|
1411
|
+
export type ApiTokenControllerUpdateToken0V1Responses = {
|
|
1412
|
+
200: UpdateApiTokenResponseDto;
|
|
1413
|
+
};
|
|
1414
|
+
|
|
1415
|
+
export type ApiTokenControllerUpdateToken0V1Response =
|
|
1416
|
+
ApiTokenControllerUpdateToken0V1Responses[keyof ApiTokenControllerUpdateToken0V1Responses];
|
|
1118
1417
|
|
|
1119
|
-
export type
|
|
1418
|
+
export type ApiTokenControllerDeleteToken1Data = {
|
|
1120
1419
|
body?: never;
|
|
1121
1420
|
path: {
|
|
1122
1421
|
id: string;
|
|
@@ -1125,16 +1424,16 @@ export type ApiTokenControllerDeleteTokenData = {
|
|
|
1125
1424
|
url: "/tokens/{id}";
|
|
1126
1425
|
};
|
|
1127
1426
|
|
|
1128
|
-
export type
|
|
1427
|
+
export type ApiTokenControllerDeleteToken1Errors = {
|
|
1129
1428
|
401: unknown;
|
|
1130
1429
|
403: unknown;
|
|
1131
1430
|
};
|
|
1132
1431
|
|
|
1133
|
-
export type
|
|
1432
|
+
export type ApiTokenControllerDeleteToken1Responses = {
|
|
1134
1433
|
200: unknown;
|
|
1135
1434
|
};
|
|
1136
1435
|
|
|
1137
|
-
export type
|
|
1436
|
+
export type ApiTokenControllerGetToken1Data = {
|
|
1138
1437
|
body?: never;
|
|
1139
1438
|
path: {
|
|
1140
1439
|
id: string;
|
|
@@ -1143,16 +1442,16 @@ export type ApiTokenControllerGetTokenData = {
|
|
|
1143
1442
|
url: "/tokens/{id}";
|
|
1144
1443
|
};
|
|
1145
1444
|
|
|
1146
|
-
export type
|
|
1445
|
+
export type ApiTokenControllerGetToken1Errors = {
|
|
1147
1446
|
401: unknown;
|
|
1148
1447
|
403: unknown;
|
|
1149
1448
|
};
|
|
1150
1449
|
|
|
1151
|
-
export type
|
|
1450
|
+
export type ApiTokenControllerGetToken1Responses = {
|
|
1152
1451
|
200: unknown;
|
|
1153
1452
|
};
|
|
1154
1453
|
|
|
1155
|
-
export type
|
|
1454
|
+
export type ApiTokenControllerUpdateToken1Data = {
|
|
1156
1455
|
body: UpdateApiTokenRequestDto;
|
|
1157
1456
|
path: {
|
|
1158
1457
|
id: string;
|
|
@@ -1161,836 +1460,2029 @@ export type ApiTokenControllerUpdateTokenData = {
|
|
|
1161
1460
|
url: "/tokens/{id}";
|
|
1162
1461
|
};
|
|
1163
1462
|
|
|
1164
|
-
export type
|
|
1463
|
+
export type ApiTokenControllerUpdateToken1Errors = {
|
|
1165
1464
|
401: unknown;
|
|
1166
1465
|
403: unknown;
|
|
1167
1466
|
};
|
|
1168
1467
|
|
|
1169
|
-
export type
|
|
1468
|
+
export type ApiTokenControllerUpdateToken1Responses = {
|
|
1170
1469
|
200: UpdateApiTokenResponseDto;
|
|
1171
1470
|
};
|
|
1172
1471
|
|
|
1173
|
-
export type
|
|
1174
|
-
|
|
1472
|
+
export type ApiTokenControllerUpdateToken1Response =
|
|
1473
|
+
ApiTokenControllerUpdateToken1Responses[keyof ApiTokenControllerUpdateToken1Responses];
|
|
1175
1474
|
|
|
1176
|
-
export type
|
|
1475
|
+
export type CampaignsControllerGetMany0V1Data = {
|
|
1177
1476
|
body?: never;
|
|
1178
1477
|
path?: never;
|
|
1179
|
-
query
|
|
1180
|
-
|
|
1181
|
-
* Latitude in degress (decimal number)
|
|
1182
|
-
*/
|
|
1183
|
-
lat: number;
|
|
1184
|
-
/**
|
|
1185
|
-
* Longitude in degress (decimal number)
|
|
1186
|
-
*/
|
|
1187
|
-
lon: number;
|
|
1188
|
-
/**
|
|
1189
|
-
* Local time in ISO time format with correct timezone YYYY-MM-DDTHH:MM:SS+hh:mm
|
|
1190
|
-
*/
|
|
1191
|
-
time: Date;
|
|
1192
|
-
};
|
|
1193
|
-
url: "/conditions/sun-altitude";
|
|
1478
|
+
query?: never;
|
|
1479
|
+
url: "/v1/campaigns";
|
|
1194
1480
|
};
|
|
1195
1481
|
|
|
1196
|
-
export type
|
|
1482
|
+
export type CampaignsControllerGetMany0V1Errors = {
|
|
1483
|
+
401: unknown;
|
|
1484
|
+
403: unknown;
|
|
1485
|
+
};
|
|
1486
|
+
|
|
1487
|
+
export type CampaignsControllerGetMany0V1Responses = {
|
|
1488
|
+
200: GetCampaignsResponse;
|
|
1489
|
+
};
|
|
1490
|
+
|
|
1491
|
+
export type CampaignsControllerGetMany0V1Response =
|
|
1492
|
+
CampaignsControllerGetMany0V1Responses[keyof CampaignsControllerGetMany0V1Responses];
|
|
1493
|
+
|
|
1494
|
+
export type CampaignsControllerCreate0V1Data = {
|
|
1495
|
+
body: CreateCampaignBody;
|
|
1496
|
+
path?: never;
|
|
1497
|
+
query?: never;
|
|
1498
|
+
url: "/v1/campaigns";
|
|
1499
|
+
};
|
|
1500
|
+
|
|
1501
|
+
export type CampaignsControllerCreate0V1Errors = {
|
|
1502
|
+
401: unknown;
|
|
1503
|
+
403: unknown;
|
|
1197
1504
|
/**
|
|
1198
|
-
*
|
|
1505
|
+
* Campaign name already exists
|
|
1199
1506
|
*/
|
|
1200
|
-
|
|
1507
|
+
409: unknown;
|
|
1201
1508
|
};
|
|
1202
1509
|
|
|
1203
|
-
export type
|
|
1204
|
-
|
|
1510
|
+
export type CampaignsControllerCreate0V1Responses = {
|
|
1511
|
+
201: CreateCampaignResponse;
|
|
1512
|
+
};
|
|
1513
|
+
|
|
1514
|
+
export type CampaignsControllerCreate0V1Response =
|
|
1515
|
+
CampaignsControllerCreate0V1Responses[keyof CampaignsControllerCreate0V1Responses];
|
|
1205
1516
|
|
|
1206
|
-
export type
|
|
1517
|
+
export type CampaignsControllerGetMany1Data = {
|
|
1207
1518
|
body?: never;
|
|
1208
1519
|
path?: never;
|
|
1209
1520
|
query?: never;
|
|
1210
|
-
url: "/
|
|
1521
|
+
url: "/campaigns";
|
|
1211
1522
|
};
|
|
1212
1523
|
|
|
1213
|
-
export type
|
|
1524
|
+
export type CampaignsControllerGetMany1Errors = {
|
|
1214
1525
|
401: unknown;
|
|
1215
1526
|
403: unknown;
|
|
1216
1527
|
};
|
|
1217
1528
|
|
|
1218
|
-
export type
|
|
1219
|
-
|
|
1220
|
-
* Contracts retrieved successfully
|
|
1221
|
-
*/
|
|
1222
|
-
200: GetContractsResponseDto;
|
|
1529
|
+
export type CampaignsControllerGetMany1Responses = {
|
|
1530
|
+
200: GetCampaignsResponse;
|
|
1223
1531
|
};
|
|
1224
1532
|
|
|
1225
|
-
export type
|
|
1226
|
-
|
|
1533
|
+
export type CampaignsControllerGetMany1Response =
|
|
1534
|
+
CampaignsControllerGetMany1Responses[keyof CampaignsControllerGetMany1Responses];
|
|
1227
1535
|
|
|
1228
|
-
export type
|
|
1229
|
-
body:
|
|
1536
|
+
export type CampaignsControllerCreate1Data = {
|
|
1537
|
+
body: CreateCampaignBody;
|
|
1230
1538
|
path?: never;
|
|
1231
1539
|
query?: never;
|
|
1232
|
-
url: "/
|
|
1540
|
+
url: "/campaigns";
|
|
1233
1541
|
};
|
|
1234
1542
|
|
|
1235
|
-
export type
|
|
1236
|
-
/**
|
|
1237
|
-
* Validation failed
|
|
1238
|
-
*/
|
|
1239
|
-
400: unknown;
|
|
1543
|
+
export type CampaignsControllerCreate1Errors = {
|
|
1240
1544
|
401: unknown;
|
|
1241
1545
|
403: unknown;
|
|
1242
1546
|
/**
|
|
1243
|
-
*
|
|
1547
|
+
* Campaign name already exists
|
|
1244
1548
|
*/
|
|
1245
1549
|
409: unknown;
|
|
1246
1550
|
};
|
|
1247
1551
|
|
|
1248
|
-
export type
|
|
1249
|
-
|
|
1250
|
-
* Contract created successfully
|
|
1251
|
-
*/
|
|
1252
|
-
201: CreateContractResponseDto;
|
|
1552
|
+
export type CampaignsControllerCreate1Responses = {
|
|
1553
|
+
201: CreateCampaignResponse;
|
|
1253
1554
|
};
|
|
1254
1555
|
|
|
1255
|
-
export type
|
|
1256
|
-
|
|
1556
|
+
export type CampaignsControllerCreate1Response =
|
|
1557
|
+
CampaignsControllerCreate1Responses[keyof CampaignsControllerCreate1Responses];
|
|
1257
1558
|
|
|
1258
|
-
export type
|
|
1559
|
+
export type CampaignsControllerDelete0V1Data = {
|
|
1259
1560
|
body?: never;
|
|
1260
1561
|
path: {
|
|
1261
|
-
id:
|
|
1562
|
+
id: string;
|
|
1262
1563
|
};
|
|
1263
1564
|
query?: never;
|
|
1264
|
-
url: "/
|
|
1565
|
+
url: "/v1/campaigns/{id}";
|
|
1265
1566
|
};
|
|
1266
1567
|
|
|
1267
|
-
export type
|
|
1568
|
+
export type CampaignsControllerDelete0V1Errors = {
|
|
1268
1569
|
401: unknown;
|
|
1269
1570
|
403: unknown;
|
|
1270
1571
|
/**
|
|
1271
|
-
*
|
|
1572
|
+
* Campaign is referenced by one or more missions
|
|
1272
1573
|
*/
|
|
1273
|
-
|
|
1574
|
+
409: unknown;
|
|
1274
1575
|
};
|
|
1275
1576
|
|
|
1276
|
-
export type
|
|
1277
|
-
|
|
1278
|
-
* Contract deleted successfully
|
|
1279
|
-
*/
|
|
1280
|
-
200: DeleteContractResponseDto;
|
|
1577
|
+
export type CampaignsControllerDelete0V1Responses = {
|
|
1578
|
+
200: DeleteCampaignResponse;
|
|
1281
1579
|
};
|
|
1282
1580
|
|
|
1283
|
-
export type
|
|
1284
|
-
|
|
1581
|
+
export type CampaignsControllerDelete0V1Response =
|
|
1582
|
+
CampaignsControllerDelete0V1Responses[keyof CampaignsControllerDelete0V1Responses];
|
|
1285
1583
|
|
|
1286
|
-
export type
|
|
1584
|
+
export type CampaignsControllerGet0V1Data = {
|
|
1287
1585
|
body?: never;
|
|
1288
1586
|
path: {
|
|
1289
|
-
id:
|
|
1587
|
+
id: string;
|
|
1290
1588
|
};
|
|
1291
1589
|
query?: never;
|
|
1292
|
-
url: "/
|
|
1590
|
+
url: "/v1/campaigns/{id}";
|
|
1293
1591
|
};
|
|
1294
1592
|
|
|
1295
|
-
export type
|
|
1593
|
+
export type CampaignsControllerGet0V1Errors = {
|
|
1296
1594
|
401: unknown;
|
|
1297
1595
|
403: unknown;
|
|
1298
1596
|
/**
|
|
1299
|
-
*
|
|
1597
|
+
* Campaign not found
|
|
1300
1598
|
*/
|
|
1301
1599
|
404: unknown;
|
|
1302
1600
|
};
|
|
1303
1601
|
|
|
1304
|
-
export type
|
|
1305
|
-
|
|
1306
|
-
* Contract retrieved successfully
|
|
1307
|
-
*/
|
|
1308
|
-
200: GetContractResponseDto;
|
|
1602
|
+
export type CampaignsControllerGet0V1Responses = {
|
|
1603
|
+
200: GetCampaignResponse;
|
|
1309
1604
|
};
|
|
1310
1605
|
|
|
1311
|
-
export type
|
|
1312
|
-
|
|
1606
|
+
export type CampaignsControllerGet0V1Response =
|
|
1607
|
+
CampaignsControllerGet0V1Responses[keyof CampaignsControllerGet0V1Responses];
|
|
1313
1608
|
|
|
1314
|
-
export type
|
|
1315
|
-
body:
|
|
1609
|
+
export type CampaignsControllerUpdate0V1Data = {
|
|
1610
|
+
body: UpdateCampaignBody;
|
|
1316
1611
|
path: {
|
|
1317
|
-
id:
|
|
1612
|
+
id: string;
|
|
1318
1613
|
};
|
|
1319
1614
|
query?: never;
|
|
1320
|
-
url: "/
|
|
1615
|
+
url: "/v1/campaigns/{id}";
|
|
1321
1616
|
};
|
|
1322
1617
|
|
|
1323
|
-
export type
|
|
1618
|
+
export type CampaignsControllerUpdate0V1Errors = {
|
|
1324
1619
|
401: unknown;
|
|
1325
1620
|
403: unknown;
|
|
1326
1621
|
/**
|
|
1327
|
-
*
|
|
1622
|
+
* Campaign not found
|
|
1328
1623
|
*/
|
|
1329
1624
|
404: unknown;
|
|
1330
1625
|
/**
|
|
1331
|
-
*
|
|
1626
|
+
* Campaign name already exists
|
|
1332
1627
|
*/
|
|
1333
1628
|
409: unknown;
|
|
1334
1629
|
};
|
|
1335
1630
|
|
|
1336
|
-
export type
|
|
1337
|
-
|
|
1338
|
-
* Contract updated successfully
|
|
1339
|
-
*/
|
|
1340
|
-
200: UpdateContractResponseDto;
|
|
1631
|
+
export type CampaignsControllerUpdate0V1Responses = {
|
|
1632
|
+
200: UpdateCampaignResponse;
|
|
1341
1633
|
};
|
|
1342
1634
|
|
|
1343
|
-
export type
|
|
1344
|
-
|
|
1635
|
+
export type CampaignsControllerUpdate0V1Response =
|
|
1636
|
+
CampaignsControllerUpdate0V1Responses[keyof CampaignsControllerUpdate0V1Responses];
|
|
1345
1637
|
|
|
1346
|
-
export type
|
|
1347
|
-
body
|
|
1348
|
-
path
|
|
1638
|
+
export type CampaignsControllerDelete1Data = {
|
|
1639
|
+
body?: never;
|
|
1640
|
+
path: {
|
|
1641
|
+
id: string;
|
|
1642
|
+
};
|
|
1349
1643
|
query?: never;
|
|
1350
|
-
url: "/
|
|
1644
|
+
url: "/campaigns/{id}";
|
|
1351
1645
|
};
|
|
1352
1646
|
|
|
1353
|
-
export type
|
|
1354
|
-
/**
|
|
1355
|
-
* Invalid request parameters
|
|
1356
|
-
*/
|
|
1357
|
-
400: unknown;
|
|
1647
|
+
export type CampaignsControllerDelete1Errors = {
|
|
1358
1648
|
401: unknown;
|
|
1359
1649
|
403: unknown;
|
|
1360
1650
|
/**
|
|
1361
|
-
*
|
|
1651
|
+
* Campaign is referenced by one or more missions
|
|
1362
1652
|
*/
|
|
1363
|
-
|
|
1653
|
+
409: unknown;
|
|
1364
1654
|
};
|
|
1365
1655
|
|
|
1366
|
-
export type
|
|
1367
|
-
|
|
1368
|
-
* DLQ redrive completed successfully
|
|
1369
|
-
*/
|
|
1370
|
-
200: RedriveDlqResponseDto;
|
|
1656
|
+
export type CampaignsControllerDelete1Responses = {
|
|
1657
|
+
200: DeleteCampaignResponse;
|
|
1371
1658
|
};
|
|
1372
1659
|
|
|
1373
|
-
export type
|
|
1374
|
-
|
|
1660
|
+
export type CampaignsControllerDelete1Response =
|
|
1661
|
+
CampaignsControllerDelete1Responses[keyof CampaignsControllerDelete1Responses];
|
|
1375
1662
|
|
|
1376
|
-
export type
|
|
1663
|
+
export type CampaignsControllerGet1Data = {
|
|
1664
|
+
body?: never;
|
|
1665
|
+
path: {
|
|
1666
|
+
id: string;
|
|
1667
|
+
};
|
|
1668
|
+
query?: never;
|
|
1669
|
+
url: "/campaigns/{id}";
|
|
1670
|
+
};
|
|
1671
|
+
|
|
1672
|
+
export type CampaignsControllerGet1Errors = {
|
|
1673
|
+
401: unknown;
|
|
1674
|
+
403: unknown;
|
|
1675
|
+
/**
|
|
1676
|
+
* Campaign not found
|
|
1677
|
+
*/
|
|
1678
|
+
404: unknown;
|
|
1679
|
+
};
|
|
1680
|
+
|
|
1681
|
+
export type CampaignsControllerGet1Responses = {
|
|
1682
|
+
200: GetCampaignResponse;
|
|
1683
|
+
};
|
|
1684
|
+
|
|
1685
|
+
export type CampaignsControllerGet1Response =
|
|
1686
|
+
CampaignsControllerGet1Responses[keyof CampaignsControllerGet1Responses];
|
|
1687
|
+
|
|
1688
|
+
export type CampaignsControllerUpdate1Data = {
|
|
1689
|
+
body: UpdateCampaignBody;
|
|
1690
|
+
path: {
|
|
1691
|
+
id: string;
|
|
1692
|
+
};
|
|
1693
|
+
query?: never;
|
|
1694
|
+
url: "/campaigns/{id}";
|
|
1695
|
+
};
|
|
1696
|
+
|
|
1697
|
+
export type CampaignsControllerUpdate1Errors = {
|
|
1698
|
+
401: unknown;
|
|
1699
|
+
403: unknown;
|
|
1700
|
+
/**
|
|
1701
|
+
* Campaign not found
|
|
1702
|
+
*/
|
|
1703
|
+
404: unknown;
|
|
1704
|
+
/**
|
|
1705
|
+
* Campaign name already exists
|
|
1706
|
+
*/
|
|
1707
|
+
409: unknown;
|
|
1708
|
+
};
|
|
1709
|
+
|
|
1710
|
+
export type CampaignsControllerUpdate1Responses = {
|
|
1711
|
+
200: UpdateCampaignResponse;
|
|
1712
|
+
};
|
|
1713
|
+
|
|
1714
|
+
export type CampaignsControllerUpdate1Response =
|
|
1715
|
+
CampaignsControllerUpdate1Responses[keyof CampaignsControllerUpdate1Responses];
|
|
1716
|
+
|
|
1717
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits0V1Data = {
|
|
1377
1718
|
body?: never;
|
|
1378
1719
|
path?: never;
|
|
1379
1720
|
query: {
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1721
|
+
/**
|
|
1722
|
+
* Latitude in degress (decimal number)
|
|
1723
|
+
*/
|
|
1724
|
+
lat: number;
|
|
1725
|
+
/**
|
|
1726
|
+
* Longitude in degress (decimal number)
|
|
1727
|
+
*/
|
|
1728
|
+
lon: number;
|
|
1729
|
+
/**
|
|
1730
|
+
* Local time in ISO time format with correct timezone YYYY-MM-DDTHH:MM:SS+hh:mm
|
|
1731
|
+
*/
|
|
1732
|
+
time: Date;
|
|
1383
1733
|
};
|
|
1384
|
-
url: "/
|
|
1734
|
+
url: "/v1/conditions/sun-altitude";
|
|
1735
|
+
};
|
|
1736
|
+
|
|
1737
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits0V1Responses = {
|
|
1738
|
+
/**
|
|
1739
|
+
* Returns sun altitude time limits for given coordinates and time
|
|
1740
|
+
*/
|
|
1741
|
+
200: GetTimeLimitsForSunAltitudeResponse;
|
|
1742
|
+
};
|
|
1743
|
+
|
|
1744
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits0V1Response =
|
|
1745
|
+
ConditionsControllerGetSunAltitudeTimeLimits0V1Responses[keyof ConditionsControllerGetSunAltitudeTimeLimits0V1Responses];
|
|
1746
|
+
|
|
1747
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits1Data = {
|
|
1748
|
+
body?: never;
|
|
1749
|
+
path?: never;
|
|
1750
|
+
query: {
|
|
1751
|
+
/**
|
|
1752
|
+
* Latitude in degress (decimal number)
|
|
1753
|
+
*/
|
|
1754
|
+
lat: number;
|
|
1755
|
+
/**
|
|
1756
|
+
* Longitude in degress (decimal number)
|
|
1757
|
+
*/
|
|
1758
|
+
lon: number;
|
|
1759
|
+
/**
|
|
1760
|
+
* Local time in ISO time format with correct timezone YYYY-MM-DDTHH:MM:SS+hh:mm
|
|
1761
|
+
*/
|
|
1762
|
+
time: Date;
|
|
1763
|
+
};
|
|
1764
|
+
url: "/conditions/sun-altitude";
|
|
1765
|
+
};
|
|
1766
|
+
|
|
1767
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits1Responses = {
|
|
1768
|
+
/**
|
|
1769
|
+
* Returns sun altitude time limits for given coordinates and time
|
|
1770
|
+
*/
|
|
1771
|
+
200: GetTimeLimitsForSunAltitudeResponse;
|
|
1772
|
+
};
|
|
1773
|
+
|
|
1774
|
+
export type ConditionsControllerGetSunAltitudeTimeLimits1Response =
|
|
1775
|
+
ConditionsControllerGetSunAltitudeTimeLimits1Responses[keyof ConditionsControllerGetSunAltitudeTimeLimits1Responses];
|
|
1776
|
+
|
|
1777
|
+
export type ContractsControllerGetAllContracts0V1Data = {
|
|
1778
|
+
body?: never;
|
|
1779
|
+
path?: never;
|
|
1780
|
+
query?: never;
|
|
1781
|
+
url: "/v1/contracts";
|
|
1782
|
+
};
|
|
1783
|
+
|
|
1784
|
+
export type ContractsControllerGetAllContracts0V1Errors = {
|
|
1785
|
+
401: unknown;
|
|
1786
|
+
403: unknown;
|
|
1787
|
+
};
|
|
1788
|
+
|
|
1789
|
+
export type ContractsControllerGetAllContracts0V1Responses = {
|
|
1790
|
+
/**
|
|
1791
|
+
* Contracts retrieved successfully
|
|
1792
|
+
*/
|
|
1793
|
+
200: GetContractsResponseDto;
|
|
1794
|
+
};
|
|
1795
|
+
|
|
1796
|
+
export type ContractsControllerGetAllContracts0V1Response =
|
|
1797
|
+
ContractsControllerGetAllContracts0V1Responses[keyof ContractsControllerGetAllContracts0V1Responses];
|
|
1798
|
+
|
|
1799
|
+
export type ContractsControllerCreateContract0V1Data = {
|
|
1800
|
+
body: CreateContractRequestDto;
|
|
1801
|
+
path?: never;
|
|
1802
|
+
query?: never;
|
|
1803
|
+
url: "/v1/contracts";
|
|
1804
|
+
};
|
|
1805
|
+
|
|
1806
|
+
export type ContractsControllerCreateContract0V1Errors = {
|
|
1807
|
+
/**
|
|
1808
|
+
* Validation failed
|
|
1809
|
+
*/
|
|
1810
|
+
400: unknown;
|
|
1811
|
+
401: unknown;
|
|
1812
|
+
403: unknown;
|
|
1813
|
+
/**
|
|
1814
|
+
* Contract with this address already exists
|
|
1815
|
+
*/
|
|
1816
|
+
409: unknown;
|
|
1817
|
+
};
|
|
1818
|
+
|
|
1819
|
+
export type ContractsControllerCreateContract0V1Responses = {
|
|
1820
|
+
/**
|
|
1821
|
+
* Contract created successfully
|
|
1822
|
+
*/
|
|
1823
|
+
201: CreateContractResponseDto;
|
|
1824
|
+
};
|
|
1825
|
+
|
|
1826
|
+
export type ContractsControllerCreateContract0V1Response =
|
|
1827
|
+
ContractsControllerCreateContract0V1Responses[keyof ContractsControllerCreateContract0V1Responses];
|
|
1828
|
+
|
|
1829
|
+
export type ContractsControllerGetAllContracts1Data = {
|
|
1830
|
+
body?: never;
|
|
1831
|
+
path?: never;
|
|
1832
|
+
query?: never;
|
|
1833
|
+
url: "/contracts";
|
|
1834
|
+
};
|
|
1835
|
+
|
|
1836
|
+
export type ContractsControllerGetAllContracts1Errors = {
|
|
1837
|
+
401: unknown;
|
|
1838
|
+
403: unknown;
|
|
1839
|
+
};
|
|
1840
|
+
|
|
1841
|
+
export type ContractsControllerGetAllContracts1Responses = {
|
|
1842
|
+
/**
|
|
1843
|
+
* Contracts retrieved successfully
|
|
1844
|
+
*/
|
|
1845
|
+
200: GetContractsResponseDto;
|
|
1846
|
+
};
|
|
1847
|
+
|
|
1848
|
+
export type ContractsControllerGetAllContracts1Response =
|
|
1849
|
+
ContractsControllerGetAllContracts1Responses[keyof ContractsControllerGetAllContracts1Responses];
|
|
1850
|
+
|
|
1851
|
+
export type ContractsControllerCreateContract1Data = {
|
|
1852
|
+
body: CreateContractRequestDto;
|
|
1853
|
+
path?: never;
|
|
1854
|
+
query?: never;
|
|
1855
|
+
url: "/contracts";
|
|
1856
|
+
};
|
|
1857
|
+
|
|
1858
|
+
export type ContractsControllerCreateContract1Errors = {
|
|
1859
|
+
/**
|
|
1860
|
+
* Validation failed
|
|
1861
|
+
*/
|
|
1862
|
+
400: unknown;
|
|
1863
|
+
401: unknown;
|
|
1864
|
+
403: unknown;
|
|
1865
|
+
/**
|
|
1866
|
+
* Contract with this address already exists
|
|
1867
|
+
*/
|
|
1868
|
+
409: unknown;
|
|
1869
|
+
};
|
|
1870
|
+
|
|
1871
|
+
export type ContractsControllerCreateContract1Responses = {
|
|
1872
|
+
/**
|
|
1873
|
+
* Contract created successfully
|
|
1874
|
+
*/
|
|
1875
|
+
201: CreateContractResponseDto;
|
|
1876
|
+
};
|
|
1877
|
+
|
|
1878
|
+
export type ContractsControllerCreateContract1Response =
|
|
1879
|
+
ContractsControllerCreateContract1Responses[keyof ContractsControllerCreateContract1Responses];
|
|
1880
|
+
|
|
1881
|
+
export type ContractsControllerDeleteContract0V1Data = {
|
|
1882
|
+
body?: never;
|
|
1883
|
+
path: {
|
|
1884
|
+
id: number;
|
|
1885
|
+
};
|
|
1886
|
+
query?: never;
|
|
1887
|
+
url: "/v1/contracts/{id}";
|
|
1888
|
+
};
|
|
1889
|
+
|
|
1890
|
+
export type ContractsControllerDeleteContract0V1Errors = {
|
|
1891
|
+
401: unknown;
|
|
1892
|
+
403: unknown;
|
|
1893
|
+
/**
|
|
1894
|
+
* Contract not found
|
|
1895
|
+
*/
|
|
1896
|
+
404: unknown;
|
|
1897
|
+
};
|
|
1898
|
+
|
|
1899
|
+
export type ContractsControllerDeleteContract0V1Responses = {
|
|
1900
|
+
/**
|
|
1901
|
+
* Contract deleted successfully
|
|
1902
|
+
*/
|
|
1903
|
+
200: DeleteContractResponseDto;
|
|
1904
|
+
};
|
|
1905
|
+
|
|
1906
|
+
export type ContractsControllerDeleteContract0V1Response =
|
|
1907
|
+
ContractsControllerDeleteContract0V1Responses[keyof ContractsControllerDeleteContract0V1Responses];
|
|
1908
|
+
|
|
1909
|
+
export type ContractsControllerGetContract0V1Data = {
|
|
1910
|
+
body?: never;
|
|
1911
|
+
path: {
|
|
1912
|
+
id: number;
|
|
1913
|
+
};
|
|
1914
|
+
query?: never;
|
|
1915
|
+
url: "/v1/contracts/{id}";
|
|
1916
|
+
};
|
|
1917
|
+
|
|
1918
|
+
export type ContractsControllerGetContract0V1Errors = {
|
|
1919
|
+
401: unknown;
|
|
1920
|
+
403: unknown;
|
|
1921
|
+
/**
|
|
1922
|
+
* Contract not found
|
|
1923
|
+
*/
|
|
1924
|
+
404: unknown;
|
|
1925
|
+
};
|
|
1926
|
+
|
|
1927
|
+
export type ContractsControllerGetContract0V1Responses = {
|
|
1928
|
+
/**
|
|
1929
|
+
* Contract retrieved successfully
|
|
1930
|
+
*/
|
|
1931
|
+
200: GetContractResponseDto;
|
|
1932
|
+
};
|
|
1933
|
+
|
|
1934
|
+
export type ContractsControllerGetContract0V1Response =
|
|
1935
|
+
ContractsControllerGetContract0V1Responses[keyof ContractsControllerGetContract0V1Responses];
|
|
1936
|
+
|
|
1937
|
+
export type ContractsControllerUpdateContract0V1Data = {
|
|
1938
|
+
body: UpdateContractRequestDto;
|
|
1939
|
+
path: {
|
|
1940
|
+
id: number;
|
|
1941
|
+
};
|
|
1942
|
+
query?: never;
|
|
1943
|
+
url: "/v1/contracts/{id}";
|
|
1944
|
+
};
|
|
1945
|
+
|
|
1946
|
+
export type ContractsControllerUpdateContract0V1Errors = {
|
|
1947
|
+
401: unknown;
|
|
1948
|
+
403: unknown;
|
|
1949
|
+
/**
|
|
1950
|
+
* Contract not found
|
|
1951
|
+
*/
|
|
1952
|
+
404: unknown;
|
|
1953
|
+
/**
|
|
1954
|
+
* Contract with this address already exists
|
|
1955
|
+
*/
|
|
1956
|
+
409: unknown;
|
|
1957
|
+
};
|
|
1958
|
+
|
|
1959
|
+
export type ContractsControllerUpdateContract0V1Responses = {
|
|
1960
|
+
/**
|
|
1961
|
+
* Contract updated successfully
|
|
1962
|
+
*/
|
|
1963
|
+
200: UpdateContractResponseDto;
|
|
1964
|
+
};
|
|
1965
|
+
|
|
1966
|
+
export type ContractsControllerUpdateContract0V1Response =
|
|
1967
|
+
ContractsControllerUpdateContract0V1Responses[keyof ContractsControllerUpdateContract0V1Responses];
|
|
1968
|
+
|
|
1969
|
+
export type ContractsControllerDeleteContract1Data = {
|
|
1970
|
+
body?: never;
|
|
1971
|
+
path: {
|
|
1972
|
+
id: number;
|
|
1973
|
+
};
|
|
1974
|
+
query?: never;
|
|
1975
|
+
url: "/contracts/{id}";
|
|
1976
|
+
};
|
|
1977
|
+
|
|
1978
|
+
export type ContractsControllerDeleteContract1Errors = {
|
|
1979
|
+
401: unknown;
|
|
1980
|
+
403: unknown;
|
|
1981
|
+
/**
|
|
1982
|
+
* Contract not found
|
|
1983
|
+
*/
|
|
1984
|
+
404: unknown;
|
|
1985
|
+
};
|
|
1986
|
+
|
|
1987
|
+
export type ContractsControllerDeleteContract1Responses = {
|
|
1988
|
+
/**
|
|
1989
|
+
* Contract deleted successfully
|
|
1990
|
+
*/
|
|
1991
|
+
200: DeleteContractResponseDto;
|
|
1992
|
+
};
|
|
1993
|
+
|
|
1994
|
+
export type ContractsControllerDeleteContract1Response =
|
|
1995
|
+
ContractsControllerDeleteContract1Responses[keyof ContractsControllerDeleteContract1Responses];
|
|
1996
|
+
|
|
1997
|
+
export type ContractsControllerGetContract1Data = {
|
|
1998
|
+
body?: never;
|
|
1999
|
+
path: {
|
|
2000
|
+
id: number;
|
|
2001
|
+
};
|
|
2002
|
+
query?: never;
|
|
2003
|
+
url: "/contracts/{id}";
|
|
2004
|
+
};
|
|
2005
|
+
|
|
2006
|
+
export type ContractsControllerGetContract1Errors = {
|
|
2007
|
+
401: unknown;
|
|
2008
|
+
403: unknown;
|
|
2009
|
+
/**
|
|
2010
|
+
* Contract not found
|
|
2011
|
+
*/
|
|
2012
|
+
404: unknown;
|
|
2013
|
+
};
|
|
2014
|
+
|
|
2015
|
+
export type ContractsControllerGetContract1Responses = {
|
|
2016
|
+
/**
|
|
2017
|
+
* Contract retrieved successfully
|
|
2018
|
+
*/
|
|
2019
|
+
200: GetContractResponseDto;
|
|
2020
|
+
};
|
|
2021
|
+
|
|
2022
|
+
export type ContractsControllerGetContract1Response =
|
|
2023
|
+
ContractsControllerGetContract1Responses[keyof ContractsControllerGetContract1Responses];
|
|
2024
|
+
|
|
2025
|
+
export type ContractsControllerUpdateContract1Data = {
|
|
2026
|
+
body: UpdateContractRequestDto;
|
|
2027
|
+
path: {
|
|
2028
|
+
id: number;
|
|
2029
|
+
};
|
|
2030
|
+
query?: never;
|
|
2031
|
+
url: "/contracts/{id}";
|
|
2032
|
+
};
|
|
2033
|
+
|
|
2034
|
+
export type ContractsControllerUpdateContract1Errors = {
|
|
2035
|
+
401: unknown;
|
|
2036
|
+
403: unknown;
|
|
2037
|
+
/**
|
|
2038
|
+
* Contract not found
|
|
2039
|
+
*/
|
|
2040
|
+
404: unknown;
|
|
2041
|
+
/**
|
|
2042
|
+
* Contract with this address already exists
|
|
2043
|
+
*/
|
|
2044
|
+
409: unknown;
|
|
2045
|
+
};
|
|
2046
|
+
|
|
2047
|
+
export type ContractsControllerUpdateContract1Responses = {
|
|
2048
|
+
/**
|
|
2049
|
+
* Contract updated successfully
|
|
2050
|
+
*/
|
|
2051
|
+
200: UpdateContractResponseDto;
|
|
2052
|
+
};
|
|
2053
|
+
|
|
2054
|
+
export type ContractsControllerUpdateContract1Response =
|
|
2055
|
+
ContractsControllerUpdateContract1Responses[keyof ContractsControllerUpdateContract1Responses];
|
|
2056
|
+
|
|
2057
|
+
export type DlqRedriverControllerRedriveDlq0V1Data = {
|
|
2058
|
+
body: RedriveDlqRequestDto;
|
|
2059
|
+
path?: never;
|
|
2060
|
+
query?: never;
|
|
2061
|
+
url: "/v1/dlq-redriver/redrive";
|
|
2062
|
+
};
|
|
2063
|
+
|
|
2064
|
+
export type DlqRedriverControllerRedriveDlq0V1Errors = {
|
|
2065
|
+
/**
|
|
2066
|
+
* Invalid request parameters
|
|
2067
|
+
*/
|
|
2068
|
+
400: unknown;
|
|
2069
|
+
401: unknown;
|
|
2070
|
+
403: unknown;
|
|
2071
|
+
/**
|
|
2072
|
+
* Error during DLQ redrive
|
|
2073
|
+
*/
|
|
2074
|
+
500: unknown;
|
|
2075
|
+
};
|
|
2076
|
+
|
|
2077
|
+
export type DlqRedriverControllerRedriveDlq0V1Responses = {
|
|
2078
|
+
/**
|
|
2079
|
+
* DLQ redrive completed successfully
|
|
2080
|
+
*/
|
|
2081
|
+
200: RedriveDlqResponseDto;
|
|
2082
|
+
};
|
|
2083
|
+
|
|
2084
|
+
export type DlqRedriverControllerRedriveDlq0V1Response =
|
|
2085
|
+
DlqRedriverControllerRedriveDlq0V1Responses[keyof DlqRedriverControllerRedriveDlq0V1Responses];
|
|
2086
|
+
|
|
2087
|
+
export type DlqRedriverControllerRedriveDlq1Data = {
|
|
2088
|
+
body: RedriveDlqRequestDto;
|
|
2089
|
+
path?: never;
|
|
2090
|
+
query?: never;
|
|
2091
|
+
url: "/dlq-redriver/redrive";
|
|
2092
|
+
};
|
|
2093
|
+
|
|
2094
|
+
export type DlqRedriverControllerRedriveDlq1Errors = {
|
|
2095
|
+
/**
|
|
2096
|
+
* Invalid request parameters
|
|
2097
|
+
*/
|
|
2098
|
+
400: unknown;
|
|
2099
|
+
401: unknown;
|
|
2100
|
+
403: unknown;
|
|
2101
|
+
/**
|
|
2102
|
+
* Error during DLQ redrive
|
|
2103
|
+
*/
|
|
2104
|
+
500: unknown;
|
|
2105
|
+
};
|
|
2106
|
+
|
|
2107
|
+
export type DlqRedriverControllerRedriveDlq1Responses = {
|
|
2108
|
+
/**
|
|
2109
|
+
* DLQ redrive completed successfully
|
|
2110
|
+
*/
|
|
2111
|
+
200: RedriveDlqResponseDto;
|
|
2112
|
+
};
|
|
2113
|
+
|
|
2114
|
+
export type DlqRedriverControllerRedriveDlq1Response =
|
|
2115
|
+
DlqRedriverControllerRedriveDlq1Responses[keyof DlqRedriverControllerRedriveDlq1Responses];
|
|
2116
|
+
|
|
2117
|
+
export type FlightsControllerGenerateStorageKey0V1Data = {
|
|
2118
|
+
body?: never;
|
|
2119
|
+
path?: never;
|
|
2120
|
+
query: {
|
|
2121
|
+
missionId: string | number | bigint;
|
|
2122
|
+
pilotAddress: string;
|
|
2123
|
+
flightTimestamp?: string;
|
|
2124
|
+
};
|
|
2125
|
+
url: "/v1/flights/storage-key";
|
|
2126
|
+
};
|
|
2127
|
+
|
|
2128
|
+
export type FlightsControllerGenerateStorageKey0V1Errors = {
|
|
2129
|
+
401: unknown;
|
|
2130
|
+
403: unknown;
|
|
2131
|
+
};
|
|
2132
|
+
|
|
2133
|
+
export type FlightsControllerGenerateStorageKey0V1Responses = {
|
|
2134
|
+
/**
|
|
2135
|
+
* Returns the generated storage key
|
|
2136
|
+
*/
|
|
2137
|
+
200: string;
|
|
2138
|
+
};
|
|
2139
|
+
|
|
2140
|
+
export type FlightsControllerGenerateStorageKey0V1Response =
|
|
2141
|
+
FlightsControllerGenerateStorageKey0V1Responses[keyof FlightsControllerGenerateStorageKey0V1Responses];
|
|
2142
|
+
|
|
2143
|
+
export type FlightsControllerGenerateStorageKey1Data = {
|
|
2144
|
+
body?: never;
|
|
2145
|
+
path?: never;
|
|
2146
|
+
query: {
|
|
2147
|
+
missionId: string | number | bigint;
|
|
2148
|
+
pilotAddress: string;
|
|
2149
|
+
flightTimestamp?: string;
|
|
2150
|
+
};
|
|
2151
|
+
url: "/flights/storage-key";
|
|
2152
|
+
};
|
|
2153
|
+
|
|
2154
|
+
export type FlightsControllerGenerateStorageKey1Errors = {
|
|
2155
|
+
401: unknown;
|
|
2156
|
+
403: unknown;
|
|
2157
|
+
};
|
|
2158
|
+
|
|
2159
|
+
export type FlightsControllerGenerateStorageKey1Responses = {
|
|
2160
|
+
/**
|
|
2161
|
+
* Returns the generated storage key
|
|
2162
|
+
*/
|
|
2163
|
+
200: string;
|
|
2164
|
+
};
|
|
2165
|
+
|
|
2166
|
+
export type FlightsControllerGenerateStorageKey1Response =
|
|
2167
|
+
FlightsControllerGenerateStorageKey1Responses[keyof FlightsControllerGenerateStorageKey1Responses];
|
|
2168
|
+
|
|
2169
|
+
export type FlightsControllerGetFlight0V1Data = {
|
|
2170
|
+
body?: never;
|
|
2171
|
+
path: {
|
|
2172
|
+
flightId: bigint;
|
|
2173
|
+
};
|
|
2174
|
+
query?: never;
|
|
2175
|
+
url: "/v1/flights/{flightId}";
|
|
2176
|
+
};
|
|
2177
|
+
|
|
2178
|
+
export type FlightsControllerGetFlight0V1Errors = {
|
|
2179
|
+
401: unknown;
|
|
2180
|
+
403: unknown;
|
|
2181
|
+
};
|
|
2182
|
+
|
|
2183
|
+
export type FlightsControllerGetFlight0V1Responses = {
|
|
2184
|
+
/**
|
|
2185
|
+
* Returns flight details
|
|
2186
|
+
*/
|
|
2187
|
+
200: FlightDto;
|
|
2188
|
+
};
|
|
2189
|
+
|
|
2190
|
+
export type FlightsControllerGetFlight0V1Response =
|
|
2191
|
+
FlightsControllerGetFlight0V1Responses[keyof FlightsControllerGetFlight0V1Responses];
|
|
2192
|
+
|
|
2193
|
+
export type FlightsControllerGetFlight1Data = {
|
|
2194
|
+
body?: never;
|
|
2195
|
+
path: {
|
|
2196
|
+
flightId: bigint;
|
|
2197
|
+
};
|
|
2198
|
+
query?: never;
|
|
2199
|
+
url: "/flights/{flightId}";
|
|
2200
|
+
};
|
|
2201
|
+
|
|
2202
|
+
export type FlightsControllerGetFlight1Errors = {
|
|
2203
|
+
401: unknown;
|
|
2204
|
+
403: unknown;
|
|
2205
|
+
};
|
|
2206
|
+
|
|
2207
|
+
export type FlightsControllerGetFlight1Responses = {
|
|
2208
|
+
/**
|
|
2209
|
+
* Returns flight details
|
|
2210
|
+
*/
|
|
2211
|
+
200: FlightDto;
|
|
2212
|
+
};
|
|
2213
|
+
|
|
2214
|
+
export type FlightsControllerGetFlight1Response =
|
|
2215
|
+
FlightsControllerGetFlight1Responses[keyof FlightsControllerGetFlight1Responses];
|
|
2216
|
+
|
|
2217
|
+
export type FlightsControllerCreatePresignedUrls0V1Data = {
|
|
2218
|
+
body: CreateFileRequestDto;
|
|
2219
|
+
path?: never;
|
|
2220
|
+
query?: never;
|
|
2221
|
+
url: "/v1/flights/files";
|
|
2222
|
+
};
|
|
2223
|
+
|
|
2224
|
+
export type FlightsControllerCreatePresignedUrls0V1Errors = {
|
|
2225
|
+
401: unknown;
|
|
2226
|
+
403: unknown;
|
|
2227
|
+
};
|
|
2228
|
+
|
|
2229
|
+
export type FlightsControllerCreatePresignedUrls0V1Responses = {
|
|
2230
|
+
/**
|
|
2231
|
+
* Returns presigned URLs for file upload
|
|
2232
|
+
*/
|
|
2233
|
+
201: CreateFileResponseDto;
|
|
2234
|
+
};
|
|
2235
|
+
|
|
2236
|
+
export type FlightsControllerCreatePresignedUrls0V1Response =
|
|
2237
|
+
FlightsControllerCreatePresignedUrls0V1Responses[keyof FlightsControllerCreatePresignedUrls0V1Responses];
|
|
2238
|
+
|
|
2239
|
+
export type FlightsControllerCreatePresignedUrls1Data = {
|
|
2240
|
+
body: CreateFileRequestDto;
|
|
2241
|
+
path?: never;
|
|
2242
|
+
query?: never;
|
|
2243
|
+
url: "/flights/files";
|
|
2244
|
+
};
|
|
2245
|
+
|
|
2246
|
+
export type FlightsControllerCreatePresignedUrls1Errors = {
|
|
2247
|
+
401: unknown;
|
|
2248
|
+
403: unknown;
|
|
2249
|
+
};
|
|
2250
|
+
|
|
2251
|
+
export type FlightsControllerCreatePresignedUrls1Responses = {
|
|
2252
|
+
/**
|
|
2253
|
+
* Returns presigned URLs for file upload
|
|
2254
|
+
*/
|
|
2255
|
+
201: CreateFileResponseDto;
|
|
2256
|
+
};
|
|
2257
|
+
|
|
2258
|
+
export type FlightsControllerCreatePresignedUrls1Response =
|
|
2259
|
+
FlightsControllerCreatePresignedUrls1Responses[keyof FlightsControllerCreatePresignedUrls1Responses];
|
|
2260
|
+
|
|
2261
|
+
export type FlightsControllerValidateFlight0V1Data = {
|
|
2262
|
+
body: ValidateFlightRequestDto;
|
|
2263
|
+
path?: never;
|
|
2264
|
+
query?: never;
|
|
2265
|
+
url: "/v1/flights";
|
|
2266
|
+
};
|
|
2267
|
+
|
|
2268
|
+
export type FlightsControllerValidateFlight0V1Errors = {
|
|
2269
|
+
401: unknown;
|
|
2270
|
+
403: unknown;
|
|
2271
|
+
};
|
|
2272
|
+
|
|
2273
|
+
export type FlightsControllerValidateFlight0V1Responses = {
|
|
2274
|
+
/**
|
|
2275
|
+
* Result to track queued flight through its validation
|
|
2276
|
+
*/
|
|
2277
|
+
200: ValidateFlightResponseDto;
|
|
2278
|
+
};
|
|
2279
|
+
|
|
2280
|
+
export type FlightsControllerValidateFlight0V1Response =
|
|
2281
|
+
FlightsControllerValidateFlight0V1Responses[keyof FlightsControllerValidateFlight0V1Responses];
|
|
2282
|
+
|
|
2283
|
+
export type FlightsControllerValidateFlight1Data = {
|
|
2284
|
+
body: ValidateFlightRequestDto;
|
|
2285
|
+
path?: never;
|
|
2286
|
+
query?: never;
|
|
2287
|
+
url: "/flights";
|
|
2288
|
+
};
|
|
2289
|
+
|
|
2290
|
+
export type FlightsControllerValidateFlight1Errors = {
|
|
2291
|
+
401: unknown;
|
|
2292
|
+
403: unknown;
|
|
2293
|
+
};
|
|
2294
|
+
|
|
2295
|
+
export type FlightsControllerValidateFlight1Responses = {
|
|
2296
|
+
/**
|
|
2297
|
+
* Result to track queued flight through its validation
|
|
2298
|
+
*/
|
|
2299
|
+
200: ValidateFlightResponseDto;
|
|
2300
|
+
};
|
|
2301
|
+
|
|
2302
|
+
export type FlightsControllerValidateFlight1Response =
|
|
2303
|
+
FlightsControllerValidateFlight1Responses[keyof FlightsControllerValidateFlight1Responses];
|
|
2304
|
+
|
|
2305
|
+
export type FlightPlansControllerGetMany0V1Data = {
|
|
2306
|
+
body?: never;
|
|
2307
|
+
path?: never;
|
|
2308
|
+
query?: never;
|
|
2309
|
+
url: "/v1/flight-plans";
|
|
2310
|
+
};
|
|
2311
|
+
|
|
2312
|
+
export type FlightPlansControllerGetMany0V1Errors = {
|
|
2313
|
+
401: unknown;
|
|
2314
|
+
403: unknown;
|
|
2315
|
+
};
|
|
2316
|
+
|
|
2317
|
+
export type FlightPlansControllerGetMany0V1Responses = {
|
|
2318
|
+
200: GetFlightPlansResponse;
|
|
2319
|
+
};
|
|
2320
|
+
|
|
2321
|
+
export type FlightPlansControllerGetMany0V1Response =
|
|
2322
|
+
FlightPlansControllerGetMany0V1Responses[keyof FlightPlansControllerGetMany0V1Responses];
|
|
2323
|
+
|
|
2324
|
+
export type FlightPlansControllerCreate0V1Data = {
|
|
2325
|
+
body: CreateFlightPlanBody;
|
|
2326
|
+
path?: never;
|
|
2327
|
+
query?: never;
|
|
2328
|
+
url: "/v1/flight-plans";
|
|
2329
|
+
};
|
|
2330
|
+
|
|
2331
|
+
export type FlightPlansControllerCreate0V1Errors = {
|
|
2332
|
+
401: unknown;
|
|
2333
|
+
403: unknown;
|
|
2334
|
+
};
|
|
2335
|
+
|
|
2336
|
+
export type FlightPlansControllerCreate0V1Responses = {
|
|
2337
|
+
201: CreateFlightPlanResponse;
|
|
2338
|
+
};
|
|
2339
|
+
|
|
2340
|
+
export type FlightPlansControllerCreate0V1Response =
|
|
2341
|
+
FlightPlansControllerCreate0V1Responses[keyof FlightPlansControllerCreate0V1Responses];
|
|
2342
|
+
|
|
2343
|
+
export type FlightPlansControllerGetMany1Data = {
|
|
2344
|
+
body?: never;
|
|
2345
|
+
path?: never;
|
|
2346
|
+
query?: never;
|
|
2347
|
+
url: "/flight-plans";
|
|
2348
|
+
};
|
|
2349
|
+
|
|
2350
|
+
export type FlightPlansControllerGetMany1Errors = {
|
|
2351
|
+
401: unknown;
|
|
2352
|
+
403: unknown;
|
|
2353
|
+
};
|
|
2354
|
+
|
|
2355
|
+
export type FlightPlansControllerGetMany1Responses = {
|
|
2356
|
+
200: GetFlightPlansResponse;
|
|
2357
|
+
};
|
|
2358
|
+
|
|
2359
|
+
export type FlightPlansControllerGetMany1Response =
|
|
2360
|
+
FlightPlansControllerGetMany1Responses[keyof FlightPlansControllerGetMany1Responses];
|
|
2361
|
+
|
|
2362
|
+
export type FlightPlansControllerCreate1Data = {
|
|
2363
|
+
body: CreateFlightPlanBody;
|
|
2364
|
+
path?: never;
|
|
2365
|
+
query?: never;
|
|
2366
|
+
url: "/flight-plans";
|
|
2367
|
+
};
|
|
2368
|
+
|
|
2369
|
+
export type FlightPlansControllerCreate1Errors = {
|
|
2370
|
+
401: unknown;
|
|
2371
|
+
403: unknown;
|
|
2372
|
+
};
|
|
2373
|
+
|
|
2374
|
+
export type FlightPlansControllerCreate1Responses = {
|
|
2375
|
+
201: CreateFlightPlanResponse;
|
|
2376
|
+
};
|
|
2377
|
+
|
|
2378
|
+
export type FlightPlansControllerCreate1Response =
|
|
2379
|
+
FlightPlansControllerCreate1Responses[keyof FlightPlansControllerCreate1Responses];
|
|
2380
|
+
|
|
2381
|
+
export type FlightPlansControllerGet0V1Data = {
|
|
2382
|
+
body?: never;
|
|
2383
|
+
path: {
|
|
2384
|
+
id: number;
|
|
2385
|
+
};
|
|
2386
|
+
query?: never;
|
|
2387
|
+
url: "/v1/flight-plans/{id}";
|
|
2388
|
+
};
|
|
2389
|
+
|
|
2390
|
+
export type FlightPlansControllerGet0V1Errors = {
|
|
2391
|
+
401: unknown;
|
|
2392
|
+
403: unknown;
|
|
2393
|
+
};
|
|
2394
|
+
|
|
2395
|
+
export type FlightPlansControllerGet0V1Responses = {
|
|
2396
|
+
200: GetFlightPlanResponse;
|
|
2397
|
+
};
|
|
2398
|
+
|
|
2399
|
+
export type FlightPlansControllerGet0V1Response =
|
|
2400
|
+
FlightPlansControllerGet0V1Responses[keyof FlightPlansControllerGet0V1Responses];
|
|
2401
|
+
|
|
2402
|
+
export type FlightPlansControllerGet1Data = {
|
|
2403
|
+
body?: never;
|
|
2404
|
+
path: {
|
|
2405
|
+
id: number;
|
|
2406
|
+
};
|
|
2407
|
+
query?: never;
|
|
2408
|
+
url: "/flight-plans/{id}";
|
|
2409
|
+
};
|
|
2410
|
+
|
|
2411
|
+
export type FlightPlansControllerGet1Errors = {
|
|
2412
|
+
401: unknown;
|
|
2413
|
+
403: unknown;
|
|
2414
|
+
};
|
|
2415
|
+
|
|
2416
|
+
export type FlightPlansControllerGet1Responses = {
|
|
2417
|
+
200: GetFlightPlanResponse;
|
|
2418
|
+
};
|
|
2419
|
+
|
|
2420
|
+
export type FlightPlansControllerGet1Response =
|
|
2421
|
+
FlightPlansControllerGet1Responses[keyof FlightPlansControllerGet1Responses];
|
|
2422
|
+
|
|
2423
|
+
export type FlightReviewsControllerGetFlightReview0V1Data = {
|
|
2424
|
+
body?: never;
|
|
2425
|
+
path: {
|
|
2426
|
+
id: bigint;
|
|
2427
|
+
};
|
|
2428
|
+
query?: never;
|
|
2429
|
+
url: "/v1/flight-reviews/{id}";
|
|
2430
|
+
};
|
|
2431
|
+
|
|
2432
|
+
export type FlightReviewsControllerGetFlightReview0V1Errors = {
|
|
2433
|
+
401: unknown;
|
|
2434
|
+
403: unknown;
|
|
2435
|
+
/**
|
|
2436
|
+
* Flight review not found
|
|
2437
|
+
*/
|
|
2438
|
+
404: unknown;
|
|
2439
|
+
};
|
|
2440
|
+
|
|
2441
|
+
export type FlightReviewsControllerGetFlightReview0V1Responses = {
|
|
2442
|
+
200: GetFlightReviewResponseDto;
|
|
2443
|
+
};
|
|
2444
|
+
|
|
2445
|
+
export type FlightReviewsControllerGetFlightReview0V1Response =
|
|
2446
|
+
FlightReviewsControllerGetFlightReview0V1Responses[keyof FlightReviewsControllerGetFlightReview0V1Responses];
|
|
2447
|
+
|
|
2448
|
+
export type FlightReviewsControllerGetFlightReview1Data = {
|
|
2449
|
+
body?: never;
|
|
2450
|
+
path: {
|
|
2451
|
+
id: bigint;
|
|
2452
|
+
};
|
|
2453
|
+
query?: never;
|
|
2454
|
+
url: "/flight-reviews/{id}";
|
|
2455
|
+
};
|
|
2456
|
+
|
|
2457
|
+
export type FlightReviewsControllerGetFlightReview1Errors = {
|
|
2458
|
+
401: unknown;
|
|
2459
|
+
403: unknown;
|
|
2460
|
+
/**
|
|
2461
|
+
* Flight review not found
|
|
2462
|
+
*/
|
|
2463
|
+
404: unknown;
|
|
2464
|
+
};
|
|
2465
|
+
|
|
2466
|
+
export type FlightReviewsControllerGetFlightReview1Responses = {
|
|
2467
|
+
200: GetFlightReviewResponseDto;
|
|
2468
|
+
};
|
|
2469
|
+
|
|
2470
|
+
export type FlightReviewsControllerGetFlightReview1Response =
|
|
2471
|
+
FlightReviewsControllerGetFlightReview1Responses[keyof FlightReviewsControllerGetFlightReview1Responses];
|
|
2472
|
+
|
|
2473
|
+
export type FlightReviewsControllerGetFlightReviews0V1Data = {
|
|
2474
|
+
body?: never;
|
|
2475
|
+
path?: never;
|
|
2476
|
+
query: {
|
|
2477
|
+
updated_at_gt: Date;
|
|
2478
|
+
updated_at_lt: Date;
|
|
2479
|
+
};
|
|
2480
|
+
url: "/v1/flight-reviews";
|
|
2481
|
+
};
|
|
2482
|
+
|
|
2483
|
+
export type FlightReviewsControllerGetFlightReviews0V1Errors = {
|
|
2484
|
+
401: unknown;
|
|
2485
|
+
403: unknown;
|
|
2486
|
+
};
|
|
2487
|
+
|
|
2488
|
+
export type FlightReviewsControllerGetFlightReviews0V1Responses = {
|
|
2489
|
+
200: GetFlightReviewsResponseDto;
|
|
2490
|
+
};
|
|
2491
|
+
|
|
2492
|
+
export type FlightReviewsControllerGetFlightReviews0V1Response =
|
|
2493
|
+
FlightReviewsControllerGetFlightReviews0V1Responses[keyof FlightReviewsControllerGetFlightReviews0V1Responses];
|
|
2494
|
+
|
|
2495
|
+
export type FlightReviewsControllerGetFlightReviews1Data = {
|
|
2496
|
+
body?: never;
|
|
2497
|
+
path?: never;
|
|
2498
|
+
query: {
|
|
2499
|
+
updated_at_gt: Date;
|
|
2500
|
+
updated_at_lt: Date;
|
|
2501
|
+
};
|
|
2502
|
+
url: "/flight-reviews";
|
|
2503
|
+
};
|
|
2504
|
+
|
|
2505
|
+
export type FlightReviewsControllerGetFlightReviews1Errors = {
|
|
2506
|
+
401: unknown;
|
|
2507
|
+
403: unknown;
|
|
2508
|
+
};
|
|
2509
|
+
|
|
2510
|
+
export type FlightReviewsControllerGetFlightReviews1Responses = {
|
|
2511
|
+
200: GetFlightReviewsResponseDto;
|
|
2512
|
+
};
|
|
2513
|
+
|
|
2514
|
+
export type FlightReviewsControllerGetFlightReviews1Response =
|
|
2515
|
+
FlightReviewsControllerGetFlightReviews1Responses[keyof FlightReviewsControllerGetFlightReviews1Responses];
|
|
2516
|
+
|
|
2517
|
+
export type KeysControllerGetProvenanceCryptoKey0V1Data = {
|
|
2518
|
+
body?: never;
|
|
2519
|
+
path?: never;
|
|
2520
|
+
query?: never;
|
|
2521
|
+
url: "/v1/keys";
|
|
2522
|
+
};
|
|
2523
|
+
|
|
2524
|
+
export type KeysControllerGetProvenanceCryptoKey0V1Responses = {
|
|
2525
|
+
200: GetProvenanceCryptoKeyResponse;
|
|
2526
|
+
};
|
|
2527
|
+
|
|
2528
|
+
export type KeysControllerGetProvenanceCryptoKey0V1Response =
|
|
2529
|
+
KeysControllerGetProvenanceCryptoKey0V1Responses[keyof KeysControllerGetProvenanceCryptoKey0V1Responses];
|
|
2530
|
+
|
|
2531
|
+
export type KeysControllerGetProvenanceCryptoKey1Data = {
|
|
2532
|
+
body?: never;
|
|
2533
|
+
path?: never;
|
|
2534
|
+
query?: never;
|
|
2535
|
+
url: "/keys";
|
|
2536
|
+
};
|
|
2537
|
+
|
|
2538
|
+
export type KeysControllerGetProvenanceCryptoKey1Responses = {
|
|
2539
|
+
200: GetProvenanceCryptoKeyResponse;
|
|
2540
|
+
};
|
|
2541
|
+
|
|
2542
|
+
export type KeysControllerGetProvenanceCryptoKey1Response =
|
|
2543
|
+
KeysControllerGetProvenanceCryptoKey1Responses[keyof KeysControllerGetProvenanceCryptoKey1Responses];
|
|
2544
|
+
|
|
2545
|
+
export type MissionsControllerGetMission0V1Data = {
|
|
2546
|
+
body?: never;
|
|
2547
|
+
path: {
|
|
2548
|
+
id: string;
|
|
2549
|
+
};
|
|
2550
|
+
query?: {
|
|
2551
|
+
relations?:
|
|
2552
|
+
| "vault"
|
|
2553
|
+
| "payout"
|
|
2554
|
+
| "campaigns"
|
|
2555
|
+
| Array<"vault" | "payout" | "campaigns">;
|
|
2556
|
+
};
|
|
2557
|
+
url: "/v1/missions/{id}";
|
|
2558
|
+
};
|
|
2559
|
+
|
|
2560
|
+
export type MissionsControllerGetMission0V1Errors = {
|
|
2561
|
+
401: unknown;
|
|
2562
|
+
403: unknown;
|
|
2563
|
+
/**
|
|
2564
|
+
* Mission not found
|
|
2565
|
+
*/
|
|
2566
|
+
404: unknown;
|
|
2567
|
+
};
|
|
2568
|
+
|
|
2569
|
+
export type MissionsControllerGetMission0V1Responses = {
|
|
2570
|
+
200: GetMissionResponseDto;
|
|
2571
|
+
};
|
|
2572
|
+
|
|
2573
|
+
export type MissionsControllerGetMission0V1Response =
|
|
2574
|
+
MissionsControllerGetMission0V1Responses[keyof MissionsControllerGetMission0V1Responses];
|
|
2575
|
+
|
|
2576
|
+
export type MissionsControllerGetMission1Data = {
|
|
2577
|
+
body?: never;
|
|
2578
|
+
path: {
|
|
2579
|
+
id: string;
|
|
2580
|
+
};
|
|
2581
|
+
query?: {
|
|
2582
|
+
relations?:
|
|
2583
|
+
| "vault"
|
|
2584
|
+
| "payout"
|
|
2585
|
+
| "campaigns"
|
|
2586
|
+
| Array<"vault" | "payout" | "campaigns">;
|
|
2587
|
+
};
|
|
2588
|
+
url: "/missions/{id}";
|
|
2589
|
+
};
|
|
2590
|
+
|
|
2591
|
+
export type MissionsControllerGetMission1Errors = {
|
|
2592
|
+
401: unknown;
|
|
2593
|
+
403: unknown;
|
|
2594
|
+
/**
|
|
2595
|
+
* Mission not found
|
|
2596
|
+
*/
|
|
2597
|
+
404: unknown;
|
|
2598
|
+
};
|
|
2599
|
+
|
|
2600
|
+
export type MissionsControllerGetMission1Responses = {
|
|
2601
|
+
200: GetMissionResponseDto;
|
|
2602
|
+
};
|
|
2603
|
+
|
|
2604
|
+
export type MissionsControllerGetMission1Response =
|
|
2605
|
+
MissionsControllerGetMission1Responses[keyof MissionsControllerGetMission1Responses];
|
|
2606
|
+
|
|
2607
|
+
export type MissionsControllerGetMissions0V1Data = {
|
|
2608
|
+
body?: never;
|
|
2609
|
+
path?: never;
|
|
2610
|
+
query?: {
|
|
2611
|
+
updatedAt_gt?: Date;
|
|
2612
|
+
updatedAt_lt?: Date;
|
|
2613
|
+
createdAt_gt?: Date;
|
|
2614
|
+
createdAt_lt?: Date;
|
|
2615
|
+
isOpen?: string;
|
|
2616
|
+
zoneIds?: string | Array<string>;
|
|
2617
|
+
flightPlanId?: number;
|
|
2618
|
+
page?: number;
|
|
2619
|
+
relations?:
|
|
2620
|
+
| "vault"
|
|
2621
|
+
| "payout"
|
|
2622
|
+
| "campaigns"
|
|
2623
|
+
| Array<"vault" | "payout" | "campaigns">;
|
|
2624
|
+
};
|
|
2625
|
+
url: "/v1/missions";
|
|
2626
|
+
};
|
|
2627
|
+
|
|
2628
|
+
export type MissionsControllerGetMissions0V1Errors = {
|
|
2629
|
+
401: unknown;
|
|
2630
|
+
403: unknown;
|
|
2631
|
+
};
|
|
2632
|
+
|
|
2633
|
+
export type MissionsControllerGetMissions0V1Responses = {
|
|
2634
|
+
200: GetMissionsResponseDto;
|
|
2635
|
+
};
|
|
2636
|
+
|
|
2637
|
+
export type MissionsControllerGetMissions0V1Response =
|
|
2638
|
+
MissionsControllerGetMissions0V1Responses[keyof MissionsControllerGetMissions0V1Responses];
|
|
2639
|
+
|
|
2640
|
+
export type MissionsControllerCreateMissions0V1Data = {
|
|
2641
|
+
body: CreateMissionRequestDto;
|
|
2642
|
+
path?: never;
|
|
2643
|
+
query?: never;
|
|
2644
|
+
url: "/v1/missions";
|
|
2645
|
+
};
|
|
2646
|
+
|
|
2647
|
+
export type MissionsControllerCreateMissions0V1Errors = {
|
|
2648
|
+
/**
|
|
2649
|
+
* Validation failed - invalid Zones, mission types, or times
|
|
2650
|
+
*/
|
|
2651
|
+
400: unknown;
|
|
2652
|
+
401: unknown;
|
|
2653
|
+
/**
|
|
2654
|
+
* Insufficient treasury spending limit
|
|
2655
|
+
*/
|
|
2656
|
+
403: unknown;
|
|
2657
|
+
/**
|
|
2658
|
+
* Internal server error during mission creation
|
|
2659
|
+
*/
|
|
2660
|
+
500: unknown;
|
|
2661
|
+
};
|
|
2662
|
+
|
|
2663
|
+
export type MissionsControllerCreateMissions0V1Responses = {
|
|
2664
|
+
/**
|
|
2665
|
+
* Transaction to create mission, queued successfully
|
|
2666
|
+
*/
|
|
2667
|
+
201: CreateMissionResponseDto;
|
|
2668
|
+
};
|
|
2669
|
+
|
|
2670
|
+
export type MissionsControllerCreateMissions0V1Response =
|
|
2671
|
+
MissionsControllerCreateMissions0V1Responses[keyof MissionsControllerCreateMissions0V1Responses];
|
|
2672
|
+
|
|
2673
|
+
export type MissionsControllerUpdateMissions0V1Data = {
|
|
2674
|
+
body: UpdateMissionsRequestDto;
|
|
2675
|
+
path?: never;
|
|
2676
|
+
query?: never;
|
|
2677
|
+
url: "/v1/missions";
|
|
2678
|
+
};
|
|
2679
|
+
|
|
2680
|
+
export type MissionsControllerUpdateMissions0V1Errors = {
|
|
2681
|
+
401: unknown;
|
|
2682
|
+
403: unknown;
|
|
2683
|
+
};
|
|
2684
|
+
|
|
2685
|
+
export type MissionsControllerUpdateMissions0V1Responses = {
|
|
2686
|
+
/**
|
|
2687
|
+
* Missions update transaction queued successfully
|
|
2688
|
+
*/
|
|
2689
|
+
200: UpdateMissionsResponseDto;
|
|
2690
|
+
};
|
|
2691
|
+
|
|
2692
|
+
export type MissionsControllerUpdateMissions0V1Response =
|
|
2693
|
+
MissionsControllerUpdateMissions0V1Responses[keyof MissionsControllerUpdateMissions0V1Responses];
|
|
2694
|
+
|
|
2695
|
+
export type MissionsControllerGetMissions1Data = {
|
|
2696
|
+
body?: never;
|
|
2697
|
+
path?: never;
|
|
2698
|
+
query?: {
|
|
2699
|
+
updatedAt_gt?: Date;
|
|
2700
|
+
updatedAt_lt?: Date;
|
|
2701
|
+
createdAt_gt?: Date;
|
|
2702
|
+
createdAt_lt?: Date;
|
|
2703
|
+
isOpen?: string;
|
|
2704
|
+
zoneIds?: string | Array<string>;
|
|
2705
|
+
flightPlanId?: number;
|
|
2706
|
+
page?: number;
|
|
2707
|
+
relations?:
|
|
2708
|
+
| "vault"
|
|
2709
|
+
| "payout"
|
|
2710
|
+
| "campaigns"
|
|
2711
|
+
| Array<"vault" | "payout" | "campaigns">;
|
|
2712
|
+
};
|
|
2713
|
+
url: "/missions";
|
|
2714
|
+
};
|
|
2715
|
+
|
|
2716
|
+
export type MissionsControllerGetMissions1Errors = {
|
|
2717
|
+
401: unknown;
|
|
2718
|
+
403: unknown;
|
|
2719
|
+
};
|
|
2720
|
+
|
|
2721
|
+
export type MissionsControllerGetMissions1Responses = {
|
|
2722
|
+
200: GetMissionsResponseDto;
|
|
2723
|
+
};
|
|
2724
|
+
|
|
2725
|
+
export type MissionsControllerGetMissions1Response =
|
|
2726
|
+
MissionsControllerGetMissions1Responses[keyof MissionsControllerGetMissions1Responses];
|
|
2727
|
+
|
|
2728
|
+
export type MissionsControllerCreateMissions1Data = {
|
|
2729
|
+
body: CreateMissionRequestDto;
|
|
2730
|
+
path?: never;
|
|
2731
|
+
query?: never;
|
|
2732
|
+
url: "/missions";
|
|
2733
|
+
};
|
|
2734
|
+
|
|
2735
|
+
export type MissionsControllerCreateMissions1Errors = {
|
|
2736
|
+
/**
|
|
2737
|
+
* Validation failed - invalid Zones, mission types, or times
|
|
2738
|
+
*/
|
|
2739
|
+
400: unknown;
|
|
2740
|
+
401: unknown;
|
|
2741
|
+
/**
|
|
2742
|
+
* Insufficient treasury spending limit
|
|
2743
|
+
*/
|
|
2744
|
+
403: unknown;
|
|
2745
|
+
/**
|
|
2746
|
+
* Internal server error during mission creation
|
|
2747
|
+
*/
|
|
2748
|
+
500: unknown;
|
|
2749
|
+
};
|
|
2750
|
+
|
|
2751
|
+
export type MissionsControllerCreateMissions1Responses = {
|
|
2752
|
+
/**
|
|
2753
|
+
* Transaction to create mission, queued successfully
|
|
2754
|
+
*/
|
|
2755
|
+
201: CreateMissionResponseDto;
|
|
2756
|
+
};
|
|
2757
|
+
|
|
2758
|
+
export type MissionsControllerCreateMissions1Response =
|
|
2759
|
+
MissionsControllerCreateMissions1Responses[keyof MissionsControllerCreateMissions1Responses];
|
|
2760
|
+
|
|
2761
|
+
export type MissionsControllerUpdateMissions1Data = {
|
|
2762
|
+
body: UpdateMissionsRequestDto;
|
|
2763
|
+
path?: never;
|
|
2764
|
+
query?: never;
|
|
2765
|
+
url: "/missions";
|
|
2766
|
+
};
|
|
2767
|
+
|
|
2768
|
+
export type MissionsControllerUpdateMissions1Errors = {
|
|
2769
|
+
401: unknown;
|
|
2770
|
+
403: unknown;
|
|
2771
|
+
};
|
|
2772
|
+
|
|
2773
|
+
export type MissionsControllerUpdateMissions1Responses = {
|
|
2774
|
+
/**
|
|
2775
|
+
* Missions update transaction queued successfully
|
|
2776
|
+
*/
|
|
2777
|
+
200: UpdateMissionsResponseDto;
|
|
2778
|
+
};
|
|
2779
|
+
|
|
2780
|
+
export type MissionsControllerUpdateMissions1Response =
|
|
2781
|
+
MissionsControllerUpdateMissions1Responses[keyof MissionsControllerUpdateMissions1Responses];
|
|
2782
|
+
|
|
2783
|
+
export type MissionsControllerRepriceMissions0V1Data = {
|
|
2784
|
+
body: RepriceMissionsRequestDto;
|
|
2785
|
+
path?: never;
|
|
2786
|
+
query?: never;
|
|
2787
|
+
url: "/v1/missions/amounts";
|
|
2788
|
+
};
|
|
2789
|
+
|
|
2790
|
+
export type MissionsControllerRepriceMissions0V1Errors = {
|
|
2791
|
+
401: unknown;
|
|
2792
|
+
403: unknown;
|
|
2793
|
+
};
|
|
2794
|
+
|
|
2795
|
+
export type MissionsControllerRepriceMissions0V1Responses = {
|
|
2796
|
+
/**
|
|
2797
|
+
* Mission repricing queued successfully
|
|
2798
|
+
*/
|
|
2799
|
+
200: RepriceMissionsResponseDto;
|
|
2800
|
+
};
|
|
2801
|
+
|
|
2802
|
+
export type MissionsControllerRepriceMissions0V1Response =
|
|
2803
|
+
MissionsControllerRepriceMissions0V1Responses[keyof MissionsControllerRepriceMissions0V1Responses];
|
|
2804
|
+
|
|
2805
|
+
export type MissionsControllerRepriceMissions1Data = {
|
|
2806
|
+
body: RepriceMissionsRequestDto;
|
|
2807
|
+
path?: never;
|
|
2808
|
+
query?: never;
|
|
2809
|
+
url: "/missions/amounts";
|
|
2810
|
+
};
|
|
2811
|
+
|
|
2812
|
+
export type MissionsControllerRepriceMissions1Errors = {
|
|
2813
|
+
401: unknown;
|
|
2814
|
+
403: unknown;
|
|
2815
|
+
};
|
|
2816
|
+
|
|
2817
|
+
export type MissionsControllerRepriceMissions1Responses = {
|
|
2818
|
+
/**
|
|
2819
|
+
* Mission repricing queued successfully
|
|
2820
|
+
*/
|
|
2821
|
+
200: RepriceMissionsResponseDto;
|
|
2822
|
+
};
|
|
2823
|
+
|
|
2824
|
+
export type MissionsControllerRepriceMissions1Response =
|
|
2825
|
+
MissionsControllerRepriceMissions1Responses[keyof MissionsControllerRepriceMissions1Responses];
|
|
2826
|
+
|
|
2827
|
+
export type ListProposalsData = {
|
|
2828
|
+
body?: never;
|
|
2829
|
+
path?: never;
|
|
2830
|
+
query?: {
|
|
2831
|
+
status?:
|
|
2832
|
+
| "pending"
|
|
2833
|
+
| "approved"
|
|
2834
|
+
| "rejected"
|
|
2835
|
+
| "dispatched"
|
|
2836
|
+
| "verified"
|
|
2837
|
+
| "error";
|
|
2838
|
+
created_by?: string;
|
|
2839
|
+
created_after?: Date;
|
|
2840
|
+
created_before?: Date;
|
|
2841
|
+
page?: number;
|
|
2842
|
+
};
|
|
2843
|
+
url: "/v1/proposals";
|
|
2844
|
+
};
|
|
2845
|
+
|
|
2846
|
+
export type ListProposalsErrors = {
|
|
2847
|
+
/**
|
|
2848
|
+
* Missing manageProposals permission
|
|
2849
|
+
*/
|
|
2850
|
+
403: unknown;
|
|
2851
|
+
};
|
|
2852
|
+
|
|
2853
|
+
export type ListProposalsResponses = {
|
|
2854
|
+
200: GetProposalsResponseDto;
|
|
2855
|
+
};
|
|
2856
|
+
|
|
2857
|
+
export type ListProposalsResponse =
|
|
2858
|
+
ListProposalsResponses[keyof ListProposalsResponses];
|
|
2859
|
+
|
|
2860
|
+
export type SubmitProposalData = {
|
|
2861
|
+
body: CreateProposalRequestDto;
|
|
2862
|
+
path?: never;
|
|
2863
|
+
query?: never;
|
|
2864
|
+
url: "/v1/proposals";
|
|
1385
2865
|
};
|
|
1386
2866
|
|
|
1387
|
-
export type
|
|
2867
|
+
export type SubmitProposalErrors = {
|
|
2868
|
+
/**
|
|
2869
|
+
* Schema validation failed
|
|
2870
|
+
*/
|
|
2871
|
+
400: unknown;
|
|
1388
2872
|
401: unknown;
|
|
1389
2873
|
403: unknown;
|
|
1390
2874
|
};
|
|
1391
2875
|
|
|
1392
|
-
export type
|
|
1393
|
-
|
|
1394
|
-
* Returns the generated storage key
|
|
1395
|
-
*/
|
|
1396
|
-
200: string;
|
|
2876
|
+
export type SubmitProposalResponses = {
|
|
2877
|
+
201: CreateProposalResponseDto;
|
|
1397
2878
|
};
|
|
1398
2879
|
|
|
1399
|
-
export type
|
|
1400
|
-
|
|
2880
|
+
export type SubmitProposalResponse =
|
|
2881
|
+
SubmitProposalResponses[keyof SubmitProposalResponses];
|
|
1401
2882
|
|
|
1402
|
-
export type
|
|
2883
|
+
export type GetProposalData = {
|
|
1403
2884
|
body?: never;
|
|
1404
2885
|
path: {
|
|
1405
|
-
|
|
2886
|
+
id: string;
|
|
1406
2887
|
};
|
|
1407
2888
|
query?: never;
|
|
1408
|
-
url: "/
|
|
2889
|
+
url: "/v1/proposals/{id}";
|
|
1409
2890
|
};
|
|
1410
2891
|
|
|
1411
|
-
export type
|
|
1412
|
-
|
|
2892
|
+
export type GetProposalErrors = {
|
|
2893
|
+
/**
|
|
2894
|
+
* Missing manageProposals permission
|
|
2895
|
+
*/
|
|
1413
2896
|
403: unknown;
|
|
1414
|
-
};
|
|
1415
|
-
|
|
1416
|
-
export type FlightsControllerGetFlightResponses = {
|
|
1417
2897
|
/**
|
|
1418
|
-
*
|
|
2898
|
+
* Proposal not found
|
|
1419
2899
|
*/
|
|
1420
|
-
|
|
2900
|
+
404: unknown;
|
|
2901
|
+
};
|
|
2902
|
+
|
|
2903
|
+
export type GetProposalResponses = {
|
|
2904
|
+
200: GetProposalResponseDto;
|
|
1421
2905
|
};
|
|
1422
2906
|
|
|
1423
|
-
export type
|
|
1424
|
-
|
|
2907
|
+
export type GetProposalResponse =
|
|
2908
|
+
GetProposalResponses[keyof GetProposalResponses];
|
|
1425
2909
|
|
|
1426
|
-
export type
|
|
1427
|
-
body:
|
|
1428
|
-
path
|
|
2910
|
+
export type ReviewProposalData = {
|
|
2911
|
+
body: ReviewProposalRequestDto;
|
|
2912
|
+
path: {
|
|
2913
|
+
id: string;
|
|
2914
|
+
};
|
|
1429
2915
|
query?: never;
|
|
1430
|
-
url: "/
|
|
2916
|
+
url: "/v1/proposals/{id}/review";
|
|
1431
2917
|
};
|
|
1432
2918
|
|
|
1433
|
-
export type
|
|
2919
|
+
export type ReviewProposalErrors = {
|
|
1434
2920
|
401: unknown;
|
|
1435
2921
|
403: unknown;
|
|
1436
|
-
};
|
|
1437
|
-
|
|
1438
|
-
export type FlightsControllerCreatePresignedUrlsResponses = {
|
|
1439
2922
|
/**
|
|
1440
|
-
*
|
|
2923
|
+
* Proposal not found
|
|
1441
2924
|
*/
|
|
1442
|
-
|
|
2925
|
+
404: unknown;
|
|
2926
|
+
/**
|
|
2927
|
+
* Another proposal is already running
|
|
2928
|
+
*/
|
|
2929
|
+
409: unknown;
|
|
2930
|
+
};
|
|
2931
|
+
|
|
2932
|
+
export type ReviewProposalResponses = {
|
|
2933
|
+
200: ReviewProposalResponseDto;
|
|
1443
2934
|
};
|
|
1444
2935
|
|
|
1445
|
-
export type
|
|
1446
|
-
|
|
2936
|
+
export type ReviewProposalResponse =
|
|
2937
|
+
ReviewProposalResponses[keyof ReviewProposalResponses];
|
|
1447
2938
|
|
|
1448
|
-
export type
|
|
1449
|
-
body:
|
|
2939
|
+
export type ProtocolTriggersApiControllerTriggerPayout0V1Data = {
|
|
2940
|
+
body: TriggerPayoutRequestDto;
|
|
1450
2941
|
path?: never;
|
|
1451
2942
|
query?: never;
|
|
1452
|
-
url: "/
|
|
2943
|
+
url: "/v1/protocol-triggers/missions/payout";
|
|
1453
2944
|
};
|
|
1454
2945
|
|
|
1455
|
-
export type
|
|
2946
|
+
export type ProtocolTriggersApiControllerTriggerPayout0V1Errors = {
|
|
1456
2947
|
401: unknown;
|
|
1457
2948
|
403: unknown;
|
|
1458
2949
|
};
|
|
1459
2950
|
|
|
1460
|
-
export type
|
|
1461
|
-
|
|
1462
|
-
* Result to track queued flight through its validation
|
|
1463
|
-
*/
|
|
1464
|
-
200: ValidateFlightResponseDto;
|
|
2951
|
+
export type ProtocolTriggersApiControllerTriggerPayout0V1Responses = {
|
|
2952
|
+
201: unknown;
|
|
1465
2953
|
};
|
|
1466
2954
|
|
|
1467
|
-
export type
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
export type FlightPlansControllerGetManyData = {
|
|
1471
|
-
body?: never;
|
|
2955
|
+
export type ProtocolTriggersApiControllerTriggerPayout1Data = {
|
|
2956
|
+
body: TriggerPayoutRequestDto;
|
|
1472
2957
|
path?: never;
|
|
1473
2958
|
query?: never;
|
|
1474
|
-
url: "/
|
|
2959
|
+
url: "/protocol-triggers/missions/payout";
|
|
1475
2960
|
};
|
|
1476
2961
|
|
|
1477
|
-
export type
|
|
2962
|
+
export type ProtocolTriggersApiControllerTriggerPayout1Errors = {
|
|
1478
2963
|
401: unknown;
|
|
1479
2964
|
403: unknown;
|
|
1480
2965
|
};
|
|
1481
2966
|
|
|
1482
|
-
export type
|
|
1483
|
-
|
|
2967
|
+
export type ProtocolTriggersApiControllerTriggerPayout1Responses = {
|
|
2968
|
+
201: unknown;
|
|
1484
2969
|
};
|
|
1485
2970
|
|
|
1486
|
-
export type
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
export type FlightPlansControllerCreateData = {
|
|
1490
|
-
body: CreateFlightPlanBody;
|
|
2971
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose0V1Data = {
|
|
2972
|
+
body: TriggerMissionCloseRequestDto;
|
|
1491
2973
|
path?: never;
|
|
1492
2974
|
query?: never;
|
|
1493
|
-
url: "/
|
|
2975
|
+
url: "/v1/protocol-triggers/missions/close";
|
|
1494
2976
|
};
|
|
1495
2977
|
|
|
1496
|
-
export type
|
|
2978
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose0V1Errors = {
|
|
1497
2979
|
401: unknown;
|
|
1498
2980
|
403: unknown;
|
|
1499
2981
|
};
|
|
1500
2982
|
|
|
1501
|
-
export type
|
|
1502
|
-
201:
|
|
2983
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose0V1Responses = {
|
|
2984
|
+
201: unknown;
|
|
1503
2985
|
};
|
|
1504
2986
|
|
|
1505
|
-
export type
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
export type FlightPlansControllerGetData = {
|
|
1509
|
-
body?: never;
|
|
1510
|
-
path: {
|
|
1511
|
-
id: number;
|
|
1512
|
-
};
|
|
2987
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose1Data = {
|
|
2988
|
+
body: TriggerMissionCloseRequestDto;
|
|
2989
|
+
path?: never;
|
|
1513
2990
|
query?: never;
|
|
1514
|
-
url: "/
|
|
2991
|
+
url: "/protocol-triggers/missions/close";
|
|
1515
2992
|
};
|
|
1516
2993
|
|
|
1517
|
-
export type
|
|
2994
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose1Errors = {
|
|
1518
2995
|
401: unknown;
|
|
1519
2996
|
403: unknown;
|
|
1520
2997
|
};
|
|
1521
2998
|
|
|
1522
|
-
export type
|
|
1523
|
-
|
|
2999
|
+
export type ProtocolTriggersApiControllerTriggerMissionClose1Responses = {
|
|
3000
|
+
201: unknown;
|
|
1524
3001
|
};
|
|
1525
3002
|
|
|
1526
|
-
export type
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
export type FlightReviewsControllerGetFlightReviewData = {
|
|
1530
|
-
body?: never;
|
|
1531
|
-
path: {
|
|
1532
|
-
id: bigint;
|
|
1533
|
-
};
|
|
3003
|
+
export type QuotesControllerCreateQuote0V1Data = {
|
|
3004
|
+
body: CreateQuoteRequestDto;
|
|
3005
|
+
path?: never;
|
|
1534
3006
|
query?: never;
|
|
1535
|
-
url: "/
|
|
3007
|
+
url: "/v1/quotes";
|
|
1536
3008
|
};
|
|
1537
3009
|
|
|
1538
|
-
export type
|
|
3010
|
+
export type QuotesControllerCreateQuote0V1Errors = {
|
|
1539
3011
|
401: unknown;
|
|
1540
3012
|
403: unknown;
|
|
1541
|
-
/**
|
|
1542
|
-
* Flight review not found
|
|
1543
|
-
*/
|
|
1544
|
-
404: unknown;
|
|
1545
3013
|
};
|
|
1546
3014
|
|
|
1547
|
-
export type
|
|
1548
|
-
|
|
3015
|
+
export type QuotesControllerCreateQuote0V1Responses = {
|
|
3016
|
+
201: unknown;
|
|
1549
3017
|
};
|
|
1550
3018
|
|
|
1551
|
-
export type
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
export type FlightReviewsControllerGetFlightReviewsData = {
|
|
1555
|
-
body?: never;
|
|
3019
|
+
export type QuotesControllerCreateQuote1Data = {
|
|
3020
|
+
body: CreateQuoteRequestDto;
|
|
1556
3021
|
path?: never;
|
|
1557
|
-
query
|
|
1558
|
-
|
|
1559
|
-
updated_at_lt: Date;
|
|
1560
|
-
};
|
|
1561
|
-
url: "/flight-reviews";
|
|
3022
|
+
query?: never;
|
|
3023
|
+
url: "/quotes";
|
|
1562
3024
|
};
|
|
1563
3025
|
|
|
1564
|
-
export type
|
|
3026
|
+
export type QuotesControllerCreateQuote1Errors = {
|
|
1565
3027
|
401: unknown;
|
|
1566
3028
|
403: unknown;
|
|
1567
3029
|
};
|
|
1568
3030
|
|
|
1569
|
-
export type
|
|
1570
|
-
|
|
3031
|
+
export type QuotesControllerCreateQuote1Responses = {
|
|
3032
|
+
201: unknown;
|
|
1571
3033
|
};
|
|
1572
3034
|
|
|
1573
|
-
export type
|
|
1574
|
-
FlightReviewsControllerGetFlightReviewsResponses[keyof FlightReviewsControllerGetFlightReviewsResponses];
|
|
1575
|
-
|
|
1576
|
-
export type KeysControllerGetProvenanceCryptoKeyData = {
|
|
3035
|
+
export type QuotesControllerGetQuote0V1Data = {
|
|
1577
3036
|
body?: never;
|
|
1578
|
-
path
|
|
3037
|
+
path: {
|
|
3038
|
+
id: string;
|
|
3039
|
+
};
|
|
1579
3040
|
query?: never;
|
|
1580
|
-
url: "/
|
|
3041
|
+
url: "/v1/quotes/{id}";
|
|
1581
3042
|
};
|
|
1582
3043
|
|
|
1583
|
-
export type
|
|
1584
|
-
|
|
3044
|
+
export type QuotesControllerGetQuote0V1Errors = {
|
|
3045
|
+
401: unknown;
|
|
3046
|
+
403: unknown;
|
|
1585
3047
|
};
|
|
1586
3048
|
|
|
1587
|
-
export type
|
|
1588
|
-
|
|
3049
|
+
export type QuotesControllerGetQuote0V1Responses = {
|
|
3050
|
+
200: unknown;
|
|
3051
|
+
};
|
|
1589
3052
|
|
|
1590
|
-
export type
|
|
3053
|
+
export type QuotesControllerGetQuote1Data = {
|
|
1591
3054
|
body?: never;
|
|
1592
3055
|
path: {
|
|
1593
3056
|
id: string;
|
|
1594
3057
|
};
|
|
1595
|
-
query?:
|
|
1596
|
-
|
|
1597
|
-
| "vault"
|
|
1598
|
-
| "payout"
|
|
1599
|
-
| "campaigns"
|
|
1600
|
-
| Array<"vault" | "payout" | "campaigns">;
|
|
1601
|
-
};
|
|
1602
|
-
url: "/missions/{id}";
|
|
3058
|
+
query?: never;
|
|
3059
|
+
url: "/quotes/{id}";
|
|
1603
3060
|
};
|
|
1604
3061
|
|
|
1605
|
-
export type
|
|
3062
|
+
export type QuotesControllerGetQuote1Errors = {
|
|
1606
3063
|
401: unknown;
|
|
1607
3064
|
403: unknown;
|
|
3065
|
+
};
|
|
3066
|
+
|
|
3067
|
+
export type QuotesControllerGetQuote1Responses = {
|
|
3068
|
+
200: unknown;
|
|
3069
|
+
};
|
|
3070
|
+
|
|
3071
|
+
export type SchemaControllerGetEventSchema0V1Data = {
|
|
3072
|
+
body?: never;
|
|
3073
|
+
path?: never;
|
|
3074
|
+
query?: never;
|
|
3075
|
+
url: "/v1/schema/event";
|
|
3076
|
+
};
|
|
3077
|
+
|
|
3078
|
+
export type SchemaControllerGetEventSchema0V1Responses = {
|
|
1608
3079
|
/**
|
|
1609
|
-
*
|
|
3080
|
+
* Get event schema
|
|
1610
3081
|
*/
|
|
1611
|
-
|
|
3082
|
+
200: unknown;
|
|
1612
3083
|
};
|
|
1613
3084
|
|
|
1614
|
-
export type
|
|
1615
|
-
|
|
3085
|
+
export type SchemaControllerGetEventSchema1Data = {
|
|
3086
|
+
body?: never;
|
|
3087
|
+
path?: never;
|
|
3088
|
+
query?: never;
|
|
3089
|
+
url: "/schema/event";
|
|
1616
3090
|
};
|
|
1617
3091
|
|
|
1618
|
-
export type
|
|
1619
|
-
|
|
3092
|
+
export type SchemaControllerGetEventSchema1Responses = {
|
|
3093
|
+
/**
|
|
3094
|
+
* Get event schema
|
|
3095
|
+
*/
|
|
3096
|
+
200: unknown;
|
|
3097
|
+
};
|
|
1620
3098
|
|
|
1621
|
-
export type
|
|
1622
|
-
body
|
|
3099
|
+
export type VaultsControllerCreateVaults0V1Data = {
|
|
3100
|
+
body: CreateVaultsRequestDto;
|
|
1623
3101
|
path?: never;
|
|
1624
|
-
query?:
|
|
1625
|
-
|
|
1626
|
-
updatedAt_lt?: Date;
|
|
1627
|
-
createdAt_gt?: Date;
|
|
1628
|
-
createdAt_lt?: Date;
|
|
1629
|
-
isOpen?: string;
|
|
1630
|
-
zoneIds?: string | Array<string>;
|
|
1631
|
-
flightPlanId?: number;
|
|
1632
|
-
page?: number;
|
|
1633
|
-
relations?:
|
|
1634
|
-
| "vault"
|
|
1635
|
-
| "payout"
|
|
1636
|
-
| "campaigns"
|
|
1637
|
-
| Array<"vault" | "payout" | "campaigns">;
|
|
1638
|
-
};
|
|
1639
|
-
url: "/missions";
|
|
3102
|
+
query?: never;
|
|
3103
|
+
url: "/v1/vaults";
|
|
1640
3104
|
};
|
|
1641
3105
|
|
|
1642
|
-
export type
|
|
3106
|
+
export type VaultsControllerCreateVaults0V1Errors = {
|
|
3107
|
+
/**
|
|
3108
|
+
* Validation failed - invalid funder, amount, or contract address
|
|
3109
|
+
*/
|
|
3110
|
+
400: unknown;
|
|
1643
3111
|
401: unknown;
|
|
1644
3112
|
403: unknown;
|
|
3113
|
+
/**
|
|
3114
|
+
* Internal server error during vault request creation
|
|
3115
|
+
*/
|
|
3116
|
+
500: unknown;
|
|
1645
3117
|
};
|
|
1646
3118
|
|
|
1647
|
-
export type
|
|
1648
|
-
|
|
3119
|
+
export type VaultsControllerCreateVaults0V1Responses = {
|
|
3120
|
+
/**
|
|
3121
|
+
* Vault requests posted successfully
|
|
3122
|
+
*/
|
|
3123
|
+
201: CreateVaultsResponseDto;
|
|
1649
3124
|
};
|
|
1650
3125
|
|
|
1651
|
-
export type
|
|
1652
|
-
|
|
3126
|
+
export type VaultsControllerCreateVaults0V1Response =
|
|
3127
|
+
VaultsControllerCreateVaults0V1Responses[keyof VaultsControllerCreateVaults0V1Responses];
|
|
1653
3128
|
|
|
1654
|
-
export type
|
|
1655
|
-
body:
|
|
3129
|
+
export type VaultsControllerCreateVaults1Data = {
|
|
3130
|
+
body: CreateVaultsRequestDto;
|
|
1656
3131
|
path?: never;
|
|
1657
3132
|
query?: never;
|
|
1658
|
-
url: "/
|
|
3133
|
+
url: "/vaults";
|
|
1659
3134
|
};
|
|
1660
3135
|
|
|
1661
|
-
export type
|
|
3136
|
+
export type VaultsControllerCreateVaults1Errors = {
|
|
1662
3137
|
/**
|
|
1663
|
-
* Validation failed - invalid
|
|
3138
|
+
* Validation failed - invalid funder, amount, or contract address
|
|
1664
3139
|
*/
|
|
1665
3140
|
400: unknown;
|
|
1666
3141
|
401: unknown;
|
|
1667
|
-
/**
|
|
1668
|
-
* Insufficient treasury spending limit
|
|
1669
|
-
*/
|
|
1670
3142
|
403: unknown;
|
|
1671
3143
|
/**
|
|
1672
|
-
* Internal server error during
|
|
3144
|
+
* Internal server error during vault request creation
|
|
1673
3145
|
*/
|
|
1674
3146
|
500: unknown;
|
|
1675
3147
|
};
|
|
1676
3148
|
|
|
1677
|
-
export type
|
|
3149
|
+
export type VaultsControllerCreateVaults1Responses = {
|
|
1678
3150
|
/**
|
|
1679
|
-
*
|
|
3151
|
+
* Vault requests posted successfully
|
|
1680
3152
|
*/
|
|
1681
|
-
201:
|
|
3153
|
+
201: CreateVaultsResponseDto;
|
|
1682
3154
|
};
|
|
1683
3155
|
|
|
1684
|
-
export type
|
|
1685
|
-
|
|
3156
|
+
export type VaultsControllerCreateVaults1Response =
|
|
3157
|
+
VaultsControllerCreateVaults1Responses[keyof VaultsControllerCreateVaults1Responses];
|
|
1686
3158
|
|
|
1687
|
-
export type
|
|
1688
|
-
body
|
|
1689
|
-
path
|
|
3159
|
+
export type WebhooksControllerGetMany0V1Data = {
|
|
3160
|
+
body?: never;
|
|
3161
|
+
path: {
|
|
3162
|
+
org_id: number;
|
|
3163
|
+
};
|
|
1690
3164
|
query?: never;
|
|
1691
|
-
url: "/
|
|
3165
|
+
url: "/v1/org/{org_id}/webhooks";
|
|
1692
3166
|
};
|
|
1693
3167
|
|
|
1694
|
-
export type
|
|
3168
|
+
export type WebhooksControllerGetMany0V1Errors = {
|
|
1695
3169
|
401: unknown;
|
|
1696
3170
|
403: unknown;
|
|
1697
3171
|
};
|
|
1698
3172
|
|
|
1699
|
-
export type
|
|
1700
|
-
|
|
1701
|
-
* Missions update transaction queued successfully
|
|
1702
|
-
*/
|
|
1703
|
-
200: UpdateMissionsResponseDto;
|
|
3173
|
+
export type WebhooksControllerGetMany0V1Responses = {
|
|
3174
|
+
200: GetWebhooksResponse;
|
|
1704
3175
|
};
|
|
1705
3176
|
|
|
1706
|
-
export type
|
|
1707
|
-
|
|
3177
|
+
export type WebhooksControllerGetMany0V1Response =
|
|
3178
|
+
WebhooksControllerGetMany0V1Responses[keyof WebhooksControllerGetMany0V1Responses];
|
|
1708
3179
|
|
|
1709
|
-
export type
|
|
1710
|
-
body:
|
|
1711
|
-
path
|
|
3180
|
+
export type WebhooksControllerCreate0V1Data = {
|
|
3181
|
+
body: CreateWebhookBody;
|
|
3182
|
+
path: {
|
|
3183
|
+
org_id: number;
|
|
3184
|
+
};
|
|
1712
3185
|
query?: never;
|
|
1713
|
-
url: "/
|
|
3186
|
+
url: "/v1/org/{org_id}/webhooks";
|
|
1714
3187
|
};
|
|
1715
3188
|
|
|
1716
|
-
export type
|
|
3189
|
+
export type WebhooksControllerCreate0V1Errors = {
|
|
1717
3190
|
401: unknown;
|
|
1718
3191
|
403: unknown;
|
|
1719
3192
|
};
|
|
1720
3193
|
|
|
1721
|
-
export type
|
|
1722
|
-
|
|
1723
|
-
* Mission repricing queued successfully
|
|
1724
|
-
*/
|
|
1725
|
-
200: RepriceMissionsResponseDto;
|
|
3194
|
+
export type WebhooksControllerCreate0V1Responses = {
|
|
3195
|
+
201: CreateWebhookResponse;
|
|
1726
3196
|
};
|
|
1727
3197
|
|
|
1728
|
-
export type
|
|
1729
|
-
|
|
3198
|
+
export type WebhooksControllerCreate0V1Response =
|
|
3199
|
+
WebhooksControllerCreate0V1Responses[keyof WebhooksControllerCreate0V1Responses];
|
|
1730
3200
|
|
|
1731
|
-
export type
|
|
1732
|
-
body
|
|
1733
|
-
path
|
|
3201
|
+
export type WebhooksControllerGetMany1Data = {
|
|
3202
|
+
body?: never;
|
|
3203
|
+
path: {
|
|
3204
|
+
org_id: number;
|
|
3205
|
+
};
|
|
1734
3206
|
query?: never;
|
|
1735
|
-
url: "/
|
|
3207
|
+
url: "/org/{org_id}/webhooks";
|
|
1736
3208
|
};
|
|
1737
3209
|
|
|
1738
|
-
export type
|
|
3210
|
+
export type WebhooksControllerGetMany1Errors = {
|
|
1739
3211
|
401: unknown;
|
|
1740
3212
|
403: unknown;
|
|
1741
3213
|
};
|
|
1742
3214
|
|
|
1743
|
-
export type
|
|
1744
|
-
|
|
3215
|
+
export type WebhooksControllerGetMany1Responses = {
|
|
3216
|
+
200: GetWebhooksResponse;
|
|
1745
3217
|
};
|
|
1746
3218
|
|
|
1747
|
-
export type
|
|
1748
|
-
|
|
1749
|
-
|
|
3219
|
+
export type WebhooksControllerGetMany1Response =
|
|
3220
|
+
WebhooksControllerGetMany1Responses[keyof WebhooksControllerGetMany1Responses];
|
|
3221
|
+
|
|
3222
|
+
export type WebhooksControllerCreate1Data = {
|
|
3223
|
+
body: CreateWebhookBody;
|
|
3224
|
+
path: {
|
|
3225
|
+
org_id: number;
|
|
3226
|
+
};
|
|
1750
3227
|
query?: never;
|
|
1751
|
-
url: "/
|
|
3228
|
+
url: "/org/{org_id}/webhooks";
|
|
1752
3229
|
};
|
|
1753
3230
|
|
|
1754
|
-
export type
|
|
3231
|
+
export type WebhooksControllerCreate1Errors = {
|
|
1755
3232
|
401: unknown;
|
|
1756
3233
|
403: unknown;
|
|
1757
3234
|
};
|
|
1758
3235
|
|
|
1759
|
-
export type
|
|
1760
|
-
201:
|
|
3236
|
+
export type WebhooksControllerCreate1Responses = {
|
|
3237
|
+
201: CreateWebhookResponse;
|
|
1761
3238
|
};
|
|
1762
3239
|
|
|
1763
|
-
export type
|
|
1764
|
-
|
|
1765
|
-
|
|
3240
|
+
export type WebhooksControllerCreate1Response =
|
|
3241
|
+
WebhooksControllerCreate1Responses[keyof WebhooksControllerCreate1Responses];
|
|
3242
|
+
|
|
3243
|
+
export type WebhooksControllerDelete0V1Data = {
|
|
3244
|
+
body?: never;
|
|
3245
|
+
path: {
|
|
3246
|
+
org_id: number;
|
|
3247
|
+
id: number;
|
|
3248
|
+
};
|
|
3249
|
+
query?: never;
|
|
3250
|
+
url: "/v1/org/{org_id}/webhooks/{id}";
|
|
3251
|
+
};
|
|
3252
|
+
|
|
3253
|
+
export type WebhooksControllerDelete0V1Errors = {
|
|
3254
|
+
401: unknown;
|
|
3255
|
+
403: unknown;
|
|
3256
|
+
};
|
|
3257
|
+
|
|
3258
|
+
export type WebhooksControllerDelete0V1Responses = {
|
|
3259
|
+
200: DeleteWebhookResponse;
|
|
3260
|
+
};
|
|
3261
|
+
|
|
3262
|
+
export type WebhooksControllerDelete0V1Response =
|
|
3263
|
+
WebhooksControllerDelete0V1Responses[keyof WebhooksControllerDelete0V1Responses];
|
|
3264
|
+
|
|
3265
|
+
export type WebhooksControllerGet0V1Data = {
|
|
3266
|
+
body?: never;
|
|
3267
|
+
path: {
|
|
3268
|
+
org_id: number;
|
|
3269
|
+
id: number;
|
|
3270
|
+
};
|
|
1766
3271
|
query?: never;
|
|
1767
|
-
url: "/
|
|
3272
|
+
url: "/v1/org/{org_id}/webhooks/{id}";
|
|
1768
3273
|
};
|
|
1769
3274
|
|
|
1770
|
-
export type
|
|
3275
|
+
export type WebhooksControllerGet0V1Errors = {
|
|
1771
3276
|
401: unknown;
|
|
1772
3277
|
403: unknown;
|
|
1773
3278
|
};
|
|
1774
3279
|
|
|
1775
|
-
export type
|
|
1776
|
-
|
|
3280
|
+
export type WebhooksControllerGet0V1Responses = {
|
|
3281
|
+
200: GetWebhookResponse;
|
|
1777
3282
|
};
|
|
1778
3283
|
|
|
1779
|
-
export type
|
|
1780
|
-
|
|
3284
|
+
export type WebhooksControllerGet0V1Response =
|
|
3285
|
+
WebhooksControllerGet0V1Responses[keyof WebhooksControllerGet0V1Responses];
|
|
3286
|
+
|
|
3287
|
+
export type WebhooksControllerUpdate0V1Data = {
|
|
3288
|
+
body: UpdateWebhookBody;
|
|
1781
3289
|
path: {
|
|
1782
|
-
|
|
3290
|
+
org_id: number;
|
|
3291
|
+
id: number;
|
|
1783
3292
|
};
|
|
1784
3293
|
query?: never;
|
|
1785
|
-
url: "/
|
|
3294
|
+
url: "/v1/org/{org_id}/webhooks/{id}";
|
|
1786
3295
|
};
|
|
1787
3296
|
|
|
1788
|
-
export type
|
|
3297
|
+
export type WebhooksControllerUpdate0V1Errors = {
|
|
1789
3298
|
401: unknown;
|
|
1790
3299
|
403: unknown;
|
|
1791
3300
|
};
|
|
1792
3301
|
|
|
1793
|
-
export type
|
|
1794
|
-
200:
|
|
1795
|
-
};
|
|
1796
|
-
|
|
1797
|
-
export type SchemaControllerGetEventSchemaData = {
|
|
1798
|
-
body?: never;
|
|
1799
|
-
path?: never;
|
|
1800
|
-
query?: never;
|
|
1801
|
-
url: "/schema/event";
|
|
3302
|
+
export type WebhooksControllerUpdate0V1Responses = {
|
|
3303
|
+
200: UpdateWebhookResponse;
|
|
1802
3304
|
};
|
|
1803
3305
|
|
|
1804
|
-
export type
|
|
1805
|
-
|
|
1806
|
-
* Get event schema
|
|
1807
|
-
*/
|
|
1808
|
-
200: unknown;
|
|
1809
|
-
};
|
|
3306
|
+
export type WebhooksControllerUpdate0V1Response =
|
|
3307
|
+
WebhooksControllerUpdate0V1Responses[keyof WebhooksControllerUpdate0V1Responses];
|
|
1810
3308
|
|
|
1811
|
-
export type
|
|
1812
|
-
body
|
|
1813
|
-
path
|
|
3309
|
+
export type WebhooksControllerDelete1Data = {
|
|
3310
|
+
body?: never;
|
|
3311
|
+
path: {
|
|
3312
|
+
org_id: number;
|
|
3313
|
+
id: number;
|
|
3314
|
+
};
|
|
1814
3315
|
query?: never;
|
|
1815
|
-
url: "/
|
|
3316
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1816
3317
|
};
|
|
1817
3318
|
|
|
1818
|
-
export type
|
|
1819
|
-
/**
|
|
1820
|
-
* Validation failed - invalid funder, amount, or contract address
|
|
1821
|
-
*/
|
|
1822
|
-
400: unknown;
|
|
3319
|
+
export type WebhooksControllerDelete1Errors = {
|
|
1823
3320
|
401: unknown;
|
|
1824
3321
|
403: unknown;
|
|
1825
|
-
/**
|
|
1826
|
-
* Internal server error during vault request creation
|
|
1827
|
-
*/
|
|
1828
|
-
500: unknown;
|
|
1829
3322
|
};
|
|
1830
3323
|
|
|
1831
|
-
export type
|
|
1832
|
-
|
|
1833
|
-
* Vault requests posted successfully
|
|
1834
|
-
*/
|
|
1835
|
-
201: CreateVaultsResponseDto;
|
|
3324
|
+
export type WebhooksControllerDelete1Responses = {
|
|
3325
|
+
200: DeleteWebhookResponse;
|
|
1836
3326
|
};
|
|
1837
3327
|
|
|
1838
|
-
export type
|
|
1839
|
-
|
|
3328
|
+
export type WebhooksControllerDelete1Response =
|
|
3329
|
+
WebhooksControllerDelete1Responses[keyof WebhooksControllerDelete1Responses];
|
|
1840
3330
|
|
|
1841
|
-
export type
|
|
3331
|
+
export type WebhooksControllerGet1Data = {
|
|
1842
3332
|
body?: never;
|
|
1843
3333
|
path: {
|
|
1844
3334
|
org_id: number;
|
|
3335
|
+
id: number;
|
|
1845
3336
|
};
|
|
1846
3337
|
query?: never;
|
|
1847
|
-
url: "/org/{org_id}/webhooks";
|
|
3338
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1848
3339
|
};
|
|
1849
3340
|
|
|
1850
|
-
export type
|
|
3341
|
+
export type WebhooksControllerGet1Errors = {
|
|
1851
3342
|
401: unknown;
|
|
1852
3343
|
403: unknown;
|
|
1853
3344
|
};
|
|
1854
3345
|
|
|
1855
|
-
export type
|
|
1856
|
-
200:
|
|
3346
|
+
export type WebhooksControllerGet1Responses = {
|
|
3347
|
+
200: GetWebhookResponse;
|
|
1857
3348
|
};
|
|
1858
3349
|
|
|
1859
|
-
export type
|
|
1860
|
-
|
|
3350
|
+
export type WebhooksControllerGet1Response =
|
|
3351
|
+
WebhooksControllerGet1Responses[keyof WebhooksControllerGet1Responses];
|
|
1861
3352
|
|
|
1862
|
-
export type
|
|
1863
|
-
body:
|
|
3353
|
+
export type WebhooksControllerUpdate1Data = {
|
|
3354
|
+
body: UpdateWebhookBody;
|
|
1864
3355
|
path: {
|
|
1865
3356
|
org_id: number;
|
|
3357
|
+
id: number;
|
|
1866
3358
|
};
|
|
1867
3359
|
query?: never;
|
|
1868
|
-
url: "/org/{org_id}/webhooks";
|
|
3360
|
+
url: "/org/{org_id}/webhooks/{id}";
|
|
1869
3361
|
};
|
|
1870
3362
|
|
|
1871
|
-
export type
|
|
3363
|
+
export type WebhooksControllerUpdate1Errors = {
|
|
1872
3364
|
401: unknown;
|
|
1873
3365
|
403: unknown;
|
|
1874
3366
|
};
|
|
1875
3367
|
|
|
1876
|
-
export type
|
|
1877
|
-
|
|
3368
|
+
export type WebhooksControllerUpdate1Responses = {
|
|
3369
|
+
200: UpdateWebhookResponse;
|
|
1878
3370
|
};
|
|
1879
3371
|
|
|
1880
|
-
export type
|
|
1881
|
-
|
|
3372
|
+
export type WebhooksControllerUpdate1Response =
|
|
3373
|
+
WebhooksControllerUpdate1Responses[keyof WebhooksControllerUpdate1Responses];
|
|
1882
3374
|
|
|
1883
|
-
export type
|
|
1884
|
-
body
|
|
3375
|
+
export type WebhooksControllerRegenerateSecret0V1Data = {
|
|
3376
|
+
body: RegenerateWebhookSecretBody;
|
|
1885
3377
|
path: {
|
|
1886
3378
|
org_id: number;
|
|
1887
3379
|
id: number;
|
|
1888
3380
|
};
|
|
1889
3381
|
query?: never;
|
|
1890
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
3382
|
+
url: "/v1/org/{org_id}/webhooks/{id}/regenerate-secret";
|
|
1891
3383
|
};
|
|
1892
3384
|
|
|
1893
|
-
export type
|
|
3385
|
+
export type WebhooksControllerRegenerateSecret0V1Errors = {
|
|
1894
3386
|
401: unknown;
|
|
1895
3387
|
403: unknown;
|
|
1896
3388
|
};
|
|
1897
3389
|
|
|
1898
|
-
export type
|
|
1899
|
-
200:
|
|
3390
|
+
export type WebhooksControllerRegenerateSecret0V1Responses = {
|
|
3391
|
+
200: RegenerateWebhookSecretResponseDto;
|
|
1900
3392
|
};
|
|
1901
3393
|
|
|
1902
|
-
export type
|
|
1903
|
-
|
|
3394
|
+
export type WebhooksControllerRegenerateSecret0V1Response =
|
|
3395
|
+
WebhooksControllerRegenerateSecret0V1Responses[keyof WebhooksControllerRegenerateSecret0V1Responses];
|
|
1904
3396
|
|
|
1905
|
-
export type
|
|
1906
|
-
body
|
|
3397
|
+
export type WebhooksControllerRegenerateSecret1Data = {
|
|
3398
|
+
body: RegenerateWebhookSecretBody;
|
|
1907
3399
|
path: {
|
|
1908
3400
|
org_id: number;
|
|
1909
3401
|
id: number;
|
|
1910
3402
|
};
|
|
1911
3403
|
query?: never;
|
|
1912
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
3404
|
+
url: "/org/{org_id}/webhooks/{id}/regenerate-secret";
|
|
1913
3405
|
};
|
|
1914
3406
|
|
|
1915
|
-
export type
|
|
3407
|
+
export type WebhooksControllerRegenerateSecret1Errors = {
|
|
1916
3408
|
401: unknown;
|
|
1917
3409
|
403: unknown;
|
|
1918
3410
|
};
|
|
1919
3411
|
|
|
1920
|
-
export type
|
|
1921
|
-
200:
|
|
3412
|
+
export type WebhooksControllerRegenerateSecret1Responses = {
|
|
3413
|
+
200: RegenerateWebhookSecretResponseDto;
|
|
1922
3414
|
};
|
|
1923
3415
|
|
|
1924
|
-
export type
|
|
1925
|
-
|
|
3416
|
+
export type WebhooksControllerRegenerateSecret1Response =
|
|
3417
|
+
WebhooksControllerRegenerateSecret1Responses[keyof WebhooksControllerRegenerateSecret1Responses];
|
|
1926
3418
|
|
|
1927
|
-
export type
|
|
1928
|
-
body
|
|
3419
|
+
export type WebhooksControllerTest0V1Data = {
|
|
3420
|
+
body?: never;
|
|
1929
3421
|
path: {
|
|
1930
3422
|
org_id: number;
|
|
1931
3423
|
id: number;
|
|
1932
3424
|
};
|
|
1933
3425
|
query?: never;
|
|
1934
|
-
url: "/org/{org_id}/webhooks/{id}";
|
|
3426
|
+
url: "/v1/org/{org_id}/webhooks/{id}/test";
|
|
1935
3427
|
};
|
|
1936
3428
|
|
|
1937
|
-
export type
|
|
3429
|
+
export type WebhooksControllerTest0V1Errors = {
|
|
1938
3430
|
401: unknown;
|
|
1939
3431
|
403: unknown;
|
|
1940
3432
|
};
|
|
1941
3433
|
|
|
1942
|
-
export type
|
|
1943
|
-
200:
|
|
3434
|
+
export type WebhooksControllerTest0V1Responses = {
|
|
3435
|
+
200: TestWebhookResponse;
|
|
1944
3436
|
};
|
|
1945
3437
|
|
|
1946
|
-
export type
|
|
1947
|
-
|
|
3438
|
+
export type WebhooksControllerTest0V1Response =
|
|
3439
|
+
WebhooksControllerTest0V1Responses[keyof WebhooksControllerTest0V1Responses];
|
|
1948
3440
|
|
|
1949
|
-
export type
|
|
1950
|
-
body
|
|
3441
|
+
export type WebhooksControllerTest1Data = {
|
|
3442
|
+
body?: never;
|
|
1951
3443
|
path: {
|
|
1952
3444
|
org_id: number;
|
|
1953
3445
|
id: number;
|
|
1954
3446
|
};
|
|
1955
3447
|
query?: never;
|
|
1956
|
-
url: "/org/{org_id}/webhooks/{id}/
|
|
3448
|
+
url: "/org/{org_id}/webhooks/{id}/test";
|
|
1957
3449
|
};
|
|
1958
3450
|
|
|
1959
|
-
export type
|
|
3451
|
+
export type WebhooksControllerTest1Errors = {
|
|
1960
3452
|
401: unknown;
|
|
1961
3453
|
403: unknown;
|
|
1962
3454
|
};
|
|
1963
3455
|
|
|
1964
|
-
export type
|
|
1965
|
-
200:
|
|
3456
|
+
export type WebhooksControllerTest1Responses = {
|
|
3457
|
+
200: TestWebhookResponse;
|
|
1966
3458
|
};
|
|
1967
3459
|
|
|
1968
|
-
export type
|
|
1969
|
-
|
|
3460
|
+
export type WebhooksControllerTest1Response =
|
|
3461
|
+
WebhooksControllerTest1Responses[keyof WebhooksControllerTest1Responses];
|
|
1970
3462
|
|
|
1971
|
-
export type
|
|
3463
|
+
export type WebhooksControllerGetStatus0V1Data = {
|
|
1972
3464
|
body?: never;
|
|
1973
3465
|
path: {
|
|
1974
3466
|
org_id: number;
|
|
1975
3467
|
id: number;
|
|
1976
3468
|
};
|
|
1977
3469
|
query?: never;
|
|
1978
|
-
url: "/org/{org_id}/webhooks/{id}/
|
|
3470
|
+
url: "/v1/org/{org_id}/webhooks/{id}/status";
|
|
1979
3471
|
};
|
|
1980
3472
|
|
|
1981
|
-
export type
|
|
3473
|
+
export type WebhooksControllerGetStatus0V1Errors = {
|
|
1982
3474
|
401: unknown;
|
|
1983
3475
|
403: unknown;
|
|
1984
3476
|
};
|
|
1985
3477
|
|
|
1986
|
-
export type
|
|
1987
|
-
200:
|
|
3478
|
+
export type WebhooksControllerGetStatus0V1Responses = {
|
|
3479
|
+
200: GetWebhookStatusResponse;
|
|
1988
3480
|
};
|
|
1989
3481
|
|
|
1990
|
-
export type
|
|
1991
|
-
|
|
3482
|
+
export type WebhooksControllerGetStatus0V1Response =
|
|
3483
|
+
WebhooksControllerGetStatus0V1Responses[keyof WebhooksControllerGetStatus0V1Responses];
|
|
1992
3484
|
|
|
1993
|
-
export type
|
|
3485
|
+
export type WebhooksControllerGetStatus1Data = {
|
|
1994
3486
|
body?: never;
|
|
1995
3487
|
path: {
|
|
1996
3488
|
org_id: number;
|
|
@@ -2000,26 +3492,53 @@ export type WebhooksControllerGetStatusData = {
|
|
|
2000
3492
|
url: "/org/{org_id}/webhooks/{id}/status";
|
|
2001
3493
|
};
|
|
2002
3494
|
|
|
2003
|
-
export type
|
|
3495
|
+
export type WebhooksControllerGetStatus1Errors = {
|
|
2004
3496
|
401: unknown;
|
|
2005
3497
|
403: unknown;
|
|
2006
3498
|
};
|
|
2007
3499
|
|
|
2008
|
-
export type
|
|
3500
|
+
export type WebhooksControllerGetStatus1Responses = {
|
|
2009
3501
|
200: GetWebhookStatusResponse;
|
|
2010
3502
|
};
|
|
2011
3503
|
|
|
2012
|
-
export type
|
|
2013
|
-
|
|
3504
|
+
export type WebhooksControllerGetStatus1Response =
|
|
3505
|
+
WebhooksControllerGetStatus1Responses[keyof WebhooksControllerGetStatus1Responses];
|
|
3506
|
+
|
|
3507
|
+
export type ZonesControllerCreateZone0V1Data = {
|
|
3508
|
+
body: CreateZoneDto;
|
|
3509
|
+
path?: never;
|
|
3510
|
+
query?: never;
|
|
3511
|
+
url: "/v1/zones";
|
|
3512
|
+
};
|
|
3513
|
+
|
|
3514
|
+
export type ZonesControllerCreateZone0V1Errors = {
|
|
3515
|
+
/**
|
|
3516
|
+
* Invalid zone id (must be a valid level-9 H3 cell)
|
|
3517
|
+
*/
|
|
3518
|
+
400: unknown;
|
|
3519
|
+
401: unknown;
|
|
3520
|
+
403: unknown;
|
|
3521
|
+
/**
|
|
3522
|
+
* Zone already exists
|
|
3523
|
+
*/
|
|
3524
|
+
409: unknown;
|
|
3525
|
+
};
|
|
3526
|
+
|
|
3527
|
+
export type ZonesControllerCreateZone0V1Responses = {
|
|
3528
|
+
201: ZoneResponseDto;
|
|
3529
|
+
};
|
|
2014
3530
|
|
|
2015
|
-
export type
|
|
3531
|
+
export type ZonesControllerCreateZone0V1Response =
|
|
3532
|
+
ZonesControllerCreateZone0V1Responses[keyof ZonesControllerCreateZone0V1Responses];
|
|
3533
|
+
|
|
3534
|
+
export type ZonesControllerCreateZone1Data = {
|
|
2016
3535
|
body: CreateZoneDto;
|
|
2017
3536
|
path?: never;
|
|
2018
3537
|
query?: never;
|
|
2019
3538
|
url: "/zones";
|
|
2020
3539
|
};
|
|
2021
3540
|
|
|
2022
|
-
export type
|
|
3541
|
+
export type ZonesControllerCreateZone1Errors = {
|
|
2023
3542
|
/**
|
|
2024
3543
|
* Invalid zone id (must be a valid level-9 H3 cell)
|
|
2025
3544
|
*/
|
|
@@ -2032,14 +3551,67 @@ export type ZonesControllerCreateZoneErrors = {
|
|
|
2032
3551
|
409: unknown;
|
|
2033
3552
|
};
|
|
2034
3553
|
|
|
2035
|
-
export type
|
|
3554
|
+
export type ZonesControllerCreateZone1Responses = {
|
|
2036
3555
|
201: ZoneResponseDto;
|
|
2037
3556
|
};
|
|
2038
3557
|
|
|
2039
|
-
export type
|
|
2040
|
-
|
|
3558
|
+
export type ZonesControllerCreateZone1Response =
|
|
3559
|
+
ZonesControllerCreateZone1Responses[keyof ZonesControllerCreateZone1Responses];
|
|
3560
|
+
|
|
3561
|
+
export type ZonesControllerDeleteZone0V1Data = {
|
|
3562
|
+
body?: never;
|
|
3563
|
+
path: {
|
|
3564
|
+
id: string;
|
|
3565
|
+
};
|
|
3566
|
+
query?: never;
|
|
3567
|
+
url: "/v1/zones/{id}";
|
|
3568
|
+
};
|
|
3569
|
+
|
|
3570
|
+
export type ZonesControllerDeleteZone0V1Errors = {
|
|
3571
|
+
401: unknown;
|
|
3572
|
+
403: unknown;
|
|
3573
|
+
/**
|
|
3574
|
+
* Zone not found
|
|
3575
|
+
*/
|
|
3576
|
+
404: unknown;
|
|
3577
|
+
};
|
|
3578
|
+
|
|
3579
|
+
export type ZonesControllerDeleteZone0V1Responses = {
|
|
3580
|
+
/**
|
|
3581
|
+
* Zone deleted
|
|
3582
|
+
*/
|
|
3583
|
+
204: void;
|
|
3584
|
+
};
|
|
3585
|
+
|
|
3586
|
+
export type ZonesControllerDeleteZone0V1Response =
|
|
3587
|
+
ZonesControllerDeleteZone0V1Responses[keyof ZonesControllerDeleteZone0V1Responses];
|
|
3588
|
+
|
|
3589
|
+
export type ZonesControllerUpdateZone0V1Data = {
|
|
3590
|
+
body: UpdateZoneDto;
|
|
3591
|
+
path: {
|
|
3592
|
+
id: string;
|
|
3593
|
+
};
|
|
3594
|
+
query?: never;
|
|
3595
|
+
url: "/v1/zones/{id}";
|
|
3596
|
+
};
|
|
3597
|
+
|
|
3598
|
+
export type ZonesControllerUpdateZone0V1Errors = {
|
|
3599
|
+
401: unknown;
|
|
3600
|
+
403: unknown;
|
|
3601
|
+
/**
|
|
3602
|
+
* Zone not found
|
|
3603
|
+
*/
|
|
3604
|
+
404: unknown;
|
|
3605
|
+
};
|
|
3606
|
+
|
|
3607
|
+
export type ZonesControllerUpdateZone0V1Responses = {
|
|
3608
|
+
200: ZoneResponseDto;
|
|
3609
|
+
};
|
|
3610
|
+
|
|
3611
|
+
export type ZonesControllerUpdateZone0V1Response =
|
|
3612
|
+
ZonesControllerUpdateZone0V1Responses[keyof ZonesControllerUpdateZone0V1Responses];
|
|
2041
3613
|
|
|
2042
|
-
export type
|
|
3614
|
+
export type ZonesControllerDeleteZone1Data = {
|
|
2043
3615
|
body?: never;
|
|
2044
3616
|
path: {
|
|
2045
3617
|
id: string;
|
|
@@ -2048,7 +3620,7 @@ export type ZonesControllerDeleteZoneData = {
|
|
|
2048
3620
|
url: "/zones/{id}";
|
|
2049
3621
|
};
|
|
2050
3622
|
|
|
2051
|
-
export type
|
|
3623
|
+
export type ZonesControllerDeleteZone1Errors = {
|
|
2052
3624
|
401: unknown;
|
|
2053
3625
|
403: unknown;
|
|
2054
3626
|
/**
|
|
@@ -2057,17 +3629,17 @@ export type ZonesControllerDeleteZoneErrors = {
|
|
|
2057
3629
|
404: unknown;
|
|
2058
3630
|
};
|
|
2059
3631
|
|
|
2060
|
-
export type
|
|
3632
|
+
export type ZonesControllerDeleteZone1Responses = {
|
|
2061
3633
|
/**
|
|
2062
3634
|
* Zone deleted
|
|
2063
3635
|
*/
|
|
2064
3636
|
204: void;
|
|
2065
3637
|
};
|
|
2066
3638
|
|
|
2067
|
-
export type
|
|
2068
|
-
|
|
3639
|
+
export type ZonesControllerDeleteZone1Response =
|
|
3640
|
+
ZonesControllerDeleteZone1Responses[keyof ZonesControllerDeleteZone1Responses];
|
|
2069
3641
|
|
|
2070
|
-
export type
|
|
3642
|
+
export type ZonesControllerUpdateZone1Data = {
|
|
2071
3643
|
body: UpdateZoneDto;
|
|
2072
3644
|
path: {
|
|
2073
3645
|
id: string;
|
|
@@ -2076,7 +3648,7 @@ export type ZonesControllerUpdateZoneData = {
|
|
|
2076
3648
|
url: "/zones/{id}";
|
|
2077
3649
|
};
|
|
2078
3650
|
|
|
2079
|
-
export type
|
|
3651
|
+
export type ZonesControllerUpdateZone1Errors = {
|
|
2080
3652
|
401: unknown;
|
|
2081
3653
|
403: unknown;
|
|
2082
3654
|
/**
|
|
@@ -2085,49 +3657,97 @@ export type ZonesControllerUpdateZoneErrors = {
|
|
|
2085
3657
|
404: unknown;
|
|
2086
3658
|
};
|
|
2087
3659
|
|
|
2088
|
-
export type
|
|
3660
|
+
export type ZonesControllerUpdateZone1Responses = {
|
|
2089
3661
|
200: ZoneResponseDto;
|
|
2090
3662
|
};
|
|
2091
3663
|
|
|
2092
|
-
export type
|
|
2093
|
-
|
|
3664
|
+
export type ZonesControllerUpdateZone1Response =
|
|
3665
|
+
ZonesControllerUpdateZone1Responses[keyof ZonesControllerUpdateZone1Responses];
|
|
2094
3666
|
|
|
2095
|
-
export type
|
|
3667
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Data = {
|
|
2096
3668
|
body: SyncEventProcessorMissionsRequestDto;
|
|
2097
3669
|
path?: never;
|
|
2098
3670
|
query?: never;
|
|
2099
|
-
url: "/event-processor/missions/sync";
|
|
3671
|
+
url: "/v1/event-processor/missions/sync";
|
|
2100
3672
|
};
|
|
2101
3673
|
|
|
2102
|
-
export type
|
|
3674
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Errors = {
|
|
2103
3675
|
401: unknown;
|
|
2104
3676
|
403: unknown;
|
|
2105
3677
|
};
|
|
2106
3678
|
|
|
2107
|
-
export type
|
|
3679
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Responses = {
|
|
2108
3680
|
/**
|
|
2109
3681
|
* Per-mission success or failure.
|
|
2110
3682
|
*/
|
|
2111
3683
|
200: SyncEventProcessorMissionsResponseDto;
|
|
2112
3684
|
};
|
|
2113
3685
|
|
|
2114
|
-
export type
|
|
2115
|
-
|
|
3686
|
+
export type EventProcessorMissionsSyncControllerResyncMissions0V1Response =
|
|
3687
|
+
EventProcessorMissionsSyncControllerResyncMissions0V1Responses[keyof EventProcessorMissionsSyncControllerResyncMissions0V1Responses];
|
|
2116
3688
|
|
|
2117
|
-
export type
|
|
2118
|
-
body:
|
|
3689
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Data = {
|
|
3690
|
+
body: SyncEventProcessorMissionsRequestDto;
|
|
2119
3691
|
path?: never;
|
|
2120
3692
|
query?: never;
|
|
2121
|
-
url: "/event-processor/
|
|
3693
|
+
url: "/event-processor/missions/sync";
|
|
3694
|
+
};
|
|
3695
|
+
|
|
3696
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Errors = {
|
|
3697
|
+
401: unknown;
|
|
3698
|
+
403: unknown;
|
|
3699
|
+
};
|
|
3700
|
+
|
|
3701
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Responses = {
|
|
3702
|
+
/**
|
|
3703
|
+
* Per-mission success or failure.
|
|
3704
|
+
*/
|
|
3705
|
+
200: SyncEventProcessorMissionsResponseDto;
|
|
2122
3706
|
};
|
|
2123
3707
|
|
|
2124
|
-
export type
|
|
3708
|
+
export type EventProcessorMissionsSyncControllerResyncMissions1Response =
|
|
3709
|
+
EventProcessorMissionsSyncControllerResyncMissions1Responses[keyof EventProcessorMissionsSyncControllerResyncMissions1Responses];
|
|
3710
|
+
|
|
3711
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Data =
|
|
3712
|
+
{
|
|
3713
|
+
body: SyncEventProcessorFlightReviewsRequestDto;
|
|
3714
|
+
path?: never;
|
|
3715
|
+
query?: never;
|
|
3716
|
+
url: "/v1/event-processor/flightreviews";
|
|
3717
|
+
};
|
|
3718
|
+
|
|
3719
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Errors =
|
|
3720
|
+
{
|
|
3721
|
+
401: unknown;
|
|
3722
|
+
403: unknown;
|
|
3723
|
+
};
|
|
3724
|
+
|
|
3725
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses =
|
|
3726
|
+
{
|
|
3727
|
+
/**
|
|
3728
|
+
* Per-flight success or failure.
|
|
3729
|
+
*/
|
|
3730
|
+
200: SyncEventProcessorFlightReviewsResponseDto;
|
|
3731
|
+
};
|
|
3732
|
+
|
|
3733
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Response =
|
|
3734
|
+
EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses[keyof EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses];
|
|
3735
|
+
|
|
3736
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Data =
|
|
3737
|
+
{
|
|
3738
|
+
body: SyncEventProcessorFlightReviewsRequestDto;
|
|
3739
|
+
path?: never;
|
|
3740
|
+
query?: never;
|
|
3741
|
+
url: "/event-processor/flightreviews";
|
|
3742
|
+
};
|
|
3743
|
+
|
|
3744
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Errors =
|
|
2125
3745
|
{
|
|
2126
3746
|
401: unknown;
|
|
2127
3747
|
403: unknown;
|
|
2128
3748
|
};
|
|
2129
3749
|
|
|
2130
|
-
export type
|
|
3750
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses =
|
|
2131
3751
|
{
|
|
2132
3752
|
/**
|
|
2133
3753
|
* Per-flight success or failure.
|
|
@@ -2135,59 +3755,171 @@ export type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponse
|
|
|
2135
3755
|
200: SyncEventProcessorFlightReviewsResponseDto;
|
|
2136
3756
|
};
|
|
2137
3757
|
|
|
2138
|
-
export type
|
|
2139
|
-
|
|
3758
|
+
export type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Response =
|
|
3759
|
+
EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses[keyof EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses];
|
|
3760
|
+
|
|
3761
|
+
export type AlchemyControllerHandleWebhook0V1Data = {
|
|
3762
|
+
body: AlchemyWebhookBodyDto;
|
|
3763
|
+
path?: never;
|
|
3764
|
+
query?: never;
|
|
3765
|
+
url: "/v1/webhooks/inbound/alchemy";
|
|
3766
|
+
};
|
|
3767
|
+
|
|
3768
|
+
export type AlchemyControllerHandleWebhook0V1Responses = {
|
|
3769
|
+
200: unknown;
|
|
3770
|
+
};
|
|
2140
3771
|
|
|
2141
|
-
export type
|
|
3772
|
+
export type AlchemyControllerHandleWebhook1Data = {
|
|
2142
3773
|
body: AlchemyWebhookBodyDto;
|
|
2143
3774
|
path?: never;
|
|
2144
3775
|
query?: never;
|
|
2145
3776
|
url: "/webhooks/inbound/alchemy";
|
|
2146
3777
|
};
|
|
2147
3778
|
|
|
2148
|
-
export type
|
|
3779
|
+
export type AlchemyControllerHandleWebhook1Responses = {
|
|
2149
3780
|
200: unknown;
|
|
2150
3781
|
};
|
|
2151
3782
|
|
|
2152
|
-
export type
|
|
3783
|
+
export type InboundWebhookConfigsControllerGetMany0V1Data = {
|
|
3784
|
+
body?: never;
|
|
3785
|
+
path?: never;
|
|
3786
|
+
query?: never;
|
|
3787
|
+
url: "/v1/webhooks/inbound/configs";
|
|
3788
|
+
};
|
|
3789
|
+
|
|
3790
|
+
export type InboundWebhookConfigsControllerGetMany0V1Errors = {
|
|
3791
|
+
401: unknown;
|
|
3792
|
+
403: unknown;
|
|
3793
|
+
};
|
|
3794
|
+
|
|
3795
|
+
export type InboundWebhookConfigsControllerGetMany0V1Responses = {
|
|
3796
|
+
200: GetInboundWebhookConfigsResponse;
|
|
3797
|
+
};
|
|
3798
|
+
|
|
3799
|
+
export type InboundWebhookConfigsControllerGetMany0V1Response =
|
|
3800
|
+
InboundWebhookConfigsControllerGetMany0V1Responses[keyof InboundWebhookConfigsControllerGetMany0V1Responses];
|
|
3801
|
+
|
|
3802
|
+
export type InboundWebhookConfigsControllerCreate0V1Data = {
|
|
3803
|
+
body: CreateInboundWebhookConfigBody;
|
|
3804
|
+
path?: never;
|
|
3805
|
+
query?: never;
|
|
3806
|
+
url: "/v1/webhooks/inbound/configs";
|
|
3807
|
+
};
|
|
3808
|
+
|
|
3809
|
+
export type InboundWebhookConfigsControllerCreate0V1Errors = {
|
|
3810
|
+
401: unknown;
|
|
3811
|
+
403: unknown;
|
|
3812
|
+
};
|
|
3813
|
+
|
|
3814
|
+
export type InboundWebhookConfigsControllerCreate0V1Responses = {
|
|
3815
|
+
201: CreateInboundWebhookConfigResponse;
|
|
3816
|
+
};
|
|
3817
|
+
|
|
3818
|
+
export type InboundWebhookConfigsControllerCreate0V1Response =
|
|
3819
|
+
InboundWebhookConfigsControllerCreate0V1Responses[keyof InboundWebhookConfigsControllerCreate0V1Responses];
|
|
3820
|
+
|
|
3821
|
+
export type InboundWebhookConfigsControllerGetMany1Data = {
|
|
2153
3822
|
body?: never;
|
|
2154
3823
|
path?: never;
|
|
2155
3824
|
query?: never;
|
|
2156
3825
|
url: "/webhooks/inbound/configs";
|
|
2157
3826
|
};
|
|
2158
3827
|
|
|
2159
|
-
export type
|
|
3828
|
+
export type InboundWebhookConfigsControllerGetMany1Errors = {
|
|
2160
3829
|
401: unknown;
|
|
2161
3830
|
403: unknown;
|
|
2162
3831
|
};
|
|
2163
3832
|
|
|
2164
|
-
export type
|
|
3833
|
+
export type InboundWebhookConfigsControllerGetMany1Responses = {
|
|
2165
3834
|
200: GetInboundWebhookConfigsResponse;
|
|
2166
3835
|
};
|
|
2167
3836
|
|
|
2168
|
-
export type
|
|
2169
|
-
|
|
3837
|
+
export type InboundWebhookConfigsControllerGetMany1Response =
|
|
3838
|
+
InboundWebhookConfigsControllerGetMany1Responses[keyof InboundWebhookConfigsControllerGetMany1Responses];
|
|
2170
3839
|
|
|
2171
|
-
export type
|
|
3840
|
+
export type InboundWebhookConfigsControllerCreate1Data = {
|
|
2172
3841
|
body: CreateInboundWebhookConfigBody;
|
|
2173
3842
|
path?: never;
|
|
2174
3843
|
query?: never;
|
|
2175
3844
|
url: "/webhooks/inbound/configs";
|
|
2176
3845
|
};
|
|
2177
3846
|
|
|
2178
|
-
export type
|
|
3847
|
+
export type InboundWebhookConfigsControllerCreate1Errors = {
|
|
2179
3848
|
401: unknown;
|
|
2180
3849
|
403: unknown;
|
|
2181
3850
|
};
|
|
2182
3851
|
|
|
2183
|
-
export type
|
|
3852
|
+
export type InboundWebhookConfigsControllerCreate1Responses = {
|
|
2184
3853
|
201: CreateInboundWebhookConfigResponse;
|
|
2185
3854
|
};
|
|
2186
3855
|
|
|
2187
|
-
export type
|
|
2188
|
-
|
|
3856
|
+
export type InboundWebhookConfigsControllerCreate1Response =
|
|
3857
|
+
InboundWebhookConfigsControllerCreate1Responses[keyof InboundWebhookConfigsControllerCreate1Responses];
|
|
3858
|
+
|
|
3859
|
+
export type InboundWebhookConfigsControllerDelete0V1Data = {
|
|
3860
|
+
body?: never;
|
|
3861
|
+
path: {
|
|
3862
|
+
id: number;
|
|
3863
|
+
};
|
|
3864
|
+
query?: never;
|
|
3865
|
+
url: "/v1/webhooks/inbound/configs/{id}";
|
|
3866
|
+
};
|
|
3867
|
+
|
|
3868
|
+
export type InboundWebhookConfigsControllerDelete0V1Errors = {
|
|
3869
|
+
401: unknown;
|
|
3870
|
+
403: unknown;
|
|
3871
|
+
};
|
|
3872
|
+
|
|
3873
|
+
export type InboundWebhookConfigsControllerDelete0V1Responses = {
|
|
3874
|
+
200: DeleteInboundWebhookConfigResponse;
|
|
3875
|
+
};
|
|
3876
|
+
|
|
3877
|
+
export type InboundWebhookConfigsControllerDelete0V1Response =
|
|
3878
|
+
InboundWebhookConfigsControllerDelete0V1Responses[keyof InboundWebhookConfigsControllerDelete0V1Responses];
|
|
3879
|
+
|
|
3880
|
+
export type InboundWebhookConfigsControllerGet0V1Data = {
|
|
3881
|
+
body?: never;
|
|
3882
|
+
path: {
|
|
3883
|
+
id: number;
|
|
3884
|
+
};
|
|
3885
|
+
query?: never;
|
|
3886
|
+
url: "/v1/webhooks/inbound/configs/{id}";
|
|
3887
|
+
};
|
|
3888
|
+
|
|
3889
|
+
export type InboundWebhookConfigsControllerGet0V1Errors = {
|
|
3890
|
+
401: unknown;
|
|
3891
|
+
403: unknown;
|
|
3892
|
+
};
|
|
3893
|
+
|
|
3894
|
+
export type InboundWebhookConfigsControllerGet0V1Responses = {
|
|
3895
|
+
200: GetInboundWebhookConfigResponse;
|
|
3896
|
+
};
|
|
3897
|
+
|
|
3898
|
+
export type InboundWebhookConfigsControllerGet0V1Response =
|
|
3899
|
+
InboundWebhookConfigsControllerGet0V1Responses[keyof InboundWebhookConfigsControllerGet0V1Responses];
|
|
3900
|
+
|
|
3901
|
+
export type InboundWebhookConfigsControllerUpdate0V1Data = {
|
|
3902
|
+
body: UpdateInboundWebhookConfigBody;
|
|
3903
|
+
path: {
|
|
3904
|
+
id: number;
|
|
3905
|
+
};
|
|
3906
|
+
query?: never;
|
|
3907
|
+
url: "/v1/webhooks/inbound/configs/{id}";
|
|
3908
|
+
};
|
|
3909
|
+
|
|
3910
|
+
export type InboundWebhookConfigsControllerUpdate0V1Errors = {
|
|
3911
|
+
401: unknown;
|
|
3912
|
+
403: unknown;
|
|
3913
|
+
};
|
|
3914
|
+
|
|
3915
|
+
export type InboundWebhookConfigsControllerUpdate0V1Responses = {
|
|
3916
|
+
200: UpdateInboundWebhookConfigResponse;
|
|
3917
|
+
};
|
|
3918
|
+
|
|
3919
|
+
export type InboundWebhookConfigsControllerUpdate0V1Response =
|
|
3920
|
+
InboundWebhookConfigsControllerUpdate0V1Responses[keyof InboundWebhookConfigsControllerUpdate0V1Responses];
|
|
2189
3921
|
|
|
2190
|
-
export type
|
|
3922
|
+
export type InboundWebhookConfigsControllerDelete1Data = {
|
|
2191
3923
|
body?: never;
|
|
2192
3924
|
path: {
|
|
2193
3925
|
id: number;
|
|
@@ -2196,19 +3928,19 @@ export type InboundWebhookConfigsControllerDeleteData = {
|
|
|
2196
3928
|
url: "/webhooks/inbound/configs/{id}";
|
|
2197
3929
|
};
|
|
2198
3930
|
|
|
2199
|
-
export type
|
|
3931
|
+
export type InboundWebhookConfigsControllerDelete1Errors = {
|
|
2200
3932
|
401: unknown;
|
|
2201
3933
|
403: unknown;
|
|
2202
3934
|
};
|
|
2203
3935
|
|
|
2204
|
-
export type
|
|
3936
|
+
export type InboundWebhookConfigsControllerDelete1Responses = {
|
|
2205
3937
|
200: DeleteInboundWebhookConfigResponse;
|
|
2206
3938
|
};
|
|
2207
3939
|
|
|
2208
|
-
export type
|
|
2209
|
-
|
|
3940
|
+
export type InboundWebhookConfigsControllerDelete1Response =
|
|
3941
|
+
InboundWebhookConfigsControllerDelete1Responses[keyof InboundWebhookConfigsControllerDelete1Responses];
|
|
2210
3942
|
|
|
2211
|
-
export type
|
|
3943
|
+
export type InboundWebhookConfigsControllerGet1Data = {
|
|
2212
3944
|
body?: never;
|
|
2213
3945
|
path: {
|
|
2214
3946
|
id: number;
|
|
@@ -2217,19 +3949,19 @@ export type InboundWebhookConfigsControllerGetData = {
|
|
|
2217
3949
|
url: "/webhooks/inbound/configs/{id}";
|
|
2218
3950
|
};
|
|
2219
3951
|
|
|
2220
|
-
export type
|
|
3952
|
+
export type InboundWebhookConfigsControllerGet1Errors = {
|
|
2221
3953
|
401: unknown;
|
|
2222
3954
|
403: unknown;
|
|
2223
3955
|
};
|
|
2224
3956
|
|
|
2225
|
-
export type
|
|
3957
|
+
export type InboundWebhookConfigsControllerGet1Responses = {
|
|
2226
3958
|
200: GetInboundWebhookConfigResponse;
|
|
2227
3959
|
};
|
|
2228
3960
|
|
|
2229
|
-
export type
|
|
2230
|
-
|
|
3961
|
+
export type InboundWebhookConfigsControllerGet1Response =
|
|
3962
|
+
InboundWebhookConfigsControllerGet1Responses[keyof InboundWebhookConfigsControllerGet1Responses];
|
|
2231
3963
|
|
|
2232
|
-
export type
|
|
3964
|
+
export type InboundWebhookConfigsControllerUpdate1Data = {
|
|
2233
3965
|
body: UpdateInboundWebhookConfigBody;
|
|
2234
3966
|
path: {
|
|
2235
3967
|
id: number;
|
|
@@ -2238,17 +3970,17 @@ export type InboundWebhookConfigsControllerUpdateData = {
|
|
|
2238
3970
|
url: "/webhooks/inbound/configs/{id}";
|
|
2239
3971
|
};
|
|
2240
3972
|
|
|
2241
|
-
export type
|
|
3973
|
+
export type InboundWebhookConfigsControllerUpdate1Errors = {
|
|
2242
3974
|
401: unknown;
|
|
2243
3975
|
403: unknown;
|
|
2244
3976
|
};
|
|
2245
3977
|
|
|
2246
|
-
export type
|
|
3978
|
+
export type InboundWebhookConfigsControllerUpdate1Responses = {
|
|
2247
3979
|
200: UpdateInboundWebhookConfigResponse;
|
|
2248
3980
|
};
|
|
2249
3981
|
|
|
2250
|
-
export type
|
|
2251
|
-
|
|
3982
|
+
export type InboundWebhookConfigsControllerUpdate1Response =
|
|
3983
|
+
InboundWebhookConfigsControllerUpdate1Responses[keyof InboundWebhookConfigsControllerUpdate1Responses];
|
|
2252
3984
|
|
|
2253
3985
|
export type ClientOptions = {
|
|
2254
3986
|
baseUrl: string;
|