@volant-autonomy/via-sdk 1.4843.1 → 1.4861.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/direct.d.ts +13 -8
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +39 -27
- package/package.json +1 -1
package/dist/direct.d.ts
CHANGED
|
@@ -132,8 +132,10 @@ export declare class Direct {
|
|
|
132
132
|
}>;
|
|
133
133
|
/**
|
|
134
134
|
* Modify a Flightplan
|
|
135
|
-
* @description Modify the specified flightplan.
|
|
136
|
-
*
|
|
135
|
+
* @description Modify the specified flightplan.
|
|
136
|
+
*
|
|
137
|
+
* This is only permitted while the flightplan state is not `Closed`. If the flightplan is in state: `Accepted`, the
|
|
138
|
+
* flightplan will be subject to conflict checking.
|
|
137
139
|
*/
|
|
138
140
|
modifyDraftFlightplan<Opts extends requestOptions = {}>(id: pathOf<modifyDraftFlightplan>['flightplan_id'], args: bodyOf<modifyDraftFlightplan>, opts?: Opts | requestOptions): Promise<{
|
|
139
141
|
data?: never;
|
|
@@ -971,8 +973,9 @@ export declare class Direct {
|
|
|
971
973
|
}>;
|
|
972
974
|
/**
|
|
973
975
|
* Calculate Residual ARC
|
|
974
|
-
* @description Calculate the Residual ARC accounting for any strategic air risk mitigations.
|
|
975
|
-
*
|
|
976
|
+
* @description Calculate the Residual ARC accounting for any strategic air risk mitigations.
|
|
977
|
+
*
|
|
978
|
+
* NOTE: The Residual ARC is determined as the "worst case".
|
|
976
979
|
*/
|
|
977
980
|
calculateResidualArcUk<Opts extends requestOptions = {}>(args: bodyOf<calculateResidualArcUk>, opts?: Opts | requestOptions): Promise<{
|
|
978
981
|
data?: never;
|
|
@@ -1231,8 +1234,9 @@ export declare class Direct {
|
|
|
1231
1234
|
}>;
|
|
1232
1235
|
/**
|
|
1233
1236
|
* Update a Controlled Ground Area
|
|
1234
|
-
* @description Modify an existing Controlled Ground Area.
|
|
1235
|
-
*
|
|
1237
|
+
* @description Modify an existing Controlled Ground Area.
|
|
1238
|
+
*
|
|
1239
|
+
* NOTE: This cannot be performed when it is referenced by a flightplan in state `Accepted`.
|
|
1236
1240
|
*/
|
|
1237
1241
|
updateControlledGroundArea<Opts extends requestOptions = {}>(id: pathOf<updateControlledGroundArea>['controlled_ground_area_id'], args: bodyOf<updateControlledGroundArea>, opts?: Opts | requestOptions): Promise<{
|
|
1238
1242
|
data?: never;
|
|
@@ -1380,8 +1384,9 @@ export declare class Direct {
|
|
|
1380
1384
|
}>;
|
|
1381
1385
|
/**
|
|
1382
1386
|
* Update an Atypical Airspace
|
|
1383
|
-
* @description Modify an existing Atypical Airspace.
|
|
1384
|
-
*
|
|
1387
|
+
* @description Modify an existing Atypical Airspace.
|
|
1388
|
+
*
|
|
1389
|
+
* NOTE: This cannot be performed when it is referenced by a flightplan in state `Accepted`.
|
|
1385
1390
|
*/
|
|
1386
1391
|
updateAtypicalAirspace<Opts extends requestOptions = {}>(id: pathOf<updateAtypicalAirspace>['atypical_airspace_id'], args: bodyOf<updateAtypicalAirspace>, opts?: Opts | requestOptions): Promise<{
|
|
1387
1392
|
data?: never;
|
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -61,8 +61,10 @@ export interface paths {
|
|
|
61
61
|
get: operations["flightplan_single_v1_flightplans__flightplan_id__get"];
|
|
62
62
|
/**
|
|
63
63
|
* Modify a Flightplan
|
|
64
|
-
* @description Modify the specified flightplan.
|
|
65
|
-
*
|
|
64
|
+
* @description Modify the specified flightplan.
|
|
65
|
+
*
|
|
66
|
+
* This is only permitted while the flightplan state is not `Closed`. If the flightplan is in state: `Accepted`, the
|
|
67
|
+
* flightplan will be subject to conflict checking.
|
|
66
68
|
*/
|
|
67
69
|
put: operations["flightplan_replace_v1_flightplans__flightplan_id__put"];
|
|
68
70
|
post?: never;
|
|
@@ -436,8 +438,9 @@ export interface paths {
|
|
|
436
438
|
get: operations["get_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__get"];
|
|
437
439
|
/**
|
|
438
440
|
* Update a Controlled Ground Area
|
|
439
|
-
* @description Modify an existing Controlled Ground Area.
|
|
440
|
-
*
|
|
441
|
+
* @description Modify an existing Controlled Ground Area.
|
|
442
|
+
*
|
|
443
|
+
* NOTE: This cannot be performed when it is referenced by a flightplan in state `Accepted`.
|
|
441
444
|
*/
|
|
442
445
|
put: operations["update_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__put"];
|
|
443
446
|
post?: never;
|
|
@@ -491,8 +494,9 @@ export interface paths {
|
|
|
491
494
|
get: operations["get_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__get"];
|
|
492
495
|
/**
|
|
493
496
|
* Update an Atypical Airspace
|
|
494
|
-
* @description Modify an existing Atypical Airspace.
|
|
495
|
-
*
|
|
497
|
+
* @description Modify an existing Atypical Airspace.
|
|
498
|
+
*
|
|
499
|
+
* NOTE: This cannot be performed when it is referenced by a flightplan in state `Accepted`.
|
|
496
500
|
*/
|
|
497
501
|
put: operations["update_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__put"];
|
|
498
502
|
post?: never;
|
|
@@ -644,8 +648,9 @@ export interface paths {
|
|
|
644
648
|
put?: never;
|
|
645
649
|
/**
|
|
646
650
|
* Calculate Residual ARC
|
|
647
|
-
* @description Calculate the Residual ARC accounting for any strategic air risk mitigations.
|
|
648
|
-
*
|
|
651
|
+
* @description Calculate the Residual ARC accounting for any strategic air risk mitigations.
|
|
652
|
+
*
|
|
653
|
+
* NOTE: The Residual ARC is determined as the "worst case".
|
|
649
654
|
*/
|
|
650
655
|
post: operations["uk_residual_arc_v1_risk_assessment_sora_uk_residual_arc_post"];
|
|
651
656
|
delete?: never;
|
|
@@ -950,9 +955,10 @@ export interface components {
|
|
|
950
955
|
};
|
|
951
956
|
/**
|
|
952
957
|
* AglAlgorithmCorridor
|
|
953
|
-
* @description Corridor to apply to pathing operation.
|
|
954
|
-
*
|
|
955
|
-
*
|
|
958
|
+
* @description Corridor to apply to pathing operation.
|
|
959
|
+
*
|
|
960
|
+
* The result will be guaranteed to be within these bounds if a valid result can be found. If AMSL is used, then a
|
|
961
|
+
* conservative approximation will be used over the region which may result in being overly-restrictive.
|
|
956
962
|
*/
|
|
957
963
|
AglAlgorithmCorridor: {
|
|
958
964
|
ceiling?: components["schemas"]["Altitude-Input"] | null;
|
|
@@ -2433,10 +2439,11 @@ export interface components {
|
|
|
2433
2439
|
};
|
|
2434
2440
|
/**
|
|
2435
2441
|
* GotoWaypoint
|
|
2436
|
-
* @description Fly to a specified location under given `flight_parameters` accounting for given `wind_parameters`.
|
|
2437
|
-
* are defined as to be used during the leg flying towards this waypoint.
|
|
2442
|
+
* @description Fly to a specified location under given `flight_parameters` accounting for given `wind_parameters`.
|
|
2438
2443
|
*
|
|
2439
|
-
*
|
|
2444
|
+
* All parameters are defined as to be used during the leg flying towards this waypoint.
|
|
2445
|
+
*
|
|
2446
|
+
* NOTE: The `speed` provided in `wind_parameters` must be less than the `airspeed` provided in `flight_parameters`
|
|
2440
2447
|
*/
|
|
2441
2448
|
"GotoWaypoint-Input": {
|
|
2442
2449
|
/**
|
|
@@ -2454,10 +2461,11 @@ export interface components {
|
|
|
2454
2461
|
};
|
|
2455
2462
|
/**
|
|
2456
2463
|
* GotoWaypoint
|
|
2457
|
-
* @description Fly to a specified location under given `flight_parameters` accounting for given `wind_parameters`.
|
|
2458
|
-
*
|
|
2464
|
+
* @description Fly to a specified location under given `flight_parameters` accounting for given `wind_parameters`.
|
|
2465
|
+
*
|
|
2466
|
+
* All parameters are defined as to be used during the leg flying towards this waypoint.
|
|
2459
2467
|
*
|
|
2460
|
-
*
|
|
2468
|
+
* NOTE: The `speed` provided in `wind_parameters` must be less than the `airspeed` provided in `flight_parameters`
|
|
2461
2469
|
*/
|
|
2462
2470
|
"GotoWaypoint-Output": {
|
|
2463
2471
|
/**
|
|
@@ -3232,8 +3240,9 @@ export interface components {
|
|
|
3232
3240
|
};
|
|
3233
3241
|
/**
|
|
3234
3242
|
* PathingTaskResponse
|
|
3235
|
-
* @description Standard response for pathing task GET endpoint.
|
|
3236
|
-
*
|
|
3243
|
+
* @description Standard response for pathing task GET endpoint.
|
|
3244
|
+
*
|
|
3245
|
+
* The attributes with waypoints are included in the response if the state is "successful".
|
|
3237
3246
|
*/
|
|
3238
3247
|
PathingTaskResponse: {
|
|
3239
3248
|
/**
|
|
@@ -3259,12 +3268,13 @@ export interface components {
|
|
|
3259
3268
|
PathingTaskState: "queued" | "in-progress" | "successful" | "failed";
|
|
3260
3269
|
/**
|
|
3261
3270
|
* Polygon
|
|
3262
|
-
* @description An enclosed area on the earth.
|
|
3263
|
-
*
|
|
3264
|
-
*
|
|
3265
|
-
*
|
|
3266
|
-
*
|
|
3267
|
-
* to the
|
|
3271
|
+
* @description An enclosed area on the earth.
|
|
3272
|
+
*
|
|
3273
|
+
* The bounding edges of this polygon are defined to be the shortest paths between connected vertices. This means, for
|
|
3274
|
+
* instance, that the edge between two points both defined at a particular latitude is not generally contained at that
|
|
3275
|
+
* latitude. The winding order must be interpreted as the order which produces the smaller area. The path between two
|
|
3276
|
+
* vertices is defined to be the shortest possible path between those vertices. Edges may not cross. Vertices may not
|
|
3277
|
+
* be duplicated. In particular, the final polygon vertex must not be identical to the first vertex.
|
|
3268
3278
|
*/
|
|
3269
3279
|
Polygon: {
|
|
3270
3280
|
/** Vertices */
|
|
@@ -3277,8 +3287,10 @@ export interface components {
|
|
|
3277
3287
|
PopulationSource: "GHS_2020_R2023_100" | "EUROSTAT_2021_R2024_1000" | "EIDC_residential_2011_R2017_1000" | "EIDC_workday_2011_R2017_1000" | "ONS_EW_2021_R2021_1000" | "ONS_EW_2021_R2021_200" | "ONS_EW_2021_R2021_100" | "ONS_EW_WORKDAY_2021_R2021_1000" | "ONS_EW_WORKDAY_2021_R2021_200" | "ONS_EW_WORKDAY_2021_R2021_100" | "ONS_EW_OT_2021_R2021_1000" | "ONS_EW_OT_2021_R2021_200" | "ONS_EW_OT_2021_R2021_100";
|
|
3278
3288
|
/**
|
|
3279
3289
|
* ProfileAttributes
|
|
3280
|
-
* @description Profile of specified data across the Flightplan.
|
|
3281
|
-
*
|
|
3290
|
+
* @description Profile of specified data across the Flightplan.
|
|
3291
|
+
*
|
|
3292
|
+
* Data is zipped by index such that each array has the same length and a given index corresponding to the appropriate
|
|
3293
|
+
* data in each array.
|
|
3282
3294
|
*/
|
|
3283
3295
|
ProfileAttributes: {
|
|
3284
3296
|
/**
|