@volant-autonomy/via-sdk 1.2875.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 +44 -37
- 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
|
|
@@ -1182,17 +1193,15 @@ export interface components {
|
|
|
1182
1193
|
FlightplanMeta: {
|
|
1183
1194
|
/** @description State of a flightplan.
|
|
1184
1195
|
*
|
|
1185
|
-
* - 'Draft' Flightplan is in preparation for submission to accepted state. Modifications and
|
|
1186
|
-
*
|
|
1196
|
+
* - 'Draft' Flightplan is in preparation for submission to accepted state. Modifications and inspections can be
|
|
1197
|
+
* made to the flightplan prior to submission for accepted state.
|
|
1187
1198
|
*
|
|
1188
1199
|
* - 'Pending' Flightplan draft has been marked as ready for review.
|
|
1189
1200
|
*
|
|
1190
|
-
* - 'Accepted' Flightplan is validated as deconflicted, and is registered as an accepted
|
|
1191
|
-
*
|
|
1192
|
-
* associated with this flightplan.
|
|
1201
|
+
* - 'Accepted' Flightplan is validated as deconflicted, and is registered as an accepted flight in the database.
|
|
1202
|
+
* Subsequent flight plans will be deconflicted against the volumes associated with this flightplan.
|
|
1193
1203
|
*
|
|
1194
|
-
* - 'Closed' Flightplan is no longer valid and cannot be modified or submitted for accepted
|
|
1195
|
-
* state.
|
|
1204
|
+
* - 'Closed' Flightplan is no longer valid and cannot be modified or submitted for accepted state.
|
|
1196
1205
|
* */
|
|
1197
1206
|
state: components["schemas"]["AirspaceRestrictionState"];
|
|
1198
1207
|
};
|
|
@@ -1320,8 +1329,8 @@ export interface components {
|
|
|
1320
1329
|
* Type
|
|
1321
1330
|
* @description The type of a Pathing Checkpoint
|
|
1322
1331
|
*
|
|
1323
|
-
*
|
|
1324
|
-
*
|
|
1332
|
+
* - `START`: The beginning of a Pathing Task
|
|
1333
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1325
1334
|
*
|
|
1326
1335
|
* @constant
|
|
1327
1336
|
* @enum {string}
|
|
@@ -1344,8 +1353,8 @@ export interface components {
|
|
|
1344
1353
|
* Type
|
|
1345
1354
|
* @description The type of a `Waypoint`
|
|
1346
1355
|
*
|
|
1347
|
-
*
|
|
1348
|
-
*
|
|
1356
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1357
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1349
1358
|
*
|
|
1350
1359
|
* @constant
|
|
1351
1360
|
* @enum {string}
|
|
@@ -1369,8 +1378,8 @@ export interface components {
|
|
|
1369
1378
|
* Type
|
|
1370
1379
|
* @description The type of a `Waypoint`
|
|
1371
1380
|
*
|
|
1372
|
-
*
|
|
1373
|
-
*
|
|
1381
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1382
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1374
1383
|
*
|
|
1375
1384
|
* @constant
|
|
1376
1385
|
* @enum {string}
|
|
@@ -1386,8 +1395,8 @@ export interface components {
|
|
|
1386
1395
|
* Type
|
|
1387
1396
|
* @description The type of a `Waypoint`
|
|
1388
1397
|
*
|
|
1389
|
-
*
|
|
1390
|
-
*
|
|
1398
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1399
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1391
1400
|
*
|
|
1392
1401
|
* @constant
|
|
1393
1402
|
* @enum {string}
|
|
@@ -1761,10 +1770,10 @@ export interface components {
|
|
|
1761
1770
|
PathingTaskMeta: {
|
|
1762
1771
|
/** @description State of a pathing task.
|
|
1763
1772
|
*
|
|
1764
|
-
*
|
|
1765
|
-
*
|
|
1766
|
-
*
|
|
1767
|
-
*
|
|
1773
|
+
* - 'queued' The pathing task is waiting to be calculated.
|
|
1774
|
+
* - 'in-progress' The pathing task is being calculated.
|
|
1775
|
+
* - 'successful' The pathing task is complete and the waypoints that make up the risk-minimised and de-conflicted path are available.
|
|
1776
|
+
* - 'failed' The pathing task failed, a path is unachievable. */
|
|
1768
1777
|
state: components["schemas"]["PathingTaskState"];
|
|
1769
1778
|
/**
|
|
1770
1779
|
* Error Code
|
|
@@ -2189,8 +2198,8 @@ export interface components {
|
|
|
2189
2198
|
* Type
|
|
2190
2199
|
* @description The type of a Pathing Checkpoint
|
|
2191
2200
|
*
|
|
2192
|
-
*
|
|
2193
|
-
*
|
|
2201
|
+
* - `START`: The beginning of a Pathing Task
|
|
2202
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
2194
2203
|
*
|
|
2195
2204
|
* @constant
|
|
2196
2205
|
* @enum {string}
|
|
@@ -2207,8 +2216,8 @@ export interface components {
|
|
|
2207
2216
|
* Type
|
|
2208
2217
|
* @description The type of a `Waypoint`
|
|
2209
2218
|
*
|
|
2210
|
-
*
|
|
2211
|
-
*
|
|
2219
|
+
* - `START`: The beginning of a `Flightplan`
|
|
2220
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
2212
2221
|
*
|
|
2213
2222
|
* @constant
|
|
2214
2223
|
* @enum {string}
|
|
@@ -2222,8 +2231,8 @@ export interface components {
|
|
|
2222
2231
|
* Type
|
|
2223
2232
|
* @description The type of a `Waypoint`
|
|
2224
2233
|
*
|
|
2225
|
-
*
|
|
2226
|
-
*
|
|
2234
|
+
* - `START`: The beginning of a `Flightplan`
|
|
2235
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
2227
2236
|
*
|
|
2228
2237
|
* @constant
|
|
2229
2238
|
* @enum {string}
|
|
@@ -2255,17 +2264,15 @@ export interface components {
|
|
|
2255
2264
|
StateRequest: {
|
|
2256
2265
|
/** @description State of a flightplan.
|
|
2257
2266
|
*
|
|
2258
|
-
* - 'Draft' Flightplan is in preparation for submission to accepted state. Modifications and
|
|
2259
|
-
*
|
|
2267
|
+
* - 'Draft' Flightplan is in preparation for submission to accepted state. Modifications and inspections can be
|
|
2268
|
+
* made to the flightplan prior to submission for accepted state.
|
|
2260
2269
|
*
|
|
2261
2270
|
* - 'Pending' Flightplan draft has been marked as ready for review.
|
|
2262
2271
|
*
|
|
2263
|
-
* - 'Accepted' Flightplan is validated as deconflicted, and is registered as an accepted
|
|
2264
|
-
*
|
|
2265
|
-
* associated with this flightplan.
|
|
2272
|
+
* - 'Accepted' Flightplan is validated as deconflicted, and is registered as an accepted flight in the database.
|
|
2273
|
+
* Subsequent flight plans will be deconflicted against the volumes associated with this flightplan.
|
|
2266
2274
|
*
|
|
2267
|
-
* - 'Closed' Flightplan is no longer valid and cannot be modified or submitted for accepted
|
|
2268
|
-
* state.
|
|
2275
|
+
* - 'Closed' Flightplan is no longer valid and cannot be modified or submitted for accepted state.
|
|
2269
2276
|
* */
|
|
2270
2277
|
state: components["schemas"]["AirspaceRestrictionState"];
|
|
2271
2278
|
};
|