@volant-autonomy/via-sdk 1.4433.1 → 1.4447.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 +12 -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
|
@@ -1700,6 +1700,12 @@ export interface components {
|
|
|
1700
1700
|
* @description Common attributes for a flightplan.
|
|
1701
1701
|
*/
|
|
1702
1702
|
"Flightplan-Input": {
|
|
1703
|
+
/**
|
|
1704
|
+
* Title
|
|
1705
|
+
* @description Human-Readable name, may contain symbols and spaces
|
|
1706
|
+
* @example New Flightplan
|
|
1707
|
+
*/
|
|
1708
|
+
title?: string | null;
|
|
1703
1709
|
/**
|
|
1704
1710
|
* Chart ID
|
|
1705
1711
|
* @description Unique identifier for a chart.
|
|
@@ -1791,6 +1797,12 @@ export interface components {
|
|
|
1791
1797
|
* @description Common attributes for a flightplan.
|
|
1792
1798
|
*/
|
|
1793
1799
|
"Flightplan-Output": {
|
|
1800
|
+
/**
|
|
1801
|
+
* Title
|
|
1802
|
+
* @description Human-Readable name, may contain symbols and spaces
|
|
1803
|
+
* @example New Flightplan
|
|
1804
|
+
*/
|
|
1805
|
+
title?: string | null;
|
|
1794
1806
|
/**
|
|
1795
1807
|
* Chart ID
|
|
1796
1808
|
* @description Unique identifier for a chart.
|