@volant-autonomy/via-sdk 1.3033.1 → 1.3070.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/volant-schema.d.ts +11 -4
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -1081,6 +1081,13 @@ export interface components {
|
|
|
1081
1081
|
* "characteristic_dimension": 0.5
|
|
1082
1082
|
* } */
|
|
1083
1083
|
aircraft?: components["schemas"]["Aircraft"];
|
|
1084
|
+
/**
|
|
1085
|
+
* Containment Robustness
|
|
1086
|
+
* @description Level of technical and operational mitigations intended to contain the flight of the UA within the defined operational volume and ground risk buffer.
|
|
1087
|
+
* @default low
|
|
1088
|
+
* @enum {string}
|
|
1089
|
+
*/
|
|
1090
|
+
containment_robustness?: "low" | "medium" | "high";
|
|
1084
1091
|
};
|
|
1085
1092
|
/**
|
|
1086
1093
|
* ContainmentRequirements
|
|
@@ -1529,7 +1536,7 @@ export interface components {
|
|
|
1529
1536
|
* IntrinsicGRC
|
|
1530
1537
|
* @enum {integer}
|
|
1531
1538
|
*/
|
|
1532
|
-
IntrinsicGRC:
|
|
1539
|
+
IntrinsicGRC: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
1533
1540
|
/** JsonApiException */
|
|
1534
1541
|
JsonApiException: {
|
|
1535
1542
|
/**
|
|
@@ -2975,7 +2982,7 @@ export interface operations {
|
|
|
2975
2982
|
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2976
2983
|
};
|
|
2977
2984
|
};
|
|
2978
|
-
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans */
|
|
2985
|
+
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans, non-flyable regions or, if using SORA, due to failing a SORA containment check */
|
|
2979
2986
|
409: {
|
|
2980
2987
|
headers: {
|
|
2981
2988
|
[name: string]: unknown;
|
|
@@ -3385,7 +3392,7 @@ export interface operations {
|
|
|
3385
3392
|
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3386
3393
|
};
|
|
3387
3394
|
};
|
|
3388
|
-
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans */
|
|
3395
|
+
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans, non-flyable regions or, if using SORA, due to failing a SORA containment check */
|
|
3389
3396
|
409: {
|
|
3390
3397
|
headers: {
|
|
3391
3398
|
[name: string]: unknown;
|
|
@@ -3586,7 +3593,7 @@ export interface operations {
|
|
|
3586
3593
|
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3587
3594
|
};
|
|
3588
3595
|
};
|
|
3589
|
-
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans */
|
|
3596
|
+
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans, non-flyable regions or, if using SORA, due to failing a SORA containment check */
|
|
3590
3597
|
409: {
|
|
3591
3598
|
headers: {
|
|
3592
3599
|
[name: string]: unknown;
|