@volant-autonomy/via-sdk 1.3993.1 → 1.4001.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/composite.d.ts +2 -2
- package/dist/direct.d.ts +11 -11
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/volant-schema.d.ts +370 -42
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -981,7 +981,24 @@ export interface components {
|
|
|
981
981
|
state: components["schemas"]["AirspaceConstraintStateBusiness"];
|
|
982
982
|
};
|
|
983
983
|
/** AirspaceConstraintResponse */
|
|
984
|
-
AirspaceConstraintResponse: {
|
|
984
|
+
"AirspaceConstraintResponse-Input": {
|
|
985
|
+
/**
|
|
986
|
+
* Airspace Constraint ID
|
|
987
|
+
* Format: uuid
|
|
988
|
+
* @description Unique identifier of the Airspace Constraint.
|
|
989
|
+
*/
|
|
990
|
+
id: string;
|
|
991
|
+
/**
|
|
992
|
+
* Type
|
|
993
|
+
* @default airspace_constraint
|
|
994
|
+
* @constant
|
|
995
|
+
*/
|
|
996
|
+
type?: "airspace_constraint";
|
|
997
|
+
meta: components["schemas"]["AirspaceConstraintMeta"];
|
|
998
|
+
attributes: components["schemas"]["AirspaceConstraint-Input"];
|
|
999
|
+
};
|
|
1000
|
+
/** AirspaceConstraintResponse */
|
|
1001
|
+
"AirspaceConstraintResponse-Output": {
|
|
985
1002
|
/**
|
|
986
1003
|
* Airspace Constraint ID
|
|
987
1004
|
* Format: uuid
|
|
@@ -1142,7 +1159,23 @@ export interface components {
|
|
|
1142
1159
|
altitude_lower: number;
|
|
1143
1160
|
};
|
|
1144
1161
|
/** AtypicalAirspaceResponse */
|
|
1145
|
-
AtypicalAirspaceResponse: {
|
|
1162
|
+
"AtypicalAirspaceResponse-Input": {
|
|
1163
|
+
/**
|
|
1164
|
+
* Atypical Airspace ID
|
|
1165
|
+
* Format: uuid
|
|
1166
|
+
* @description Unique identifier of the atypical airspace.
|
|
1167
|
+
*/
|
|
1168
|
+
id: string;
|
|
1169
|
+
/**
|
|
1170
|
+
* Type
|
|
1171
|
+
* @default atypical_airspace
|
|
1172
|
+
* @constant
|
|
1173
|
+
*/
|
|
1174
|
+
type?: "atypical_airspace";
|
|
1175
|
+
attributes: components["schemas"]["AtypicalAirspace-Input"];
|
|
1176
|
+
};
|
|
1177
|
+
/** AtypicalAirspaceResponse */
|
|
1178
|
+
"AtypicalAirspaceResponse-Output": {
|
|
1146
1179
|
/**
|
|
1147
1180
|
* Atypical Airspace ID
|
|
1148
1181
|
* Format: uuid
|
|
@@ -1257,7 +1290,20 @@ export interface components {
|
|
|
1257
1290
|
geotiff: string;
|
|
1258
1291
|
};
|
|
1259
1292
|
/** ChartAttributes */
|
|
1260
|
-
ChartAttributes: {
|
|
1293
|
+
"ChartAttributes-Input": {
|
|
1294
|
+
aoi_bounding: components["schemas"]["AoiBounding"];
|
|
1295
|
+
/**
|
|
1296
|
+
* Bounding Polygon
|
|
1297
|
+
* @description List of WGS84 coordinates that defines the corners of the Chart
|
|
1298
|
+
*/
|
|
1299
|
+
bounding_polygon: components["schemas"]["Wgs84Point"][];
|
|
1300
|
+
data_sources: components["schemas"]["DataSources"];
|
|
1301
|
+
/** Managed Cost Datasets */
|
|
1302
|
+
managed_cost_datasets: components["schemas"]["ManagedCostDatasetMetadata"][];
|
|
1303
|
+
georeference: components["schemas"]["Georeference"];
|
|
1304
|
+
};
|
|
1305
|
+
/** ChartAttributes */
|
|
1306
|
+
"ChartAttributes-Output": {
|
|
1261
1307
|
aoi_bounding: components["schemas"]["AoiBounding"];
|
|
1262
1308
|
/**
|
|
1263
1309
|
* Bounding Polygon
|
|
@@ -1270,7 +1316,7 @@ export interface components {
|
|
|
1270
1316
|
georeference: components["schemas"]["Georeference"];
|
|
1271
1317
|
};
|
|
1272
1318
|
/** ChartResponse */
|
|
1273
|
-
ChartResponse: {
|
|
1319
|
+
"ChartResponse-Input": {
|
|
1274
1320
|
/** Id */
|
|
1275
1321
|
id: string;
|
|
1276
1322
|
/**
|
|
@@ -1279,7 +1325,19 @@ export interface components {
|
|
|
1279
1325
|
* @constant
|
|
1280
1326
|
*/
|
|
1281
1327
|
type?: "chart";
|
|
1282
|
-
attributes: components["schemas"]["ChartAttributes"];
|
|
1328
|
+
attributes: components["schemas"]["ChartAttributes-Input"];
|
|
1329
|
+
};
|
|
1330
|
+
/** ChartResponse */
|
|
1331
|
+
"ChartResponse-Output": {
|
|
1332
|
+
/** Id */
|
|
1333
|
+
id: string;
|
|
1334
|
+
/**
|
|
1335
|
+
* Type
|
|
1336
|
+
* @default chart
|
|
1337
|
+
* @constant
|
|
1338
|
+
*/
|
|
1339
|
+
type?: "chart";
|
|
1340
|
+
attributes: components["schemas"]["ChartAttributes-Output"];
|
|
1283
1341
|
};
|
|
1284
1342
|
/**
|
|
1285
1343
|
* ContainmentRequirements
|
|
@@ -1349,7 +1407,23 @@ export interface components {
|
|
|
1349
1407
|
/** ControlledGroundAreaProperties */
|
|
1350
1408
|
ControlledGroundAreaProperties: Record<string, never>;
|
|
1351
1409
|
/** ControlledGroundAreaResponse */
|
|
1352
|
-
ControlledGroundAreaResponse: {
|
|
1410
|
+
"ControlledGroundAreaResponse-Input": {
|
|
1411
|
+
/**
|
|
1412
|
+
* Controlled Ground Area ID
|
|
1413
|
+
* Format: uuid
|
|
1414
|
+
* @description Unique identifier of the controlled ground area.
|
|
1415
|
+
*/
|
|
1416
|
+
id: string;
|
|
1417
|
+
/**
|
|
1418
|
+
* Type
|
|
1419
|
+
* @default controlled_ground_area
|
|
1420
|
+
* @constant
|
|
1421
|
+
*/
|
|
1422
|
+
type?: "controlled_ground_area";
|
|
1423
|
+
attributes: components["schemas"]["ControlledGroundArea-Input"];
|
|
1424
|
+
};
|
|
1425
|
+
/** ControlledGroundAreaResponse */
|
|
1426
|
+
"ControlledGroundAreaResponse-Output": {
|
|
1353
1427
|
/**
|
|
1354
1428
|
* Controlled Ground Area ID
|
|
1355
1429
|
* Format: uuid
|
|
@@ -1365,7 +1439,18 @@ export interface components {
|
|
|
1365
1439
|
attributes: components["schemas"]["ControlledGroundArea-Output"];
|
|
1366
1440
|
};
|
|
1367
1441
|
/** CostDatasetAttributes */
|
|
1368
|
-
CostDatasetAttributes: {
|
|
1442
|
+
"CostDatasetAttributes-Input": {
|
|
1443
|
+
/**
|
|
1444
|
+
* Chart ID
|
|
1445
|
+
* @description Unique identifier for a chart.
|
|
1446
|
+
*/
|
|
1447
|
+
chart_id: string;
|
|
1448
|
+
georeference: components["schemas"]["Georeference"];
|
|
1449
|
+
/** Bands */
|
|
1450
|
+
bands: components["schemas"]["CostDatasetRasterBand"][];
|
|
1451
|
+
};
|
|
1452
|
+
/** CostDatasetAttributes */
|
|
1453
|
+
"CostDatasetAttributes-Output": {
|
|
1369
1454
|
/**
|
|
1370
1455
|
* Chart ID
|
|
1371
1456
|
* @description Unique identifier for a chart.
|
|
@@ -1380,7 +1465,7 @@ export interface components {
|
|
|
1380
1465
|
valid_time_range: components["schemas"]["RasterValidityTime"];
|
|
1381
1466
|
};
|
|
1382
1467
|
/** CostDatasetResponse */
|
|
1383
|
-
CostDatasetResponse: {
|
|
1468
|
+
"CostDatasetResponse-Input": {
|
|
1384
1469
|
/**
|
|
1385
1470
|
* Cost Dataset ID
|
|
1386
1471
|
* Format: uuid
|
|
@@ -1398,7 +1483,28 @@ export interface components {
|
|
|
1398
1483
|
* @constant
|
|
1399
1484
|
*/
|
|
1400
1485
|
type?: "cost_dataset";
|
|
1401
|
-
attributes: components["schemas"]["CostDatasetAttributes"];
|
|
1486
|
+
attributes: components["schemas"]["CostDatasetAttributes-Input"];
|
|
1487
|
+
};
|
|
1488
|
+
/** CostDatasetResponse */
|
|
1489
|
+
"CostDatasetResponse-Output": {
|
|
1490
|
+
/**
|
|
1491
|
+
* Cost Dataset ID
|
|
1492
|
+
* Format: uuid
|
|
1493
|
+
* @description Unique identifier of the cost dataset.
|
|
1494
|
+
*/
|
|
1495
|
+
id: string;
|
|
1496
|
+
/**
|
|
1497
|
+
* Cost Dataset Name
|
|
1498
|
+
* @description A custom name for the cost dataset, it can have a maximum length of 255 characters, contain symbols and spacing, and importantly cannot be renamed afterwards.
|
|
1499
|
+
*/
|
|
1500
|
+
name: string;
|
|
1501
|
+
/**
|
|
1502
|
+
* Type
|
|
1503
|
+
* @default cost_dataset
|
|
1504
|
+
* @constant
|
|
1505
|
+
*/
|
|
1506
|
+
type?: "cost_dataset";
|
|
1507
|
+
attributes: components["schemas"]["CostDatasetAttributes-Output"];
|
|
1402
1508
|
};
|
|
1403
1509
|
/**
|
|
1404
1510
|
* DataSources
|
|
@@ -1553,7 +1659,27 @@ export interface components {
|
|
|
1553
1659
|
* FlightplanResponse
|
|
1554
1660
|
* @description Flightplan Resource.
|
|
1555
1661
|
*/
|
|
1556
|
-
FlightplanResponse: {
|
|
1662
|
+
"FlightplanResponse-Input": {
|
|
1663
|
+
/**
|
|
1664
|
+
* Flightplan ID
|
|
1665
|
+
* Format: uuid
|
|
1666
|
+
* @description Unique identifier of the flightplan.
|
|
1667
|
+
*/
|
|
1668
|
+
id: string;
|
|
1669
|
+
/**
|
|
1670
|
+
* Type
|
|
1671
|
+
* @default flightplan
|
|
1672
|
+
* @constant
|
|
1673
|
+
*/
|
|
1674
|
+
type?: "flightplan";
|
|
1675
|
+
meta: components["schemas"]["FlightplanMeta"];
|
|
1676
|
+
attributes: components["schemas"]["Flightplan-Input"];
|
|
1677
|
+
};
|
|
1678
|
+
/**
|
|
1679
|
+
* FlightplanResponse
|
|
1680
|
+
* @description Flightplan Resource.
|
|
1681
|
+
*/
|
|
1682
|
+
"FlightplanResponse-Output": {
|
|
1557
1683
|
/**
|
|
1558
1684
|
* Flightplan ID
|
|
1559
1685
|
* Format: uuid
|
|
@@ -1570,7 +1696,17 @@ export interface components {
|
|
|
1570
1696
|
attributes: components["schemas"]["Flightplan-Output"];
|
|
1571
1697
|
};
|
|
1572
1698
|
/** GeoJsonCollection[SemanticModelProperties] */
|
|
1573
|
-
GeoJsonCollection_SemanticModelProperties_: {
|
|
1699
|
+
"GeoJsonCollection_SemanticModelProperties_-Input": {
|
|
1700
|
+
/**
|
|
1701
|
+
* Type
|
|
1702
|
+
* @constant
|
|
1703
|
+
*/
|
|
1704
|
+
type: "FeatureCollection";
|
|
1705
|
+
/** Features */
|
|
1706
|
+
features: (components["schemas"]["GeoJsonPolygonFeature_SemanticModelProperties_"] | components["schemas"]["GeoJsonMultiPolygonFeature_SemanticModelProperties_"])[];
|
|
1707
|
+
};
|
|
1708
|
+
/** GeoJsonCollection[SemanticModelProperties] */
|
|
1709
|
+
"GeoJsonCollection_SemanticModelProperties_-Output": {
|
|
1574
1710
|
/**
|
|
1575
1711
|
* Type
|
|
1576
1712
|
* @constant
|
|
@@ -1696,7 +1832,23 @@ export interface components {
|
|
|
1696
1832
|
/** GeocageProperties */
|
|
1697
1833
|
GeocageProperties: Record<string, never>;
|
|
1698
1834
|
/** GeocageResponse */
|
|
1699
|
-
GeocageResponse: {
|
|
1835
|
+
"GeocageResponse-Input": {
|
|
1836
|
+
/**
|
|
1837
|
+
* Geocage ID
|
|
1838
|
+
* Format: uuid
|
|
1839
|
+
* @description Unique identifier of the geocage.
|
|
1840
|
+
*/
|
|
1841
|
+
id: string;
|
|
1842
|
+
/**
|
|
1843
|
+
* Type
|
|
1844
|
+
* @default geocage
|
|
1845
|
+
* @constant
|
|
1846
|
+
*/
|
|
1847
|
+
type?: "geocage";
|
|
1848
|
+
attributes: components["schemas"]["Geocage-Input"];
|
|
1849
|
+
};
|
|
1850
|
+
/** GeocageResponse */
|
|
1851
|
+
"GeocageResponse-Output": {
|
|
1700
1852
|
/**
|
|
1701
1853
|
* Geocage ID
|
|
1702
1854
|
* Format: uuid
|
|
@@ -1818,7 +1970,43 @@ export interface components {
|
|
|
1818
1970
|
wind_parameters?: components["schemas"]["WindParameters"];
|
|
1819
1971
|
};
|
|
1820
1972
|
/** GotoWaypointDetail */
|
|
1821
|
-
GotoWaypointDetail: {
|
|
1973
|
+
"GotoWaypointDetail-Input": {
|
|
1974
|
+
/**
|
|
1975
|
+
* Type
|
|
1976
|
+
* @description The type of a `Waypoint`
|
|
1977
|
+
*
|
|
1978
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1979
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1980
|
+
*
|
|
1981
|
+
* @constant
|
|
1982
|
+
*/
|
|
1983
|
+
type: "goto";
|
|
1984
|
+
position: components["schemas"]["Wgs84Position"];
|
|
1985
|
+
flight_parameters: components["schemas"]["FlightParameters"];
|
|
1986
|
+
wind_parameters?: components["schemas"]["WindParameters"];
|
|
1987
|
+
/**
|
|
1988
|
+
* Waypoint ID
|
|
1989
|
+
* Format: uuid
|
|
1990
|
+
* @description Unique identifier of the waypoint.
|
|
1991
|
+
* @default {
|
|
1992
|
+
* "strict": false
|
|
1993
|
+
* }
|
|
1994
|
+
*/
|
|
1995
|
+
id?: string;
|
|
1996
|
+
/**
|
|
1997
|
+
* Index
|
|
1998
|
+
* @description The position of the waypoint in the flightplan
|
|
1999
|
+
*/
|
|
2000
|
+
index: number;
|
|
2001
|
+
/**
|
|
2002
|
+
* Time
|
|
2003
|
+
* Format: date-time
|
|
2004
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2005
|
+
*/
|
|
2006
|
+
time: string;
|
|
2007
|
+
};
|
|
2008
|
+
/** GotoWaypointDetail */
|
|
2009
|
+
"GotoWaypointDetail-Output": {
|
|
1822
2010
|
/**
|
|
1823
2011
|
* Type
|
|
1824
2012
|
* @description The type of a `Waypoint`
|
|
@@ -2042,12 +2230,12 @@ export interface components {
|
|
|
2042
2230
|
/** JsonApiListResponse[JsonApiResponse[VolumeResponse]] */
|
|
2043
2231
|
JsonApiListResponse_JsonApiResponse_VolumeResponse__: {
|
|
2044
2232
|
/** Data */
|
|
2045
|
-
data: components["schemas"]["JsonApiResponse_VolumeResponse_"][];
|
|
2233
|
+
data: components["schemas"]["JsonApiResponse_VolumeResponse_-Output"][];
|
|
2046
2234
|
links: components["schemas"]["Links"];
|
|
2047
2235
|
};
|
|
2048
2236
|
/** JsonApiResponse[AirspaceConstraintResponse] */
|
|
2049
2237
|
JsonApiResponse_AirspaceConstraintResponse_: {
|
|
2050
|
-
data: components["schemas"]["AirspaceConstraintResponse"];
|
|
2238
|
+
data: components["schemas"]["AirspaceConstraintResponse-Output"];
|
|
2051
2239
|
links: components["schemas"]["Links"];
|
|
2052
2240
|
};
|
|
2053
2241
|
/** JsonApiResponse[ArcResponse] */
|
|
@@ -2057,37 +2245,37 @@ export interface components {
|
|
|
2057
2245
|
};
|
|
2058
2246
|
/** JsonApiResponse[AtypicalAirspaceResponse] */
|
|
2059
2247
|
JsonApiResponse_AtypicalAirspaceResponse_: {
|
|
2060
|
-
data: components["schemas"]["AtypicalAirspaceResponse"];
|
|
2248
|
+
data: components["schemas"]["AtypicalAirspaceResponse-Output"];
|
|
2061
2249
|
links: components["schemas"]["Links"];
|
|
2062
2250
|
};
|
|
2063
2251
|
/** JsonApiResponse[ChartResponse] */
|
|
2064
2252
|
JsonApiResponse_ChartResponse_: {
|
|
2065
|
-
data: components["schemas"]["ChartResponse"];
|
|
2253
|
+
data: components["schemas"]["ChartResponse-Output"];
|
|
2066
2254
|
links: components["schemas"]["Links"];
|
|
2067
2255
|
};
|
|
2068
2256
|
/** JsonApiResponse[ControlledGroundAreaResponse] */
|
|
2069
2257
|
JsonApiResponse_ControlledGroundAreaResponse_: {
|
|
2070
|
-
data: components["schemas"]["ControlledGroundAreaResponse"];
|
|
2258
|
+
data: components["schemas"]["ControlledGroundAreaResponse-Output"];
|
|
2071
2259
|
links: components["schemas"]["Links"];
|
|
2072
2260
|
};
|
|
2073
2261
|
/** JsonApiResponse[CostDatasetResponse] */
|
|
2074
2262
|
JsonApiResponse_CostDatasetResponse_: {
|
|
2075
|
-
data: components["schemas"]["CostDatasetResponse"];
|
|
2263
|
+
data: components["schemas"]["CostDatasetResponse-Output"];
|
|
2076
2264
|
links: components["schemas"]["Links"];
|
|
2077
2265
|
};
|
|
2078
2266
|
/** JsonApiResponse[FlightplanResponse] */
|
|
2079
2267
|
JsonApiResponse_FlightplanResponse_: {
|
|
2080
|
-
data: components["schemas"]["FlightplanResponse"];
|
|
2268
|
+
data: components["schemas"]["FlightplanResponse-Output"];
|
|
2081
2269
|
links: components["schemas"]["Links"];
|
|
2082
2270
|
};
|
|
2083
2271
|
/** JsonApiResponse[GeoJsonCollection[SemanticModelProperties]] */
|
|
2084
2272
|
JsonApiResponse_GeoJsonCollection_SemanticModelProperties__: {
|
|
2085
|
-
data: components["schemas"]["GeoJsonCollection_SemanticModelProperties_"];
|
|
2273
|
+
data: components["schemas"]["GeoJsonCollection_SemanticModelProperties_-Output"];
|
|
2086
2274
|
links: components["schemas"]["Links"];
|
|
2087
2275
|
};
|
|
2088
2276
|
/** JsonApiResponse[GeocageResponse] */
|
|
2089
2277
|
JsonApiResponse_GeocageResponse_: {
|
|
2090
|
-
data: components["schemas"]["GeocageResponse"];
|
|
2278
|
+
data: components["schemas"]["GeocageResponse-Output"];
|
|
2091
2279
|
links: components["schemas"]["Links"];
|
|
2092
2280
|
};
|
|
2093
2281
|
/** JsonApiResponse[JarusV25ResidualArcResponse] */
|
|
@@ -2097,12 +2285,12 @@ export interface components {
|
|
|
2097
2285
|
};
|
|
2098
2286
|
/** JsonApiResponse[PathingTaskResponse] */
|
|
2099
2287
|
JsonApiResponse_PathingTaskResponse_: {
|
|
2100
|
-
data: components["schemas"]["PathingTaskResponse"];
|
|
2288
|
+
data: components["schemas"]["PathingTaskResponse-Output"];
|
|
2101
2289
|
links: components["schemas"]["Links"];
|
|
2102
2290
|
};
|
|
2103
2291
|
/** JsonApiResponse[RasterResponse] */
|
|
2104
2292
|
JsonApiResponse_RasterResponse_: {
|
|
2105
|
-
data: components["schemas"]["RasterResponse"];
|
|
2293
|
+
data: components["schemas"]["RasterResponse-Output"];
|
|
2106
2294
|
links: components["schemas"]["Links"];
|
|
2107
2295
|
};
|
|
2108
2296
|
/** JsonApiResponse[SailResponse] */
|
|
@@ -2112,12 +2300,12 @@ export interface components {
|
|
|
2112
2300
|
};
|
|
2113
2301
|
/** JsonApiResponse[SoraClassificationResponse] */
|
|
2114
2302
|
JsonApiResponse_SoraClassificationResponse_: {
|
|
2115
|
-
data: components["schemas"]["SoraClassificationResponse"];
|
|
2303
|
+
data: components["schemas"]["SoraClassificationResponse-Output"];
|
|
2116
2304
|
links: components["schemas"]["Links"];
|
|
2117
2305
|
};
|
|
2118
2306
|
/** JsonApiResponse[SoraReportResponse] */
|
|
2119
2307
|
JsonApiResponse_SoraReportResponse_: {
|
|
2120
|
-
data: components["schemas"]["SoraReportResponse"];
|
|
2308
|
+
data: components["schemas"]["SoraReportResponse-Output"];
|
|
2121
2309
|
links: components["schemas"]["Links"];
|
|
2122
2310
|
};
|
|
2123
2311
|
/** JsonApiResponse[StatisticsResponse] */
|
|
@@ -2142,17 +2330,22 @@ export interface components {
|
|
|
2142
2330
|
};
|
|
2143
2331
|
/** JsonApiResponse[UkSoraReportResponse] */
|
|
2144
2332
|
JsonApiResponse_UkSoraReportResponse_: {
|
|
2145
|
-
data: components["schemas"]["UkSoraReportResponse"];
|
|
2333
|
+
data: components["schemas"]["UkSoraReportResponse-Output"];
|
|
2146
2334
|
links: components["schemas"]["Links"];
|
|
2147
2335
|
};
|
|
2148
2336
|
/** JsonApiResponse[VolumeResponse] */
|
|
2149
|
-
JsonApiResponse_VolumeResponse_: {
|
|
2150
|
-
data: components["schemas"]["VolumeResponse"];
|
|
2337
|
+
"JsonApiResponse_VolumeResponse_-Input": {
|
|
2338
|
+
data: components["schemas"]["VolumeResponse-Input"];
|
|
2339
|
+
links: components["schemas"]["Links"];
|
|
2340
|
+
};
|
|
2341
|
+
/** JsonApiResponse[VolumeResponse] */
|
|
2342
|
+
"JsonApiResponse_VolumeResponse_-Output": {
|
|
2343
|
+
data: components["schemas"]["VolumeResponse-Output"];
|
|
2151
2344
|
links: components["schemas"]["Links"];
|
|
2152
2345
|
};
|
|
2153
2346
|
/** JsonApiResponse[WaypointDetailResponse] */
|
|
2154
2347
|
JsonApiResponse_WaypointDetailResponse_: {
|
|
2155
|
-
data: components["schemas"]["WaypointDetailResponse"];
|
|
2348
|
+
data: components["schemas"]["WaypointDetailResponse-Output"];
|
|
2156
2349
|
links: components["schemas"]["Links"];
|
|
2157
2350
|
};
|
|
2158
2351
|
/**
|
|
@@ -2280,7 +2473,27 @@ export interface components {
|
|
|
2280
2473
|
deconflict?: boolean;
|
|
2281
2474
|
};
|
|
2282
2475
|
/** PathingTaskAttributes */
|
|
2283
|
-
PathingTaskAttributes: {
|
|
2476
|
+
"PathingTaskAttributes-Input": {
|
|
2477
|
+
/**
|
|
2478
|
+
* Waypoints
|
|
2479
|
+
* @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
|
|
2480
|
+
*/
|
|
2481
|
+
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
|
|
2482
|
+
/**
|
|
2483
|
+
* Time Start
|
|
2484
|
+
* Format: date-time
|
|
2485
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2486
|
+
*/
|
|
2487
|
+
time_start: string;
|
|
2488
|
+
/**
|
|
2489
|
+
* Time End
|
|
2490
|
+
* Format: date-time
|
|
2491
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2492
|
+
*/
|
|
2493
|
+
time_end: string;
|
|
2494
|
+
};
|
|
2495
|
+
/** PathingTaskAttributes */
|
|
2496
|
+
"PathingTaskAttributes-Output": {
|
|
2284
2497
|
/**
|
|
2285
2498
|
* Waypoints
|
|
2286
2499
|
* @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
|
|
@@ -2404,7 +2617,7 @@ export interface components {
|
|
|
2404
2617
|
* @description Standard response for pathing task GET endpoint. The attributes with waypoints are included in the response if the
|
|
2405
2618
|
* state is "successful".
|
|
2406
2619
|
*/
|
|
2407
|
-
PathingTaskResponse: {
|
|
2620
|
+
"PathingTaskResponse-Input": {
|
|
2408
2621
|
/**
|
|
2409
2622
|
* Pathing Task ID
|
|
2410
2623
|
* Format: uuid
|
|
@@ -2417,7 +2630,28 @@ export interface components {
|
|
|
2417
2630
|
* @constant
|
|
2418
2631
|
*/
|
|
2419
2632
|
type?: "pathing_task";
|
|
2420
|
-
attributes?: components["schemas"]["PathingTaskAttributes"] | null;
|
|
2633
|
+
attributes?: components["schemas"]["PathingTaskAttributes-Input"] | null;
|
|
2634
|
+
meta: components["schemas"]["PathingTaskMeta"];
|
|
2635
|
+
};
|
|
2636
|
+
/**
|
|
2637
|
+
* PathingTaskResponse
|
|
2638
|
+
* @description Standard response for pathing task GET endpoint. The attributes with waypoints are included in the response if the
|
|
2639
|
+
* state is "successful".
|
|
2640
|
+
*/
|
|
2641
|
+
"PathingTaskResponse-Output": {
|
|
2642
|
+
/**
|
|
2643
|
+
* Pathing Task ID
|
|
2644
|
+
* Format: uuid
|
|
2645
|
+
* @description Unique identifier of the pathing task
|
|
2646
|
+
*/
|
|
2647
|
+
id: string;
|
|
2648
|
+
/**
|
|
2649
|
+
* Type
|
|
2650
|
+
* @default pathing_task
|
|
2651
|
+
* @constant
|
|
2652
|
+
*/
|
|
2653
|
+
type?: "pathing_task";
|
|
2654
|
+
attributes?: components["schemas"]["PathingTaskAttributes-Output"] | null;
|
|
2421
2655
|
meta: components["schemas"]["PathingTaskMeta"];
|
|
2422
2656
|
};
|
|
2423
2657
|
/**
|
|
@@ -2479,7 +2713,17 @@ export interface components {
|
|
|
2479
2713
|
invert?: boolean;
|
|
2480
2714
|
};
|
|
2481
2715
|
/** RasterResponse */
|
|
2482
|
-
RasterResponse: {
|
|
2716
|
+
"RasterResponse-Input": {
|
|
2717
|
+
/**
|
|
2718
|
+
* Type
|
|
2719
|
+
* @default flight_pattern
|
|
2720
|
+
* @constant
|
|
2721
|
+
*/
|
|
2722
|
+
type?: "flight_pattern";
|
|
2723
|
+
attributes: components["schemas"]["Raster"];
|
|
2724
|
+
};
|
|
2725
|
+
/** RasterResponse */
|
|
2726
|
+
"RasterResponse-Output": {
|
|
2483
2727
|
/**
|
|
2484
2728
|
* Type
|
|
2485
2729
|
* @default flight_pattern
|
|
@@ -2532,7 +2776,24 @@ export interface components {
|
|
|
2532
2776
|
name: "Flight Geography" | "Contingency Buffer" | "Ground Risk Buffer" | "Adjacent Area";
|
|
2533
2777
|
};
|
|
2534
2778
|
/** SoraClassificationResponse */
|
|
2535
|
-
SoraClassificationResponse: {
|
|
2779
|
+
"SoraClassificationResponse-Input": {
|
|
2780
|
+
/**
|
|
2781
|
+
* SORA Classification ID
|
|
2782
|
+
* Format: uuid
|
|
2783
|
+
* @description A unique identifier representing a specific set of SORA parameters
|
|
2784
|
+
*/
|
|
2785
|
+
id: string;
|
|
2786
|
+
/**
|
|
2787
|
+
* Type
|
|
2788
|
+
* @default sora_classification
|
|
2789
|
+
* @constant
|
|
2790
|
+
*/
|
|
2791
|
+
type?: "sora_classification";
|
|
2792
|
+
/** Attributes */
|
|
2793
|
+
attributes: components["schemas"]["JarusV25SoraClassification-Input"] | components["schemas"]["UkSoraClassification-Input"];
|
|
2794
|
+
};
|
|
2795
|
+
/** SoraClassificationResponse */
|
|
2796
|
+
"SoraClassificationResponse-Output": {
|
|
2536
2797
|
/**
|
|
2537
2798
|
* SORA Classification ID
|
|
2538
2799
|
* Format: uuid
|
|
@@ -2617,7 +2878,17 @@ export interface components {
|
|
|
2617
2878
|
atypical_airspace_id?: string | null;
|
|
2618
2879
|
};
|
|
2619
2880
|
/** SoraReportResponse */
|
|
2620
|
-
SoraReportResponse: {
|
|
2881
|
+
"SoraReportResponse-Input": {
|
|
2882
|
+
attributes: components["schemas"]["SoraReportAttributes"];
|
|
2883
|
+
/**
|
|
2884
|
+
* Type
|
|
2885
|
+
* @default sora_report
|
|
2886
|
+
* @constant
|
|
2887
|
+
*/
|
|
2888
|
+
type?: "sora_report";
|
|
2889
|
+
};
|
|
2890
|
+
/** SoraReportResponse */
|
|
2891
|
+
"SoraReportResponse-Output": {
|
|
2621
2892
|
attributes: components["schemas"]["SoraReportAttributes"];
|
|
2622
2893
|
/**
|
|
2623
2894
|
* Type
|
|
@@ -3120,7 +3391,17 @@ export interface components {
|
|
|
3120
3391
|
atypical_airspace_id?: string | null;
|
|
3121
3392
|
};
|
|
3122
3393
|
/** UkSoraReportResponse */
|
|
3123
|
-
UkSoraReportResponse: {
|
|
3394
|
+
"UkSoraReportResponse-Input": {
|
|
3395
|
+
attributes: components["schemas"]["UkSoraReportAttributes"];
|
|
3396
|
+
/**
|
|
3397
|
+
* Type
|
|
3398
|
+
* @default sora_report
|
|
3399
|
+
* @constant
|
|
3400
|
+
*/
|
|
3401
|
+
type?: "sora_report";
|
|
3402
|
+
};
|
|
3403
|
+
/** UkSoraReportResponse */
|
|
3404
|
+
"UkSoraReportResponse-Output": {
|
|
3124
3405
|
attributes: components["schemas"]["UkSoraReportAttributes"];
|
|
3125
3406
|
/**
|
|
3126
3407
|
* Type
|
|
@@ -3226,7 +3507,27 @@ export interface components {
|
|
|
3226
3507
|
* VolumeResponse
|
|
3227
3508
|
* @description Contiguous block of geographic space-time.
|
|
3228
3509
|
*/
|
|
3229
|
-
VolumeResponse: {
|
|
3510
|
+
"VolumeResponse-Input": {
|
|
3511
|
+
/**
|
|
3512
|
+
* Volume ID
|
|
3513
|
+
* Format: uuid
|
|
3514
|
+
* @description Unique Identifier for a volume
|
|
3515
|
+
*/
|
|
3516
|
+
id: string;
|
|
3517
|
+
/**
|
|
3518
|
+
* Type
|
|
3519
|
+
* @default volumes
|
|
3520
|
+
* @constant
|
|
3521
|
+
*/
|
|
3522
|
+
type?: "volumes";
|
|
3523
|
+
attributes: components["schemas"]["Volume4D-Input"];
|
|
3524
|
+
meta: components["schemas"]["VolumeMeta"];
|
|
3525
|
+
};
|
|
3526
|
+
/**
|
|
3527
|
+
* VolumeResponse
|
|
3528
|
+
* @description Contiguous block of geographic space-time.
|
|
3529
|
+
*/
|
|
3530
|
+
"VolumeResponse-Output": {
|
|
3230
3531
|
/**
|
|
3231
3532
|
* Volume ID
|
|
3232
3533
|
* Format: uuid
|
|
@@ -3254,18 +3555,45 @@ export interface components {
|
|
|
3254
3555
|
maximum_length?: number | null;
|
|
3255
3556
|
};
|
|
3256
3557
|
/** WaypointDetailAttributes */
|
|
3257
|
-
WaypointDetailAttributes: {
|
|
3558
|
+
"WaypointDetailAttributes-Input": {
|
|
3559
|
+
/**
|
|
3560
|
+
* Waypoints
|
|
3561
|
+
* @description Detailed points defining a Flightplan that must be passed through along with flight parameters, including additional calculated fields.
|
|
3562
|
+
*/
|
|
3563
|
+
waypoints: (components["schemas"]["StartWaypointDetail"] | components["schemas"]["GotoWaypointDetail-Input"])[];
|
|
3564
|
+
};
|
|
3565
|
+
/** WaypointDetailAttributes */
|
|
3566
|
+
"WaypointDetailAttributes-Output": {
|
|
3258
3567
|
/**
|
|
3259
3568
|
* Waypoints
|
|
3260
3569
|
* @description Detailed points defining a Flightplan that must be passed through along with flight parameters, including additional calculated fields.
|
|
3261
3570
|
*/
|
|
3262
|
-
waypoints: (components["schemas"]["StartWaypointDetail"] | components["schemas"]["GotoWaypointDetail"])[];
|
|
3571
|
+
waypoints: (components["schemas"]["StartWaypointDetail"] | components["schemas"]["GotoWaypointDetail-Output"])[];
|
|
3572
|
+
};
|
|
3573
|
+
/**
|
|
3574
|
+
* WaypointDetailResponse
|
|
3575
|
+
* @description Detailed Waypoints for a Flightplan.
|
|
3576
|
+
*/
|
|
3577
|
+
"WaypointDetailResponse-Input": {
|
|
3578
|
+
/**
|
|
3579
|
+
* Flightplan ID
|
|
3580
|
+
* Format: uuid
|
|
3581
|
+
* @description Unique identifier of the flightplan.
|
|
3582
|
+
*/
|
|
3583
|
+
id: string;
|
|
3584
|
+
/**
|
|
3585
|
+
* Type
|
|
3586
|
+
* @default waypoint_detail
|
|
3587
|
+
* @constant
|
|
3588
|
+
*/
|
|
3589
|
+
type?: "waypoint_detail";
|
|
3590
|
+
attributes: components["schemas"]["WaypointDetailAttributes-Input"];
|
|
3263
3591
|
};
|
|
3264
3592
|
/**
|
|
3265
3593
|
* WaypointDetailResponse
|
|
3266
3594
|
* @description Detailed Waypoints for a Flightplan.
|
|
3267
3595
|
*/
|
|
3268
|
-
WaypointDetailResponse: {
|
|
3596
|
+
"WaypointDetailResponse-Output": {
|
|
3269
3597
|
/**
|
|
3270
3598
|
* Flightplan ID
|
|
3271
3599
|
* Format: uuid
|
|
@@ -3278,7 +3606,7 @@ export interface components {
|
|
|
3278
3606
|
* @constant
|
|
3279
3607
|
*/
|
|
3280
3608
|
type?: "waypoint_detail";
|
|
3281
|
-
attributes: components["schemas"]["WaypointDetailAttributes"];
|
|
3609
|
+
attributes: components["schemas"]["WaypointDetailAttributes-Output"];
|
|
3282
3610
|
};
|
|
3283
3611
|
/**
|
|
3284
3612
|
* Wgs84Point
|