@volant-autonomy/via-sdk 1.4767.1 → 1.4775.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/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +6 -4
- package/package.json +1 -1
package/dist/direct.d.ts
CHANGED
|
@@ -318,10 +318,10 @@ export declare class Direct {
|
|
|
318
318
|
}>;
|
|
319
319
|
/**
|
|
320
320
|
* Returns the inputted flightplan with an updated start time that does not conflict
|
|
321
|
-
* @description Get a new start time for a
|
|
321
|
+
* @description Get a new start time for a flightplan which will not conflict with any occupied airspace.
|
|
322
322
|
*
|
|
323
|
-
*
|
|
324
|
-
* the
|
|
323
|
+
* A new start time is calculated from either the current flightplan start time or the provided start time in steps
|
|
324
|
+
* of the provided time interval up to the max provided time displacement or 50 iterations, whichever occurs first.
|
|
325
325
|
*/
|
|
326
326
|
getFlightplanDeconflictedStartTime<Opts extends requestOptions = {}>(id: pathOf<getFlightplanDeconflictedStartTime>['flightplan_id'], args: queryOf<getFlightplanDeconflictedStartTime>, opts?: Opts | requestOptions): Promise<{
|
|
327
327
|
data?: never;
|
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -185,10 +185,10 @@ export interface paths {
|
|
|
185
185
|
};
|
|
186
186
|
/**
|
|
187
187
|
* Returns the inputted flightplan with an updated start time that does not conflict
|
|
188
|
-
* @description Get a new start time for a
|
|
188
|
+
* @description Get a new start time for a flightplan which will not conflict with any occupied airspace.
|
|
189
189
|
*
|
|
190
|
-
*
|
|
191
|
-
* the
|
|
190
|
+
* A new start time is calculated from either the current flightplan start time or the provided start time in steps
|
|
191
|
+
* of the provided time interval up to the max provided time displacement or 50 iterations, whichever occurs first.
|
|
192
192
|
*/
|
|
193
193
|
get: operations["flightplan_deconflicted_start_time_v1_flightplans__flightplan_id__start_time_deconflict_get"];
|
|
194
194
|
put?: never;
|
|
@@ -5284,9 +5284,11 @@ export interface operations {
|
|
|
5284
5284
|
flightplan_deconflicted_start_time_v1_flightplans__flightplan_id__start_time_deconflict_get: {
|
|
5285
5285
|
parameters: {
|
|
5286
5286
|
query?: {
|
|
5287
|
+
/** @description Initial time to begin search from, where not provided, the current start time of the flightplan will be used */
|
|
5287
5288
|
start_time?: string | null;
|
|
5288
|
-
/** @description Interval of time to
|
|
5289
|
+
/** @description Interval of time to iterate by when checking for the next potentially deconflicted start time */
|
|
5289
5290
|
time_interval?: number;
|
|
5291
|
+
/** @description The maximum time into the future to look for a departure time that has no conflicts */
|
|
5290
5292
|
max_time_displacement?: number | null;
|
|
5291
5293
|
};
|
|
5292
5294
|
header?: never;
|