@volant-autonomy/via-sdk 1.4449.1 → 1.4460.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
@@ -71,7 +71,6 @@ export declare class Direct {
71
71
  /**
72
72
  * List Flightplans
73
73
  * @description List user's flightplans, including Flightplan ID and state.
74
- * The most recent 20 flight plans are returned.
75
74
  */
76
75
  getAllFlightplans<Opts extends requestOptions = {}>(args: queryOf<getAllFlightplans>, opts?: Opts | requestOptions): Promise<{
77
76
  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.4449.1";
794
+ var version = "1.4460.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.4449.1";
792
+ var version = "1.4460.1";
793
793
 
794
794
  const querySerializer = createQuerySerializer();
795
795
  class Fetcher {
@@ -33,7 +33,6 @@ export interface paths {
33
33
  /**
34
34
  * List Flightplans
35
35
  * @description List user's flightplans, including Flightplan ID and state.
36
- * The most recent 20 flight plans are returned.
37
36
  */
38
37
  get: operations["flightplan_list_v1_flightplans__get"];
39
38
  put?: never;
@@ -4395,7 +4394,14 @@ export interface operations {
4395
4394
  flightplan_list_v1_flightplans__get: {
4396
4395
  parameters: {
4397
4396
  query?: {
4397
+ /** @description Filter results by specified states. */
4398
4398
  "filter[state]"?: components["schemas"]["AirspaceRestrictionState"][];
4399
+ /** @description Filter results by specified chart. */
4400
+ "filter[chart_id]"?: string | null;
4401
+ /** @description Filter results by the specified substring for the title field. Matching is case insensitive and the substring may occur at any point in the field. */
4402
+ "filter[title]"?: string | null;
4403
+ /** @description Filter results by a specified start time, note that this comparison is evaluated against the earliest possible start time for a given Flightplan and not the time_start field directly. The earliest possible start time must be greater than or equal to this value.Must be RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'. */
4404
+ "filter[time_start][gte]"?: string | null;
4399
4405
  "page[offset]"?: number;
4400
4406
  "page[limit]"?: number;
4401
4407
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4449.1",
3
+ "version": "1.4460.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",