@volant-autonomy/via-sdk 1.2895.1 → 1.2908.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
@@ -753,8 +753,8 @@ export declare class Direct {
753
753
  } : never) | {
754
754
  data: {
755
755
  id: import("./volant-schema").components["schemas"]["ARC"];
756
- name: string;
757
- implemented: boolean;
756
+ type?: "air_risk_classification";
757
+ attributes: import("./volant-schema").components["schemas"]["ArcAttributes"];
758
758
  }[];
759
759
  error?: never;
760
760
  response: Response;
@@ -783,8 +783,8 @@ export declare class Direct {
783
783
  } : never) | {
784
784
  data: {
785
785
  id: import("./volant-schema").components["schemas"]["ARC"];
786
- name: string;
787
- implemented: boolean;
786
+ type?: "air_risk_classification";
787
+ attributes: import("./volant-schema").components["schemas"]["ArcAttributes"];
788
788
  };
789
789
  error?: never;
790
790
  response: Response;
@@ -842,6 +842,16 @@ export interface components {
842
842
  */
843
843
  max_lat: number;
844
844
  };
845
+ /** ArcAttributes */
846
+ ArcAttributes: {
847
+ /**
848
+ * ARC display name
849
+ * @description ARC sub-category display name
850
+ */
851
+ name: string;
852
+ /** Implemented */
853
+ implemented: boolean;
854
+ };
845
855
  /** ArcResponse */
846
856
  ArcResponse: {
847
857
  /**
@@ -887,12 +897,13 @@ export interface components {
887
897
  */
888
898
  id: components["schemas"]["ARC"];
889
899
  /**
890
- * ARC display name
891
- * @description ARC sub-category display name
900
+ * Type
901
+ * @default air_risk_classification
902
+ * @constant
903
+ * @enum {string}
892
904
  */
893
- name: string;
894
- /** Implemented */
895
- implemented: boolean;
905
+ type?: "air_risk_classification";
906
+ attributes: components["schemas"]["ArcAttributes"];
896
907
  };
897
908
  /**
898
909
  * AtypicalAirspace
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.2895.1",
3
+ "version": "1.2908.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",