@volant-autonomy/via-sdk 1.4562.1 → 1.4571.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 +20 -0
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -931,6 +931,14 @@ export interface components {
|
|
|
931
931
|
* @enum {string}
|
|
932
932
|
*/
|
|
933
933
|
ARC: "arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-b2" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-c5" | "arc-c6" | "arc-c7" | "arc-d1" | "arc-d2" | "arc-d3" | "arc-d4";
|
|
934
|
+
/** AglAlgorithm */
|
|
935
|
+
AglAlgorithm: {
|
|
936
|
+
/**
|
|
937
|
+
* Mode
|
|
938
|
+
* @constant
|
|
939
|
+
*/
|
|
940
|
+
mode: "AGL";
|
|
941
|
+
};
|
|
934
942
|
/**
|
|
935
943
|
* Aircraft
|
|
936
944
|
* @description Characteristics that define an aircraft for SORA calculations.
|
|
@@ -1144,6 +1152,14 @@ export interface components {
|
|
|
1144
1152
|
*/
|
|
1145
1153
|
reference: "AGL" | "AMSL";
|
|
1146
1154
|
};
|
|
1155
|
+
/** AmslAlgorithm */
|
|
1156
|
+
AmslAlgorithm: {
|
|
1157
|
+
/**
|
|
1158
|
+
* Mode
|
|
1159
|
+
* @constant
|
|
1160
|
+
*/
|
|
1161
|
+
mode: "AMSL";
|
|
1162
|
+
};
|
|
1147
1163
|
/** AoiBounding */
|
|
1148
1164
|
AoiBounding: {
|
|
1149
1165
|
/**
|
|
@@ -4262,6 +4278,10 @@ export interface components {
|
|
|
4262
4278
|
msg: string;
|
|
4263
4279
|
/** Error Type */
|
|
4264
4280
|
type: string;
|
|
4281
|
+
/** Input */
|
|
4282
|
+
input?: unknown;
|
|
4283
|
+
/** Context */
|
|
4284
|
+
ctx?: Record<string, never>;
|
|
4265
4285
|
};
|
|
4266
4286
|
/** VerticalParameters */
|
|
4267
4287
|
VerticalParameters: {
|