@volant-autonomy/via-sdk 1.4016.1 → 1.4028.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 +31 -0
- package/dist/index.cjs.js +8 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +8 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/volant-schema.d.ts +114 -0
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -133,6 +133,26 @@ export interface paths {
|
|
|
133
133
|
patch?: never;
|
|
134
134
|
trace?: never;
|
|
135
135
|
};
|
|
136
|
+
"/flightplans/{flightplan_id}/terrain_profile": {
|
|
137
|
+
parameters: {
|
|
138
|
+
query?: never;
|
|
139
|
+
header?: never;
|
|
140
|
+
path?: never;
|
|
141
|
+
cookie?: never;
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* Retrieve Terrain Elevation Profile Overflown By Flightplan
|
|
145
|
+
* @description Retrieve data describing the elevation profile of the terrain directly underneath the specified flightplan.
|
|
146
|
+
*/
|
|
147
|
+
get: operations["flightplan_terrain_profile_v1_flightplans__flightplan_id__terrain_profile_get"];
|
|
148
|
+
put?: never;
|
|
149
|
+
post?: never;
|
|
150
|
+
delete?: never;
|
|
151
|
+
options?: never;
|
|
152
|
+
head?: never;
|
|
153
|
+
patch?: never;
|
|
154
|
+
trace?: never;
|
|
155
|
+
};
|
|
136
156
|
"/flightplans/{flightplan_id}/volumes": {
|
|
137
157
|
parameters: {
|
|
138
158
|
query?: never;
|
|
@@ -2323,6 +2343,11 @@ export interface components {
|
|
|
2323
2343
|
data: components["schemas"]["StatisticsResponse"];
|
|
2324
2344
|
links: components["schemas"]["Links"];
|
|
2325
2345
|
};
|
|
2346
|
+
/** JsonApiResponse[TerrainProfileResponse] */
|
|
2347
|
+
JsonApiResponse_TerrainProfileResponse_: {
|
|
2348
|
+
data: components["schemas"]["TerrainProfileResponse"];
|
|
2349
|
+
links: components["schemas"]["Links"];
|
|
2350
|
+
};
|
|
2326
2351
|
/** JsonApiResponse[UkArcResponse] */
|
|
2327
2352
|
JsonApiResponse_UkArcResponse_: {
|
|
2328
2353
|
data: components["schemas"]["UkArcResponse"];
|
|
@@ -3071,6 +3096,36 @@ export interface components {
|
|
|
3071
3096
|
*/
|
|
3072
3097
|
robustness: "none" | "low" | "medium" | "high";
|
|
3073
3098
|
};
|
|
3099
|
+
/** TerrainProfileAttributes */
|
|
3100
|
+
TerrainProfileAttributes: {
|
|
3101
|
+
/**
|
|
3102
|
+
* Profile
|
|
3103
|
+
* @description Pairs (lateral projected distance along flightplan, elevation of overflown terrain Above Mean Sea Level (AMSL) at that distance), given in metres.
|
|
3104
|
+
*/
|
|
3105
|
+
profile: [
|
|
3106
|
+
number,
|
|
3107
|
+
number
|
|
3108
|
+
][];
|
|
3109
|
+
};
|
|
3110
|
+
/**
|
|
3111
|
+
* TerrainProfileResponse
|
|
3112
|
+
* @description The terrain elevation profile overflown by a flightplan.
|
|
3113
|
+
*/
|
|
3114
|
+
TerrainProfileResponse: {
|
|
3115
|
+
/**
|
|
3116
|
+
* Flightplan ID
|
|
3117
|
+
* Format: uuid
|
|
3118
|
+
* @description Unique identifier of the flightplan.
|
|
3119
|
+
*/
|
|
3120
|
+
id: string;
|
|
3121
|
+
/**
|
|
3122
|
+
* Type
|
|
3123
|
+
* @default data_profile
|
|
3124
|
+
* @constant
|
|
3125
|
+
*/
|
|
3126
|
+
type?: "data_profile";
|
|
3127
|
+
attributes: components["schemas"]["TerrainProfileAttributes"];
|
|
3128
|
+
};
|
|
3074
3129
|
/**
|
|
3075
3130
|
* TerrainSource
|
|
3076
3131
|
* @enum {string}
|
|
@@ -4168,6 +4223,65 @@ export interface operations {
|
|
|
4168
4223
|
};
|
|
4169
4224
|
};
|
|
4170
4225
|
};
|
|
4226
|
+
flightplan_terrain_profile_v1_flightplans__flightplan_id__terrain_profile_get: {
|
|
4227
|
+
parameters: {
|
|
4228
|
+
query?: never;
|
|
4229
|
+
header?: never;
|
|
4230
|
+
path: {
|
|
4231
|
+
/** @description Unique identifier of the flightplan. */
|
|
4232
|
+
flightplan_id: string;
|
|
4233
|
+
};
|
|
4234
|
+
cookie?: never;
|
|
4235
|
+
};
|
|
4236
|
+
requestBody?: never;
|
|
4237
|
+
responses: {
|
|
4238
|
+
/** @description Successful Response */
|
|
4239
|
+
200: {
|
|
4240
|
+
headers: {
|
|
4241
|
+
[name: string]: unknown;
|
|
4242
|
+
};
|
|
4243
|
+
content: {
|
|
4244
|
+
"application/json": components["schemas"]["JsonApiResponse_TerrainProfileResponse_"];
|
|
4245
|
+
};
|
|
4246
|
+
};
|
|
4247
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4248
|
+
400: {
|
|
4249
|
+
headers: {
|
|
4250
|
+
[name: string]: unknown;
|
|
4251
|
+
};
|
|
4252
|
+
content: {
|
|
4253
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4254
|
+
};
|
|
4255
|
+
};
|
|
4256
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4257
|
+
401: {
|
|
4258
|
+
headers: {
|
|
4259
|
+
[name: string]: unknown;
|
|
4260
|
+
};
|
|
4261
|
+
content: {
|
|
4262
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4263
|
+
};
|
|
4264
|
+
};
|
|
4265
|
+
/** @description The requested resource could not be found */
|
|
4266
|
+
404: {
|
|
4267
|
+
headers: {
|
|
4268
|
+
[name: string]: unknown;
|
|
4269
|
+
};
|
|
4270
|
+
content: {
|
|
4271
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4272
|
+
};
|
|
4273
|
+
};
|
|
4274
|
+
/** @description Validation Error */
|
|
4275
|
+
422: {
|
|
4276
|
+
headers: {
|
|
4277
|
+
[name: string]: unknown;
|
|
4278
|
+
};
|
|
4279
|
+
content: {
|
|
4280
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4281
|
+
};
|
|
4282
|
+
};
|
|
4283
|
+
};
|
|
4284
|
+
};
|
|
4171
4285
|
flightplan_volumes_v1_flightplans__flightplan_id__volumes_get: {
|
|
4172
4286
|
parameters: {
|
|
4173
4287
|
query?: never;
|