@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 +0 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +7 -1
- package/package.json +1 -1
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
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -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
|
};
|