@volant-autonomy/via-sdk 1.3974.1 → 1.3987.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 +21 -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
|
@@ -1265,6 +1265,8 @@ export interface components {
|
|
|
1265
1265
|
*/
|
|
1266
1266
|
bounding_polygon: components["schemas"]["Wgs84Point"][];
|
|
1267
1267
|
data_sources: components["schemas"]["DataSources"];
|
|
1268
|
+
/** Managed Cost Datasets */
|
|
1269
|
+
managed_cost_datasets: components["schemas"]["ManagedCostDatasetMetadata"][];
|
|
1268
1270
|
georeference: components["schemas"]["Georeference"];
|
|
1269
1271
|
};
|
|
1270
1272
|
/** ChartResponse */
|
|
@@ -2206,6 +2208,25 @@ export interface components {
|
|
|
2206
2208
|
*/
|
|
2207
2209
|
expires_in: number;
|
|
2208
2210
|
};
|
|
2211
|
+
/**
|
|
2212
|
+
* ManagedCostDatasetMetadata
|
|
2213
|
+
* @description A set of parameters used to calculate the pre-processed chart cost fields and that uniquely specify a pre-processed
|
|
2214
|
+
* cost field.
|
|
2215
|
+
*/
|
|
2216
|
+
ManagedCostDatasetMetadata: {
|
|
2217
|
+
/**
|
|
2218
|
+
* Aircraft ID
|
|
2219
|
+
* @description Unique identifier for an aircraft.
|
|
2220
|
+
*/
|
|
2221
|
+
aircraft_id: string;
|
|
2222
|
+
/** Altitude */
|
|
2223
|
+
altitude: number;
|
|
2224
|
+
/**
|
|
2225
|
+
* Category
|
|
2226
|
+
* @constant
|
|
2227
|
+
*/
|
|
2228
|
+
category: "ground_risk";
|
|
2229
|
+
};
|
|
2209
2230
|
/**
|
|
2210
2231
|
* PathingCheckpointParameters
|
|
2211
2232
|
* @description Parameters that are applied to the leg of the journey towards the checkpoint.
|