@volant-autonomy/via-sdk 1.3420.1 → 1.3485.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/composite.js CHANGED
@@ -28,22 +28,22 @@ class Composite {
28
28
  }
29
29
  getAllDraftFlightplans() {
30
30
  return __awaiter(this, void 0, void 0, function* () {
31
- return this.direct.getAllFlightplans(['Draft']);
31
+ return this.direct.getAllFlightplans({ 'filter[state]': ['Draft'] });
32
32
  });
33
33
  }
34
34
  getAllClosedFlightplans() {
35
35
  return __awaiter(this, void 0, void 0, function* () {
36
- return this.direct.getAllFlightplans(['Closed']);
36
+ return this.direct.getAllFlightplans({ 'filter[state]': ['Closed'] });
37
37
  });
38
38
  }
39
39
  getAllPendingFlightplans() {
40
40
  return __awaiter(this, void 0, void 0, function* () {
41
- return this.direct.getAllFlightplans(['Pending']);
41
+ return this.direct.getAllFlightplans({ 'filter[state]': ['Pending'] });
42
42
  });
43
43
  }
44
44
  getAllAcceptedFlightplans() {
45
45
  return __awaiter(this, void 0, void 0, function* () {
46
- return this.direct.getAllFlightplans(['Accepted']);
46
+ return this.direct.getAllFlightplans({ 'filter[state]': ['Accepted'] });
47
47
  });
48
48
  }
49
49
  // TODO: make error 409 more obvious, as it is different
package/dist/direct.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import createFetcher from './fetch';
2
- import { bodyOf, queryOf, pathOf, schemas } from './types';
2
+ import { bodyOf, queryOf, pathOf } from './types';
3
3
  import type { paths } from './volant-schema';
