@volant-autonomy/via-sdk 1.3401.1 → 1.3420.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 +2 -2
- package/dist/volant-schema.d.ts +15 -1
- package/package.json +1 -1
package/dist/direct.d.ts
CHANGED
|
@@ -407,9 +407,9 @@ export declare class Direct {
|
|
|
407
407
|
error: {
|
|
408
408
|
errors: {
|
|
409
409
|
detail: string;
|
|
410
|
-
status: "401" | "400";
|
|
410
|
+
status: "401" | "400" | "422";
|
|
411
411
|
}[];
|
|
412
|
-
status: "401" | "400";
|
|
412
|
+
status: "401" | "400" | "422";
|
|
413
413
|
};
|
|
414
414
|
response: Response;
|
|
415
415
|
aborted: false;
|
package/dist/volant-schema.d.ts
CHANGED
|
@@ -2913,6 +2913,8 @@ export interface operations {
|
|
|
2913
2913
|
parameters: {
|
|
2914
2914
|
query?: {
|
|
2915
2915
|
"filter[state]"?: components["schemas"]["AirspaceRestrictionState"][];
|
|
2916
|
+
"page[offset]"?: number;
|
|
2917
|
+
"page[limit]"?: number;
|
|
2916
2918
|
};
|
|
2917
2919
|
header?: never;
|
|
2918
2920
|
path?: never;
|
|
@@ -3524,7 +3526,10 @@ export interface operations {
|
|
|
3524
3526
|
};
|
|
3525
3527
|
airspace_constraint_list_v1_airspace_constraints__get: {
|
|
3526
3528
|
parameters: {
|
|
3527
|
-
query?:
|
|
3529
|
+
query?: {
|
|
3530
|
+
"page[offset]"?: number;
|
|
3531
|
+
"page[limit]"?: number;
|
|
3532
|
+
};
|
|
3528
3533
|
header?: never;
|
|
3529
3534
|
path?: never;
|
|
3530
3535
|
cookie?: never;
|
|
@@ -3558,6 +3563,15 @@ export interface operations {
|
|
|
3558
3563
|
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3559
3564
|
};
|
|
3560
3565
|
};
|
|
3566
|
+
/** @description Validation Error */
|
|
3567
|
+
422: {
|
|
3568
|
+
headers: {
|
|
3569
|
+
[name: string]: unknown;
|
|
3570
|
+
};
|
|
3571
|
+
content: {
|
|
3572
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3573
|
+
};
|
|
3574
|
+
};
|
|
3561
3575
|
};
|
|
3562
3576
|
};
|
|
3563
3577
|
airspace_constraint_create_v1_airspace_constraints__post: {
|