@volant-autonomy/via-sdk 1.4562.1 → 1.4580.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.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/utils.d.ts +2 -2
- package/dist/volant-schema.d.ts +80 -21
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -931,6 +931,14 @@ export interface components {
|
|
|
931
931
|
* @enum {string}
|
|
932
932
|
*/
|
|
933
933
|
ARC: "arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-b2" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-c5" | "arc-c6" | "arc-c7" | "arc-d1" | "arc-d2" | "arc-d3" | "arc-d4";
|
|
934
|
+
/** AglAlgorithm */
|
|
935
|
+
AglAlgorithm: {
|
|
936
|
+
/**
|
|
937
|
+
* Mode
|
|
938
|
+
* @constant
|
|
939
|
+
*/
|
|
940
|
+
mode: "AGL";
|
|
941
|
+
};
|
|
934
942
|
/**
|
|
935
943
|
* Aircraft
|
|
936
944
|
* @description Characteristics that define an aircraft for SORA calculations.
|
|
@@ -1130,7 +1138,7 @@ export interface components {
|
|
|
1130
1138
|
*/
|
|
1131
1139
|
AirspaceRestrictionState: "Accepted" | "Closed" | "Draft" | "Pending";
|
|
1132
1140
|
/** Altitude */
|
|
1133
|
-
Altitude: {
|
|
1141
|
+
"Altitude-Input": {
|
|
1134
1142
|
/**
|
|
1135
1143
|
* Value
|
|
1136
1144
|
* @description The numeric value of the altitude
|
|
@@ -1144,6 +1152,29 @@ export interface components {
|
|
|
1144
1152
|
*/
|
|
1145
1153
|
reference: "AGL" | "AMSL";
|
|
1146
1154
|
};
|
|
1155
|
+
/** Altitude */
|
|
1156
|
+
"Altitude-Output": {
|
|
1157
|
+
/**
|
|
1158
|
+
* Value
|
|
1159
|
+
* @description The numeric value of the altitude
|
|
1160
|
+
* @example 100
|
|
1161
|
+
*/
|
|
1162
|
+
value: number;
|
|
1163
|
+
/**
|
|
1164
|
+
* Reference
|
|
1165
|
+
* @description Altitude reference datum for the value. When using AGL, this is defined as the vertical distance between the point and terrain elevation directly beneath it. Terrain elevation is defined with reference to the EGM2008 Geoid and includes the surfaces of water bodies but not man-made structures.Note that some interfaces may not support all reference datums.
|
|
1166
|
+
* @enum {string}
|
|
1167
|
+
*/
|
|
1168
|
+
reference: "AGL" | "AMSL";
|
|
1169
|
+
};
|
|
1170
|
+
/** AmslAlgorithm */
|
|
1171
|
+
AmslAlgorithm: {
|
|
1172
|
+
/**
|
|
1173
|
+
* Mode
|
|
1174
|
+
* @constant
|
|
1175
|
+
*/
|
|
1176
|
+
mode: "AMSL";
|
|
1177
|
+
};
|
|
1147
1178
|
/** AoiBounding */
|
|
1148
1179
|
AoiBounding: {
|
|
1149
1180
|
/**
|
|
@@ -1361,9 +1392,14 @@ export interface components {
|
|
|
1361
1392
|
features: components["schemas"]["GeoJsonPolygonFeature_AtypicalAirspaceProperties_-Output"][];
|
|
1362
1393
|
};
|
|
1363
1394
|
/** AtypicalAirspaceProperties */
|
|
1364
|
-
AtypicalAirspaceProperties: {
|
|
1365
|
-
altitude_upper: components["schemas"]["Altitude"];
|
|
1366
|
-
altitude_lower: components["schemas"]["Altitude"];
|
|
1395
|
+
"AtypicalAirspaceProperties-Input": {
|
|
1396
|
+
altitude_upper: components["schemas"]["Altitude-Input"];
|
|
1397
|
+
altitude_lower: components["schemas"]["Altitude-Input"];
|
|
1398
|
+
};
|
|
1399
|
+
/** AtypicalAirspaceProperties */
|
|
1400
|
+
"AtypicalAirspaceProperties-Output": {
|
|
1401
|
+
altitude_upper: components["schemas"]["Altitude-Output"];
|
|
1402
|
+
altitude_lower: components["schemas"]["Altitude-Output"];
|
|
1367
1403
|
};
|
|
1368
1404
|
/** AtypicalAirspaceResponse */
|
|
1369
1405
|
AtypicalAirspaceResponse: {
|
|
@@ -2089,7 +2125,7 @@ export interface components {
|
|
|
2089
2125
|
*/
|
|
2090
2126
|
type: "Feature";
|
|
2091
2127
|
geometry: components["schemas"]["GeoJsonPolygon"];
|
|
2092
|
-
properties: components["schemas"]["AtypicalAirspaceProperties"];
|
|
2128
|
+
properties: components["schemas"]["AtypicalAirspaceProperties-Input"];
|
|
2093
2129
|
};
|
|
2094
2130
|
/** GeoJsonPolygonFeature[AtypicalAirspaceProperties] */
|
|
2095
2131
|
"GeoJsonPolygonFeature_AtypicalAirspaceProperties_-Output": {
|
|
@@ -2099,7 +2135,7 @@ export interface components {
|
|
|
2099
2135
|
*/
|
|
2100
2136
|
type: "Feature";
|
|
2101
2137
|
geometry: components["schemas"]["GeoJsonPolygon"];
|
|
2102
|
-
properties: components["schemas"]["AtypicalAirspaceProperties"];
|
|
2138
|
+
properties: components["schemas"]["AtypicalAirspaceProperties-Output"];
|
|
2103
2139
|
};
|
|
2104
2140
|
/** GeoJsonPolygonFeature[ControlledGroundAreaProperties] */
|
|
2105
2141
|
GeoJsonPolygonFeature_ControlledGroundAreaProperties_: {
|
|
@@ -2329,7 +2365,7 @@ export interface components {
|
|
|
2329
2365
|
* @enum {string}
|
|
2330
2366
|
*/
|
|
2331
2367
|
type: "goto";
|
|
2332
|
-
position: components["schemas"]["Wgs84Position"];
|
|
2368
|
+
position: components["schemas"]["Wgs84Position-Input"];
|
|
2333
2369
|
parameters: components["schemas"]["PathingCheckpointParameters"];
|
|
2334
2370
|
};
|
|
2335
2371
|
/**
|
|
@@ -2349,7 +2385,7 @@ export interface components {
|
|
|
2349
2385
|
* @enum {string}
|
|
2350
2386
|
*/
|
|
2351
2387
|
type: "goto";
|
|
2352
|
-
position: components["schemas"]["Wgs84Position"];
|
|
2388
|
+
position: components["schemas"]["Wgs84Position-Input"];
|
|
2353
2389
|
flight_parameters: components["schemas"]["FlightParameters"];
|
|
2354
2390
|
wind_parameters?: components["schemas"]["WindParameters"];
|
|
2355
2391
|
};
|
|
@@ -2370,7 +2406,7 @@ export interface components {
|
|
|
2370
2406
|
* @enum {string}
|
|
2371
2407
|
*/
|
|
2372
2408
|
type: "goto";
|
|
2373
|
-
position: components["schemas"]["Wgs84Position"];
|
|
2409
|
+
position: components["schemas"]["Wgs84Position-Output"];
|
|
2374
2410
|
flight_parameters: components["schemas"]["FlightParameters"];
|
|
2375
2411
|
wind_parameters?: components["schemas"]["WindParameters"];
|
|
2376
2412
|
};
|
|
@@ -2385,7 +2421,7 @@ export interface components {
|
|
|
2385
2421
|
* @constant
|
|
2386
2422
|
*/
|
|
2387
2423
|
type: "goto";
|
|
2388
|
-
position: components["schemas"]["Wgs84Position"];
|
|
2424
|
+
position: components["schemas"]["Wgs84Position-Output"];
|
|
2389
2425
|
flight_parameters: components["schemas"]["FlightParameters"];
|
|
2390
2426
|
wind_parameters?: components["schemas"]["WindParameters"];
|
|
2391
2427
|
/**
|
|
@@ -2828,7 +2864,7 @@ export interface components {
|
|
|
2828
2864
|
* @example hexsoon_h3v2
|
|
2829
2865
|
*/
|
|
2830
2866
|
aircraft_id: string;
|
|
2831
|
-
altitude: components["schemas"]["Altitude"];
|
|
2867
|
+
altitude: components["schemas"]["Altitude-Output"];
|
|
2832
2868
|
/**
|
|
2833
2869
|
* Category
|
|
2834
2870
|
* @constant
|
|
@@ -3532,7 +3568,7 @@ export interface components {
|
|
|
3532
3568
|
* @enum {string}
|
|
3533
3569
|
*/
|
|
3534
3570
|
type: "start";
|
|
3535
|
-
position: components["schemas"]["Wgs84Position"];
|
|
3571
|
+
position: components["schemas"]["Wgs84Position-Input"];
|
|
3536
3572
|
};
|
|
3537
3573
|
/**
|
|
3538
3574
|
* StartWaypoint
|
|
@@ -3548,7 +3584,7 @@ export interface components {
|
|
|
3548
3584
|
* @enum {string}
|
|
3549
3585
|
*/
|
|
3550
3586
|
type: "start";
|
|
3551
|
-
position: components["schemas"]["Wgs84Position"];
|
|
3587
|
+
position: components["schemas"]["Wgs84Position-Input"];
|
|
3552
3588
|
};
|
|
3553
3589
|
/**
|
|
3554
3590
|
* StartWaypoint
|
|
@@ -3564,7 +3600,7 @@ export interface components {
|
|
|
3564
3600
|
* @enum {string}
|
|
3565
3601
|
*/
|
|
3566
3602
|
type: "start";
|
|
3567
|
-
position: components["schemas"]["Wgs84Position"];
|
|
3603
|
+
position: components["schemas"]["Wgs84Position-Output"];
|
|
3568
3604
|
};
|
|
3569
3605
|
/** StartWaypointDetail */
|
|
3570
3606
|
StartWaypointDetail: {
|
|
@@ -3577,7 +3613,7 @@ export interface components {
|
|
|
3577
3613
|
* @constant
|
|
3578
3614
|
*/
|
|
3579
3615
|
type: "start";
|
|
3580
|
-
position: components["schemas"]["Wgs84Position"];
|
|
3616
|
+
position: components["schemas"]["Wgs84Position-Output"];
|
|
3581
3617
|
/**
|
|
3582
3618
|
* Waypoint ID
|
|
3583
3619
|
* Format: uuid
|
|
@@ -4262,6 +4298,10 @@ export interface components {
|
|
|
4262
4298
|
msg: string;
|
|
4263
4299
|
/** Error Type */
|
|
4264
4300
|
type: string;
|
|
4301
|
+
/** Input */
|
|
4302
|
+
input?: unknown;
|
|
4303
|
+
/** Context */
|
|
4304
|
+
ctx?: Record<string, never>;
|
|
4265
4305
|
};
|
|
4266
4306
|
/** VerticalParameters */
|
|
4267
4307
|
VerticalParameters: {
|
|
@@ -4280,8 +4320,8 @@ export interface components {
|
|
|
4280
4320
|
*/
|
|
4281
4321
|
"Volume3D-Input": {
|
|
4282
4322
|
outline_polygon: components["schemas"]["Polygon"];
|
|
4283
|
-
altitude_lower: components["schemas"]["Altitude"];
|
|
4284
|
-
altitude_upper: components["schemas"]["Altitude"];
|
|
4323
|
+
altitude_lower: components["schemas"]["Altitude-Input"];
|
|
4324
|
+
altitude_upper: components["schemas"]["Altitude-Input"];
|
|
4285
4325
|
};
|
|
4286
4326
|
/**
|
|
4287
4327
|
* Volume3D
|
|
@@ -4291,8 +4331,8 @@ export interface components {
|
|
|
4291
4331
|
*/
|
|
4292
4332
|
"Volume3D-Output": {
|
|
4293
4333
|
outline_polygon: components["schemas"]["Polygon"];
|
|
4294
|
-
altitude_lower: components["schemas"]["Altitude"];
|
|
4295
|
-
altitude_upper: components["schemas"]["Altitude"];
|
|
4334
|
+
altitude_lower: components["schemas"]["Altitude-Output"];
|
|
4335
|
+
altitude_upper: components["schemas"]["Altitude-Output"];
|
|
4296
4336
|
};
|
|
4297
4337
|
/** Volume4D */
|
|
4298
4338
|
"Volume4D-Input": {
|
|
@@ -4480,7 +4520,26 @@ export interface components {
|
|
|
4480
4520
|
* Wgs84Position
|
|
4481
4521
|
* @description Point defined in WGS84 Coordinates with altitude above ground.
|
|
4482
4522
|
*/
|
|
4483
|
-
Wgs84Position: {
|
|
4523
|
+
"Wgs84Position-Input": {
|
|
4524
|
+
/**
|
|
4525
|
+
* Lat
|
|
4526
|
+
* @description Degrees of latitude north of the equator, with reference to the WGS84 ellipsoid.
|
|
4527
|
+
* @example 34.123
|
|
4528
|
+
*/
|
|
4529
|
+
lat: number;
|
|
4530
|
+
/**
|
|
4531
|
+
* Lng
|
|
4532
|
+
* @description Degrees of longitude east of the Prime Meridian, with reference to the WGS84 ellipsoid.
|
|
4533
|
+
* @example -118.456
|
|
4534
|
+
*/
|
|
4535
|
+
lng: number;
|
|
4536
|
+
altitude: components["schemas"]["Altitude-Input"];
|
|
4537
|
+
};
|
|
4538
|
+
/**
|
|
4539
|
+
* Wgs84Position
|
|
4540
|
+
* @description Point defined in WGS84 Coordinates with altitude above ground.
|
|
4541
|
+
*/
|
|
4542
|
+
"Wgs84Position-Output": {
|
|
4484
4543
|
/**
|
|
4485
4544
|
* Lat
|
|
4486
4545
|
* @description Degrees of latitude north of the equator, with reference to the WGS84 ellipsoid.
|
|
@@ -4493,7 +4552,7 @@ export interface components {
|
|
|
4493
4552
|
* @example -118.456
|
|
4494
4553
|
*/
|
|
4495
4554
|
lng: number;
|
|
4496
|
-
altitude: components["schemas"]["Altitude"];
|
|
4555
|
+
altitude: components["schemas"]["Altitude-Output"];
|
|
4497
4556
|
};
|
|
4498
4557
|
/** WindParameters */
|
|
4499
4558
|
WindParameters: {
|