@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 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 draft flightplan which will not conflict with any occupied airspace.
321
+ * @description Get a new start time for a flightplan which will not conflict with any occupied airspace.
322
322
  *
323
- * The flightplan will be delayed up to 10 minutes after the original start time or 10 minutes from
324
- * the specified start time if provided as a query parameter.
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
@@ -791,7 +791,7 @@ function defaultPathSerializer(pathname, pathParams) {
791
791
  return nextURL;
792
792
  }
793
793
 
794
- var version = "1.4767.1";
794
+ var version = "1.4775.1";
795
795
 
796
796
  const querySerializer = createQuerySerializer();
797
797
  class Fetcher {
package/dist/index.esm.js CHANGED
@@ -789,7 +789,7 @@ function defaultPathSerializer(pathname, pathParams) {
789
789
  return nextURL;
790
790
  }
791
791
 
792
- var version = "1.4767.1";
792
+ var version = "1.4775.1";
793
793
 
794
794
  const querySerializer = createQuerySerializer();
795
795
  class Fetcher {
@@ -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 draft flightplan which will not conflict with any occupied airspace.
188
+ * @description Get a new start time for a flightplan which will not conflict with any occupied airspace.
189
189
  *
190
- * The flightplan will be delayed up to 10 minutes after the original start time or 10 minutes from
191
- * the specified start time if provided as a query parameter.
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 check in seconds */
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4767.1",
3
+ "version": "1.4775.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",