@volant-autonomy/via-sdk 1.3993.1 → 1.4002.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 +385 -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,48 @@ 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
|
+
* Above Mean Sea Level (AMSL) Altitude
|
|
2009
|
+
* @description Altitude above mean sea level (AMSL), expressed in meters. This value is derived by combining the input altitude (specified above ground level (AGL)) with the terrain elevation from the selected elevation dataset.
|
|
2010
|
+
*/
|
|
2011
|
+
altitude_amsl: number;
|
|
2012
|
+
};
|
|
2013
|
+
/** GotoWaypointDetail */
|
|
2014
|
+
"GotoWaypointDetail-Output": {
|
|
1822
2015
|
/**
|
|
1823
2016
|
* Type
|
|
1824
2017
|
* @description The type of a `Waypoint`
|
|
@@ -1852,6 +2045,11 @@ export interface components {
|
|
|
1852
2045
|
* @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'.
|
|
1853
2046
|
*/
|
|
1854
2047
|
time: string;
|
|
2048
|
+
/**
|
|
2049
|
+
* Above Mean Sea Level (AMSL) Altitude
|
|
2050
|
+
* @description Altitude above mean sea level (AMSL), expressed in meters. This value is derived by combining the input altitude (specified above ground level (AGL)) with the terrain elevation from the selected elevation dataset.
|
|
2051
|
+
*/
|
|
2052
|
+
altitude_amsl: number;
|
|
1855
2053
|
};
|
|
1856
2054
|
/** HTTPValidationError */
|
|
1857
2055
|
HTTPValidationError: {
|
|
@@ -2042,12 +2240,12 @@ export interface components {
|
|
|
2042
2240
|
/** JsonApiListResponse[JsonApiResponse[VolumeResponse]] */
|
|
2043
2241
|
JsonApiListResponse_JsonApiResponse_VolumeResponse__: {
|
|
2044
2242
|
/** Data */
|
|
2045
|
-
data: components["schemas"]["JsonApiResponse_VolumeResponse_"][];
|
|
2243
|
+
data: components["schemas"]["JsonApiResponse_VolumeResponse_-Output"][];
|
|
2046
2244
|
links: components["schemas"]["Links"];
|
|
2047
2245
|
};
|
|
2048
2246
|
/** JsonApiResponse[AirspaceConstraintResponse] */
|
|
2049
2247
|
JsonApiResponse_AirspaceConstraintResponse_: {
|
|
2050
|
-
data: components["schemas"]["AirspaceConstraintResponse"];
|
|
2248
|
+
data: components["schemas"]["AirspaceConstraintResponse-Output"];
|
|
2051
2249
|
links: components["schemas"]["Links"];
|
|
2052
2250
|
};
|
|
2053
2251
|
/** JsonApiResponse[ArcResponse] */
|
|
@@ -2057,37 +2255,37 @@ export interface components {
|
|
|
2057
2255
|
};
|
|
2058
2256
|
/** JsonApiResponse[AtypicalAirspaceResponse] */
|
|
2059
2257
|
JsonApiResponse_AtypicalAirspaceResponse_: {
|
|
2060
|
-
data: components["schemas"]["AtypicalAirspaceResponse"];
|
|
2258
|
+
data: components["schemas"]["AtypicalAirspaceResponse-Output"];
|
|
2061
2259
|
links: components["schemas"]["Links"];
|
|
2062
2260
|
};
|
|
2063
2261
|
/** JsonApiResponse[ChartResponse] */
|
|
2064
2262
|
JsonApiResponse_ChartResponse_: {
|
|
2065
|
-
data: components["schemas"]["ChartResponse"];
|
|
2263
|
+
data: components["schemas"]["ChartResponse-Output"];
|
|
2066
2264
|
links: components["schemas"]["Links"];
|
|
2067
2265
|
};
|
|
2068
2266
|
/** JsonApiResponse[ControlledGroundAreaResponse] */
|
|
2069
2267
|
JsonApiResponse_ControlledGroundAreaResponse_: {
|
|
2070
|
-
data: components["schemas"]["ControlledGroundAreaResponse"];
|
|
2268
|
+
data: components["schemas"]["ControlledGroundAreaResponse-Output"];
|
|
2071
2269
|
links: components["schemas"]["Links"];
|
|
2072
2270
|
};
|
|
2073
2271
|
/** JsonApiResponse[CostDatasetResponse] */
|
|
2074
2272
|
JsonApiResponse_CostDatasetResponse_: {
|
|
2075
|
-
data: components["schemas"]["CostDatasetResponse"];
|
|
2273
|
+
data: components["schemas"]["CostDatasetResponse-Output"];
|
|
2076
2274
|
links: components["schemas"]["Links"];
|
|
2077
2275
|
};
|
|
2078
2276
|
/** JsonApiResponse[FlightplanResponse] */
|
|
2079
2277
|
JsonApiResponse_FlightplanResponse_: {
|
|
2080
|
-
data: components["schemas"]["FlightplanResponse"];
|
|
2278
|
+
data: components["schemas"]["FlightplanResponse-Output"];
|
|
2081
2279
|
links: components["schemas"]["Links"];
|
|
2082
2280
|
};
|
|
2083
2281
|
/** JsonApiResponse[GeoJsonCollection[SemanticModelProperties]] */
|
|
2084
2282
|
JsonApiResponse_GeoJsonCollection_SemanticModelProperties__: {
|
|
2085
|
-
data: components["schemas"]["GeoJsonCollection_SemanticModelProperties_"];
|
|
2283
|
+
data: components["schemas"]["GeoJsonCollection_SemanticModelProperties_-Output"];
|
|
2086
2284
|
links: components["schemas"]["Links"];
|
|
2087
2285
|
};
|
|
2088
2286
|
/** JsonApiResponse[GeocageResponse] */
|
|
2089
2287
|
JsonApiResponse_GeocageResponse_: {
|
|
2090
|
-
data: components["schemas"]["GeocageResponse"];
|
|
2288
|
+
data: components["schemas"]["GeocageResponse-Output"];
|
|
2091
2289
|
links: components["schemas"]["Links"];
|
|
2092
2290
|
};
|
|
2093
2291
|
/** JsonApiResponse[JarusV25ResidualArcResponse] */
|
|
@@ -2097,12 +2295,12 @@ export interface components {
|
|
|
2097
2295
|
};
|
|
2098
2296
|
/** JsonApiResponse[PathingTaskResponse] */
|
|
2099
2297
|
JsonApiResponse_PathingTaskResponse_: {
|
|
2100
|
-
data: components["schemas"]["PathingTaskResponse"];
|
|
2298
|
+
data: components["schemas"]["PathingTaskResponse-Output"];
|
|
2101
2299
|
links: components["schemas"]["Links"];
|
|
2102
2300
|
};
|
|
2103
2301
|
/** JsonApiResponse[RasterResponse] */
|
|
2104
2302
|
JsonApiResponse_RasterResponse_: {
|
|
2105
|
-
data: components["schemas"]["RasterResponse"];
|
|
2303
|
+
data: components["schemas"]["RasterResponse-Output"];
|
|
2106
2304
|
links: components["schemas"]["Links"];
|
|
2107
2305
|
};
|
|
2108
2306
|
/** JsonApiResponse[SailResponse] */
|
|
@@ -2112,12 +2310,12 @@ export interface components {
|
|
|
2112
2310
|
};
|
|
2113
2311
|
/** JsonApiResponse[SoraClassificationResponse] */
|
|
2114
2312
|
JsonApiResponse_SoraClassificationResponse_: {
|
|
2115
|
-
data: components["schemas"]["SoraClassificationResponse"];
|
|
2313
|
+
data: components["schemas"]["SoraClassificationResponse-Output"];
|
|
2116
2314
|
links: components["schemas"]["Links"];
|
|
2117
2315
|
};
|
|
2118
2316
|
/** JsonApiResponse[SoraReportResponse] */
|
|
2119
2317
|
JsonApiResponse_SoraReportResponse_: {
|
|
2120
|
-
data: components["schemas"]["SoraReportResponse"];
|
|
2318
|
+
data: components["schemas"]["SoraReportResponse-Output"];
|
|
2121
2319
|
links: components["schemas"]["Links"];
|
|
2122
2320
|
};
|
|
2123
2321
|
/** JsonApiResponse[StatisticsResponse] */
|
|
@@ -2142,17 +2340,22 @@ export interface components {
|
|
|
2142
2340
|
};
|
|
2143
2341
|
/** JsonApiResponse[UkSoraReportResponse] */
|
|
2144
2342
|
JsonApiResponse_UkSoraReportResponse_: {
|
|
2145
|
-
data: components["schemas"]["UkSoraReportResponse"];
|
|
2343
|
+
data: components["schemas"]["UkSoraReportResponse-Output"];
|
|
2146
2344
|
links: components["schemas"]["Links"];
|
|
2147
2345
|
};
|
|
2148
2346
|
/** JsonApiResponse[VolumeResponse] */
|
|
2149
|
-
JsonApiResponse_VolumeResponse_: {
|
|
2150
|
-
data: components["schemas"]["VolumeResponse"];
|
|
2347
|
+
"JsonApiResponse_VolumeResponse_-Input": {
|
|
2348
|
+
data: components["schemas"]["VolumeResponse-Input"];
|
|
2349
|
+
links: components["schemas"]["Links"];
|
|
2350
|
+
};
|
|
2351
|
+
/** JsonApiResponse[VolumeResponse] */
|
|
2352
|
+
"JsonApiResponse_VolumeResponse_-Output": {
|
|
2353
|
+
data: components["schemas"]["VolumeResponse-Output"];
|
|
2151
2354
|
links: components["schemas"]["Links"];
|
|
2152
2355
|
};
|
|
2153
2356
|
/** JsonApiResponse[WaypointDetailResponse] */
|
|
2154
2357
|
JsonApiResponse_WaypointDetailResponse_: {
|
|
2155
|
-
data: components["schemas"]["WaypointDetailResponse"];
|
|
2358
|
+
data: components["schemas"]["WaypointDetailResponse-Output"];
|
|
2156
2359
|
links: components["schemas"]["Links"];
|
|
2157
2360
|
};
|
|
2158
2361
|
/**
|
|
@@ -2280,7 +2483,27 @@ export interface components {
|
|
|
2280
2483
|
deconflict?: boolean;
|
|
2281
2484
|
};
|
|
2282
2485
|
/** PathingTaskAttributes */
|
|
2283
|
-
PathingTaskAttributes: {
|
|
2486
|
+
"PathingTaskAttributes-Input": {
|
|
2487
|
+
/**
|
|
2488
|
+
* Waypoints
|
|
2489
|
+
* @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
|
|
2490
|
+
*/
|
|
2491
|
+
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
|
|
2492
|
+
/**
|
|
2493
|
+
* Time Start
|
|
2494
|
+
* Format: date-time
|
|
2495
|
+
* @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'.
|
|
2496
|
+
*/
|
|
2497
|
+
time_start: string;
|
|
2498
|
+
/**
|
|
2499
|
+
* Time End
|
|
2500
|
+
* Format: date-time
|
|
2501
|
+
* @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'.
|
|
2502
|
+
*/
|
|
2503
|
+
time_end: string;
|
|
2504
|
+
};
|
|
2505
|
+
/** PathingTaskAttributes */
|
|
2506
|
+
"PathingTaskAttributes-Output": {
|
|
2284
2507
|
/**
|
|
2285
2508
|
* Waypoints
|
|
2286
2509
|
* @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 +2627,7 @@ export interface components {
|
|
|
2404
2627
|
* @description Standard response for pathing task GET endpoint. The attributes with waypoints are included in the response if the
|
|
2405
2628
|
* state is "successful".
|
|
2406
2629
|
*/
|
|
2407
|
-
PathingTaskResponse: {
|
|
2630
|
+
"PathingTaskResponse-Input": {
|
|
2408
2631
|
/**
|
|
2409
2632
|
* Pathing Task ID
|
|
2410
2633
|
* Format: uuid
|
|
@@ -2417,7 +2640,28 @@ export interface components {
|
|
|
2417
2640
|
* @constant
|
|
2418
2641
|
*/
|
|
2419
2642
|
type?: "pathing_task";
|
|
2420
|
-
attributes?: components["schemas"]["PathingTaskAttributes"] | null;
|
|
2643
|
+
attributes?: components["schemas"]["PathingTaskAttributes-Input"] | null;
|
|
2644
|
+
meta: components["schemas"]["PathingTaskMeta"];
|
|
2645
|
+
};
|
|
2646
|
+
/**
|
|
2647
|
+
* PathingTaskResponse
|
|
2648
|
+
* @description Standard response for pathing task GET endpoint. The attributes with waypoints are included in the response if the
|
|
2649
|
+
* state is "successful".
|
|
2650
|
+
*/
|
|
2651
|
+
"PathingTaskResponse-Output": {
|
|
2652
|
+
/**
|
|
2653
|
+
* Pathing Task ID
|
|
2654
|
+
* Format: uuid
|
|
2655
|
+
* @description Unique identifier of the pathing task
|
|
2656
|
+
*/
|
|
2657
|
+
id: string;
|
|
2658
|
+
/**
|
|
2659
|
+
* Type
|
|
2660
|
+
* @default pathing_task
|
|
2661
|
+
* @constant
|
|
2662
|
+
*/
|
|
2663
|
+
type?: "pathing_task";
|
|
2664
|
+
attributes?: components["schemas"]["PathingTaskAttributes-Output"] | null;
|
|
2421
2665
|
meta: components["schemas"]["PathingTaskMeta"];
|
|
2422
2666
|
};
|
|
2423
2667
|
/**
|
|
@@ -2479,7 +2723,17 @@ export interface components {
|
|
|
2479
2723
|
invert?: boolean;
|
|
2480
2724
|
};
|
|
2481
2725
|
/** RasterResponse */
|
|
2482
|
-
RasterResponse: {
|
|
2726
|
+
"RasterResponse-Input": {
|
|
2727
|
+
/**
|
|
2728
|
+
* Type
|
|
2729
|
+
* @default flight_pattern
|
|
2730
|
+
* @constant
|
|
2731
|
+
*/
|
|
2732
|
+
type?: "flight_pattern";
|
|
2733
|
+
attributes: components["schemas"]["Raster"];
|
|
2734
|
+
};
|
|
2735
|
+
/** RasterResponse */
|
|
2736
|
+
"RasterResponse-Output": {
|
|
2483
2737
|
/**
|
|
2484
2738
|
* Type
|
|
2485
2739
|
* @default flight_pattern
|
|
@@ -2532,7 +2786,24 @@ export interface components {
|
|
|
2532
2786
|
name: "Flight Geography" | "Contingency Buffer" | "Ground Risk Buffer" | "Adjacent Area";
|
|
2533
2787
|
};
|
|
2534
2788
|
/** SoraClassificationResponse */
|
|
2535
|
-
SoraClassificationResponse: {
|
|
2789
|
+
"SoraClassificationResponse-Input": {
|
|
2790
|
+
/**
|
|
2791
|
+
* SORA Classification ID
|
|
2792
|
+
* Format: uuid
|
|
2793
|
+
* @description A unique identifier representing a specific set of SORA parameters
|
|
2794
|
+
*/
|
|
2795
|
+
id: string;
|
|
2796
|
+
/**
|
|
2797
|
+
* Type
|
|
2798
|
+
* @default sora_classification
|
|
2799
|
+
* @constant
|
|
2800
|
+
*/
|
|
2801
|
+
type?: "sora_classification";
|
|
2802
|
+
/** Attributes */
|
|
2803
|
+
attributes: components["schemas"]["JarusV25SoraClassification-Input"] | components["schemas"]["UkSoraClassification-Input"];
|
|
2804
|
+
};
|
|
2805
|
+
/** SoraClassificationResponse */
|
|
2806
|
+
"SoraClassificationResponse-Output": {
|
|
2536
2807
|
/**
|
|
2537
2808
|
* SORA Classification ID
|
|
2538
2809
|
* Format: uuid
|
|
@@ -2617,7 +2888,17 @@ export interface components {
|
|
|
2617
2888
|
atypical_airspace_id?: string | null;
|
|
2618
2889
|
};
|
|
2619
2890
|
/** SoraReportResponse */
|
|
2620
|
-
SoraReportResponse: {
|
|
2891
|
+
"SoraReportResponse-Input": {
|
|
2892
|
+
attributes: components["schemas"]["SoraReportAttributes"];
|
|
2893
|
+
/**
|
|
2894
|
+
* Type
|
|
2895
|
+
* @default sora_report
|
|
2896
|
+
* @constant
|
|
2897
|
+
*/
|
|
2898
|
+
type?: "sora_report";
|
|
2899
|
+
};
|
|
2900
|
+
/** SoraReportResponse */
|
|
2901
|
+
"SoraReportResponse-Output": {
|
|
2621
2902
|
attributes: components["schemas"]["SoraReportAttributes"];
|
|
2622
2903
|
/**
|
|
2623
2904
|
* Type
|
|
@@ -2715,6 +2996,11 @@ export interface components {
|
|
|
2715
2996
|
* @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'.
|
|
2716
2997
|
*/
|
|
2717
2998
|
time: string;
|
|
2999
|
+
/**
|
|
3000
|
+
* Above Mean Sea Level (AMSL) Altitude
|
|
3001
|
+
* @description Altitude above mean sea level (AMSL), expressed in meters. This value is derived by combining the input altitude (specified above ground level (AGL)) with the terrain elevation from the selected elevation dataset.
|
|
3002
|
+
*/
|
|
3003
|
+
altitude_amsl: number;
|
|
2718
3004
|
};
|
|
2719
3005
|
/** StateRequest */
|
|
2720
3006
|
StateRequest: {
|
|
@@ -3120,7 +3406,17 @@ export interface components {
|
|
|
3120
3406
|
atypical_airspace_id?: string | null;
|
|
3121
3407
|
};
|
|
3122
3408
|
/** UkSoraReportResponse */
|
|
3123
|
-
UkSoraReportResponse: {
|
|
3409
|
+
"UkSoraReportResponse-Input": {
|
|
3410
|
+
attributes: components["schemas"]["UkSoraReportAttributes"];
|
|
3411
|
+
/**
|
|
3412
|
+
* Type
|
|
3413
|
+
* @default sora_report
|
|
3414
|
+
* @constant
|
|
3415
|
+
*/
|
|
3416
|
+
type?: "sora_report";
|
|
3417
|
+
};
|
|
3418
|
+
/** UkSoraReportResponse */
|
|
3419
|
+
"UkSoraReportResponse-Output": {
|
|
3124
3420
|
attributes: components["schemas"]["UkSoraReportAttributes"];
|
|
3125
3421
|
/**
|
|
3126
3422
|
* Type
|
|
@@ -3226,7 +3522,27 @@ export interface components {
|
|
|
3226
3522
|
* VolumeResponse
|
|
3227
3523
|
* @description Contiguous block of geographic space-time.
|
|
3228
3524
|
*/
|
|
3229
|
-
VolumeResponse: {
|
|
3525
|
+
"VolumeResponse-Input": {
|
|
3526
|
+
/**
|
|
3527
|
+
* Volume ID
|
|
3528
|
+
* Format: uuid
|
|
3529
|
+
* @description Unique Identifier for a volume
|
|
3530
|
+
*/
|
|
3531
|
+
id: string;
|
|
3532
|
+
/**
|
|
3533
|
+
* Type
|
|
3534
|
+
* @default volumes
|
|
3535
|
+
* @constant
|
|
3536
|
+
*/
|
|
3537
|
+
type?: "volumes";
|
|
3538
|
+
attributes: components["schemas"]["Volume4D-Input"];
|
|
3539
|
+
meta: components["schemas"]["VolumeMeta"];
|
|
3540
|
+
};
|
|
3541
|
+
/**
|
|
3542
|
+
* VolumeResponse
|
|
3543
|
+
* @description Contiguous block of geographic space-time.
|
|
3544
|
+
*/
|
|
3545
|
+
"VolumeResponse-Output": {
|
|
3230
3546
|
/**
|
|
3231
3547
|
* Volume ID
|
|
3232
3548
|
* Format: uuid
|
|
@@ -3254,18 +3570,45 @@ export interface components {
|
|
|
3254
3570
|
maximum_length?: number | null;
|
|
3255
3571
|
};
|
|
3256
3572
|
/** WaypointDetailAttributes */
|
|
3257
|
-
WaypointDetailAttributes: {
|
|
3573
|
+
"WaypointDetailAttributes-Input": {
|
|
3258
3574
|
/**
|
|
3259
3575
|
* Waypoints
|
|
3260
3576
|
* @description Detailed points defining a Flightplan that must be passed through along with flight parameters, including additional calculated fields.
|
|
3261
3577
|
*/
|
|
3262
|
-
waypoints: (components["schemas"]["StartWaypointDetail"] | components["schemas"]["GotoWaypointDetail"])[];
|
|
3578
|
+
waypoints: (components["schemas"]["StartWaypointDetail"] | components["schemas"]["GotoWaypointDetail-Input"])[];
|
|
3579
|
+
};
|
|
3580
|
+
/** WaypointDetailAttributes */
|
|
3581
|
+
"WaypointDetailAttributes-Output": {
|
|
3582
|
+
/**
|
|
3583
|
+
* Waypoints
|
|
3584
|
+
* @description Detailed points defining a Flightplan that must be passed through along with flight parameters, including additional calculated fields.
|
|
3585
|
+
*/
|
|
3586
|
+
waypoints: (components["schemas"]["StartWaypointDetail"] | components["schemas"]["GotoWaypointDetail-Output"])[];
|
|
3587
|
+
};
|
|
3588
|
+
/**
|
|
3589
|
+
* WaypointDetailResponse
|
|
3590
|
+
* @description Detailed Waypoints for a Flightplan.
|
|
3591
|
+
*/
|
|
3592
|
+
"WaypointDetailResponse-Input": {
|
|
3593
|
+
/**
|
|
3594
|
+
* Flightplan ID
|
|
3595
|
+
* Format: uuid
|
|
3596
|
+
* @description Unique identifier of the flightplan.
|
|
3597
|
+
*/
|
|
3598
|
+
id: string;
|
|
3599
|
+
/**
|
|
3600
|
+
* Type
|
|
3601
|
+
* @default waypoint_detail
|
|
3602
|
+
* @constant
|
|
3603
|
+
*/
|
|
3604
|
+
type?: "waypoint_detail";
|
|
3605
|
+
attributes: components["schemas"]["WaypointDetailAttributes-Input"];
|
|
3263
3606
|
};
|
|
3264
3607
|
/**
|
|
3265
3608
|
* WaypointDetailResponse
|
|
3266
3609
|
* @description Detailed Waypoints for a Flightplan.
|
|
3267
3610
|
*/
|
|
3268
|
-
WaypointDetailResponse: {
|
|
3611
|
+
"WaypointDetailResponse-Output": {
|
|
3269
3612
|
/**
|
|
3270
3613
|
* Flightplan ID
|
|
3271
3614
|
* Format: uuid
|
|
@@ -3278,7 +3621,7 @@ export interface components {
|
|
|
3278
3621
|
* @constant
|
|
3279
3622
|
*/
|
|
3280
3623
|
type?: "waypoint_detail";
|
|
3281
|
-
attributes: components["schemas"]["WaypointDetailAttributes"];
|
|
3624
|
+
attributes: components["schemas"]["WaypointDetailAttributes-Output"];
|
|
3282
3625
|
};
|
|
3283
3626
|
/**
|
|
3284
3627
|
* Wgs84Point
|