@volant-autonomy/via-sdk 1.4543.1 → 1.4554.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 +4 -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
|
@@ -4589,6 +4589,10 @@ export interface operations {
|
|
|
4589
4589
|
"filter[title]"?: string | null;
|
|
4590
4590
|
/** @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'. */
|
|
4591
4591
|
"filter[time_start][gte]"?: string | null;
|
|
4592
|
+
/** @description Filter results by last modified before the provided 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'. */
|
|
4593
|
+
"filter[time_updated][lt]"?: string | null;
|
|
4594
|
+
/** @description Filter results by last modified after or equal to the provided 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'. */
|
|
4595
|
+
"filter[time_updated][gte]"?: string | null;
|
|
4592
4596
|
"page[offset]"?: number;
|
|
4593
4597
|
"page[limit]"?: number;
|
|
4594
4598
|
};
|