4
4
  type requestOptions = {
5
5
  abortKey?: string;
@@ -27,6 +27,7 @@ export type getAircraft = paths['/aircraft/{aircraft_id}']['get'];
27
27
  export type getAllCharts = paths['/charts/']['get'];
28
28
  export type getChart = paths['/charts/{chart_id}']['get'];
29
29
  export type getSailV2_5 = paths['/risk_assessment/sora/v2.5/sail']['get'];
30
+ export type calculateResidualArcV2_5 = paths['/risk_assessment/sora/v2.5/residual_arc']['post'];
30
31
  export type getAllArcsV2_5 = paths['/risk_assessment/sora/v2.5/air_risk_classifications']['get'];
31
32
  export type getArcV2_5 = paths['/risk_assessment/sora/v2.5/air_risk_classifications/{arc_id}']['get'];
32
33
  export type generateSoraReportV2_5 = paths['/risk_assessment/sora/v2.5/report']['post'];
@@ -34,6 +35,7 @@ export type generateSoraSemanticModelVolumesV2_5 = paths['/risk_assessment/sora/
34
35
  export type getAllArcsUk = paths['/risk_assessment/sora/uk/air_risk_classifications']['get'];
35
36
  export type getArcUk = paths['/risk_assessment/sora/uk/air_risk_classifications/{arc_id}']['get'];
36
37
  export type getSailUk = paths['/risk_assessment/sora/uk/sail']['get'];
38
+ export type calculateResidualArcUk = paths['/risk_assessment/sora/uk/residual_arc']['post'];
37
39
  export type createSoraReportUk = paths['/risk_assessment/sora/uk/report']['post'];
38
40
  export type createSoraSemanticModelVolumesUk = paths['/risk_assessment/sora/uk/semantic_model_volumes']['post'];
39
41
  export type createSoraClassification = paths['/risk_assessment/sora/classifications']['post'];
@@ -50,6 +52,11 @@ export type getAtypicalAirspace = paths['/risk_assessment/sora/atypical_airspace
50
52
  export type updateAtypicalAirspace = paths['/risk_assessment/sora/atypical_airspaces/{atypical_airspace_id}']['put'];
51
53
  export type deleteAtypicalAirspace = paths['/risk_assessment/sora/atypical_airspaces/{atypical_airspace_id}']['delete'];
52
54
  export type createRasterPattern = paths['/flight_patterns/raster']['post'];
55
+ export type getGeocage = paths['/geocages/{geocage_id}']['get'];
56
+ export type getAllGeocages = paths['/geocages/']['get'];
57
+ export type createGeocage = paths['/geocages/']['post'];
58
+ export type updateGeocage = paths['/geocages/{geocage_id}']['put'];
59
+ export type deleteGeocage = paths['/geocages/{geocage_id}']['delete'];
53
60
  export declare class Direct {
54
61
  private fetcher;
55
62
  constructor(fetcher: ReturnType<typeof createFetcher<paths>>);
@@ -58,7 +65,7 @@ export declare class Direct {
58
65
  * @description List user's flightplans, including Flightplan ID and state.
59
66
  * The most recent 20 flight plans are returned.
60
67
  */
61
- getAllFlightplans<Opts extends requestOptions = {}>(filters?: schemas['AirspaceRestrictionState'][], opts?: Opts | requestOptions): Promise<{
68
+ getAllFlightplans<Opts extends requestOptions = {}>(args: queryOf<getAllFlightplans>, opts?: Opts | requestOptions): Promise<{
62
69
  data?: never;
63
70
  error: {
64
71
  errors: {
@@ -736,6 +743,35 @@ export declare class Direct {
736
743
  response: Response;
737
744
  aborted: false;
738
745
  }>;
746
+ /**
747
+ * Calculate Residual ARC
748
+ * @description Calculate the Residual ARC. The Residual ARC is determined as the "worst case".
749
+ */
750
+ calculateResidualArcV2_5<Opts extends requestOptions = {}>(args: bodyOf<calculateResidualArcV2_5>, opts?: Opts | requestOptions): Promise<{
751
+ data?: never;
752
+ error: {
753
+ errors: {
754
+ detail: string;
755
+ status: "401" | "400" | "422";
756
+ }[];
757
+ status: "401" | "400" | "422";
758
+ };
759
+ response: Response;
760
+ aborted: false;
761
+ } | (keyof Opts extends never ? never : Opts["abortKey"] extends undefined ? never : Opts["abortKey"] extends string | undefined ? {
762
+ data?: never;
763
+ error?: never;
764
+ response?: never;
765
+ aborted: true;
766
+ } : never) | {
767
+ data: {
768
+ attributes: import("./volant-schema").components["schemas"]["JarusV2_5ResidualArcAttributes"];
769
+ id: "arc-a" | "arc-b" | "arc-c" | "arc-d";
770
+ };
771
+ error?: never;
772
+ response: Response;
773
+ aborted: false;
774
+ }>;
739
775
  /**
740
776
  * List available ARCs
741
777
  * @description List available ARCs.
@@ -948,6 +984,36 @@ export declare class Direct {
948
984
  response: Response;
949
985
  aborted: false;
950
986
  }>;
987
+ /**
988
+ * Calculate Residual ARC
989
+ * @description Calculate the Residual ARC accounting for any strategic air risk mitigations. The Residual ARC is determined as
990
+ * the "worst case".
991
+ */
992
+ calculateResidualArcUk<Opts extends requestOptions = {}>(args: bodyOf<calculateResidualArcUk>, opts?: Opts | requestOptions): Promise<{
993
+ data?: never;
994
+ error: {
995
+ errors: {
996
+ detail: string;
997
+ status: "401" | "400" | "422";
998
+ }[];
999
+ status: "401" | "400" | "422";
1000
+ };
1001
+ response: Response;
1002
+ aborted: false;
1003
+ } | (keyof Opts extends never ? never : Opts["abortKey"] extends undefined ? never : Opts["abortKey"] extends string | undefined ? {
1004
+ data?: never;
1005
+ error?: never;
1006
+ response?: never;
1007
+ aborted: true;
1008
+ } : never) | {
1009
+ data: {
1010
+ attributes: import("./volant-schema").components["schemas"]["UkResidualArcAttributes"];
1011
+ id: "arc-a" | "arc-b" | "arc-c" | "arc-d";
1012
+ };
1013
+ error?: never;
1014
+ response: Response;
1015
+ aborted: false;
1016
+ }>;
951
1017
  generateSoraReportUk<Opts extends requestOptions = {}>(args: bodyOf<createSoraReportUk>, opts?: Opts | requestOptions): Promise<{
952
1018
  data?: never;
953
1019
  error: {
@@ -1386,6 +1452,151 @@ export declare class Direct {
1386
1452
  response: Response;
1387
1453
  aborted: false;
1388
1454
  }>;
1455
+ /**
1456
+ * Create a Geocage
1457
+ * @description Create a Geocage from GeoJSON
1458
+ */
1459
+ createGeocage<Opts extends requestOptions = {}>(args: bodyOf<createGeocage>, opts?: Opts | requestOptions): Promise<{
1460
+ data?: never;
1461
+ error: {
1462
+ errors: {
1463
+ detail: string;
1464
+ status: "401" | "400" | "422";
1465
+ }[];
1466
+ status: "401" | "400" | "422";
1467
+ };
1468
+ response: Response;
1469
+ aborted: false;
1470
+ } | (keyof Opts extends never ? never : Opts["abortKey"] extends undefined ? never : Opts["abortKey"] extends string | undefined ? {
1471
+ data?: never;
1472
+ error?: never;
1473
+ response?: never;
1474
+ aborted: true;
1475
+ } : never) | {
1476
+ data: {
1477
+ id: string;
1478
+ type?: "geocage";
1479
+ attributes: import("./volant-schema").components["schemas"]["Geocage-Output"];
1480
+ };
1481
+ error?: never;
1482
+ response: Response;
1483
+ aborted: false;
1484
+ }>;
1485
+ /**
1486
+ * Get a Geocage
1487
+ * @description Get a Geocage
1488
+ */
1489
+ getGeocage<Opts extends requestOptions = {}>(args: pathOf<getGeocage>, opts?: Opts | requestOptions): Promise<{
1490
+ data?: never;
1491
+ error: {
1492
+ errors: {
1493
+ detail: string;
1494
+ status: "401" | "400" | "422" | "404";
1495
+ }[];
1496
+ status: "401" | "400" | "422" | "404";
1497
+ };
1498
+ response: Response;
1499
+ aborted: false;
1500
+ } | (keyof Opts extends never ? never : Opts["abortKey"] extends undefined ? never : Opts["abortKey"] extends string | undefined ? {
1501
+ data?: never;
1502
+ error?: never;
1503
+ response?: never;
1504
+ aborted: true;
1505
+ } : never) | {
1506
+ data: {
1507
+ id: string;
1508
+ type?: "geocage";
1509
+ attributes: import("./volant-schema").components["schemas"]["Geocage-Output"];
1510
+ };
1511
+ error?: never;
1512
+ response: Response;
1513
+ aborted: false;
1514
+ }>;
1515
+ /**
1516
+ * List Geocages
1517
+ * @description Get a list of Geocages, ordered by last time updated
1518
+ */
1519
+ getAllGeocages<Opts extends requestOptions = {}>(args: queryOf<getAllGeocages>, opts?: Opts | requestOptions): Promise<{
1520
+ data?: never;
1521
+ error: {
1522
+ errors: {
1523
+ detail: string;
1524
+ status: "401" | "400" | "422";
1525
+ }[];
1526
+ status: "401" | "400" | "422";
1527
+ };
1528
+ response: Response;
1529
+ aborted: false;
1530
+ } | (keyof Opts extends never ? never : Opts["abortKey"] extends undefined ? never : Opts["abortKey"] extends string | undefined ? {
1531
+ data?: never;
1532
+ error?: never;
1533
+ response?: never;
1534
+ aborted: true;
1535
+ } : never) | {
1536
+ data: {
1537
+ data: import("./volant-schema").components["schemas"]["GeocageResponse"];
1538
+ links: import("./volant-schema").components["schemas"]["Links"];
1539
+ }[];
1540
+ error?: never;
1541
+ response: Response;
1542
+ aborted: false;
1543
+ }>;
1544
+ /**
1545
+ * Update a Geocage
1546
+ * @description Modify an existing Geocage.
1547
+ */
1548
+ updateGeocage<Opts extends requestOptions = {}>(id: pathOf<updateGeocage>['geocage_id'], args: bodyOf<updateGeocage>, opts?: Opts | requestOptions): Promise<{
1549
+ data?: never;
1550
+ error: {
1551
+ errors: {
1552
+ detail: string;
1553
+ status: "401" | "400" | "422" | "404";
1554
+ }[];
1555
+ status: "401" | "400" | "422" | "404";
1556
+ };
1557
+ response: Response;
1558
+ aborted: false;
1559
+ } | (keyof Opts extends never ? never : Opts["abortKey"] extends undefined ? never : Opts["abortKey"] extends string | undefined ? {
1560
+ data?: never;
1561
+ error?: never;
1562
+ response?: never;
1563
+ aborted: true;
1564
+ } : never) | {
1565
+ data: {
1566
+ id: string;
1567
+ type?: "geocage";
1568
+ attributes: import("./volant-schema").components["schemas"]["Geocage-Output"];
1569
+ };
1570
+ error?: never;
1571
+ response: Response;
1572
+ aborted: false;
1573
+ }>;
1574
+ /**
1575
+ * Delete a Geocage
1576
+ * @description Delete a Geocage.
1577
+ */
1578
+ deleteGeocage<Opts extends requestOptions = {}>(args: pathOf<deleteGeocage>, opts?: Opts | requestOptions): Promise<{
1579
+ data?: never;
1580
+ error: {
1581
+ errors: {
1582
+ detail: string;
1583
+ status: "401" | "400" | "422" | "404";
1584
+ }[];
1585
+ status: "401" | "400" | "422" | "404";
1586
+ };
1587
+ response: Response;
1588
+ aborted: false;
1589
+ } | (keyof Opts extends never ? never : Opts["abortKey"] extends undefined ? never : Opts["abortKey"] extends string | undefined ? {
1590
+ data?: never;
1591
+ error?: never;
1592
+ response?: never;
1593
+ aborted: true;
1594
+ } : never) | {
1595
+ data: boolean;
1596
+ error?: never;
1597
+ response: Response;
1598
+ aborted: false;
1599
+ }>;
1389
1600
  /**
1390
1601
  * Generate a raster pattern
1391
1602
  * @description Generate a raster pattern that covers a specified search polygon
package/dist/direct.js CHANGED
@@ -15,9 +15,9 @@ class Direct {
15
15
  this.fetcher = fetcher;
16
16
  }
17
17
  /// flightplans
18
- getAllFlightplans(filters, opts) {
18
+ getAllFlightplans(args, opts) {
19
19
  return __awaiter(this, void 0, void 0, function* () {
20
- const resp = yield this.fetcher.GET('/flightplans/', { query: { 'filter[state]': filters } }, opts);
20
+ const resp = yield this.fetcher.GET('/flightplans/', { query: args }, opts);
21
21
  if (resp.error === undefined && !resp.aborted) {
22
22
  return Object.assign(Object.assign({}, resp), { data: resp.data.data.map((flightplan) => flightplan.data) });
23
23
  }
@@ -223,6 +223,15 @@ class Direct {
223
223
  return resp;
224
224
  });
225
225
  }
226
+ calculateResidualArcV2_5(args, opts) {
227
+ return __awaiter(this, void 0, void 0, function* () {
228
+ const resp = yield this.fetcher.POST('/risk_assessment/sora/v2.5/residual_arc', { body: args }, opts);
229
+ if (resp.error === undefined && !resp.aborted) {
230
+ return Object.assign(Object.assign({}, resp), { data: resp.data.data });
231
+ }
232
+ return resp;
233
+ });
234
+ }
226
235
  getAllArcsV2_5(opts) {
227
236
  return __awaiter(this, void 0, void 0, function* () {
228
237
  const resp = yield this.fetcher.GET('/risk_assessment/sora/v2.5/air_risk_classifications', {}, opts);
@@ -286,6 +295,15 @@ class Direct {
286
295
  return resp;
287
296
  });
288
297
  }
298
+ calculateResidualArcUk(args, opts) {
299
+ return __awaiter(this, void 0, void 0, function* () {
300
+ const resp = yield this.fetcher.POST('/risk_assessment/sora/uk/residual_arc', { body: args }, opts);
301
+ if (resp.error === undefined && !resp.aborted) {
302
+ return Object.assign(Object.assign({}, resp), { data: resp.data.data });
303
+ }
304
+ return resp;
305
+ });
306
+ }
289
307
  generateSoraReportUk(args, opts) {
290
308
  return __awaiter(this, void 0, void 0, function* () {
291
309
  const resp = yield this.fetcher.POST('/risk_assessment/sora/uk/report', { body: args }, opts);
@@ -427,6 +445,54 @@ class Direct {
427
445
  return resp;
428
446
  });
429
447
  }
448
+ /// geocages
449
+ createGeocage(args, opts) {
450
+ return __awaiter(this, void 0, void 0, function* () {
451
+ const resp = yield this.fetcher.POST('/geocages/', { body: args }, opts);
452
+ if (resp.error === undefined && !resp.aborted) {
453
+ return Object.assign(Object.assign({}, resp), { data: resp.data.data });
454
+ }
455
+ return resp;
456
+ });
457
+ }
458
+ getGeocage(args, opts) {
459
+ return __awaiter(this, void 0, void 0, function* () {
460
+ const resp = yield this.fetcher.GET('/geocages/{geocage_id}', { path: args }, opts);
461
+ if (resp.error === undefined && !resp.aborted) {
462
+ return Object.assign(Object.assign({}, resp), { data: resp.data.data });
463
+ }
464
+ return resp;
465
+ });
466
+ }
467
+ getAllGeocages(args, opts) {
468
+ return __awaiter(this, void 0, void 0, function* () {
469
+ const resp = yield this.fetcher.GET('/geocages/', { query: args }, opts);
470
+ if (resp.error === undefined && !resp.aborted) {
471
+ return Object.assign(Object.assign({}, resp), { data: resp.data.data });
472
+ }
473
+ else {
474
+ return resp;
475
+ }
476
+ });
477
+ }
478
+ updateGeocage(id, args, opts) {
479
+ return __awaiter(this, void 0, void 0, function* () {
480
+ const resp = yield this.fetcher.PUT('/geocages/{geocage_id}', { body: args, path: { geocage_id: id } }, opts);
481
+ if (resp.error === undefined && !resp.aborted) {
482
+ return Object.assign(Object.assign({}, resp), { data: resp.data.data });
483
+ }
484
+ return resp;
485
+ });
486
+ }
487
+ deleteGeocage(args, opts) {
488
+ return __awaiter(this, void 0, void 0, function* () {
489
+ const resp = yield this.fetcher.DELETE('/geocages/{geocage_id}', { path: args }, opts);
490
+ if (resp.error === undefined && !resp.aborted) {
491
+ return Object.assign(Object.assign({}, resp), { data: true });
492
+ }
493
+ return resp;
494
+ });
495
+ }
430
496
  /// flight patterns
431
497
  createRasterPattern(args, opts) {
432
498
  return __awaiter(this, void 0, void 0, function* () {
@@ -506,6 +506,26 @@ export interface paths {
506
506
  patch?: never;
507
507
  trace?: never;
508
508
  };
509
+ "/risk_assessment/sora/v2.5/residual_arc": {
510
+ parameters: {
511
+ query?: never;
512
+ header?: never;
513
+ path?: never;
514
+ cookie?: never;
515
+ };
516
+ get?: never;
517
+ put?: never;
518
+ /**
519
+ * Calculate Residual ARC
520
+ * @description Calculate the Residual ARC. The Residual ARC is determined as the "worst case".
521
+ */
522
+ post: operations["jarus_v2_5_residual_arc_v1_risk_assessment_sora_v2_5_residual_arc_post"];
523
+ delete?: never;
524
+ options?: never;
525
+ head?: never;
526
+ patch?: never;
527
+ trace?: never;
528
+ };
509
529
  "/risk_assessment/sora/v2.5/sail": {
510
530
  parameters: {
511
531
  query?: never;
@@ -611,6 +631,27 @@ export interface paths {
611
631
  patch?: never;
612
632
  trace?: never;
613
633
  };
634
+ "/risk_assessment/sora/uk/residual_arc": {
635
+ parameters: {
636
+ query?: never;
637
+ header?: never;
638
+ path?: never;
639
+ cookie?: never;
640
+ };
641
+ get?: never;
642
+ put?: never;
643
+ /**
644
+ * Calculate Residual ARC
645
+ * @description Calculate the Residual ARC accounting for any strategic air risk mitigations. The Residual ARC is determined as
646
+ * the "worst case".
647
+ */
648
+ post: operations["uk_residual_arc_v1_risk_assessment_sora_uk_residual_arc_post"];
649
+ delete?: never;
650
+ options?: never;
651
+ head?: never;
652
+ patch?: never;
653
+ trace?: never;
654
+ };
614
655
  "/risk_assessment/sora/uk/sail": {
615
656
  parameters: {
616
657
  query?: never;
@@ -779,6 +820,58 @@ export interface paths {
779
820
  patch?: never;
780
821
  trace?: never;
781
822
  };
823
+ "/geocages/": {
824
+ parameters: {
825
+ query?: never;
826
+ header?: never;
827
+ path?: never;
828
+ cookie?: never;
829
+ };
830
+ /**
831
+ * List Geocages
832
+ * @description Get a list of Geocages, ordered by last time updated
833
+ */
834
+ get: operations["list_geocage_v1_geocages__get"];
835
+ put?: never;
836
+ /**
837
+ * Create a Geocage
838
+ * @description Create a Geocage from GeoJSON
839
+ */
840
+ post: operations["create_geocage_v1_geocages__post"];
841
+ delete?: never;
842
+ options?: never;
843
+ head?: never;
844
+ patch?: never;
845
+ trace?: never;
846
+ };
847
+ "/geocages/{geocage_id}": {
848
+ parameters: {
849
+ query?: never;
850
+ header?: never;
851
+ path?: never;
852
+ cookie?: never;
853
+ };
854
+ /**
855
+ * Get a Geocage
856
+ * @description Get a Geocage
857
+ */
858
+ get: operations["get_geocage_v1_geocages__geocage_id__get"];
859
+ /**
860
+ * Update a Geocage
861
+ * @description Modify an existing Geocage.
862
+ */
863
+ put: operations["update_geocage_v1_geocages__geocage_id__put"];
864
+ post?: never;
865
+ /**
866
+ * Delete a Geocage
867
+ * @description Delete a Geocage.
868
+ */
869
+ delete: operations["delete_geocage_v1_geocages__geocage_id__delete"];
870
+ options?: never;
871
+ head?: never;
872
+ patch?: never;
873
+ trace?: never;
874
+ };
782
875
  }
783
876
  export type webhooks = Record<string, never>;
784
877
  export interface components {
@@ -1227,6 +1320,8 @@ export interface components {
1227
1320
  aircraft_id?: string;
1228
1321
  /** Sora Classification Id */
1229
1322
  sora_classification_id?: string | null;
1323
+ /** Geocage Id */
1324
+ geocage_id?: string | null;
1230
1325
  /**
1231
1326
  * Time Start
1232
1327
  * Format: date-time
@@ -1276,6 +1371,8 @@ export interface components {
1276
1371
  aircraft_id?: string;
1277
1372
  /** Sora Classification Id */
1278
1373
  sora_classification_id?: string | null;
1374
+ /** Geocage Id */
1375
+ geocage_id?: string | null;
1279
1376
  /**
1280
1377
  * Time Start
1281
1378
  * Format: date-time
@@ -1408,6 +1505,16 @@ export interface components {
1408
1505
  geometry: components["schemas"]["GeoJsonPolygon"];
1409
1506
  properties: components["schemas"]["ControlledGroundAreaProperties"];
1410
1507
  };
1508
+ /** GeoJsonPolygonFeature[GeocageProperties] */
1509
+ GeoJsonPolygonFeature_GeocageProperties_: {
1510
+ /**
1511
+ * Type
1512
+ * @constant
1513
+ */
1514
+ type: "Feature";
1515
+ geometry: components["schemas"]["GeoJsonPolygon"];
1516
+ properties: components["schemas"]["GeocageProperties"];
1517
+ };
1411
1518
  /** GeoJsonPolygonFeature[SemanticModelProperties] */
1412
1519
  GeoJsonPolygonFeature_SemanticModelProperties_: {
1413
1520
  /**
@@ -1418,6 +1525,52 @@ export interface components {
1418
1525
  geometry: components["schemas"]["GeoJsonPolygon"];
1419
1526
  properties: components["schemas"]["SemanticModelProperties"];
1420
1527
  };
1528
+ /**
1529
+ * Geocage
1530
+ * @description An area that the operation must be contained within. A Geocage may be composed of 1 or more polygons, unclosed
1531
+ * polygons will be automatically closed by setting the final coordinate equal to the first coordinate.
1532
+ */
1533
+ "Geocage-Input": {
1534
+ /**
1535
+ * Type
1536
+ * @constant
1537
+ */
1538
+ type: "FeatureCollection";
1539
+ /** Features */
1540
+ features: components["schemas"]["GeoJsonPolygonFeature_GeocageProperties_"][];
1541
+ };
1542
+ /**
1543
+ * Geocage
1544
+ * @description An area that the operation must be contained within. A Geocage may be composed of 1 or more polygons, unclosed
1545
+ * polygons will be automatically closed by setting the final coordinate equal to the first coordinate.
1546
+ */
1547
+ "Geocage-Output": {
1548
+ /**
1549
+ * Type
1550
+ * @constant
1551
+ */
1552
+ type: "FeatureCollection";
1553
+ /** Features */
1554
+ features: components["schemas"]["GeoJsonPolygonFeature_GeocageProperties_"][];
1555
+ };
1556
+ /** GeocageProperties */
1557
+ GeocageProperties: Record<string, never>;
1558
+ /** GeocageResponse */
1559
+ GeocageResponse: {
1560
+ /**
1561
+ * Geocage ID
1562
+ * Format: uuid
1563
+ * @description Unique identifier of the geocage.
1564
+ */
1565
+ id: string;
1566
+ /**
1567
+ * Type
1568
+ * @default geocage
1569
+ * @constant
1570
+ */
1571
+ type?: "geocage";
1572
+ attributes: components["schemas"]["Geocage-Output"];
1573
+ };
1421
1574
  /**
1422
1575
  * GotoPathingCheckpoint
1423
1576
  * @description Generate a path to a specified location under given `flight_parameters` accounting for given `wind_parameters` and
@@ -1589,6 +1742,32 @@ export interface components {
1589
1742
  */
1590
1743
  m2: "none" | "medium" | "high";
1591
1744
  };
1745
+ /** JarusV2_5ResidualArcAttributes */
1746
+ JarusV2_5ResidualArcAttributes: {
1747
+ /**
1748
+ * Residual Air Risk Classification
1749
+ * @description Determination of Air Risk after the application of any strategic mitigations intended to control the crewed aircraft type, encounter rates or time of exposure, prior to take-off
1750
+ * @example arc-c
1751
+ * @enum {string}
1752
+ */
1753
+ residual_arc: "arc-a" | "arc-b" | "arc-c" | "arc-d";
1754
+ };
1755
+ /** JarusV2_5ResidualArcRequest */
1756
+ JarusV2_5ResidualArcRequest: {
1757
+ /** Initial Arc */
1758
+ initial_arc: components["schemas"]["ARC"][];
1759
+ };
1760
+ /** JarusV2_5ResidualArcResponse */
1761
+ JarusV2_5ResidualArcResponse: {
1762
+ attributes: components["schemas"]["JarusV2_5ResidualArcAttributes"];
1763
+ /**
1764
+ * Residual Air Risk Classification
1765
+ * @description Determination of Air Risk after the application of any strategic mitigations intended to control the crewed aircraft type, encounter rates or time of exposure, prior to take-off
1766
+ * @example arc-c
1767
+ * @enum {string}
1768
+ */
1769
+ id: "arc-a" | "arc-b" | "arc-c" | "arc-d";
1770
+ };
1592
1771
  /** JarusV2_5SoraClassification */
1593
1772
  "JarusV2_5SoraClassification-Input": {
1594
1773
  /**
@@ -1667,6 +1846,12 @@ export interface components {
1667
1846
  data: components["schemas"]["JsonApiResponse_FlightplanResponse_"][];
1668
1847
  links: components["schemas"]["Links"];
1669
1848
  };
1849
+ /** JsonApiListResponse[JsonApiResponse[GeocageResponse]] */
1850
+ JsonApiListResponse_JsonApiResponse_GeocageResponse__: {
1851
+ /** Data */
1852
+ data: components["schemas"]["JsonApiResponse_GeocageResponse_"][];
1853
+ links: components["schemas"]["Links"];
1854
+ };
1670
1855
  /** JsonApiListResponse[JsonApiResponse[UkArcResponse]] */
1671
1856
  JsonApiListResponse_JsonApiResponse_UkArcResponse__: {
1672
1857
  /** Data */
@@ -1719,6 +1904,16 @@ export interface components {
1719
1904
  data: components["schemas"]["GeoJsonCollection_SemanticModelProperties_"];
1720
1905
  links: components["schemas"]["Links"];
1721
1906
  };
1907
+ /** JsonApiResponse[GeocageResponse] */
1908
+ JsonApiResponse_GeocageResponse_: {
1909
+ data: components["schemas"]["GeocageResponse"];
1910
+ links: components["schemas"]["Links"];
1911
+ };
1912
+ /** JsonApiResponse[JarusV2_5ResidualArcResponse] */
1913
+ JsonApiResponse_JarusV2_5ResidualArcResponse_: {
1914
+ data: components["schemas"]["JarusV2_5ResidualArcResponse"];
1915
+ links: components["schemas"]["Links"];
1916
+ };
1722
1917
  /** JsonApiResponse[PathingTaskResponse] */
1723
1918
  JsonApiResponse_PathingTaskResponse_: {
1724
1919
  data: components["schemas"]["PathingTaskResponse"];
@@ -1754,6 +1949,11 @@ export interface components {
1754
1949
  data: components["schemas"]["UkArcResponse"];
1755
1950
  links: components["schemas"]["Links"];
1756
1951
  };
1952
+ /** JsonApiResponse[UkResidualArcResponse] */
1953
+ JsonApiResponse_UkResidualArcResponse_: {
1954
+ data: components["schemas"]["UkResidualArcResponse"];
1955
+ links: components["schemas"]["Links"];
1956
+ };
1757
1957
  /** JsonApiResponse[UkSailResponse] */
1758
1958
  JsonApiResponse_UkSailResponse_: {
1759
1959
  data: components["schemas"]["UkSailResponse"];
@@ -1924,11 +2124,8 @@ export interface components {
1924
2124
  * @default NASADEM
1925
2125
  */
1926
2126
  terrain_source?: components["schemas"]["TerrainSource"];
1927
- /**
1928
- * Geocage Coordinates
1929
- * @description The boundary coordinates of a keep-in geocage. Currently geocage is only applied laterally and does not consider altitude.
1930
- */
1931
- geocage?: components["schemas"]["Polygon"] | null;
2127
+ /** Geocage Id */
2128
+ geocage_id?: string | null;
1932
2129
  /**
1933
2130
  * Time Start
1934
2131
  * @deprecated
@@ -2412,6 +2609,14 @@ export interface components {
2412
2609
  /** Initial Arc */
2413
2610
  initial_arc: ("arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-d1" | "arc-d2")[];
2414
2611
  ground_risk_mitigations: components["schemas"]["UkGroundRiskMitigations"];
2612
+ /**
2613
+ * Strategic Air Risk Mitigations
2614
+ * @description Strategic air risk mitigations to be applied when determining the Residual ARC from the Initial ARC. These are given as a mapping between the Initial ARC and a reduction in the air risk class.
2615
+ * @default {}
2616
+ */
2617
+ air_risk_mitigations?: {
2618
+ [key: string]: (1 | 2) | undefined;
2619
+ };
2415
2620
  /**
2416
2621
  * Ground Risk Buffer
2417
2622
  * @description The ground risk buffer is an area on the ground that surrounds the footprint of the contingency volume. It is expected that if the flight exits the contingency volume during a loss of control of the operation that the flight will be terminated within this lateral distance.
@@ -2498,6 +2703,40 @@ export interface components {
2498
2703
  */
2499
2704
  m2: "none" | "medium" | "high";
2500
2705
  };
2706
+ /** UkResidualArcAttributes */
2707
+ UkResidualArcAttributes: {
2708
+ /**
2709
+ * Residual Air Risk Classification
2710
+ * @description Determination of Air Risk after the application of any strategic mitigations intended to control the crewed aircraft type, encounter rates or time of exposure, prior to take-off
2711
+ * @example arc-c
2712
+ * @enum {string}
2713
+ */
2714
+ residual_arc: "arc-a" | "arc-b" | "arc-c" | "arc-d";
2715
+ };
2716
+ /** UkResidualArcRequest */
2717
+ UkResidualArcRequest: {
2718
+ /** Initial Arc */
2719
+ initial_arc: ("arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-d1" | "arc-d2")[];
2720
+ /**
2721
+ * Strategic Air Risk Mitigations
2722
+ * @description Strategic air risk mitigations to be applied when determining the Residual ARC from the Initial ARC. These are given as a mapping between the Initial ARC and a reduction in the air risk class.
2723
+ * @default {}
2724
+ */
2725
+ air_risk_mitigations?: {
2726
+ [key: string]: (1 | 2) | undefined;
2727
+ };
2728
+ };
2729
+ /** UkResidualArcResponse */
2730
+ UkResidualArcResponse: {
2731
+ attributes: components["schemas"]["UkResidualArcAttributes"];
2732
+ /**
2733
+ * Residual Air Risk Classification
2734
+ * @description Determination of Air Risk after the application of any strategic mitigations intended to control the crewed aircraft type, encounter rates or time of exposure, prior to take-off
2735
+ * @example arc-c
2736
+ * @enum {string}
2737
+ */
2738
+ id: "arc-a" | "arc-b" | "arc-c" | "arc-d";
2739
+ };
2501
2740
  /** UkSailAttributes */
2502
2741
  UkSailAttributes: {
2503
2742
  /**
@@ -4699,6 +4938,57 @@ export interface operations {
4699
4938
  };
4700
4939
  };
4701
4940
  };
4941
+ jarus_v2_5_residual_arc_v1_risk_assessment_sora_v2_5_residual_arc_post: {
4942
+ parameters: {
4943
+ query?: never;
4944
+ header?: never;
4945
+ path?: never;
4946
+ cookie?: never;
4947
+ };
4948
+ requestBody: {
4949
+ content: {
4950
+ "application/json": components["schemas"]["JarusV2_5ResidualArcRequest"];
4951
+ };
4952
+ };
4953
+ responses: {
4954
+ /** @description Successful Response */
4955
+ 200: {
4956
+ headers: {
4957
+ [name: string]: unknown;
4958
+ };
4959
+ content: {
4960
+ "application/json": components["schemas"]["JsonApiResponse_JarusV2_5ResidualArcResponse_"];
4961
+ };
4962
+ };
4963
+ /** @description One or more input parameters were missing or invalid. */
4964
+ 400: {
4965
+ headers: {
4966
+ [name: string]: unknown;
4967
+ };
4968
+ content: {
4969
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
4970
+ };
4971
+ };
4972
+ /** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
4973
+ 401: {
4974
+ headers: {
4975
+ [name: string]: unknown;
4976
+ };
4977
+ content: {
4978
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
4979
+ };
4980
+ };
4981
+ /** @description Validation Error */
4982
+ 422: {
4983
+ headers: {
4984
+ [name: string]: unknown;
4985
+ };
4986
+ content: {
4987
+ "application/json": components["schemas"]["HTTPValidationError"];
4988
+ };
4989
+ };
4990
+ };
4991
+ };
4702
4992
  jarus_v2_5_sail_v1_risk_assessment_sora_v2_5_sail_get: {
4703
4993
  parameters: {
4704
4994
  query: {
@@ -5030,50 +5320,101 @@ export interface operations {
5030
5320
  };
5031
5321
  };
5032
5322
  };
5033
- uk_sail_v1_risk_assessment_sora_uk_sail_get: {
5323
+ uk_residual_arc_v1_risk_assessment_sora_uk_residual_arc_post: {
5034
5324
  parameters: {
5035
- query: {
5036
- /** @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC. */
5037
- final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
5038
- /**
5039
- * @description Qualitative classification of the air environment.
5040
- *
5041
- * - 'arc-a1' - ARC-a (NMAC Encounter Rate)
5042
- *
5043
- * - 'arc-a2' - ARC-a (Linear Infrastructure)
5044
- *
5045
- * - 'arc-a3' - ARC-a (Restricted Airspace)
5046
- *
5047
- * - 'arc-a4' - ARC-a (Danger Area)
5048
- *
5049
- * - 'arc-a5' - ARC-a (Self Declared)
5050
- *
5051
- * - 'arc-b1' - ARC-b (Class C or D Airspace <500ft AGL)
5052
- *
5053
- * - 'arc-c1' - ARC-c (Class E or G Airspace)
5054
- *
5055
- * - 'arc-c2' - ARC-c (Class C or D Airspace in area with Visual Flight Rules)
5056
- *
5057
- * - 'arc-c3' - ARC-c (Class C or D Airspace in area with Low-Level Helicopter Route)
5058
- *
5059
- * - 'arc-c4' - ARC-c (Class C or D Airspace >500ft AGL)
5060
- *
5061
- * - 'arc-d1' - ARC-d (Class A Airspace)
5062
- *
5063
- * - 'arc-d2' - ARC-d (Class C or D Airspace in area with known Instrument Flight Procedures)
5064
- *
5065
- * @example [
5066
- * "arc-b1",
5067
- * "arc-c4"
5068
- * ]
5069
- */
5070
- arc: ("arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-d1" | "arc-d2")[];
5071
- };
5325
+ query?: never;
5072
5326
  header?: never;
5073
5327
  path?: never;
5074
5328
  cookie?: never;
5075
5329
  };
5076
- requestBody?: never;
5330
+ requestBody: {
5331
+ content: {
5332
+ "application/json": components["schemas"]["UkResidualArcRequest"];
5333
+ };
5334
+ };
5335
+ responses: {
5336
+ /** @description Successful Response */
5337
+ 200: {
5338
+ headers: {
5339
+ [name: string]: unknown;
5340
+ };
5341
+ content: {
5342
+ "application/json": components["schemas"]["JsonApiResponse_UkResidualArcResponse_"];
5343
+ };
5344
+ };
5345
+ /** @description One or more input parameters were missing or invalid. */
5346
+ 400: {
5347
+ headers: {
5348
+ [name: string]: unknown;
5349
+ };
5350
+ content: {
5351
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
5352
+ };
5353
+ };
5354
+ /** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
5355
+ 401: {
5356
+ headers: {
5357
+ [name: string]: unknown;
5358
+ };
5359
+ content: {
5360
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
5361
+ };
5362
+ };
5363
+ /** @description Validation Error */
5364
+ 422: {
5365
+ headers: {
5366
+ [name: string]: unknown;
5367
+ };
5368
+ content: {
5369
+ "application/json": components["schemas"]["HTTPValidationError"];
5370
+ };
5371
+ };
5372
+ };
5373
+ };
5374
+ uk_sail_v1_risk_assessment_sora_uk_sail_get: {
5375
+ parameters: {
5376
+ query: {
5377
+ /** @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC. */
5378
+ final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
5379
+ /**
5380
+ * @description Qualitative classification of the air environment.
5381
+ *
5382
+ * - 'arc-a1' - ARC-a (NMAC Encounter Rate)
5383
+ *
5384
+ * - 'arc-a2' - ARC-a (Linear Infrastructure)
5385
+ *
5386
+ * - 'arc-a3' - ARC-a (Restricted Airspace)
5387
+ *
5388
+ * - 'arc-a4' - ARC-a (Danger Area)
5389
+ *
5390
+ * - 'arc-a5' - ARC-a (Self Declared)
5391
+ *
5392
+ * - 'arc-b1' - ARC-b (Class C or D Airspace <500ft AGL)
5393
+ *
5394
+ * - 'arc-c1' - ARC-c (Class E or G Airspace)
5395
+ *
5396
+ * - 'arc-c2' - ARC-c (Class C or D Airspace in area with Visual Flight Rules)
5397
+ *
5398
+ * - 'arc-c3' - ARC-c (Class C or D Airspace in area with Low-Level Helicopter Route)
5399
+ *
5400
+ * - 'arc-c4' - ARC-c (Class C or D Airspace >500ft AGL)
5401
+ *
5402
+ * - 'arc-d1' - ARC-d (Class A Airspace)
5403
+ *
5404
+ * - 'arc-d2' - ARC-d (Class C or D Airspace in area with known Instrument Flight Procedures)
5405
+ *
5406
+ * @example [
5407
+ * "arc-b1",
5408
+ * "arc-c4"
5409
+ * ]
5410
+ */
5411
+ arc: ("arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-d1" | "arc-d2")[];
5412
+ };
5413
+ header?: never;
5414
+ path?: never;
5415
+ cookie?: never;
5416
+ };
5417
+ requestBody?: never;
5077
5418
  responses: {
5078
5419
  /** @description Successful Response */
5079
5420
  200: {
@@ -5570,4 +5911,283 @@ export interface operations {
5570
5911
  };
5571
5912
  };
5572
5913
  };
5914
+ list_geocage_v1_geocages__get: {
5915
+ parameters: {
5916
+ query?: {
5917
+ "page[offset]"?: number;
5918
+ "page[limit]"?: number;
5919
+ };
5920
+ header?: never;
5921
+ path?: never;
5922
+ cookie?: never;
5923
+ };
5924
+ requestBody?: never;
5925
+ responses: {
5926
+ /** @description Successful Response */
5927
+ 200: {
5928
+ headers: {
5929
+ [name: string]: unknown;
5930
+ };
5931
+ content: {
5932
+ "application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_GeocageResponse__"];
5933
+ };
5934
+ };
5935
+ /** @description One or more input parameters were missing or invalid. */
5936
+ 400: {
5937
+ headers: {
5938
+ [name: string]: unknown;
5939
+ };
5940
+ content: {
5941
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
5942
+ };
5943
+ };
5944
+ /** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
5945
+ 401: {
5946
+ headers: {
5947
+ [name: string]: unknown;
5948
+ };
5949
+ content: {
5950
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
5951
+ };
5952
+ };
5953
+ /** @description Validation Error */
5954
+ 422: {
5955
+ headers: {
5956
+ [name: string]: unknown;
5957
+ };
5958
+ content: {
5959
+ "application/json": components["schemas"]["HTTPValidationError"];
5960
+ };
5961
+ };
5962
+ };
5963
+ };
5964
+ create_geocage_v1_geocages__post: {
5965
+ parameters: {
5966
+ query?: never;
5967
+ header?: never;
5968
+ path?: never;
5969
+ cookie?: never;
5970
+ };
5971
+ requestBody: {
5972
+ content: {
5973
+ "application/json": components["schemas"]["Geocage-Input"];
5974
+ };
5975
+ };
5976
+ responses: {
5977
+ /** @description Successful Response */
5978
+ 200: {
5979
+ headers: {
5980
+ [name: string]: unknown;
5981
+ };
5982
+ content: {
5983
+ "application/json": components["schemas"]["JsonApiResponse_GeocageResponse_"];
5984
+ };
5985
+ };
5986
+ /** @description One or more input parameters were missing or invalid. */
5987
+ 400: {
5988
+ headers: {
5989
+ [name: string]: unknown;
5990
+ };
5991
+ content: {
5992
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
5993
+ };
5994
+ };
5995
+ /** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
5996
+ 401: {
5997
+ headers: {
5998
+ [name: string]: unknown;
5999
+ };
6000
+ content: {
6001
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6002
+ };
6003
+ };
6004
+ /** @description Validation Error */
6005
+ 422: {
6006
+ headers: {
6007
+ [name: string]: unknown;
6008
+ };
6009
+ content: {
6010
+ "application/json": components["schemas"]["HTTPValidationError"];
6011
+ };
6012
+ };
6013
+ };
6014
+ };
6015
+ get_geocage_v1_geocages__geocage_id__get: {
6016
+ parameters: {
6017
+ query?: never;
6018
+ header?: never;
6019
+ path: {
6020
+ /** @description Unique identifier of the geocage. */
6021
+ geocage_id: string;
6022
+ };
6023
+ cookie?: never;
6024
+ };
6025
+ requestBody?: never;
6026
+ responses: {
6027
+ /** @description Successful Response */
6028
+ 200: {
6029
+ headers: {
6030
+ [name: string]: unknown;
6031
+ };
6032
+ content: {
6033
+ "application/json": components["schemas"]["JsonApiResponse_GeocageResponse_"];
6034
+ };
6035
+ };
6036
+ /** @description One or more input parameters were missing or invalid. */
6037
+ 400: {
6038
+ headers: {
6039
+ [name: string]: unknown;
6040
+ };
6041
+ content: {
6042
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6043
+ };
6044
+ };
6045
+ /** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
6046
+ 401: {
6047
+ headers: {
6048
+ [name: string]: unknown;
6049
+ };
6050
+ content: {
6051
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6052
+ };
6053
+ };
6054
+ /** @description The requested resource could not be found */
6055
+ 404: {
6056
+ headers: {
6057
+ [name: string]: unknown;
6058
+ };
6059
+ content: {
6060
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6061
+ };
6062
+ };
6063
+ /** @description Validation Error */
6064
+ 422: {
6065
+ headers: {
6066
+ [name: string]: unknown;
6067
+ };
6068
+ content: {
6069
+ "application/json": components["schemas"]["HTTPValidationError"];
6070
+ };
6071
+ };
6072
+ };
6073
+ };
6074
+ update_geocage_v1_geocages__geocage_id__put: {
6075
+ parameters: {
6076
+ query?: never;
6077
+ header?: never;
6078
+ path: {
6079
+ geocage_id: string;
6080
+ };
6081
+ cookie?: never;
6082
+ };
6083
+ requestBody: {
6084
+ content: {
6085
+ "application/json": components["schemas"]["Geocage-Input"];
6086
+ };
6087
+ };
6088
+ responses: {
6089
+ /** @description Successful Response */
6090
+ 200: {
6091
+ headers: {
6092
+ [name: string]: unknown;
6093
+ };
6094
+ content: {
6095
+ "application/json": components["schemas"]["JsonApiResponse_GeocageResponse_"];
6096
+ };
6097
+ };
6098
+ /** @description One or more input parameters were missing or invalid. */
6099
+ 400: {
6100
+ headers: {
6101
+ [name: string]: unknown;
6102
+ };
6103
+ content: {
6104
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6105
+ };
6106
+ };
6107
+ /** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
6108
+ 401: {
6109
+ headers: {
6110
+ [name: string]: unknown;
6111
+ };
6112
+ content: {
6113
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6114
+ };
6115
+ };
6116
+ /** @description The requested resource could not be found */
6117
+ 404: {
6118
+ headers: {
6119
+ [name: string]: unknown;
6120
+ };
6121
+ content: {
6122
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6123
+ };
6124
+ };
6125
+ /** @description Validation Error */
6126
+ 422: {
6127
+ headers: {
6128
+ [name: string]: unknown;
6129
+ };
6130
+ content: {
6131
+ "application/json": components["schemas"]["HTTPValidationError"];
6132
+ };
6133
+ };
6134
+ };
6135
+ };
6136
+ delete_geocage_v1_geocages__geocage_id__delete: {
6137
+ parameters: {
6138
+ query?: never;
6139
+ header?: never;
6140
+ path: {
6141
+ /** @description Unique identifier of the geocage. */
6142
+ geocage_id: string;
6143
+ };
6144
+ cookie?: never;
6145
+ };
6146
+ requestBody?: never;
6147
+ responses: {
6148
+ /** @description Successful Response */
6149
+ 204: {
6150
+ headers: {
6151
+ [name: string]: unknown;
6152
+ };
6153
+ content?: never;
6154
+ };
6155
+ /** @description One or more input parameters were missing or invalid. */
6156
+ 400: {
6157
+ headers: {
6158
+ [name: string]: unknown;
6159
+ };
6160
+ content: {
6161
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6162
+ };
6163
+ };
6164
+ /** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
6165
+ 401: {
6166
+ headers: {
6167
+ [name: string]: unknown;
6168
+ };
6169
+ content: {
6170
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6171
+ };
6172
+ };
6173
+ /** @description The requested resource could not be found */
6174
+ 404: {
6175
+ headers: {
6176
+ [name: string]: unknown;
6177
+ };
6178
+ content: {
6179
+ "application/json": components["schemas"]["JsonApiExceptionResponse"];
6180
+ };
6181
+ };
6182
+ /** @description Validation Error */
6183
+ 422: {
6184
+ headers: {
6185
+ [name: string]: unknown;
6186
+ };
6187
+ content: {
6188
+ "application/json": components["schemas"]["HTTPValidationError"];
6189
+ };
6190
+ };
6191
+ };
6192
+ };
5573
6193
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.3420.1",
3
+ "version": "1.3485.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",