@volant-autonomy/via-sdk 1.3537.1 → 1.3554.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/volant-schema.d.ts +77 -0
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -314,6 +314,31 @@ export interface paths {
|
|
|
314
314
|
patch?: never;
|
|
315
315
|
trace?: never;
|
|
316
316
|
};
|
|
317
|
+
"/pathing_tasks/{pathing_task_id}/state": {
|
|
318
|
+
parameters: {
|
|
319
|
+
query?: never;
|
|
320
|
+
header?: never;
|
|
321
|
+
path?: never;
|
|
322
|
+
cookie?: never;
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* Receive state change updates for a pathing task
|
|
326
|
+
* @description Opens a persistent connection that sends real-time updates about changes in a pathing task's state using Server-Sent
|
|
327
|
+
* Events (SSE).
|
|
328
|
+
*
|
|
329
|
+
* Provides an event stream that can be connected to that will provide updates when the state of the specified pathing
|
|
330
|
+
* task changes. Once it has reached it's final state, the last update is pushed and the stream is automatically
|
|
331
|
+
* closed.
|
|
332
|
+
*/
|
|
333
|
+
get: operations["get_pathing_task_result_v1_pathing_tasks__pathing_task_id__state_get"];
|
|
334
|
+
put?: never;
|
|
335
|
+
post?: never;
|
|
336
|
+
delete?: never;
|
|
337
|
+
options?: never;
|
|
338
|
+
head?: never;
|
|
339
|
+
patch?: never;
|
|
340
|
+
trace?: never;
|
|
341
|
+
};
|
|
317
342
|
"/aircraft/": {
|
|
318
343
|
parameters: {
|
|
319
344
|
query?: never;
|
|
@@ -4224,6 +4249,58 @@ export interface operations {
|
|
|
4224
4249
|
};
|
|
4225
4250
|
};
|
|
4226
4251
|
};
|
|
4252
|
+
get_pathing_task_result_v1_pathing_tasks__pathing_task_id__state_get: {
|
|
4253
|
+
parameters: {
|
|
4254
|
+
query?: never;
|
|
4255
|
+
header?: never;
|
|
4256
|
+
path: {
|
|
4257
|
+
/** @description Unique identifier of the pathing task */
|
|
4258
|
+
pathing_task_id: string;
|
|
4259
|
+
};
|
|
4260
|
+
cookie?: never;
|
|
4261
|
+
};
|
|
4262
|
+
requestBody?: never;
|
|
4263
|
+
responses: {
|
|
4264
|
+
/** @description A stream of Server-Sent Events (SSE).
|
|
4265
|
+
*
|
|
4266
|
+
* */
|
|
4267
|
+
200: {
|
|
4268
|
+
headers: {
|
|
4269
|
+
[name: string]: unknown;
|
|
4270
|
+
};
|
|
4271
|
+
content: {
|
|
4272
|
+
"text/event-stream": unknown;
|
|
4273
|
+
};
|
|
4274
|
+
};
|
|
4275
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4276
|
+
400: {
|
|
4277
|
+
headers: {
|
|
4278
|
+
[name: string]: unknown;
|
|
4279
|
+
};
|
|
4280
|
+
content: {
|
|
4281
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4282
|
+
};
|
|
4283
|
+
};
|
|
4284
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4285
|
+
401: {
|
|
4286
|
+
headers: {
|
|
4287
|
+
[name: string]: unknown;
|
|
4288
|
+
};
|
|
4289
|
+
content: {
|
|
4290
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4291
|
+
};
|
|
4292
|
+
};
|
|
4293
|
+
/** @description Validation Error */
|
|
4294
|
+
422: {
|
|
4295
|
+
headers: {
|
|
4296
|
+
[name: string]: unknown;
|
|
4297
|
+
};
|
|
4298
|
+
content: {
|
|
4299
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4300
|
+
};
|
|
4301
|
+
};
|
|
4302
|
+
};
|
|
4303
|
+
};
|
|
4227
4304
|
aircraft_list_v1_aircraft__get: {
|
|
4228
4305
|
parameters: {
|
|
4229
4306
|
query?: never;
|