@volant-autonomy/via-sdk 1.3201.1 → 1.3209.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.
@@ -1886,6 +1886,18 @@ export interface components {
1886
1886
  * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
1887
1887
  */
1888
1888
  waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Output"])[];
1889
+ /**
1890
+ * Time Start
1891
+ * Format: date-time
1892
+ * @description 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'.
1893
+ */
1894
+ time_start: string;
1895
+ /**
1896
+ * Time End
1897
+ * Format: date-time
1898
+ * @description 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'.
1899
+ */
1900
+ time_end: string;
1889
1901
  };
1890
1902
  /** PathingTaskMeta */
1891
1903
  PathingTaskMeta: {
@@ -2614,7 +2626,7 @@ export interface components {
2614
2626
  * Final GRC Determination
2615
2627
  * @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
2616
2628
  */
2617
- final_grc: number | "Category C";
2629
+ final_grc: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10) | "Category C";
2618
2630
  /**
2619
2631
  * Intrinsic UAS Ground Risk Class (iGRC)
2620
2632
  * @description The intrinsic UAS ground risk relates to the risk of a person being fatally struck by the UAS in the case where the UAS operation is out of control) absent of any mitigations being present
@@ -5064,7 +5076,7 @@ export interface operations {
5064
5076
  parameters: {
5065
5077
  query: {
5066
5078
  /** @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC. */
5067
- final_grc: number;
5079
+ final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
5068
5080
  /**
5069
5081
  * @description Qualitative classification of the air environment.
5070
5082
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.3201.1",
3
+ "version": "1.3209.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",