@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 +4 -4
- package/dist/volant-schema.d.ts +16 -5
- package/package.json +1 -1
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
|
-
|
|
757
|
-
|
|
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
|
-
|
|
787
|
-
|
|
786
|
+
type?: "air_risk_classification";
|
|
787
|
+
attributes: import("./volant-schema").components["schemas"]["ArcAttributes"];
|
|
788
788
|
};
|
|
789
789
|
error?: never;
|
|
790
790
|
response: Response;
|
package/dist/volant-schema.d.ts
CHANGED
|
@@ -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
|
-
*
|
|
891
|
-
* @
|
|
900
|
+
* Type
|
|
901
|
+
* @default air_risk_classification
|
|
902
|
+
* @constant
|
|
903
|
+
* @enum {string}
|
|
892
904
|
*/
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
implemented: boolean;
|
|
905
|
+
type?: "air_risk_classification";
|
|
906
|
+
attributes: components["schemas"]["ArcAttributes"];
|
|
896
907
|
};
|
|
897
908
|
/**
|
|
898
909
|
* AtypicalAirspace
|