@volant-autonomy/via-sdk 1.4612.1 → 1.4622.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.esm.js +1 -1
- package/dist/volant-schema.d.ts +47 -14
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -1152,12 +1152,8 @@ export interface components {
|
|
|
1152
1152
|
* @example 100
|
|
1153
1153
|
*/
|
|
1154
1154
|
value: number;
|
|
1155
|
-
/**
|
|
1156
|
-
|
|
1157
|
-
* @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.
|
|
1158
|
-
* @enum {string}
|
|
1159
|
-
*/
|
|
1160
|
-
reference: "AGL" | "AMSL";
|
|
1155
|
+
/** @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. */
|
|
1156
|
+
reference: components["schemas"]["AltitudeReference"];
|
|
1161
1157
|
};
|
|
1162
1158
|
/** Altitude */
|
|
1163
1159
|
"Altitude-Output": {
|
|
@@ -1167,13 +1163,11 @@ export interface components {
|
|
|
1167
1163
|
* @example 100
|
|
1168
1164
|
*/
|
|
1169
1165
|
value: number;
|
|
1170
|
-
/**
|
|
1171
|
-
|
|
1172
|
-
* @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.
|
|
1173
|
-
* @enum {string}
|
|
1174
|
-
*/
|
|
1175
|
-
reference: "AGL" | "AMSL";
|
|
1166
|
+
/** @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. */
|
|
1167
|
+
reference: components["schemas"]["AltitudeReference"];
|
|
1176
1168
|
};
|
|
1169
|
+
/** @enum {string} */
|
|
1170
|
+
AltitudeReference: "AGL" | "AMSL";
|
|
1177
1171
|
/**
|
|
1178
1172
|
* AmslAlgorithm
|
|
1179
1173
|
* @description Change altitude Above Mean Sea Level (AMSL) with constant rate along the path between checkpoints, or maintain a
|
|
@@ -2031,6 +2025,40 @@ export interface components {
|
|
|
2031
2025
|
meta: components["schemas"]["FlightplanMeta"];
|
|
2032
2026
|
attributes: components["schemas"]["Flightplan-Output"];
|
|
2033
2027
|
};
|
|
2028
|
+
/** FlightplanVolume4D */
|
|
2029
|
+
FlightplanVolume4D: {
|
|
2030
|
+
volume: components["schemas"]["Volume3D-Output"];
|
|
2031
|
+
/**
|
|
2032
|
+
* Time Start
|
|
2033
|
+
* Format: date-time
|
|
2034
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2035
|
+
* @example 2023-10-30T10:57:57Z
|
|
2036
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
2037
|
+
*/
|
|
2038
|
+
time_start: string;
|
|
2039
|
+
/**
|
|
2040
|
+
* Time End
|
|
2041
|
+
* Format: date-time
|
|
2042
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2043
|
+
* @example 2023-10-30T10:57:57Z
|
|
2044
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
2045
|
+
*/
|
|
2046
|
+
time_end: string;
|
|
2047
|
+
/**
|
|
2048
|
+
* Planar Distance Start
|
|
2049
|
+
* @description The distance from the start of the flightplan to the start of the volume, along the length of the flightplan. May be negative; the first volume begins before the first waypoint of the flightplan.
|
|
2050
|
+
* @example -10
|
|
2051
|
+
* @example 44.5
|
|
2052
|
+
*/
|
|
2053
|
+
planar_distance_start: number;
|
|
2054
|
+
/**
|
|
2055
|
+
* Planar Distance End
|
|
2056
|
+
* @description The distance from the start of the flightplan to the end of the volume, along the length of the flightplan. May exceed the length of the flightplan; the last volume ends after the last waypoint of the flightplan.
|
|
2057
|
+
* @example 110
|
|
2058
|
+
* @example 891.1
|
|
2059
|
+
*/
|
|
2060
|
+
planar_distance_end: number;
|
|
2061
|
+
};
|
|
2034
2062
|
/** GeoJsonCollection[SemanticModelProperties] */
|
|
2035
2063
|
GeoJsonCollection_SemanticModelProperties_: {
|
|
2036
2064
|
/**
|
|
@@ -4438,7 +4466,7 @@ export interface components {
|
|
|
4438
4466
|
* @constant
|
|
4439
4467
|
*/
|
|
4440
4468
|
type?: "volumes";
|
|
4441
|
-
attributes: components["schemas"]["
|
|
4469
|
+
attributes: components["schemas"]["FlightplanVolume4D"];
|
|
4442
4470
|
meta: components["schemas"]["VolumeMeta"];
|
|
4443
4471
|
};
|
|
4444
4472
|
/**
|
|
@@ -5165,7 +5193,12 @@ export interface operations {
|
|
|
5165
5193
|
};
|
|
5166
5194
|
flightplan_volumes_v1_flightplans__flightplan_id__volumes_get: {
|
|
5167
5195
|
parameters: {
|
|
5168
|
-
query?:
|
|
5196
|
+
query?: {
|
|
5197
|
+
/** @description The altitude reference in which to return altitude upper and lower limits of the volumes. Currently supports AGL (Above Ground Level) or AMSL (Above Mean Sea Level). */
|
|
5198
|
+
altitude_reference?: components["schemas"]["AltitudeReference"];
|
|
5199
|
+
/** @description For each volume, return information about anything in conflict with it, e.g. other volumes, SORA constraints or geocages. Default true. */
|
|
5200
|
+
return_conflicts?: boolean;
|
|
5201
|
+
};
|
|
5169
5202
|
header?: never;
|
|
5170
5203
|
path: {
|
|
5171
5204
|
/** @description Unique identifier of the flightplan. */
|