@volant-autonomy/via-sdk 1.3408.1 → 1.3427.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 +2 -2
- package/dist/volant-schema.d.ts +23 -1
- package/package.json +1 -1
package/dist/direct.d.ts
CHANGED
|
@@ -407,9 +407,9 @@ export declare class Direct {
|
|
|
407
407
|
error: {
|
|
408
408
|
errors: {
|
|
409
409
|
detail: string;
|
|
410
|
-
status: "401" | "400";
|
|
410
|
+
status: "401" | "400" | "422";
|
|
411
411
|
}[];
|
|
412
|
-
status: "401" | "400";
|
|
412
|
+
status: "401" | "400" | "422";
|
|
413
413
|
};
|
|
414
414
|
response: Response;
|
|
415
415
|
aborted: false;
|
package/dist/volant-schema.d.ts
CHANGED
|
@@ -2412,6 +2412,14 @@ export interface components {
|
|
|
2412
2412
|
/** Initial Arc */
|
|
2413
2413
|
initial_arc: ("arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-d1" | "arc-d2")[];
|
|
2414
2414
|
ground_risk_mitigations: components["schemas"]["UkGroundRiskMitigations"];
|
|
2415
|
+
/**
|
|
2416
|
+
* Strategic Air Risk Mitigations
|
|
2417
|
+
* @description Strategic air risk mitigations to be applied when determining the Residual ARC from the Initial ARC. These are given as a mapping between the Initial ARC and a reduction in the air risk class.
|
|
2418
|
+
* @default {}
|
|
2419
|
+
*/
|
|
2420
|
+
air_risk_mitigations?: {
|
|
2421
|
+
[key: string]: (1 | 2) | undefined;
|
|
2422
|
+
};
|
|
2415
2423
|
/**
|
|
2416
2424
|
* Ground Risk Buffer
|
|
2417
2425
|
* @description The ground risk buffer is an area on the ground that surrounds the footprint of the contingency volume. It is expected that if the flight exits the contingency volume during a loss of control of the operation that the flight will be terminated within this lateral distance.
|
|
@@ -2913,6 +2921,8 @@ export interface operations {
|
|
|
2913
2921
|
parameters: {
|
|
2914
2922
|
query?: {
|
|
2915
2923
|
"filter[state]"?: components["schemas"]["AirspaceRestrictionState"][];
|
|
2924
|
+
"page[offset]"?: number;
|
|
2925
|
+
"page[limit]"?: number;
|
|
2916
2926
|
};
|
|
2917
2927
|
header?: never;
|
|
2918
2928
|
path?: never;
|
|
@@ -3524,7 +3534,10 @@ export interface operations {
|
|
|
3524
3534
|
};
|
|
3525
3535
|
airspace_constraint_list_v1_airspace_constraints__get: {
|
|
3526
3536
|
parameters: {
|
|
3527
|
-
query?:
|
|
3537
|
+
query?: {
|
|
3538
|
+
"page[offset]"?: number;
|
|
3539
|
+
"page[limit]"?: number;
|
|
3540
|
+
};
|
|
3528
3541
|
header?: never;
|
|
3529
3542
|
path?: never;
|
|
3530
3543
|
cookie?: never;
|
|
@@ -3558,6 +3571,15 @@ export interface operations {
|
|
|
3558
3571
|
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3559
3572
|
};
|
|
3560
3573
|
};
|
|
3574
|
+
/** @description Validation Error */
|
|
3575
|
+
422: {
|
|
3576
|
+
headers: {
|
|
3577
|
+
[name: string]: unknown;
|
|
3578
|
+
};
|
|
3579
|
+
content: {
|
|
3580
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3581
|
+
};
|
|
3582
|
+
};
|
|
3561
3583
|
};
|
|
3562
3584
|
};
|
|
3563
3585
|
airspace_constraint_create_v1_airspace_constraints__post: {
|