@volant-autonomy/via-sdk 1.3889.1 → 1.3903.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 +25 -25
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +43 -41
- package/package.json +1 -1
package/dist/direct.d.ts
CHANGED
|
@@ -164,7 +164,7 @@ export declare class Direct {
|
|
|
164
164
|
}>;
|
|
165
165
|
/**
|
|
166
166
|
* Retrieve a Flightplan
|
|
167
|
-
* @description Retrieve the specified flightplan
|
|
167
|
+
* @description Retrieve the specified flightplan.
|
|
168
168
|
*/
|
|
169
169
|
getFlightplan<Opts extends requestOptions = {}>(id: pathOf<getFlightplan>['flightplan_id'], opts?: Opts | requestOptions): Promise<{
|
|
170
170
|
data?: never;
|
|
@@ -195,7 +195,7 @@ export declare class Direct {
|
|
|
195
195
|
}>;
|
|
196
196
|
/**
|
|
197
197
|
* Retrieve detailed Waypoints
|
|
198
|
-
* @description Retrieve detailed waypoints related to the specified flightplan
|
|
198
|
+
* @description Retrieve detailed waypoints related to the specified flightplan.
|
|
199
199
|
*/
|
|
200
200
|
getFlightplanWaypointsDetailed<Opts extends requestOptions = {}>(id: pathOf<getFlightplanWaypointsDetailed>['flightplan_id'], opts?: Opts | requestOptions): Promise<{
|
|
201
201
|
data?: never;
|
|
@@ -255,7 +255,7 @@ export declare class Direct {
|
|
|
255
255
|
}>;
|
|
256
256
|
/**
|
|
257
257
|
* Retrieve Flightplan Operational Intent Volumes
|
|
258
|
-
* @description Retrieve Operational Intent Volumes for the specified flightplan
|
|
258
|
+
* @description Retrieve Operational Intent Volumes for the specified flightplan.
|
|
259
259
|
*
|
|
260
260
|
* Volumes wholly contain the operational intent while being as small as practical. Start and end times, as well as
|
|
261
261
|
* lower and upper altitudes, are required for each volume. The end time may not be in the past. Volumes are generated
|
|
@@ -322,7 +322,7 @@ export declare class Direct {
|
|
|
322
322
|
}>;
|
|
323
323
|
/**
|
|
324
324
|
* Change the state of a Flightplan
|
|
325
|
-
* @description Change the state of the specified flightplan
|
|
325
|
+
* @description Change the state of the specified flightplan.
|
|
326
326
|
*/
|
|
327
327
|
changeFlightplanState<Opts extends requestOptions = {}>(id: pathOf<changeFlightplanState>['flightplan_id'], state: bodyOf<changeFlightplanState>['state'], opts?: Opts | requestOptions): Promise<{
|
|
328
328
|
data?: never;
|
|
@@ -348,7 +348,7 @@ export declare class Direct {
|
|
|
348
348
|
}>;
|
|
349
349
|
/**
|
|
350
350
|
* Retrieve a formatted version of a Flightplan
|
|
351
|
-
* @description Retrieve a formatted version of the specified flightplan to download as a file
|
|
351
|
+
* @description Retrieve a formatted version of the specified flightplan to download as a file.
|
|
352
352
|
*/
|
|
353
353
|
getFlightplanAsFile<Opts extends requestOptions = {}>(id: pathOf<getFlightplanAsFile>['flightplan_id'], opts?: Opts | requestOptions): Promise<{
|
|
354
354
|
data?: never;
|
|
@@ -414,7 +414,7 @@ export declare class Direct {
|
|
|
414
414
|
}>;
|
|
415
415
|
/**
|
|
416
416
|
* List Airspace Constraints
|
|
417
|
-
* @description List Airspace Constraints
|
|
417
|
+
* @description List Airspace Constraints.
|
|
418
418
|
*/
|
|
419
419
|
getAllAirspaceConstraints<Opts extends requestOptions = {}>(opts?: Opts | requestOptions): Promise<{
|
|
420
420
|
data?: never;
|
|
@@ -445,7 +445,7 @@ export declare class Direct {
|
|
|
445
445
|
}>;
|
|
446
446
|
/**
|
|
447
447
|
* Retrieve an Airspace Constraint
|
|
448
|
-
* @description Retrieve the specified Airspace Constraint
|
|
448
|
+
* @description Retrieve the specified Airspace Constraint.
|
|
449
449
|
*/
|
|
450
450
|
getAirspaceConstraint<Opts extends requestOptions = {}>(id: pathOf<getAirspaceConstraint>['airspace_constraint_id'], opts?: Opts | requestOptions): Promise<{
|
|
451
451
|
data?: never;
|
|
@@ -601,7 +601,7 @@ export declare class Direct {
|
|
|
601
601
|
}>;
|
|
602
602
|
/**
|
|
603
603
|
* Receive state change updates for a pathing task
|
|
604
|
-
* @description
|
|
604
|
+
* @description Open a persistent connection that sends real-time updates about changes in a pathing task's state using Server-Sent
|
|
605
605
|
* Events (SSE).
|
|
606
606
|
*
|
|
607
607
|
* Provides an event stream that can be connected to that will provide updates when the state of the specified pathing
|
|
@@ -641,7 +641,7 @@ export declare class Direct {
|
|
|
641
641
|
}>;
|
|
642
642
|
/**
|
|
643
643
|
* Retrieve a specific Chart
|
|
644
|
-
* @description Retrieve a specified Chart
|
|
644
|
+
* @description Retrieve a specified Chart.
|
|
645
645
|
*/
|
|
646
646
|
getChart<Opts extends requestOptions = {}>(id: pathOf<getChart>['chart_id'], opts?: Opts | requestOptions): Promise<{
|
|
647
647
|
data?: never;
|
|
@@ -823,7 +823,7 @@ export declare class Direct {
|
|
|
823
823
|
}>;
|
|
824
824
|
/**
|
|
825
825
|
* Generate volumes that correspond to the SORA Semantic Model
|
|
826
|
-
* @description Generate volumes that correspond to the SORA Semantic Model
|
|
826
|
+
* @description Generate volumes that correspond to the SORA Semantic Model.
|
|
827
827
|
*/
|
|
828
828
|
generateSoraSemanticModelVolumesV2_5<Opts extends requestOptions = {}>(args: bodyOf<generateSoraSemanticModelVolumesV2_5>, opts?: Opts | requestOptions): Promise<{
|
|
829
829
|
data?: never;
|
|
@@ -1021,7 +1021,7 @@ export declare class Direct {
|
|
|
1021
1021
|
}>;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* Create a SORA Classification
|
|
1024
|
-
* @description Create a SORA Classification
|
|
1024
|
+
* @description Create a SORA Classification.
|
|
1025
1025
|
*/
|
|
1026
1026
|
createSoraClassification<Opts extends requestOptions = {}>(args: bodyOf<createSoraClassification>, opts?: Opts | requestOptions): Promise<{
|
|
1027
1027
|
data?: never;
|
|
@@ -1051,7 +1051,7 @@ export declare class Direct {
|
|
|
1051
1051
|
}>;
|
|
1052
1052
|
/**
|
|
1053
1053
|
* Update a SORA Classification
|
|
1054
|
-
* @description Update a SORA Classification
|
|
1054
|
+
* @description Update a SORA Classification.
|
|
1055
1055
|
*/
|
|
1056
1056
|
updateSoraClassification<Opts extends requestOptions = {}>(id: pathOf<updateSoraClassification>['classification_id'], args: bodyOf<updateSoraClassification>, opts?: Opts | requestOptions): Promise<{
|
|
1057
1057
|
data?: never;
|
|
@@ -1081,7 +1081,7 @@ export declare class Direct {
|
|
|
1081
1081
|
}>;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* Get a SORA Classification
|
|
1084
|
-
* @description Get a SORA Classification
|
|
1084
|
+
* @description Get a SORA Classification.
|
|
1085
1085
|
*/
|
|
1086
1086
|
getSoraClassification<Opts extends requestOptions = {}>(id: pathOf<getSoraClassification>['classification_id'], opts?: Opts | requestOptions): Promise<{
|
|
1087
1087
|
data?: never;
|
|
@@ -1111,7 +1111,7 @@ export declare class Direct {
|
|
|
1111
1111
|
}>;
|
|
1112
1112
|
/**
|
|
1113
1113
|
* List Controlled Ground Areas
|
|
1114
|
-
* @description Get a list of Controlled Ground Areas, ordered by last time updated
|
|
1114
|
+
* @description Get a list of Controlled Ground Areas, ordered by last time updated.
|
|
1115
1115
|
*/
|
|
1116
1116
|
getAllControlledGroundAreas<Opts extends requestOptions = {}>(args: queryOf<getAllControlledGroundAreas>, opts?: Opts | requestOptions): Promise<{
|
|
1117
1117
|
data?: never;
|
|
@@ -1141,7 +1141,7 @@ export declare class Direct {
|
|
|
1141
1141
|
}>;
|
|
1142
1142
|
/**
|
|
1143
1143
|
* Create a Controlled Ground Area
|
|
1144
|
-
* @description Create a Controlled Ground Area from GeoJSON
|
|
1144
|
+
* @description Create a Controlled Ground Area from GeoJSON.
|
|
1145
1145
|
*/
|
|
1146
1146
|
createControlledGroundArea<Opts extends requestOptions = {}>(args: bodyOf<createControlledGroundArea>, opts?: Opts | requestOptions): Promise<{
|
|
1147
1147
|
data?: never;
|
|
@@ -1171,7 +1171,7 @@ export declare class Direct {
|
|
|
1171
1171
|
}>;
|
|
1172
1172
|
/**
|
|
1173
1173
|
* Get a Controlled Ground Area
|
|
1174
|
-
* @description Get a Controlled Ground Area
|
|
1174
|
+
* @description Get a Controlled Ground Area.
|
|
1175
1175
|
*/
|
|
1176
1176
|
getControlledGroundArea<Opts extends requestOptions = {}>(args: pathOf<getControlledGroundArea>, opts?: Opts | requestOptions): Promise<{
|
|
1177
1177
|
data?: never;
|
|
@@ -1260,7 +1260,7 @@ export declare class Direct {
|
|
|
1260
1260
|
}>;
|
|
1261
1261
|
/**
|
|
1262
1262
|
* List Controlled Ground Areas
|
|
1263
|
-
* @description Get a list of Atypical Airspaces, ordered by last time updated
|
|
1263
|
+
* @description Get a list of Atypical Airspaces, ordered by last time updated.
|
|
1264
1264
|
*/
|
|
1265
1265
|
getAllAtypicalAirspaces<Opts extends requestOptions = {}>(args: queryOf<getAllAtypicalAirspaces>, opts?: Opts | requestOptions): Promise<{
|
|
1266
1266
|
data?: never;
|
|
@@ -1290,7 +1290,7 @@ export declare class Direct {
|
|
|
1290
1290
|
}>;
|
|
1291
1291
|
/**
|
|
1292
1292
|
* Create an Atypical Airspace
|
|
1293
|
-
* @description Create an Atypical Airspace
|
|
1293
|
+
* @description Create an Atypical Airspace.
|
|
1294
1294
|
*/
|
|
1295
1295
|
createAtypicalAirspace<Opts extends requestOptions = {}>(args: bodyOf<createAtypicalAirspace>, opts?: Opts | requestOptions): Promise<{
|
|
1296
1296
|
data?: never;
|
|
@@ -1320,7 +1320,7 @@ export declare class Direct {
|
|
|
1320
1320
|
}>;
|
|
1321
1321
|
/**
|
|
1322
1322
|
* Get an Atypical Airspace
|
|
1323
|
-
* @description Get an Atypical Airspace
|
|
1323
|
+
* @description Get an Atypical Airspace.
|
|
1324
1324
|
*/
|
|
1325
1325
|
getAtypicalAirspace<Opts extends requestOptions = {}>(args: pathOf<getAtypicalAirspace>, opts?: Opts | requestOptions): Promise<{
|
|
1326
1326
|
data?: never;
|
|
@@ -1409,7 +1409,7 @@ export declare class Direct {
|
|
|
1409
1409
|
}>;
|
|
1410
1410
|
/**
|
|
1411
1411
|
* Create a Geocage
|
|
1412
|
-
* @description Create a Geocage from GeoJSON
|
|
1412
|
+
* @description Create a Geocage from GeoJSON.
|
|
1413
1413
|
*/
|
|
1414
1414
|
createGeocage<Opts extends requestOptions = {}>(args: bodyOf<createGeocage>, opts?: Opts | requestOptions): Promise<{
|
|
1415
1415
|
data?: never;
|
|
@@ -1439,7 +1439,7 @@ export declare class Direct {
|
|
|
1439
1439
|
}>;
|
|
1440
1440
|
/**
|
|
1441
1441
|
* Get a Geocage
|
|
1442
|
-
* @description Get a Geocage
|
|
1442
|
+
* @description Get a Geocage.
|
|
1443
1443
|
*/
|
|
1444
1444
|
getGeocage<Opts extends requestOptions = {}>(args: pathOf<getGeocage>, opts?: Opts | requestOptions): Promise<{
|
|
1445
1445
|
data?: never;
|
|
@@ -1469,7 +1469,7 @@ export declare class Direct {
|
|
|
1469
1469
|
}>;
|
|
1470
1470
|
/**
|
|
1471
1471
|
* List Geocages
|
|
1472
|
-
* @description Get a list of Geocages, ordered by last time updated
|
|
1472
|
+
* @description Get a list of Geocages, ordered by last time updated.
|
|
1473
1473
|
*/
|
|
1474
1474
|
getAllGeocages<Opts extends requestOptions = {}>(args: queryOf<getAllGeocages>, opts?: Opts | requestOptions): Promise<{
|
|
1475
1475
|
data?: never;
|
|
@@ -1554,7 +1554,7 @@ export declare class Direct {
|
|
|
1554
1554
|
}>;
|
|
1555
1555
|
/**
|
|
1556
1556
|
* Get a Cost Dataset
|
|
1557
|
-
* @description Get a Cost Dataset
|
|
1557
|
+
* @description Get a Cost Dataset.
|
|
1558
1558
|
*/
|
|
1559
1559
|
getCostDataset<Opts extends requestOptions = {}>(id: pathOf<getCostDataset>['cost_dataset_id'], opts?: Opts | requestOptions): Promise<{
|
|
1560
1560
|
data?: never;
|
|
@@ -1585,7 +1585,7 @@ export declare class Direct {
|
|
|
1585
1585
|
}>;
|
|
1586
1586
|
/**
|
|
1587
1587
|
* List Cost Datasets
|
|
1588
|
-
* @description Get a list of Cost Datasets, ordered by last time updated
|
|
1588
|
+
* @description Get a list of Cost Datasets, ordered by last time updated.
|
|
1589
1589
|
*/
|
|
1590
1590
|
getAllCostDatasets<Opts extends requestOptions = {}>(args: queryOf<getAllCostDatasets>, opts?: Opts | requestOptions): Promise<{
|
|
1591
1591
|
data?: never;
|
|
@@ -1616,7 +1616,7 @@ export declare class Direct {
|
|
|
1616
1616
|
}>;
|
|
1617
1617
|
/**
|
|
1618
1618
|
* Create a Cost Dataset
|
|
1619
|
-
* @description Create a Cost Dataset
|
|
1619
|
+
* @description Create a Cost Dataset.
|
|
1620
1620
|
*/
|
|
1621
1621
|
createCostDataset<Opts extends requestOptions = {}>(args: {
|
|
1622
1622
|
chart_id: string;
|
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export interface paths {
|
|
|
57
57
|
};
|
|
58
58
|
/**
|
|
59
59
|
* Retrieve a Flightplan
|
|
60
|
-
* @description Retrieve the specified flightplan
|
|
60
|
+
* @description Retrieve the specified flightplan.
|
|
61
61
|
*/
|
|
62
62
|
get: operations["flightplan_single_v1_flightplans__flightplan_id__get"];
|
|
63
63
|
/**
|
|
@@ -84,7 +84,7 @@ export interface paths {
|
|
|
84
84
|
put?: never;
|
|
85
85
|
/**
|
|
86
86
|
* Change the state of a Flightplan
|
|
87
|
-
* @description Change the state of the specified flightplan
|
|
87
|
+
* @description Change the state of the specified flightplan.
|
|
88
88
|
*/
|
|
89
89
|
post: operations["flightplan_state_v1_flightplans__flightplan_id__state_post"];
|
|
90
90
|
delete?: never;
|
|
@@ -102,7 +102,7 @@ export interface paths {
|
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
104
104
|
* Retrieve detailed Waypoints
|
|
105
|
-
* @description Retrieve detailed waypoints related to the specified flightplan
|
|
105
|
+
* @description Retrieve detailed waypoints related to the specified flightplan.
|
|
106
106
|
*/
|
|
107
107
|
get: operations["flightplan_waypoints_detail_v1_flightplans__flightplan_id__waypoints_detail_get"];
|
|
108
108
|
put?: never;
|
|
@@ -142,7 +142,7 @@ export interface paths {
|
|
|
142
142
|
};
|
|
143
143
|
/**
|
|
144
144
|
* Retrieve Flightplan Operational Intent Volumes
|
|
145
|
-
* @description Retrieve Operational Intent Volumes for the specified flightplan
|
|
145
|
+
* @description Retrieve Operational Intent Volumes for the specified flightplan.
|
|
146
146
|
*
|
|
147
147
|
* Volumes wholly contain the operational intent while being as small as practical. Start and end times, as well as
|
|
148
148
|
* lower and upper altitudes, are required for each volume. The end time may not be in the past. Volumes are generated
|
|
@@ -189,7 +189,7 @@ export interface paths {
|
|
|
189
189
|
};
|
|
190
190
|
/**
|
|
191
191
|
* Retrieve a formatted version of a Flightplan
|
|
192
|
-
* @description Retrieve a formatted version of the specified flightplan to download as a file
|
|
192
|
+
* @description Retrieve a formatted version of the specified flightplan to download as a file.
|
|
193
193
|
*/
|
|
194
194
|
get: operations["flightplan_content_download_v1_flightplans__flightplan_id__content_get"];
|
|
195
195
|
put?: never;
|
|
@@ -209,7 +209,7 @@ export interface paths {
|
|
|
209
209
|
};
|
|
210
210
|
/**
|
|
211
211
|
* List Airspace Constraints
|
|
212
|
-
* @description List Airspace Constraints
|
|
212
|
+
* @description List Airspace Constraints.
|
|
213
213
|
*/
|
|
214
214
|
get: operations["airspace_constraint_list_v1_airspace_constraints__get"];
|
|
215
215
|
put?: never;
|
|
@@ -233,7 +233,7 @@ export interface paths {
|
|
|
233
233
|
};
|
|
234
234
|
/**
|
|
235
235
|
* Retrieve an Airspace Constraint
|
|
236
|
-
* @description Retrieve the specified Airspace Constraint
|
|
236
|
+
* @description Retrieve the specified Airspace Constraint.
|
|
237
237
|
*/
|
|
238
238
|
get: operations["airspace_constraint_single_v1_airspace_constraints__airspace_constraint_id__get"];
|
|
239
239
|
/**
|
|
@@ -323,7 +323,7 @@ export interface paths {
|
|
|
323
323
|
};
|
|
324
324
|
/**
|
|
325
325
|
* Receive state change updates for a pathing task
|
|
326
|
-
* @description
|
|
326
|
+
* @description Open a persistent connection that sends real-time updates about changes in a pathing task's state using Server-Sent
|
|
327
327
|
* Events (SSE).
|
|
328
328
|
*
|
|
329
329
|
* Provides an event stream that can be connected to that will provide updates when the state of the specified pathing
|
|
@@ -368,7 +368,7 @@ export interface paths {
|
|
|
368
368
|
};
|
|
369
369
|
/**
|
|
370
370
|
* Retrieve a specific Chart
|
|
371
|
-
* @description Retrieve a specified Chart
|
|
371
|
+
* @description Retrieve a specified Chart.
|
|
372
372
|
*/
|
|
373
373
|
get: operations["chart_single_v1_charts__chart_id__get"];
|
|
374
374
|
put?: never;
|
|
@@ -388,13 +388,13 @@ export interface paths {
|
|
|
388
388
|
};
|
|
389
389
|
/**
|
|
390
390
|
* List Controlled Ground Areas
|
|
391
|
-
* @description Get a list of Controlled Ground Areas, ordered by last time updated
|
|
391
|
+
* @description Get a list of Controlled Ground Areas, ordered by last time updated.
|
|
392
392
|
*/
|
|
393
393
|
get: operations["list_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__get"];
|
|
394
394
|
put?: never;
|
|
395
395
|
/**
|
|
396
396
|
* Create a Controlled Ground Area
|
|
397
|
-
* @description Create a Controlled Ground Area from GeoJSON
|
|
397
|
+
* @description Create a Controlled Ground Area from GeoJSON.
|
|
398
398
|
*/
|
|
399
399
|
post: operations["create_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__post"];
|
|
400
400
|
delete?: never;
|
|
@@ -412,7 +412,7 @@ export interface paths {
|
|
|
412
412
|
};
|
|
413
413
|
/**
|
|
414
414
|
* Get a Controlled Ground Area
|
|
415
|
-
* @description Get a Controlled Ground Area
|
|
415
|
+
* @description Get a Controlled Ground Area.
|
|
416
416
|
*/
|
|
417
417
|
get: operations["get_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__get"];
|
|
418
418
|
/**
|
|
@@ -443,13 +443,13 @@ export interface paths {
|
|
|
443
443
|
};
|
|
444
444
|
/**
|
|
445
445
|
* List Controlled Ground Areas
|
|
446
|
-
* @description Get a list of Atypical Airspaces, ordered by last time updated
|
|
446
|
+
* @description Get a list of Atypical Airspaces, ordered by last time updated.
|
|
447
447
|
*/
|
|
448
448
|
get: operations["list_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__get"];
|
|
449
449
|
put?: never;
|
|
450
450
|
/**
|
|
451
451
|
* Create an Atypical Airspace
|
|
452
|
-
* @description Create an Atypical Airspace
|
|
452
|
+
* @description Create an Atypical Airspace.
|
|
453
453
|
*/
|
|
454
454
|
post: operations["create_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__post"];
|
|
455
455
|
delete?: never;
|
|
@@ -467,7 +467,7 @@ export interface paths {
|
|
|
467
467
|
};
|
|
468
468
|
/**
|
|
469
469
|
* Get an Atypical Airspace
|
|
470
|
-
* @description Get an Atypical Airspace
|
|
470
|
+
* @description Get an Atypical Airspace.
|
|
471
471
|
*/
|
|
472
472
|
get: operations["get_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__get"];
|
|
473
473
|
/**
|
|
@@ -605,7 +605,7 @@ export interface paths {
|
|
|
605
605
|
put?: never;
|
|
606
606
|
/**
|
|
607
607
|
* Generate volumes that correspond to the SORA Semantic Model
|
|
608
|
-
* @description Generate volumes that correspond to the SORA Semantic Model
|
|
608
|
+
* @description Generate volumes that correspond to the SORA Semantic Model.
|
|
609
609
|
*/
|
|
610
610
|
post: operations["jarus_v2_5_semantic_model_volumes_v1_risk_assessment_sora_v2_5_semantic_model_volumes_post"];
|
|
611
611
|
delete?: never;
|
|
@@ -730,7 +730,7 @@ export interface paths {
|
|
|
730
730
|
put?: never;
|
|
731
731
|
/**
|
|
732
732
|
* Generate volumes that correspond to the SORA Semantic Model
|
|
733
|
-
* @description Generate volumes that correspond to the SORA Semantic Model
|
|
733
|
+
* @description Generate volumes that correspond to the SORA Semantic Model.
|
|
734
734
|
*/
|
|
735
735
|
post: operations["uk_semantic_model_volumes_v1_risk_assessment_sora_uk_semantic_model_volumes_post"];
|
|
736
736
|
delete?: never;
|
|
@@ -750,7 +750,7 @@ export interface paths {
|
|
|
750
750
|
put?: never;
|
|
751
751
|
/**
|
|
752
752
|
* Create a SORA Classification
|
|
753
|
-
* @description Create a SORA Classification
|
|
753
|
+
* @description Create a SORA Classification.
|
|
754
754
|
*/
|
|
755
755
|
post: operations["create_sora_classification_v1_risk_assessment_sora_classifications_post"];
|
|
756
756
|
delete?: never;
|
|
@@ -768,12 +768,12 @@ export interface paths {
|
|
|
768
768
|
};
|
|
769
769
|
/**
|
|
770
770
|
* Get a SORA Classification
|
|
771
|
-
* @description Get a SORA Classification
|
|
771
|
+
* @description Get a SORA Classification.
|
|
772
772
|
*/
|
|
773
773
|
get: operations["get_sora_classification_v1_risk_assessment_sora_classifications__classification_id__get"];
|
|
774
774
|
/**
|
|
775
775
|
* Update a SORA Classification
|
|
776
|
-
* @description Update a SORA Classification
|
|
776
|
+
* @description Update a SORA Classification.
|
|
777
777
|
*/
|
|
778
778
|
put: operations["update_sora_classification_v1_risk_assessment_sora_classifications__classification_id__put"];
|
|
779
779
|
post?: never;
|
|
@@ -812,13 +812,13 @@ export interface paths {
|
|
|
812
812
|
};
|
|
813
813
|
/**
|
|
814
814
|
* List Geocages
|
|
815
|
-
* @description Get a list of Geocages, ordered by last time updated
|
|
815
|
+
* @description Get a list of Geocages, ordered by last time updated.
|
|
816
816
|
*/
|
|
817
817
|
get: operations["list_geocage_v1_geocages__get"];
|
|
818
818
|
put?: never;
|
|
819
819
|
/**
|
|
820
820
|
* Create a Geocage
|
|
821
|
-
* @description Create a Geocage from GeoJSON
|
|
821
|
+
* @description Create a Geocage from GeoJSON.
|
|
822
822
|
*/
|
|
823
823
|
post: operations["create_geocage_v1_geocages__post"];
|
|
824
824
|
delete?: never;
|
|
@@ -836,7 +836,7 @@ export interface paths {
|
|
|
836
836
|
};
|
|
837
837
|
/**
|
|
838
838
|
* Get a Geocage
|
|
839
|
-
* @description Get a Geocage
|
|
839
|
+
* @description Get a Geocage.
|
|
840
840
|
*/
|
|
841
841
|
get: operations["get_geocage_v1_geocages__geocage_id__get"];
|
|
842
842
|
/**
|
|
@@ -864,13 +864,13 @@ export interface paths {
|
|
|
864
864
|
};
|
|
865
865
|
/**
|
|
866
866
|
* List Cost Datasets
|
|
867
|
-
* @description Get a list of Cost Datasets, ordered by last time updated
|
|
867
|
+
* @description Get a list of Cost Datasets, ordered by last time updated.
|
|
868
868
|
*/
|
|
869
869
|
get: operations["list_cost_dataset_v1_cost_datasets__get"];
|
|
870
870
|
put?: never;
|
|
871
871
|
/**
|
|
872
872
|
* Create a Cost Dataset
|
|
873
|
-
* @description Create a Cost Dataset
|
|
873
|
+
* @description Create a Cost Dataset.
|
|
874
874
|
*/
|
|
875
875
|
post: operations["create_cost_dataset_v1_cost_datasets__post"];
|
|
876
876
|
delete?: never;
|
|
@@ -888,7 +888,7 @@ export interface paths {
|
|
|
888
888
|
};
|
|
889
889
|
/**
|
|
890
890
|
* Get a Cost Dataset
|
|
891
|
-
* @description Get a Cost Dataset
|
|
891
|
+
* @description Get a Cost Dataset.
|
|
892
892
|
*/
|
|
893
893
|
get: operations["get_cost_dataset_v1_cost_datasets__cost_dataset_id__get"];
|
|
894
894
|
put?: never;
|
|
@@ -1107,8 +1107,8 @@ export interface components {
|
|
|
1107
1107
|
/**
|
|
1108
1108
|
* AtypicalAirspace
|
|
1109
1109
|
* @description A volume of airspace that the operator is permitted to enter that may be characterised as either restricted
|
|
1110
|
-
* airspace, segregated areas, or airspace where normally manned aircraft should not go
|
|
1111
|
-
*
|
|
1110
|
+
* airspace, segregated areas, or airspace where normally manned aircraft should not go (e.g., at a height low enough
|
|
1111
|
+
* or close to an obstacle).
|
|
1112
1112
|
*/
|
|
1113
1113
|
"AtypicalAirspace-Input": {
|
|
1114
1114
|
/**
|
|
@@ -1122,8 +1122,8 @@ export interface components {
|
|
|
1122
1122
|
/**
|
|
1123
1123
|
* AtypicalAirspace
|
|
1124
1124
|
* @description A volume of airspace that the operator is permitted to enter that may be characterised as either restricted
|
|
1125
|
-
* airspace, segregated areas, or airspace where normally manned aircraft should not go
|
|
1126
|
-
*
|
|
1125
|
+
* airspace, segregated areas, or airspace where normally manned aircraft should not go (e.g., at a height low enough
|
|
1126
|
+
* or close to an obstacle).
|
|
1127
1127
|
*/
|
|
1128
1128
|
"AtypicalAirspace-Output": {
|
|
1129
1129
|
/**
|
|
@@ -1400,7 +1400,7 @@ export interface components {
|
|
|
1400
1400
|
};
|
|
1401
1401
|
/**
|
|
1402
1402
|
* DataSources
|
|
1403
|
-
* @description Available data sources for the chart
|
|
1403
|
+
* @description Available data sources for the chart.
|
|
1404
1404
|
*/
|
|
1405
1405
|
DataSources: {
|
|
1406
1406
|
/** Population Density */
|
|
@@ -2145,7 +2145,7 @@ export interface components {
|
|
|
2145
2145
|
};
|
|
2146
2146
|
/**
|
|
2147
2147
|
* LateralParameters
|
|
2148
|
-
* @description Aircraft Lateral Movement
|
|
2148
|
+
* @description Aircraft Lateral Movement.
|
|
2149
2149
|
*
|
|
2150
2150
|
* Operational Intent Volumes (OIVs) are generated with the sum of these values either-side of the mean flightpath.
|
|
2151
2151
|
*/
|
|
@@ -2198,9 +2198,9 @@ export interface components {
|
|
|
2198
2198
|
};
|
|
2199
2199
|
/**
|
|
2200
2200
|
* PathingCheckpointParameters
|
|
2201
|
-
* @description Parameters that are applied to the leg of the journey towards the checkpoint
|
|
2201
|
+
* @description Parameters that are applied to the leg of the journey towards the checkpoint.
|
|
2202
2202
|
*
|
|
2203
|
-
*
|
|
2203
|
+
* NOTE: `speed` provided in `wind_parameters` must be less than the `airspeed` provided in `flight_parameters`
|
|
2204
2204
|
*/
|
|
2205
2205
|
PathingCheckpointParameters: {
|
|
2206
2206
|
flight_parameters: components["schemas"]["FlightParameters"];
|
|
@@ -2414,7 +2414,7 @@ export interface components {
|
|
|
2414
2414
|
PopulationSource: "GHS_2020_R2023_100" | "EUROSTAT_2021_R2024_1000" | "EIDC_residential_2011_R2017_1000" | "EIDC_workday_2011_R2017_1000" | "ONS_EW_2021_R2021_1000" | "ONS_EW_2021_R2021_100" | "ONS_EW_WORKDAY_2021_R2021_1000" | "ONS_EW_WORKDAY_2021_R2021_100" | "ONS_EW_OT_2021_R2021_1000" | "ONS_EW_OT_2021_R2021_100";
|
|
2415
2415
|
/**
|
|
2416
2416
|
* Raster
|
|
2417
|
-
* @description Raster Search Pattern
|
|
2417
|
+
* @description Raster Search Pattern.
|
|
2418
2418
|
*/
|
|
2419
2419
|
Raster: {
|
|
2420
2420
|
/**
|
|
@@ -2621,7 +2621,7 @@ export interface components {
|
|
|
2621
2621
|
};
|
|
2622
2622
|
/**
|
|
2623
2623
|
* StartPathingCheckpoint
|
|
2624
|
-
* @description The initial start position of a pathing task
|
|
2624
|
+
* @description The initial start position of a pathing task.
|
|
2625
2625
|
*/
|
|
2626
2626
|
StartPathingCheckpoint: {
|
|
2627
2627
|
/**
|
|
@@ -2637,7 +2637,7 @@ export interface components {
|
|
|
2637
2637
|
};
|
|
2638
2638
|
/**
|
|
2639
2639
|
* StartWaypoint
|
|
2640
|
-
* @description The start position on a flightplan
|
|
2640
|
+
* @description The start position on a flightplan.
|
|
2641
2641
|
*/
|
|
2642
2642
|
StartWaypoint: {
|
|
2643
2643
|
/**
|
|
@@ -2716,7 +2716,7 @@ export interface components {
|
|
|
2716
2716
|
};
|
|
2717
2717
|
/**
|
|
2718
2718
|
* StatisticsResponse
|
|
2719
|
-
* @description The cost and nominal time to complete a flightplan
|
|
2719
|
+
* @description The cost and nominal time to complete a flightplan.
|
|
2720
2720
|
*/
|
|
2721
2721
|
StatisticsResponse: {
|
|
2722
2722
|
/**
|
|
@@ -3118,7 +3118,8 @@ export interface components {
|
|
|
3118
3118
|
/**
|
|
3119
3119
|
* Volume3D
|
|
3120
3120
|
* @description A three-dimensional geographic volume consisting of a vertically-extruded shape.
|
|
3121
|
-
*
|
|
3121
|
+
*
|
|
3122
|
+
* Exactly one outline must be specified with a `altitude_upper` greater than `altitude_lower`.
|
|
3122
3123
|
*/
|
|
3123
3124
|
"Volume3D-Input": {
|
|
3124
3125
|
outline_polygon: components["schemas"]["Polygon"];
|
|
@@ -3130,7 +3131,8 @@ export interface components {
|
|
|
3130
3131
|
/**
|
|
3131
3132
|
* Volume3D
|
|
3132
3133
|
* @description A three-dimensional geographic volume consisting of a vertically-extruded shape.
|
|
3133
|
-
*
|
|
3134
|
+
*
|
|
3135
|
+
* Exactly one outline must be specified with a `altitude_upper` greater than `altitude_lower`.
|
|
3134
3136
|
*/
|
|
3135
3137
|
"Volume3D-Output": {
|
|
3136
3138
|
outline_polygon: components["schemas"]["Polygon"];
|
|
@@ -3230,7 +3232,7 @@ export interface components {
|
|
|
3230
3232
|
};
|
|
3231
3233
|
/**
|
|
3232
3234
|
* WaypointDetailResponse
|
|
3233
|
-
* @description Detailed Waypoints for a Flightplan
|
|
3235
|
+
* @description Detailed Waypoints for a Flightplan.
|
|
3234
3236
|
*/
|
|
3235
3237
|
WaypointDetailResponse: {
|
|
3236
3238
|
/**
|