@volant-autonomy/via-sdk 1.3153.1 → 1.3165.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 +3 -3
- package/dist/volant-schema.d.ts +141 -56
- package/package.json +1 -1
package/dist/direct.d.ts
CHANGED
|
@@ -1001,7 +1001,7 @@ export declare class Direct {
|
|
|
1001
1001
|
data: {
|
|
1002
1002
|
id: string;
|
|
1003
1003
|
type?: "sora_classification";
|
|
1004
|
-
attributes: import("./volant-schema").components["schemas"]["
|
|
1004
|
+
attributes: import("./volant-schema").components["schemas"]["JarusV2_5SoraClassification-Output"] | import("./volant-schema").components["schemas"]["UkSoraClassification-Output"];
|
|
1005
1005
|
};
|
|
1006
1006
|
error?: never;
|
|
1007
1007
|
response: Response;
|
|
@@ -1031,7 +1031,7 @@ export declare class Direct {
|
|
|
1031
1031
|
data: {
|
|
1032
1032
|
id: string;
|
|
1033
1033
|
type?: "sora_classification";
|
|
1034
|
-
attributes: import("./volant-schema").components["schemas"]["
|
|
1034
|
+
attributes: import("./volant-schema").components["schemas"]["JarusV2_5SoraClassification-Output"] | import("./volant-schema").components["schemas"]["UkSoraClassification-Output"];
|
|
1035
1035
|
};
|
|
1036
1036
|
error?: never;
|
|
1037
1037
|
response: Response;
|
|
@@ -1061,7 +1061,7 @@ export declare class Direct {
|
|
|
1061
1061
|
data: {
|
|
1062
1062
|
id: string;
|
|
1063
1063
|
type?: "sora_classification";
|
|
1064
|
-
attributes: import("./volant-schema").components["schemas"]["
|
|
1064
|
+
attributes: import("./volant-schema").components["schemas"]["JarusV2_5SoraClassification-Output"] | import("./volant-schema").components["schemas"]["UkSoraClassification-Output"];
|
|
1065
1065
|
};
|
|
1066
1066
|
error?: never;
|
|
1067
1067
|
response: Response;
|
package/dist/volant-schema.d.ts
CHANGED
|
@@ -1078,41 +1078,6 @@ export interface components {
|
|
|
1078
1078
|
type?: "chart";
|
|
1079
1079
|
attributes: components["schemas"]["ChartAttributes"];
|
|
1080
1080
|
};
|
|
1081
|
-
/** Classification */
|
|
1082
|
-
Classification: {
|
|
1083
|
-
/**
|
|
1084
|
-
* Final GRC Determination
|
|
1085
|
-
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1086
|
-
* @enum {integer}
|
|
1087
|
-
*/
|
|
1088
|
-
final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1089
|
-
/** Residual Arc */
|
|
1090
|
-
residual_arc: components["schemas"]["ARC"][];
|
|
1091
|
-
mitigations: components["schemas"]["Mitigations"];
|
|
1092
|
-
/**
|
|
1093
|
-
* Ground Risk Buffer
|
|
1094
|
-
* @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.
|
|
1095
|
-
*/
|
|
1096
|
-
ground_risk_buffer: number;
|
|
1097
|
-
/** @description Population Density Data Source. Data has been re-projected and resampled to a square grid in UTM coordinates to work in the context of VIA's services. The value in each cell of the grid is the largest value present in any of the cells of the source grid it intersects. The values are normalised by source data cell area to derive a density value of people per square metre. */
|
|
1098
|
-
population_density_source: components["schemas"]["PopulationSource"];
|
|
1099
|
-
/** Controlled Ground Area Id */
|
|
1100
|
-
controlled_ground_area_id?: string | null;
|
|
1101
|
-
/** Atypical Airspace Id */
|
|
1102
|
-
atypical_airspace_id?: string | null;
|
|
1103
|
-
/** @default {
|
|
1104
|
-
* "max_cruise_speed": 20,
|
|
1105
|
-
* "characteristic_dimension": 0.5
|
|
1106
|
-
* } */
|
|
1107
|
-
aircraft?: components["schemas"]["Aircraft"];
|
|
1108
|
-
/**
|
|
1109
|
-
* Containment Robustness
|
|
1110
|
-
* @description Level of technical and operational mitigations intended to contain the flight of the UA within the defined operational volume and ground risk buffer.
|
|
1111
|
-
* @default low
|
|
1112
|
-
* @enum {string}
|
|
1113
|
-
*/
|
|
1114
|
-
containment_robustness?: "low" | "medium" | "high";
|
|
1115
|
-
};
|
|
1116
1081
|
/**
|
|
1117
1082
|
* ContainmentRequirements
|
|
1118
1083
|
* @description The containment requirements ensure that the target level of safety can be met for both ground and air risk in the
|
|
@@ -1561,6 +1526,61 @@ export interface components {
|
|
|
1561
1526
|
* @enum {integer}
|
|
1562
1527
|
*/
|
|
1563
1528
|
IntrinsicGRC: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
1529
|
+
/** JarusV2_5ClassificationPayload */
|
|
1530
|
+
JarusV2_5ClassificationPayload: {
|
|
1531
|
+
/**
|
|
1532
|
+
* Final GRC Determination
|
|
1533
|
+
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1534
|
+
* @enum {integer}
|
|
1535
|
+
*/
|
|
1536
|
+
final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1537
|
+
/** Residual Arc */
|
|
1538
|
+
residual_arc: components["schemas"]["ARC"][];
|
|
1539
|
+
mitigations: components["schemas"]["Mitigations"];
|
|
1540
|
+
/**
|
|
1541
|
+
* Ground Risk Buffer
|
|
1542
|
+
* @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.
|
|
1543
|
+
*/
|
|
1544
|
+
ground_risk_buffer: number;
|
|
1545
|
+
/** @description Population Density Data Source. Data has been re-projected and resampled to a square grid in UTM coordinates to work in the context of VIA's services. The value in each cell of the grid is the largest value present in any of the cells of the source grid it intersects. The values are normalised by source data cell area to derive a density value of people per square metre. */
|
|
1546
|
+
population_density_source: components["schemas"]["PopulationSource"];
|
|
1547
|
+
/** Controlled Ground Area Id */
|
|
1548
|
+
controlled_ground_area_id?: string | null;
|
|
1549
|
+
/** Atypical Airspace Id */
|
|
1550
|
+
atypical_airspace_id?: string | null;
|
|
1551
|
+
/** @default {
|
|
1552
|
+
* "max_cruise_speed": 20,
|
|
1553
|
+
* "characteristic_dimension": 0.5
|
|
1554
|
+
* } */
|
|
1555
|
+
aircraft?: components["schemas"]["Aircraft"];
|
|
1556
|
+
/**
|
|
1557
|
+
* Containment Robustness
|
|
1558
|
+
* @description Level of technical and operational mitigations intended to contain the flight of the UA within the defined operational volume and ground risk buffer.
|
|
1559
|
+
* @default low
|
|
1560
|
+
* @enum {string}
|
|
1561
|
+
*/
|
|
1562
|
+
containment_robustness?: "low" | "medium" | "high";
|
|
1563
|
+
};
|
|
1564
|
+
/** JarusV2_5SoraClassification */
|
|
1565
|
+
"JarusV2_5SoraClassification-Input": {
|
|
1566
|
+
/**
|
|
1567
|
+
* Implementation
|
|
1568
|
+
* @constant
|
|
1569
|
+
* @enum {string}
|
|
1570
|
+
*/
|
|
1571
|
+
implementation: "jarus_v2.5";
|
|
1572
|
+
payload: components["schemas"]["JarusV2_5ClassificationPayload"];
|
|
1573
|
+
};
|
|
1574
|
+
/** JarusV2_5SoraClassification */
|
|
1575
|
+
"JarusV2_5SoraClassification-Output": {
|
|
1576
|
+
/**
|
|
1577
|
+
* Implementation
|
|
1578
|
+
* @constant
|
|
1579
|
+
* @enum {string}
|
|
1580
|
+
*/
|
|
1581
|
+
implementation: "jarus_v2.5";
|
|
1582
|
+
payload: components["schemas"]["JarusV2_5ClassificationPayload"];
|
|
1583
|
+
};
|
|
1564
1584
|
/** JsonApiException */
|
|
1565
1585
|
JsonApiException: {
|
|
1566
1586
|
/**
|
|
@@ -2037,18 +2057,6 @@ export interface components {
|
|
|
2037
2057
|
*/
|
|
2038
2058
|
name: "Flight Geography" | "Contingency Buffer" | "Ground Risk Buffer" | "Adjacent Area";
|
|
2039
2059
|
};
|
|
2040
|
-
/** SoraClassification */
|
|
2041
|
-
"SoraClassification-Input": {
|
|
2042
|
-
/** @description The implementation of SORA that is described by `payload` */
|
|
2043
|
-
implementation: components["schemas"]["SoraImplementation"];
|
|
2044
|
-
payload: components["schemas"]["Classification"];
|
|
2045
|
-
};
|
|
2046
|
-
/** SoraClassification */
|
|
2047
|
-
"SoraClassification-Output": {
|
|
2048
|
-
/** @description The implementation of SORA that is described by `payload` */
|
|
2049
|
-
implementation: components["schemas"]["SoraImplementation"];
|
|
2050
|
-
payload: components["schemas"]["Classification"];
|
|
2051
|
-
};
|
|
2052
2060
|
/** SoraClassificationResponse */
|
|
2053
2061
|
SoraClassificationResponse: {
|
|
2054
2062
|
/**
|
|
@@ -2064,14 +2072,9 @@ export interface components {
|
|
|
2064
2072
|
* @enum {string}
|
|
2065
2073
|
*/
|
|
2066
2074
|
type?: "sora_classification";
|
|
2067
|
-
|
|
2075
|
+
/** Attributes */
|
|
2076
|
+
attributes: components["schemas"]["JarusV2_5SoraClassification-Output"] | components["schemas"]["UkSoraClassification-Output"];
|
|
2068
2077
|
};
|
|
2069
|
-
/**
|
|
2070
|
-
* SoraImplementation
|
|
2071
|
-
* @constant
|
|
2072
|
-
* @enum {string}
|
|
2073
|
-
*/
|
|
2074
|
-
SoraImplementation: "jarus_v2.5";
|
|
2075
2078
|
/** SoraReportAttributes */
|
|
2076
2079
|
SoraReportAttributes: {
|
|
2077
2080
|
/**
|
|
@@ -2440,6 +2443,68 @@ export interface components {
|
|
|
2440
2443
|
type?: "air_risk_classification";
|
|
2441
2444
|
attributes: components["schemas"]["UkArcAttributes"];
|
|
2442
2445
|
};
|
|
2446
|
+
/** UkClassificationPayload */
|
|
2447
|
+
UkClassificationPayload: {
|
|
2448
|
+
/**
|
|
2449
|
+
* Final GRC Determination
|
|
2450
|
+
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
2451
|
+
* @enum {integer}
|
|
2452
|
+
*/
|
|
2453
|
+
final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
2454
|
+
/** Residual Arc */
|
|
2455
|
+
residual_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")[];
|
|
2456
|
+
mitigations: components["schemas"]["UkMitigations"];
|
|
2457
|
+
/**
|
|
2458
|
+
* Ground Risk Buffer
|
|
2459
|
+
* @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.
|
|
2460
|
+
*/
|
|
2461
|
+
ground_risk_buffer: number;
|
|
2462
|
+
/** @description Population Density Data Source. Data has been re-projected and resampled to a square grid in UTM coordinates to work in the context of VIA's services. The value in each cell of the grid is the largest value present in any of the cells of the source grid it intersects. The values are normalised by source data cell area to derive a density value of people per square metre. */
|
|
2463
|
+
population_density_source: components["schemas"]["PopulationSource"];
|
|
2464
|
+
/** Controlled Ground Area Id */
|
|
2465
|
+
controlled_ground_area_id?: string | null;
|
|
2466
|
+
/** Atypical Airspace Id */
|
|
2467
|
+
atypical_airspace_id?: string | null;
|
|
2468
|
+
/** @default {
|
|
2469
|
+
* "max_cruise_speed": 20,
|
|
2470
|
+
* "characteristic_dimension": 0.5
|
|
2471
|
+
* } */
|
|
2472
|
+
aircraft?: components["schemas"]["Aircraft"];
|
|
2473
|
+
/**
|
|
2474
|
+
* Containment Robustness
|
|
2475
|
+
* @description Level of technical and operational mitigations intended to contain the flight of the UA within the defined operational volume and ground risk buffer.
|
|
2476
|
+
* @default low
|
|
2477
|
+
* @enum {string}
|
|
2478
|
+
*/
|
|
2479
|
+
containment_robustness?: "low" | "medium" | "high";
|
|
2480
|
+
};
|
|
2481
|
+
/** UkMitigations */
|
|
2482
|
+
UkMitigations: {
|
|
2483
|
+
/**
|
|
2484
|
+
* Mitigation 1(A)
|
|
2485
|
+
* @description Strategic mitigations for ground risk.
|
|
2486
|
+
* @enum {string}
|
|
2487
|
+
*/
|
|
2488
|
+
m1a: "none" | "low" | "medium";
|
|
2489
|
+
/**
|
|
2490
|
+
* Mitigation 1(B)
|
|
2491
|
+
* @description Visual Line of Sight (VLOS) - avoid flying over people
|
|
2492
|
+
* @enum {string}
|
|
2493
|
+
*/
|
|
2494
|
+
m1b: "none" | "medium" | "high";
|
|
2495
|
+
/**
|
|
2496
|
+
* Mitigation 1(C)
|
|
2497
|
+
* @description Tactical Mitigations - Ground observation
|
|
2498
|
+
* @enum {string}
|
|
2499
|
+
*/
|
|
2500
|
+
m1c: "none" | "low";
|
|
2501
|
+
/**
|
|
2502
|
+
* Mitigation 2
|
|
2503
|
+
* @description Efforts to reduce UA impact dynamics
|
|
2504
|
+
* @enum {string}
|
|
2505
|
+
*/
|
|
2506
|
+
m2: "none" | "medium" | "high";
|
|
2507
|
+
};
|
|
2443
2508
|
/** UkSailAttributes */
|
|
2444
2509
|
UkSailAttributes: {
|
|
2445
2510
|
/**
|
|
@@ -2487,6 +2552,26 @@ export interface components {
|
|
|
2487
2552
|
*/
|
|
2488
2553
|
ground_risk_buffer: number;
|
|
2489
2554
|
};
|
|
2555
|
+
/** UkSoraClassification */
|
|
2556
|
+
"UkSoraClassification-Input": {
|
|
2557
|
+
/**
|
|
2558
|
+
* Implementation
|
|
2559
|
+
* @constant
|
|
2560
|
+
* @enum {string}
|
|
2561
|
+
*/
|
|
2562
|
+
implementation: "uk";
|
|
2563
|
+
payload: components["schemas"]["UkClassificationPayload"];
|
|
2564
|
+
};
|
|
2565
|
+
/** UkSoraClassification */
|
|
2566
|
+
"UkSoraClassification-Output": {
|
|
2567
|
+
/**
|
|
2568
|
+
* Implementation
|
|
2569
|
+
* @constant
|
|
2570
|
+
* @enum {string}
|
|
2571
|
+
*/
|
|
2572
|
+
implementation: "uk";
|
|
2573
|
+
payload: components["schemas"]["UkClassificationPayload"];
|
|
2574
|
+
};
|
|
2490
2575
|
/** ValidationError */
|
|
2491
2576
|
ValidationError: {
|
|
2492
2577
|
/** Location */
|
|
@@ -5125,7 +5210,7 @@ export interface operations {
|
|
|
5125
5210
|
};
|
|
5126
5211
|
requestBody: {
|
|
5127
5212
|
content: {
|
|
5128
|
-
"application/json": components["schemas"]["
|
|
5213
|
+
"application/json": components["schemas"]["JarusV2_5SoraClassification-Input"] | components["schemas"]["UkSoraClassification-Input"];
|
|
5129
5214
|
};
|
|
5130
5215
|
};
|
|
5131
5216
|
responses: {
|
|
@@ -5247,7 +5332,7 @@ export interface operations {
|
|
|
5247
5332
|
};
|
|
5248
5333
|
requestBody: {
|
|
5249
5334
|
content: {
|
|
5250
|
-
"application/json": components["schemas"]["
|
|
5335
|
+
"application/json": components["schemas"]["JarusV2_5SoraClassification-Input"] | components["schemas"]["UkSoraClassification-Input"];
|
|
5251
5336
|
};
|
|
5252
5337
|
};
|
|
5253
5338
|
responses: {
|