@ourskyai/sda-api 1.3.5667 → 1.3.6669
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/README.md +2 -2
- package/api.ts +1544 -24
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +1151 -39
- package/dist/api.js +637 -16
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +1151 -39
- package/dist/esm/api.js +636 -15
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/base.js +2 -2
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +2 -2
- package/dist/esm/configuration.d.ts +2 -2
- package/dist/esm/configuration.js +2 -2
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/index.ts +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](
|
|
5
|
+
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -135,6 +135,10 @@ export interface FitsHeader {
|
|
|
135
135
|
*/
|
|
136
136
|
|
|
137
137
|
export const ImageSetType = {
|
|
138
|
+
ASTRONOMICAL: 'ASTRONOMICAL',
|
|
139
|
+
EARTH_ORBITAL: 'EARTH_ORBITAL',
|
|
140
|
+
GNSS_CALIBRATION: 'GNSS_CALIBRATION',
|
|
141
|
+
SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
|
|
138
142
|
ALL_SKY: 'ALL_SKY'
|
|
139
143
|
} as const;
|
|
140
144
|
|
|
@@ -419,6 +423,22 @@ export const SatelliteTargetTrackingStatus = {
|
|
|
419
423
|
export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
|
|
420
424
|
|
|
421
425
|
|
|
426
|
+
/**
|
|
427
|
+
* The reason a search was completed.
|
|
428
|
+
* @export
|
|
429
|
+
* @enum {string}
|
|
430
|
+
*/
|
|
431
|
+
|
|
432
|
+
export const SearchCompletedReason = {
|
|
433
|
+
ALL_HYPOTHESES_TESTED: 'ALL_HYPOTHESES_TESTED',
|
|
434
|
+
FOUND_TARGET: 'FOUND_TARGET',
|
|
435
|
+
CANCELLED: 'CANCELLED',
|
|
436
|
+
FAILED: 'FAILED'
|
|
437
|
+
} as const;
|
|
438
|
+
|
|
439
|
+
export type SearchCompletedReason = typeof SearchCompletedReason[keyof typeof SearchCompletedReason];
|
|
440
|
+
|
|
441
|
+
|
|
422
442
|
/**
|
|
423
443
|
*
|
|
424
444
|
* @export
|
|
@@ -474,6 +494,33 @@ export const TrackingType = {
|
|
|
474
494
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
475
495
|
|
|
476
496
|
|
|
497
|
+
/**
|
|
498
|
+
* A designated volume of space that is not to be observed.
|
|
499
|
+
* @export
|
|
500
|
+
* @interface V1BlackoutVolumeRequest
|
|
501
|
+
*/
|
|
502
|
+
export interface V1BlackoutVolumeRequest {
|
|
503
|
+
/**
|
|
504
|
+
* The reference frame in which the volume is defined.
|
|
505
|
+
* @type {string}
|
|
506
|
+
* @memberof V1BlackoutVolumeRequest
|
|
507
|
+
*/
|
|
508
|
+
'reference_frame': V1BlackoutVolumeRequestReferenceFrameEnum;
|
|
509
|
+
/**
|
|
510
|
+
* The set of 8 points that define the volume, coordinates should be in the selected reference frame.
|
|
511
|
+
* @type {Array<V1Point>}
|
|
512
|
+
* @memberof V1BlackoutVolumeRequest
|
|
513
|
+
*/
|
|
514
|
+
'points': Array<V1Point>;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
export const V1BlackoutVolumeRequestReferenceFrameEnum = {
|
|
518
|
+
ECI_J2000: 'ECI_J2000',
|
|
519
|
+
ECEF: 'ECEF'
|
|
520
|
+
} as const;
|
|
521
|
+
|
|
522
|
+
export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeRequestReferenceFrameEnum[keyof typeof V1BlackoutVolumeRequestReferenceFrameEnum];
|
|
523
|
+
|
|
477
524
|
/**
|
|
478
525
|
*
|
|
479
526
|
* @export
|
|
@@ -486,7 +533,45 @@ export interface V1CreateImageSetImageRequest {
|
|
|
486
533
|
* @memberof V1CreateImageSetImageRequest
|
|
487
534
|
*/
|
|
488
535
|
'imageSetId': string;
|
|
536
|
+
/**
|
|
537
|
+
*
|
|
538
|
+
* @type {V1ImageFileType}
|
|
539
|
+
* @memberof V1CreateImageSetImageRequest
|
|
540
|
+
*/
|
|
541
|
+
'imageFileType'?: V1ImageFileType;
|
|
542
|
+
/**
|
|
543
|
+
*
|
|
544
|
+
* @type {number}
|
|
545
|
+
* @memberof V1CreateImageSetImageRequest
|
|
546
|
+
*/
|
|
547
|
+
'binning'?: number;
|
|
548
|
+
/**
|
|
549
|
+
*
|
|
550
|
+
* @type {number}
|
|
551
|
+
* @memberof V1CreateImageSetImageRequest
|
|
552
|
+
*/
|
|
553
|
+
'exposureLength'?: number;
|
|
554
|
+
/**
|
|
555
|
+
*
|
|
556
|
+
* @type {string}
|
|
557
|
+
* @memberof V1CreateImageSetImageRequest
|
|
558
|
+
*/
|
|
559
|
+
'imageSha'?: string;
|
|
560
|
+
/**
|
|
561
|
+
*
|
|
562
|
+
* @type {number}
|
|
563
|
+
* @memberof V1CreateImageSetImageRequest
|
|
564
|
+
*/
|
|
565
|
+
'imageSizeMb'?: number;
|
|
566
|
+
/**
|
|
567
|
+
*
|
|
568
|
+
* @type {string}
|
|
569
|
+
* @memberof V1CreateImageSetImageRequest
|
|
570
|
+
*/
|
|
571
|
+
'capturedAt'?: string;
|
|
489
572
|
}
|
|
573
|
+
|
|
574
|
+
|
|
490
575
|
/**
|
|
491
576
|
*
|
|
492
577
|
* @export
|
|
@@ -817,6 +902,82 @@ export interface V1GroundStationParticipant {
|
|
|
817
902
|
}
|
|
818
903
|
|
|
819
904
|
|
|
905
|
+
/**
|
|
906
|
+
* HFR extracted star from the image
|
|
907
|
+
* @export
|
|
908
|
+
* @interface V1HFRStar
|
|
909
|
+
*/
|
|
910
|
+
export interface V1HFRStar {
|
|
911
|
+
/**
|
|
912
|
+
*
|
|
913
|
+
* @type {V1PixelCoordinates}
|
|
914
|
+
* @memberof V1HFRStar
|
|
915
|
+
*/
|
|
916
|
+
'coordinates'?: V1PixelCoordinates;
|
|
917
|
+
/**
|
|
918
|
+
*
|
|
919
|
+
* @type {number}
|
|
920
|
+
* @memberof V1HFRStar
|
|
921
|
+
*/
|
|
922
|
+
'hfr': number;
|
|
923
|
+
/**
|
|
924
|
+
*
|
|
925
|
+
* @type {number}
|
|
926
|
+
* @memberof V1HFRStar
|
|
927
|
+
*/
|
|
928
|
+
'flux': number;
|
|
929
|
+
}
|
|
930
|
+
/**
|
|
931
|
+
*
|
|
932
|
+
* @export
|
|
933
|
+
* @enum {string}
|
|
934
|
+
*/
|
|
935
|
+
|
|
936
|
+
export const V1ImageFileType = {
|
|
937
|
+
FITS: 'FITS',
|
|
938
|
+
JPG: 'JPG'
|
|
939
|
+
} as const;
|
|
940
|
+
|
|
941
|
+
export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
/**
|
|
945
|
+
*
|
|
946
|
+
* @export
|
|
947
|
+
* @interface V1ImageMetadata
|
|
948
|
+
*/
|
|
949
|
+
export interface V1ImageMetadata {
|
|
950
|
+
/**
|
|
951
|
+
*
|
|
952
|
+
* @type {string}
|
|
953
|
+
* @memberof V1ImageMetadata
|
|
954
|
+
*/
|
|
955
|
+
'id': string;
|
|
956
|
+
/**
|
|
957
|
+
*
|
|
958
|
+
* @type {string}
|
|
959
|
+
* @memberof V1ImageMetadata
|
|
960
|
+
*/
|
|
961
|
+
'imageId': string;
|
|
962
|
+
/**
|
|
963
|
+
*
|
|
964
|
+
* @type {V1PlateSolveResult}
|
|
965
|
+
* @memberof V1ImageMetadata
|
|
966
|
+
*/
|
|
967
|
+
'plateSolveResult': V1PlateSolveResult;
|
|
968
|
+
/**
|
|
969
|
+
* Extracted star features from the image. Used as inputs to plate solving
|
|
970
|
+
* @type {Array<V1HFRStar>}
|
|
971
|
+
* @memberof V1ImageMetadata
|
|
972
|
+
*/
|
|
973
|
+
'inputStars'?: Array<V1HFRStar>;
|
|
974
|
+
/**
|
|
975
|
+
*
|
|
976
|
+
* @type {string}
|
|
977
|
+
* @memberof V1ImageMetadata
|
|
978
|
+
*/
|
|
979
|
+
'createdAt': string;
|
|
980
|
+
}
|
|
820
981
|
/**
|
|
821
982
|
* An image set represents a contiguous set of observations of the same target captured by the same node.
|
|
822
983
|
* @export
|
|
@@ -1062,13 +1223,25 @@ export interface V1ImageSetImage {
|
|
|
1062
1223
|
*/
|
|
1063
1224
|
export interface V1ObservationFeature {
|
|
1064
1225
|
/**
|
|
1065
|
-
*
|
|
1226
|
+
* EME2000 right ascension, corrected for stellar aberration [degrees]
|
|
1227
|
+
* @type {number}
|
|
1228
|
+
* @memberof V1ObservationFeature
|
|
1229
|
+
*/
|
|
1230
|
+
'correctedRa'?: number;
|
|
1231
|
+
/**
|
|
1232
|
+
* EME2000 declination, corrected for stellar aberration [degrees]
|
|
1233
|
+
* @type {number}
|
|
1234
|
+
* @memberof V1ObservationFeature
|
|
1235
|
+
*/
|
|
1236
|
+
'correctedDec'?: number;
|
|
1237
|
+
/**
|
|
1238
|
+
* the right ascension in degrees in EME2000 frame, not corrected for stellar aberration
|
|
1066
1239
|
* @type {number}
|
|
1067
1240
|
* @memberof V1ObservationFeature
|
|
1068
1241
|
*/
|
|
1069
1242
|
'ra': number;
|
|
1070
1243
|
/**
|
|
1071
|
-
* the declination in degrees in EME2000 frame
|
|
1244
|
+
* the declination in degrees in EME2000 frame, not corrected for stellar aberration
|
|
1072
1245
|
* @type {number}
|
|
1073
1246
|
* @memberof V1ObservationFeature
|
|
1074
1247
|
*/
|
|
@@ -1295,6 +1468,31 @@ export interface V1ObservationStatus {
|
|
|
1295
1468
|
}
|
|
1296
1469
|
|
|
1297
1470
|
|
|
1471
|
+
/**
|
|
1472
|
+
*
|
|
1473
|
+
* @export
|
|
1474
|
+
* @interface V1ObserverLocation
|
|
1475
|
+
*/
|
|
1476
|
+
export interface V1ObserverLocation {
|
|
1477
|
+
/**
|
|
1478
|
+
*
|
|
1479
|
+
* @type {number}
|
|
1480
|
+
* @memberof V1ObserverLocation
|
|
1481
|
+
*/
|
|
1482
|
+
'latitudeRadians': number;
|
|
1483
|
+
/**
|
|
1484
|
+
*
|
|
1485
|
+
* @type {number}
|
|
1486
|
+
* @memberof V1ObserverLocation
|
|
1487
|
+
*/
|
|
1488
|
+
'longitudeRadians': number;
|
|
1489
|
+
/**
|
|
1490
|
+
*
|
|
1491
|
+
* @type {number}
|
|
1492
|
+
* @memberof V1ObserverLocation
|
|
1493
|
+
*/
|
|
1494
|
+
'elevationMeters': number;
|
|
1495
|
+
}
|
|
1298
1496
|
/**
|
|
1299
1497
|
*
|
|
1300
1498
|
* @export
|
|
@@ -1307,6 +1505,12 @@ export interface V1OrganizationTarget {
|
|
|
1307
1505
|
* @memberof V1OrganizationTarget
|
|
1308
1506
|
*/
|
|
1309
1507
|
'id': string;
|
|
1508
|
+
/**
|
|
1509
|
+
*
|
|
1510
|
+
* @type {number}
|
|
1511
|
+
* @memberof V1OrganizationTarget
|
|
1512
|
+
*/
|
|
1513
|
+
'revisitRateMinutes'?: number;
|
|
1310
1514
|
/**
|
|
1311
1515
|
*
|
|
1312
1516
|
* @type {V1SatelliteTarget}
|
|
@@ -1326,6 +1530,191 @@ export interface V1OrganizationTarget {
|
|
|
1326
1530
|
*/
|
|
1327
1531
|
'createdAt': string;
|
|
1328
1532
|
}
|
|
1533
|
+
/**
|
|
1534
|
+
* An (x,y) pixel location in the image
|
|
1535
|
+
* @export
|
|
1536
|
+
* @interface V1PixelCoordinates
|
|
1537
|
+
*/
|
|
1538
|
+
export interface V1PixelCoordinates {
|
|
1539
|
+
/**
|
|
1540
|
+
*
|
|
1541
|
+
* @type {number}
|
|
1542
|
+
* @memberof V1PixelCoordinates
|
|
1543
|
+
*/
|
|
1544
|
+
'x': number;
|
|
1545
|
+
/**
|
|
1546
|
+
*
|
|
1547
|
+
* @type {number}
|
|
1548
|
+
* @memberof V1PixelCoordinates
|
|
1549
|
+
*/
|
|
1550
|
+
'y': number;
|
|
1551
|
+
}
|
|
1552
|
+
/**
|
|
1553
|
+
* Parameters to create a plane scan to search for a target
|
|
1554
|
+
* @export
|
|
1555
|
+
* @interface V1PlaneScanRequest
|
|
1556
|
+
*/
|
|
1557
|
+
export interface V1PlaneScanRequest {
|
|
1558
|
+
/**
|
|
1559
|
+
*
|
|
1560
|
+
* @type {string}
|
|
1561
|
+
* @memberof V1PlaneScanRequest
|
|
1562
|
+
*/
|
|
1563
|
+
'targetId': string;
|
|
1564
|
+
/**
|
|
1565
|
+
* The angle in degrees to search around the target\'s anomaly- centered on the target\'s prior position.
|
|
1566
|
+
* @type {number}
|
|
1567
|
+
* @memberof V1PlaneScanRequest
|
|
1568
|
+
*/
|
|
1569
|
+
'plusMinusAnomalyAngleDegrees': number;
|
|
1570
|
+
/**
|
|
1571
|
+
* The step size in degrees to search across the specified anomaly angle range
|
|
1572
|
+
* @type {number}
|
|
1573
|
+
* @memberof V1PlaneScanRequest
|
|
1574
|
+
*/
|
|
1575
|
+
'stepSizeDegrees': number;
|
|
1576
|
+
}
|
|
1577
|
+
/**
|
|
1578
|
+
* Extracted stars that matched during plate solving
|
|
1579
|
+
* @export
|
|
1580
|
+
* @interface V1Plate
|
|
1581
|
+
*/
|
|
1582
|
+
export interface V1Plate {
|
|
1583
|
+
/**
|
|
1584
|
+
* The x-centroid
|
|
1585
|
+
* @type {number}
|
|
1586
|
+
* @memberof V1Plate
|
|
1587
|
+
*/
|
|
1588
|
+
'xCentroid': number;
|
|
1589
|
+
/**
|
|
1590
|
+
* The y-centroid
|
|
1591
|
+
* @type {number}
|
|
1592
|
+
* @memberof V1Plate
|
|
1593
|
+
*/
|
|
1594
|
+
'yCentroid': number;
|
|
1595
|
+
/**
|
|
1596
|
+
* The UCAC4 or GaiaUD number if known
|
|
1597
|
+
* @type {number}
|
|
1598
|
+
* @memberof V1Plate
|
|
1599
|
+
*/
|
|
1600
|
+
'sequenceNumber': number;
|
|
1601
|
+
/**
|
|
1602
|
+
* Extracted magnitude
|
|
1603
|
+
* @type {number}
|
|
1604
|
+
* @memberof V1Plate
|
|
1605
|
+
*/
|
|
1606
|
+
'magnitude': number;
|
|
1607
|
+
/**
|
|
1608
|
+
* The star RA
|
|
1609
|
+
* @type {number}
|
|
1610
|
+
* @memberof V1Plate
|
|
1611
|
+
*/
|
|
1612
|
+
'raRad': number;
|
|
1613
|
+
/**
|
|
1614
|
+
* The star Dec
|
|
1615
|
+
* @type {number}
|
|
1616
|
+
* @memberof V1Plate
|
|
1617
|
+
*/
|
|
1618
|
+
'decRad': number;
|
|
1619
|
+
/**
|
|
1620
|
+
* The calculated offset from the catalog star, if known. 0 otherwise
|
|
1621
|
+
* @type {number}
|
|
1622
|
+
* @memberof V1Plate
|
|
1623
|
+
*/
|
|
1624
|
+
'catalogOffsetRad': number;
|
|
1625
|
+
}
|
|
1626
|
+
/**
|
|
1627
|
+
*
|
|
1628
|
+
* @export
|
|
1629
|
+
* @interface V1PlateSolveResult
|
|
1630
|
+
*/
|
|
1631
|
+
export interface V1PlateSolveResult {
|
|
1632
|
+
/**
|
|
1633
|
+
*
|
|
1634
|
+
* @type {Array<V1Plate>}
|
|
1635
|
+
* @memberof V1PlateSolveResult
|
|
1636
|
+
*/
|
|
1637
|
+
'plates': Array<V1Plate>;
|
|
1638
|
+
/**
|
|
1639
|
+
* The number of pixels in X directions
|
|
1640
|
+
* @type {number}
|
|
1641
|
+
* @memberof V1PlateSolveResult
|
|
1642
|
+
*/
|
|
1643
|
+
'pixelWidth': number;
|
|
1644
|
+
/**
|
|
1645
|
+
* The number of pixels in Y directions
|
|
1646
|
+
* @type {number}
|
|
1647
|
+
* @memberof V1PlateSolveResult
|
|
1648
|
+
*/
|
|
1649
|
+
'pixelHeight': number;
|
|
1650
|
+
/**
|
|
1651
|
+
* The number of matched stars
|
|
1652
|
+
* @type {number}
|
|
1653
|
+
* @memberof V1PlateSolveResult
|
|
1654
|
+
*/
|
|
1655
|
+
'numberMatchedStars': number;
|
|
1656
|
+
/**
|
|
1657
|
+
* In radians, the exact RA center when matched
|
|
1658
|
+
* @type {number}
|
|
1659
|
+
* @memberof V1PlateSolveResult
|
|
1660
|
+
*/
|
|
1661
|
+
'centerRightAscensionRadians': number;
|
|
1662
|
+
/**
|
|
1663
|
+
* In radians, the exact Dec center when matched
|
|
1664
|
+
* @type {number}
|
|
1665
|
+
* @memberof V1PlateSolveResult
|
|
1666
|
+
*/
|
|
1667
|
+
'centerDeclinationRadians': number;
|
|
1668
|
+
/**
|
|
1669
|
+
* The approximate plate size in X-direction, in radians
|
|
1670
|
+
* @type {number}
|
|
1671
|
+
* @memberof V1PlateSolveResult
|
|
1672
|
+
*/
|
|
1673
|
+
'xSizeRadians': number;
|
|
1674
|
+
/**
|
|
1675
|
+
* The approximate plate size in Y-direction, in radians
|
|
1676
|
+
* @type {number}
|
|
1677
|
+
* @memberof V1PlateSolveResult
|
|
1678
|
+
*/
|
|
1679
|
+
'ySizeRadians': number;
|
|
1680
|
+
/**
|
|
1681
|
+
* True if there is a valid plate match
|
|
1682
|
+
* @type {boolean}
|
|
1683
|
+
* @memberof V1PlateSolveResult
|
|
1684
|
+
*/
|
|
1685
|
+
'isMatched': boolean;
|
|
1686
|
+
/**
|
|
1687
|
+
*
|
|
1688
|
+
* @type {V1Transformation}
|
|
1689
|
+
* @memberof V1PlateSolveResult
|
|
1690
|
+
*/
|
|
1691
|
+
'transformation': V1Transformation;
|
|
1692
|
+
}
|
|
1693
|
+
/**
|
|
1694
|
+
* A point in 3D space.
|
|
1695
|
+
* @export
|
|
1696
|
+
* @interface V1Point
|
|
1697
|
+
*/
|
|
1698
|
+
export interface V1Point {
|
|
1699
|
+
/**
|
|
1700
|
+
* The x-coordinate of the point in meters.
|
|
1701
|
+
* @type {number}
|
|
1702
|
+
* @memberof V1Point
|
|
1703
|
+
*/
|
|
1704
|
+
'x': number;
|
|
1705
|
+
/**
|
|
1706
|
+
* The y-coordinate of the point in meters.
|
|
1707
|
+
* @type {number}
|
|
1708
|
+
* @memberof V1Point
|
|
1709
|
+
*/
|
|
1710
|
+
'y': number;
|
|
1711
|
+
/**
|
|
1712
|
+
* The z-coordinate of the point in meters.
|
|
1713
|
+
* @type {number}
|
|
1714
|
+
* @memberof V1Point
|
|
1715
|
+
*/
|
|
1716
|
+
'z': number;
|
|
1717
|
+
}
|
|
1329
1718
|
/**
|
|
1330
1719
|
*
|
|
1331
1720
|
* @export
|
|
@@ -1406,6 +1795,43 @@ export interface V1PutOrbitProviderTLERequest {
|
|
|
1406
1795
|
*/
|
|
1407
1796
|
'crossSection'?: number;
|
|
1408
1797
|
}
|
|
1798
|
+
/**
|
|
1799
|
+
* Parameters to create a RIC volume search to search for a target - 3-sigma values should be at most 10% of the target\'s perigee altitude
|
|
1800
|
+
* @export
|
|
1801
|
+
* @interface V1RicVolumeSearchRequest
|
|
1802
|
+
*/
|
|
1803
|
+
export interface V1RicVolumeSearchRequest {
|
|
1804
|
+
/**
|
|
1805
|
+
*
|
|
1806
|
+
* @type {string}
|
|
1807
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1808
|
+
*/
|
|
1809
|
+
'targetId': string;
|
|
1810
|
+
/**
|
|
1811
|
+
* The radial 3-sigma uncertainty in meters
|
|
1812
|
+
* @type {number}
|
|
1813
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1814
|
+
*/
|
|
1815
|
+
'radial3SigmaMeters': number;
|
|
1816
|
+
/**
|
|
1817
|
+
* The intrack 3-sigma uncertainty in meters
|
|
1818
|
+
* @type {number}
|
|
1819
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1820
|
+
*/
|
|
1821
|
+
'intrack3SigmaMeters': number;
|
|
1822
|
+
/**
|
|
1823
|
+
* The crosstrack 3-sigma uncertainty in meters
|
|
1824
|
+
* @type {number}
|
|
1825
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1826
|
+
*/
|
|
1827
|
+
'crosstrack3SigmaMeters': number;
|
|
1828
|
+
/**
|
|
1829
|
+
* The epoch of the RIC standard deviation- if none is provided the current time is used
|
|
1830
|
+
* @type {string}
|
|
1831
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1832
|
+
*/
|
|
1833
|
+
'ricStdevEpoch'?: string;
|
|
1834
|
+
}
|
|
1409
1835
|
/**
|
|
1410
1836
|
* SatellitePotential
|
|
1411
1837
|
* @export
|
|
@@ -1637,6 +2063,12 @@ export interface V1SatelliteTarget {
|
|
|
1637
2063
|
* @memberof V1SatelliteTarget
|
|
1638
2064
|
*/
|
|
1639
2065
|
'area'?: number;
|
|
2066
|
+
/**
|
|
2067
|
+
* Linked satellite target id on our system. See [POST /v1/satellite-target](#tag/satellite-targets/POST/v1/satellite-target)
|
|
2068
|
+
* @type {string}
|
|
2069
|
+
* @memberof V1SatelliteTarget
|
|
2070
|
+
*/
|
|
2071
|
+
'linkedSatelliteTargetId'?: string;
|
|
1640
2072
|
}
|
|
1641
2073
|
|
|
1642
2074
|
|
|
@@ -1741,7 +2173,7 @@ export interface V1SurveyInstruction {
|
|
|
1741
2173
|
*/
|
|
1742
2174
|
'firstStepAt'?: string;
|
|
1743
2175
|
/**
|
|
1744
|
-
* Each step indicates a sidereal observation attempt at a given (Ra, Dec)
|
|
2176
|
+
* Each step indicates a sidereal observation attempt at a given (Ra, Dec) or local az/el. If az/el is used, a node ID must also be provided.
|
|
1745
2177
|
* @type {Array<V1SurveyInstructionStep>}
|
|
1746
2178
|
* @memberof V1SurveyInstruction
|
|
1747
2179
|
*/
|
|
@@ -1758,13 +2190,37 @@ export interface V1SurveyInstructionStep {
|
|
|
1758
2190
|
* @type {number}
|
|
1759
2191
|
* @memberof V1SurveyInstructionStep
|
|
1760
2192
|
*/
|
|
1761
|
-
'ra'
|
|
2193
|
+
'ra'?: number;
|
|
1762
2194
|
/**
|
|
1763
2195
|
*
|
|
1764
2196
|
* @type {number}
|
|
1765
2197
|
* @memberof V1SurveyInstructionStep
|
|
1766
2198
|
*/
|
|
1767
|
-
'dec'
|
|
2199
|
+
'dec'?: number;
|
|
2200
|
+
/**
|
|
2201
|
+
*
|
|
2202
|
+
* @type {number}
|
|
2203
|
+
* @memberof V1SurveyInstructionStep
|
|
2204
|
+
*/
|
|
2205
|
+
'az'?: number;
|
|
2206
|
+
/**
|
|
2207
|
+
*
|
|
2208
|
+
* @type {number}
|
|
2209
|
+
* @memberof V1SurveyInstructionStep
|
|
2210
|
+
*/
|
|
2211
|
+
'el'?: number;
|
|
2212
|
+
/**
|
|
2213
|
+
*
|
|
2214
|
+
* @type {string}
|
|
2215
|
+
* @memberof V1SurveyInstructionStep
|
|
2216
|
+
*/
|
|
2217
|
+
'nodeId'?: string;
|
|
2218
|
+
/**
|
|
2219
|
+
*
|
|
2220
|
+
* @type {string}
|
|
2221
|
+
* @memberof V1SurveyInstructionStep
|
|
2222
|
+
*/
|
|
2223
|
+
'time'?: string;
|
|
1768
2224
|
/**
|
|
1769
2225
|
*
|
|
1770
2226
|
* @type {number}
|
|
@@ -1870,6 +2326,249 @@ export interface V1Tdm {
|
|
|
1870
2326
|
*/
|
|
1871
2327
|
'createdBy': string;
|
|
1872
2328
|
}
|
|
2329
|
+
/**
|
|
2330
|
+
*
|
|
2331
|
+
* @export
|
|
2332
|
+
* @interface V1TimeTaggedRaDec
|
|
2333
|
+
*/
|
|
2334
|
+
export interface V1TimeTaggedRaDec {
|
|
2335
|
+
/**
|
|
2336
|
+
*
|
|
2337
|
+
* @type {number}
|
|
2338
|
+
* @memberof V1TimeTaggedRaDec
|
|
2339
|
+
*/
|
|
2340
|
+
'raRadians': number;
|
|
2341
|
+
/**
|
|
2342
|
+
*
|
|
2343
|
+
* @type {number}
|
|
2344
|
+
* @memberof V1TimeTaggedRaDec
|
|
2345
|
+
*/
|
|
2346
|
+
'decRadians': number;
|
|
2347
|
+
/**
|
|
2348
|
+
*
|
|
2349
|
+
* @type {number}
|
|
2350
|
+
* @memberof V1TimeTaggedRaDec
|
|
2351
|
+
*/
|
|
2352
|
+
'magnitude'?: number;
|
|
2353
|
+
/**
|
|
2354
|
+
*
|
|
2355
|
+
* @type {number}
|
|
2356
|
+
* @memberof V1TimeTaggedRaDec
|
|
2357
|
+
*/
|
|
2358
|
+
'solarPhaseAngleRadians'?: number;
|
|
2359
|
+
/**
|
|
2360
|
+
*
|
|
2361
|
+
* @type {string}
|
|
2362
|
+
* @memberof V1TimeTaggedRaDec
|
|
2363
|
+
*/
|
|
2364
|
+
'epoch': string;
|
|
2365
|
+
}
|
|
2366
|
+
/**
|
|
2367
|
+
*
|
|
2368
|
+
* @export
|
|
2369
|
+
* @interface V1Track
|
|
2370
|
+
*/
|
|
2371
|
+
export interface V1Track {
|
|
2372
|
+
/**
|
|
2373
|
+
*
|
|
2374
|
+
* @type {string}
|
|
2375
|
+
* @memberof V1Track
|
|
2376
|
+
*/
|
|
2377
|
+
'id': string;
|
|
2378
|
+
/**
|
|
2379
|
+
*
|
|
2380
|
+
* @type {Array<V1TimeTaggedRaDec>}
|
|
2381
|
+
* @memberof V1Track
|
|
2382
|
+
*/
|
|
2383
|
+
'observations': Array<V1TimeTaggedRaDec>;
|
|
2384
|
+
/**
|
|
2385
|
+
*
|
|
2386
|
+
* @type {V1ObserverLocation}
|
|
2387
|
+
* @memberof V1Track
|
|
2388
|
+
*/
|
|
2389
|
+
'observerLocation': V1ObserverLocation;
|
|
2390
|
+
}
|
|
2391
|
+
/**
|
|
2392
|
+
* Plate to catplate transform with 3rd-order distortion
|
|
2393
|
+
* @export
|
|
2394
|
+
* @interface V1Transformation
|
|
2395
|
+
*/
|
|
2396
|
+
export interface V1Transformation {
|
|
2397
|
+
/**
|
|
2398
|
+
* Affine transformation coefficient
|
|
2399
|
+
* @type {number}
|
|
2400
|
+
* @memberof V1Transformation
|
|
2401
|
+
*/
|
|
2402
|
+
'a': number;
|
|
2403
|
+
/**
|
|
2404
|
+
* Affine transformation coefficient
|
|
2405
|
+
* @type {number}
|
|
2406
|
+
* @memberof V1Transformation
|
|
2407
|
+
*/
|
|
2408
|
+
'b': number;
|
|
2409
|
+
/**
|
|
2410
|
+
* Affine transformation coefficient
|
|
2411
|
+
* @type {number}
|
|
2412
|
+
* @memberof V1Transformation
|
|
2413
|
+
*/
|
|
2414
|
+
'c': number;
|
|
2415
|
+
/**
|
|
2416
|
+
* Affine transformation coefficient
|
|
2417
|
+
* @type {number}
|
|
2418
|
+
* @memberof V1Transformation
|
|
2419
|
+
*/
|
|
2420
|
+
'd': number;
|
|
2421
|
+
/**
|
|
2422
|
+
* Horizontal offset for the affine transformation
|
|
2423
|
+
* @type {number}
|
|
2424
|
+
* @memberof V1Transformation
|
|
2425
|
+
*/
|
|
2426
|
+
'u0': number;
|
|
2427
|
+
/**
|
|
2428
|
+
* Vertical offset for the affine transformation
|
|
2429
|
+
* @type {number}
|
|
2430
|
+
* @memberof V1Transformation
|
|
2431
|
+
*/
|
|
2432
|
+
'v0': number;
|
|
2433
|
+
/**
|
|
2434
|
+
* Scale
|
|
2435
|
+
* @type {number}
|
|
2436
|
+
* @memberof V1Transformation
|
|
2437
|
+
*/
|
|
2438
|
+
'alpha'?: number;
|
|
2439
|
+
/**
|
|
2440
|
+
* Stretch
|
|
2441
|
+
* @type {number}
|
|
2442
|
+
* @memberof V1Transformation
|
|
2443
|
+
*/
|
|
2444
|
+
'beta': number;
|
|
2445
|
+
/**
|
|
2446
|
+
* Rotation
|
|
2447
|
+
* @type {number}
|
|
2448
|
+
* @memberof V1Transformation
|
|
2449
|
+
*/
|
|
2450
|
+
'theta': number;
|
|
2451
|
+
/**
|
|
2452
|
+
* Skew
|
|
2453
|
+
* @type {number}
|
|
2454
|
+
* @memberof V1Transformation
|
|
2455
|
+
*/
|
|
2456
|
+
'gamma': number;
|
|
2457
|
+
/**
|
|
2458
|
+
* 3rd-order plate distortion, X-direction
|
|
2459
|
+
* @type {number}
|
|
2460
|
+
* @memberof V1Transformation
|
|
2461
|
+
*/
|
|
2462
|
+
'epsX': number;
|
|
2463
|
+
/**
|
|
2464
|
+
* 3rd-order plate distortion, Y-direction
|
|
2465
|
+
* @type {number}
|
|
2466
|
+
* @memberof V1Transformation
|
|
2467
|
+
*/
|
|
2468
|
+
'epsY': number;
|
|
2469
|
+
/**
|
|
2470
|
+
* The reference RA and Dec, in radians, at U = 0, V = 0
|
|
2471
|
+
* @type {number}
|
|
2472
|
+
* @memberof V1Transformation
|
|
2473
|
+
*/
|
|
2474
|
+
'raCen': number;
|
|
2475
|
+
/**
|
|
2476
|
+
* The reference RA and Dec, in radians, at U = 0, V = 0
|
|
2477
|
+
* @type {number}
|
|
2478
|
+
* @memberof V1Transformation
|
|
2479
|
+
*/
|
|
2480
|
+
'decCen': number;
|
|
2481
|
+
/**
|
|
2482
|
+
* The number of plate pixels in the X and Y directions. The following coordinate transforms use normalized plate coordinates X/Norm, Y/Norm, where Norm is sqrt(Px^2 + Py^2)/2
|
|
2483
|
+
* @type {number}
|
|
2484
|
+
* @memberof V1Transformation
|
|
2485
|
+
*/
|
|
2486
|
+
'px': number;
|
|
2487
|
+
/**
|
|
2488
|
+
* The number of plate pixels in the X and Y directions. The following coordinate transforms use normalized plate coordinates X/Norm, Y/Norm, where Norm is sqrt(Px^2 + Py^2)/2
|
|
2489
|
+
* @type {number}
|
|
2490
|
+
* @memberof V1Transformation
|
|
2491
|
+
*/
|
|
2492
|
+
'py': number;
|
|
2493
|
+
/**
|
|
2494
|
+
* The U-coefficients of the full N-th order match, if available. UCoef(0..NumCoef)
|
|
2495
|
+
* @type {Array<number>}
|
|
2496
|
+
* @memberof V1Transformation
|
|
2497
|
+
*/
|
|
2498
|
+
'uCoef': Array<number>;
|
|
2499
|
+
/**
|
|
2500
|
+
* The V-coefficients of the full N-th order match, if available. VCoef(0..NumCoef)
|
|
2501
|
+
* @type {Array<number>}
|
|
2502
|
+
* @memberof V1Transformation
|
|
2503
|
+
*/
|
|
2504
|
+
'vCoef': Array<number>;
|
|
2505
|
+
/**
|
|
2506
|
+
* The X-coefficients of the full N-th order match, if available. XCoef(0..NumCoef)
|
|
2507
|
+
* @type {Array<number>}
|
|
2508
|
+
* @memberof V1Transformation
|
|
2509
|
+
*/
|
|
2510
|
+
'xCoef': Array<number>;
|
|
2511
|
+
/**
|
|
2512
|
+
* The Y-coefficients of the full N-th order match, if available. YCoef(0..NumCoef)
|
|
2513
|
+
* @type {Array<number>}
|
|
2514
|
+
* @memberof V1Transformation
|
|
2515
|
+
*/
|
|
2516
|
+
'yCoef': Array<number>;
|
|
2517
|
+
/**
|
|
2518
|
+
* The number of coefficients + 1. 0 if there is no high-order match
|
|
2519
|
+
* @type {number}
|
|
2520
|
+
* @memberof V1Transformation
|
|
2521
|
+
*/
|
|
2522
|
+
'numCoef': number;
|
|
2523
|
+
/**
|
|
2524
|
+
* The RMS fit error, in radians, for the simple affine + third-order distortion transform
|
|
2525
|
+
* @type {number}
|
|
2526
|
+
* @memberof V1Transformation
|
|
2527
|
+
*/
|
|
2528
|
+
'fitErrorRadians': number;
|
|
2529
|
+
/**
|
|
2530
|
+
* The RMS fit error, in pixels, for the simple affine + third-order distortion transform
|
|
2531
|
+
* @type {number}
|
|
2532
|
+
* @memberof V1Transformation
|
|
2533
|
+
*/
|
|
2534
|
+
'fitErrorPix': number;
|
|
2535
|
+
/**
|
|
2536
|
+
* The RMS fit error, in radians, for the full third-order transform
|
|
2537
|
+
* @type {number}
|
|
2538
|
+
* @memberof V1Transformation
|
|
2539
|
+
*/
|
|
2540
|
+
'fitError3Radians': number;
|
|
2541
|
+
/**
|
|
2542
|
+
* The RMS fit error, in pixels, for the full third-order transform
|
|
2543
|
+
* @type {number}
|
|
2544
|
+
* @memberof V1Transformation
|
|
2545
|
+
*/
|
|
2546
|
+
'fitError3Pix': number;
|
|
2547
|
+
/**
|
|
2548
|
+
* The difference in scale values between the X and Y axes, used to test the match geometry
|
|
2549
|
+
* @type {number}
|
|
2550
|
+
* @memberof V1Transformation
|
|
2551
|
+
*/
|
|
2552
|
+
'stretch': number;
|
|
2553
|
+
/**
|
|
2554
|
+
* The image skew, used to test the match geometry
|
|
2555
|
+
* @type {number}
|
|
2556
|
+
* @memberof V1Transformation
|
|
2557
|
+
*/
|
|
2558
|
+
'skew': number;
|
|
2559
|
+
/**
|
|
2560
|
+
* The matched image scale, in pixels per radian
|
|
2561
|
+
* @type {number}
|
|
2562
|
+
* @memberof V1Transformation
|
|
2563
|
+
*/
|
|
2564
|
+
'scale': number;
|
|
2565
|
+
/**
|
|
2566
|
+
* The image rotation, in degrees, agrees with PinPoint
|
|
2567
|
+
* @type {number}
|
|
2568
|
+
* @memberof V1Transformation
|
|
2569
|
+
*/
|
|
2570
|
+
'rotation': number;
|
|
2571
|
+
}
|
|
1873
2572
|
/**
|
|
1874
2573
|
*
|
|
1875
2574
|
* @export
|
|
@@ -2074,6 +2773,45 @@ export interface V1WebhookLog {
|
|
|
2074
2773
|
*/
|
|
2075
2774
|
'log'?: string;
|
|
2076
2775
|
}
|
|
2776
|
+
/**
|
|
2777
|
+
* V2 Search- created by either RIC volumetric search or plane scan.
|
|
2778
|
+
* @export
|
|
2779
|
+
* @interface V2Search
|
|
2780
|
+
*/
|
|
2781
|
+
export interface V2Search {
|
|
2782
|
+
/**
|
|
2783
|
+
*
|
|
2784
|
+
* @type {string}
|
|
2785
|
+
* @memberof V2Search
|
|
2786
|
+
*/
|
|
2787
|
+
'searchId': string;
|
|
2788
|
+
/**
|
|
2789
|
+
*
|
|
2790
|
+
* @type {string}
|
|
2791
|
+
* @memberof V2Search
|
|
2792
|
+
*/
|
|
2793
|
+
'targetId': string;
|
|
2794
|
+
/**
|
|
2795
|
+
*
|
|
2796
|
+
* @type {string}
|
|
2797
|
+
* @memberof V2Search
|
|
2798
|
+
*/
|
|
2799
|
+
'completedAt'?: string | null;
|
|
2800
|
+
/**
|
|
2801
|
+
*
|
|
2802
|
+
* @type {SearchCompletedReason}
|
|
2803
|
+
* @memberof V2Search
|
|
2804
|
+
*/
|
|
2805
|
+
'completedReason'?: SearchCompletedReason;
|
|
2806
|
+
/**
|
|
2807
|
+
*
|
|
2808
|
+
* @type {Array<string>}
|
|
2809
|
+
* @memberof V2Search
|
|
2810
|
+
*/
|
|
2811
|
+
'observationSequenceResultIds': Array<string>;
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
|
|
2077
2815
|
/**
|
|
2078
2816
|
*
|
|
2079
2817
|
* @export
|
|
@@ -2125,7 +2863,10 @@ export const WebhookEvent = {
|
|
|
2125
2863
|
V1_OBSERVATION_STATUS_UPDATED: 'V1_OBSERVATION_STATUS_UPDATED',
|
|
2126
2864
|
V1_EO_CALIBRATION_OBSERVATION_CREATED: 'V1_EO_CALIBRATION_OBSERVATION_CREATED',
|
|
2127
2865
|
V1_NODE_CALIBRATION_DATA_CREATED: 'V1_NODE_CALIBRATION_DATA_CREATED',
|
|
2128
|
-
V1_NODE_UPDATED: 'V1_NODE_UPDATED'
|
|
2866
|
+
V1_NODE_UPDATED: 'V1_NODE_UPDATED',
|
|
2867
|
+
V1_EO_SKY_IMAGERY_CREATED: 'V1_EO_SKY_IMAGERY_CREATED',
|
|
2868
|
+
V2_SEARCH_COMPLETED: 'V2_SEARCH_COMPLETED',
|
|
2869
|
+
V1_UCT_CREATED: 'V1_UCT_CREATED'
|
|
2129
2870
|
} as const;
|
|
2130
2871
|
|
|
2131
2872
|
export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
|
|
@@ -2138,6 +2879,90 @@ export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
|
|
|
2138
2879
|
*/
|
|
2139
2880
|
export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
2140
2881
|
return {
|
|
2882
|
+
/**
|
|
2883
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
2884
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
2885
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
2886
|
+
* @param {*} [options] Override http request option.
|
|
2887
|
+
* @throws {RequiredError}
|
|
2888
|
+
*/
|
|
2889
|
+
getUncorrelatedTracks: async (after?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2890
|
+
const localVarPath = `/v1/uncorrelated-tracks`;
|
|
2891
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2892
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2893
|
+
let baseOptions;
|
|
2894
|
+
if (configuration) {
|
|
2895
|
+
baseOptions = configuration.baseOptions;
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
2899
|
+
const localVarHeaderParameter = {} as any;
|
|
2900
|
+
const localVarQueryParameter = {} as any;
|
|
2901
|
+
|
|
2902
|
+
// authentication Roles required
|
|
2903
|
+
|
|
2904
|
+
// authentication BearerToken required
|
|
2905
|
+
// http bearer authentication required
|
|
2906
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2907
|
+
|
|
2908
|
+
if (after !== undefined) {
|
|
2909
|
+
localVarQueryParameter['after'] = (after as any instanceof Date) ?
|
|
2910
|
+
(after as any).toISOString() :
|
|
2911
|
+
after;
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
|
|
2915
|
+
|
|
2916
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2917
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2918
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2919
|
+
|
|
2920
|
+
return {
|
|
2921
|
+
url: toPathString(localVarUrlObj),
|
|
2922
|
+
options: localVarRequestOptions,
|
|
2923
|
+
};
|
|
2924
|
+
},
|
|
2925
|
+
/**
|
|
2926
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
2927
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
2928
|
+
* @param {*} [options] Override http request option.
|
|
2929
|
+
* @throws {RequiredError}
|
|
2930
|
+
*/
|
|
2931
|
+
v1CreateBlackoutVolume: async (v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2932
|
+
// verify required parameter 'v1BlackoutVolumeRequest' is not null or undefined
|
|
2933
|
+
assertParamExists('v1CreateBlackoutVolume', 'v1BlackoutVolumeRequest', v1BlackoutVolumeRequest)
|
|
2934
|
+
const localVarPath = `/v2/search/blackout-volume`;
|
|
2935
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2936
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2937
|
+
let baseOptions;
|
|
2938
|
+
if (configuration) {
|
|
2939
|
+
baseOptions = configuration.baseOptions;
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2943
|
+
const localVarHeaderParameter = {} as any;
|
|
2944
|
+
const localVarQueryParameter = {} as any;
|
|
2945
|
+
|
|
2946
|
+
// authentication Roles required
|
|
2947
|
+
|
|
2948
|
+
// authentication BearerToken required
|
|
2949
|
+
// http bearer authentication required
|
|
2950
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2951
|
+
|
|
2952
|
+
|
|
2953
|
+
|
|
2954
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2955
|
+
|
|
2956
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2957
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2958
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2959
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1BlackoutVolumeRequest, localVarRequestOptions, configuration)
|
|
2960
|
+
|
|
2961
|
+
return {
|
|
2962
|
+
url: toPathString(localVarUrlObj),
|
|
2963
|
+
options: localVarRequestOptions,
|
|
2964
|
+
};
|
|
2965
|
+
},
|
|
2141
2966
|
/**
|
|
2142
2967
|
* Create an image set.
|
|
2143
2968
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2221,7 +3046,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2221
3046
|
};
|
|
2222
3047
|
},
|
|
2223
3048
|
/**
|
|
2224
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
3049
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
2225
3050
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
2226
3051
|
* @param {*} [options] Override http request option.
|
|
2227
3052
|
* @throws {RequiredError}
|
|
@@ -2303,9 +3128,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2303
3128
|
};
|
|
2304
3129
|
},
|
|
2305
3130
|
/**
|
|
2306
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3131
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2307
3132
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
2308
3133
|
* @param {*} [options] Override http request option.
|
|
3134
|
+
* @deprecated
|
|
2309
3135
|
* @throws {RequiredError}
|
|
2310
3136
|
*/
|
|
2311
3137
|
v1CreateSearchInstruction: async (v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -2466,6 +3292,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2466
3292
|
options: localVarRequestOptions,
|
|
2467
3293
|
};
|
|
2468
3294
|
},
|
|
3295
|
+
/**
|
|
3296
|
+
* Delete a blackout volume.
|
|
3297
|
+
* @param {string} id
|
|
3298
|
+
* @param {*} [options] Override http request option.
|
|
3299
|
+
* @throws {RequiredError}
|
|
3300
|
+
*/
|
|
3301
|
+
v1DeleteBlackoutVolume: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3302
|
+
// verify required parameter 'id' is not null or undefined
|
|
3303
|
+
assertParamExists('v1DeleteBlackoutVolume', 'id', id)
|
|
3304
|
+
const localVarPath = `/v2/search/blackout-volume`;
|
|
3305
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3306
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3307
|
+
let baseOptions;
|
|
3308
|
+
if (configuration) {
|
|
3309
|
+
baseOptions = configuration.baseOptions;
|
|
3310
|
+
}
|
|
3311
|
+
|
|
3312
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
3313
|
+
const localVarHeaderParameter = {} as any;
|
|
3314
|
+
const localVarQueryParameter = {} as any;
|
|
3315
|
+
|
|
3316
|
+
// authentication Roles required
|
|
3317
|
+
|
|
3318
|
+
// authentication BearerToken required
|
|
3319
|
+
// http bearer authentication required
|
|
3320
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3321
|
+
|
|
3322
|
+
if (id !== undefined) {
|
|
3323
|
+
localVarQueryParameter['id'] = id;
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
|
|
3327
|
+
|
|
3328
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3329
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3330
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3331
|
+
|
|
3332
|
+
return {
|
|
3333
|
+
url: toPathString(localVarUrlObj),
|
|
3334
|
+
options: localVarRequestOptions,
|
|
3335
|
+
};
|
|
3336
|
+
},
|
|
2469
3337
|
/**
|
|
2470
3338
|
* Delete an image set.
|
|
2471
3339
|
* @param {string} id
|
|
@@ -2709,6 +3577,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2709
3577
|
|
|
2710
3578
|
|
|
2711
3579
|
|
|
3580
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3581
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3582
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3583
|
+
|
|
3584
|
+
return {
|
|
3585
|
+
url: toPathString(localVarUrlObj),
|
|
3586
|
+
options: localVarRequestOptions,
|
|
3587
|
+
};
|
|
3588
|
+
},
|
|
3589
|
+
/**
|
|
3590
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
3591
|
+
* @param {string} imageId
|
|
3592
|
+
* @param {*} [options] Override http request option.
|
|
3593
|
+
* @throws {RequiredError}
|
|
3594
|
+
*/
|
|
3595
|
+
v1GetImageMetadata: async (imageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3596
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
3597
|
+
assertParamExists('v1GetImageMetadata', 'imageId', imageId)
|
|
3598
|
+
const localVarPath = `/v1/image-metadata`;
|
|
3599
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3600
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3601
|
+
let baseOptions;
|
|
3602
|
+
if (configuration) {
|
|
3603
|
+
baseOptions = configuration.baseOptions;
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3606
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3607
|
+
const localVarHeaderParameter = {} as any;
|
|
3608
|
+
const localVarQueryParameter = {} as any;
|
|
3609
|
+
|
|
3610
|
+
// authentication Roles required
|
|
3611
|
+
|
|
3612
|
+
// authentication BearerToken required
|
|
3613
|
+
// http bearer authentication required
|
|
3614
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3615
|
+
|
|
3616
|
+
if (imageId !== undefined) {
|
|
3617
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
3618
|
+
}
|
|
3619
|
+
|
|
3620
|
+
|
|
3621
|
+
|
|
2712
3622
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2713
3623
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2714
3624
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3209,7 +4119,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3209
4119
|
};
|
|
3210
4120
|
},
|
|
3211
4121
|
/**
|
|
3212
|
-
* Get organization targets see the [create](#
|
|
4122
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
3213
4123
|
* @param {*} [options] Override http request option.
|
|
3214
4124
|
* @throws {RequiredError}
|
|
3215
4125
|
*/
|
|
@@ -3847,7 +4757,214 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3847
4757
|
baseOptions = configuration.baseOptions;
|
|
3848
4758
|
}
|
|
3849
4759
|
|
|
3850
|
-
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
4760
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
4761
|
+
const localVarHeaderParameter = {} as any;
|
|
4762
|
+
const localVarQueryParameter = {} as any;
|
|
4763
|
+
|
|
4764
|
+
// authentication Roles required
|
|
4765
|
+
|
|
4766
|
+
// authentication BearerToken required
|
|
4767
|
+
// http bearer authentication required
|
|
4768
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4769
|
+
|
|
4770
|
+
|
|
4771
|
+
|
|
4772
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4773
|
+
|
|
4774
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4775
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4776
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4777
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration)
|
|
4778
|
+
|
|
4779
|
+
return {
|
|
4780
|
+
url: toPathString(localVarUrlObj),
|
|
4781
|
+
options: localVarRequestOptions,
|
|
4782
|
+
};
|
|
4783
|
+
},
|
|
4784
|
+
/**
|
|
4785
|
+
* Create a plane scan to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
4786
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
4787
|
+
* @param {*} [options] Override http request option.
|
|
4788
|
+
* @throws {RequiredError}
|
|
4789
|
+
*/
|
|
4790
|
+
v2CreatePlaneScan: async (v1PlaneScanRequest: V1PlaneScanRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4791
|
+
// verify required parameter 'v1PlaneScanRequest' is not null or undefined
|
|
4792
|
+
assertParamExists('v2CreatePlaneScan', 'v1PlaneScanRequest', v1PlaneScanRequest)
|
|
4793
|
+
const localVarPath = `/v2/search/plane-scan`;
|
|
4794
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4795
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4796
|
+
let baseOptions;
|
|
4797
|
+
if (configuration) {
|
|
4798
|
+
baseOptions = configuration.baseOptions;
|
|
4799
|
+
}
|
|
4800
|
+
|
|
4801
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
4802
|
+
const localVarHeaderParameter = {} as any;
|
|
4803
|
+
const localVarQueryParameter = {} as any;
|
|
4804
|
+
|
|
4805
|
+
// authentication Roles required
|
|
4806
|
+
|
|
4807
|
+
// authentication BearerToken required
|
|
4808
|
+
// http bearer authentication required
|
|
4809
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4810
|
+
|
|
4811
|
+
|
|
4812
|
+
|
|
4813
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4814
|
+
|
|
4815
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4816
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4817
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4818
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1PlaneScanRequest, localVarRequestOptions, configuration)
|
|
4819
|
+
|
|
4820
|
+
return {
|
|
4821
|
+
url: toPathString(localVarUrlObj),
|
|
4822
|
+
options: localVarRequestOptions,
|
|
4823
|
+
};
|
|
4824
|
+
},
|
|
4825
|
+
/**
|
|
4826
|
+
* Create a RIC volume search to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
4827
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
4828
|
+
* @param {*} [options] Override http request option.
|
|
4829
|
+
* @throws {RequiredError}
|
|
4830
|
+
*/
|
|
4831
|
+
v2CreateRicVolumeSearch: async (v1RicVolumeSearchRequest: V1RicVolumeSearchRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4832
|
+
// verify required parameter 'v1RicVolumeSearchRequest' is not null or undefined
|
|
4833
|
+
assertParamExists('v2CreateRicVolumeSearch', 'v1RicVolumeSearchRequest', v1RicVolumeSearchRequest)
|
|
4834
|
+
const localVarPath = `/v2/search/ric-volumetric`;
|
|
4835
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4836
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4837
|
+
let baseOptions;
|
|
4838
|
+
if (configuration) {
|
|
4839
|
+
baseOptions = configuration.baseOptions;
|
|
4840
|
+
}
|
|
4841
|
+
|
|
4842
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
4843
|
+
const localVarHeaderParameter = {} as any;
|
|
4844
|
+
const localVarQueryParameter = {} as any;
|
|
4845
|
+
|
|
4846
|
+
// authentication Roles required
|
|
4847
|
+
|
|
4848
|
+
// authentication BearerToken required
|
|
4849
|
+
// http bearer authentication required
|
|
4850
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4851
|
+
|
|
4852
|
+
|
|
4853
|
+
|
|
4854
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4855
|
+
|
|
4856
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4857
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4858
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4859
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1RicVolumeSearchRequest, localVarRequestOptions, configuration)
|
|
4860
|
+
|
|
4861
|
+
return {
|
|
4862
|
+
url: toPathString(localVarUrlObj),
|
|
4863
|
+
options: localVarRequestOptions,
|
|
4864
|
+
};
|
|
4865
|
+
},
|
|
4866
|
+
/**
|
|
4867
|
+
* Delete a plane scan.
|
|
4868
|
+
* @param {string} id
|
|
4869
|
+
* @param {*} [options] Override http request option.
|
|
4870
|
+
* @throws {RequiredError}
|
|
4871
|
+
*/
|
|
4872
|
+
v2DeletePlaneScan: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4873
|
+
// verify required parameter 'id' is not null or undefined
|
|
4874
|
+
assertParamExists('v2DeletePlaneScan', 'id', id)
|
|
4875
|
+
const localVarPath = `/v2/search/plane-scan`;
|
|
4876
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4877
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4878
|
+
let baseOptions;
|
|
4879
|
+
if (configuration) {
|
|
4880
|
+
baseOptions = configuration.baseOptions;
|
|
4881
|
+
}
|
|
4882
|
+
|
|
4883
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
4884
|
+
const localVarHeaderParameter = {} as any;
|
|
4885
|
+
const localVarQueryParameter = {} as any;
|
|
4886
|
+
|
|
4887
|
+
// authentication Roles required
|
|
4888
|
+
|
|
4889
|
+
// authentication BearerToken required
|
|
4890
|
+
// http bearer authentication required
|
|
4891
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4892
|
+
|
|
4893
|
+
if (id !== undefined) {
|
|
4894
|
+
localVarQueryParameter['id'] = id;
|
|
4895
|
+
}
|
|
4896
|
+
|
|
4897
|
+
|
|
4898
|
+
|
|
4899
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4900
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4901
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4902
|
+
|
|
4903
|
+
return {
|
|
4904
|
+
url: toPathString(localVarUrlObj),
|
|
4905
|
+
options: localVarRequestOptions,
|
|
4906
|
+
};
|
|
4907
|
+
},
|
|
4908
|
+
/**
|
|
4909
|
+
* Delete a RIC volume search.
|
|
4910
|
+
* @param {string} id
|
|
4911
|
+
* @param {*} [options] Override http request option.
|
|
4912
|
+
* @throws {RequiredError}
|
|
4913
|
+
*/
|
|
4914
|
+
v2DeleteRicVolumeSearch: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4915
|
+
// verify required parameter 'id' is not null or undefined
|
|
4916
|
+
assertParamExists('v2DeleteRicVolumeSearch', 'id', id)
|
|
4917
|
+
const localVarPath = `/v2/search/ric-volumetric`;
|
|
4918
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4919
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4920
|
+
let baseOptions;
|
|
4921
|
+
if (configuration) {
|
|
4922
|
+
baseOptions = configuration.baseOptions;
|
|
4923
|
+
}
|
|
4924
|
+
|
|
4925
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
4926
|
+
const localVarHeaderParameter = {} as any;
|
|
4927
|
+
const localVarQueryParameter = {} as any;
|
|
4928
|
+
|
|
4929
|
+
// authentication Roles required
|
|
4930
|
+
|
|
4931
|
+
// authentication BearerToken required
|
|
4932
|
+
// http bearer authentication required
|
|
4933
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4934
|
+
|
|
4935
|
+
if (id !== undefined) {
|
|
4936
|
+
localVarQueryParameter['id'] = id;
|
|
4937
|
+
}
|
|
4938
|
+
|
|
4939
|
+
|
|
4940
|
+
|
|
4941
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4942
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4943
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4944
|
+
|
|
4945
|
+
return {
|
|
4946
|
+
url: toPathString(localVarUrlObj),
|
|
4947
|
+
options: localVarRequestOptions,
|
|
4948
|
+
};
|
|
4949
|
+
},
|
|
4950
|
+
/**
|
|
4951
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
4952
|
+
* @param {string} searchId
|
|
4953
|
+
* @param {*} [options] Override http request option.
|
|
4954
|
+
* @throws {RequiredError}
|
|
4955
|
+
*/
|
|
4956
|
+
v2GetSearch: async (searchId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4957
|
+
// verify required parameter 'searchId' is not null or undefined
|
|
4958
|
+
assertParamExists('v2GetSearch', 'searchId', searchId)
|
|
4959
|
+
const localVarPath = `/v2/search`;
|
|
4960
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4961
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4962
|
+
let baseOptions;
|
|
4963
|
+
if (configuration) {
|
|
4964
|
+
baseOptions = configuration.baseOptions;
|
|
4965
|
+
}
|
|
4966
|
+
|
|
4967
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3851
4968
|
const localVarHeaderParameter = {} as any;
|
|
3852
4969
|
const localVarQueryParameter = {} as any;
|
|
3853
4970
|
|
|
@@ -3857,14 +4974,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3857
4974
|
// http bearer authentication required
|
|
3858
4975
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3859
4976
|
|
|
4977
|
+
if (searchId !== undefined) {
|
|
4978
|
+
localVarQueryParameter['searchId'] = searchId;
|
|
4979
|
+
}
|
|
4980
|
+
|
|
3860
4981
|
|
|
3861
4982
|
|
|
3862
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3863
|
-
|
|
3864
4983
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3865
4984
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3866
4985
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3867
|
-
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration)
|
|
3868
4986
|
|
|
3869
4987
|
return {
|
|
3870
4988
|
url: toPathString(localVarUrlObj),
|
|
@@ -3881,6 +4999,27 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3881
4999
|
export const DefaultApiFp = function(configuration?: Configuration) {
|
|
3882
5000
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
|
|
3883
5001
|
return {
|
|
5002
|
+
/**
|
|
5003
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
5004
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
5005
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
5006
|
+
* @param {*} [options] Override http request option.
|
|
5007
|
+
* @throws {RequiredError}
|
|
5008
|
+
*/
|
|
5009
|
+
async getUncorrelatedTracks(after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Track>>> {
|
|
5010
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getUncorrelatedTracks(after, options);
|
|
5011
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5012
|
+
},
|
|
5013
|
+
/**
|
|
5014
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
5015
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
5016
|
+
* @param {*} [options] Override http request option.
|
|
5017
|
+
* @throws {RequiredError}
|
|
5018
|
+
*/
|
|
5019
|
+
async v1CreateBlackoutVolume(v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
5020
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateBlackoutVolume(v1BlackoutVolumeRequest, options);
|
|
5021
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5022
|
+
},
|
|
3884
5023
|
/**
|
|
3885
5024
|
* Create an image set.
|
|
3886
5025
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -3902,7 +5041,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3902
5041
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3903
5042
|
},
|
|
3904
5043
|
/**
|
|
3905
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
5044
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
3906
5045
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
3907
5046
|
* @param {*} [options] Override http request option.
|
|
3908
5047
|
* @throws {RequiredError}
|
|
@@ -3922,9 +5061,10 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3922
5061
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3923
5062
|
},
|
|
3924
5063
|
/**
|
|
3925
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
5064
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3926
5065
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
3927
5066
|
* @param {*} [options] Override http request option.
|
|
5067
|
+
* @deprecated
|
|
3928
5068
|
* @throws {RequiredError}
|
|
3929
5069
|
*/
|
|
3930
5070
|
async v1CreateSearchInstruction(v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
@@ -3961,6 +5101,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3961
5101
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateWebhookTest(v1CreateWebhookTestRequest, options);
|
|
3962
5102
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3963
5103
|
},
|
|
5104
|
+
/**
|
|
5105
|
+
* Delete a blackout volume.
|
|
5106
|
+
* @param {string} id
|
|
5107
|
+
* @param {*} [options] Override http request option.
|
|
5108
|
+
* @throws {RequiredError}
|
|
5109
|
+
*/
|
|
5110
|
+
async v1DeleteBlackoutVolume(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulDelete>> {
|
|
5111
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteBlackoutVolume(id, options);
|
|
5112
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5113
|
+
},
|
|
3964
5114
|
/**
|
|
3965
5115
|
* Delete an image set.
|
|
3966
5116
|
* @param {string} id
|
|
@@ -4021,6 +5171,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4021
5171
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteWebhookConfiguration(id, options);
|
|
4022
5172
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4023
5173
|
},
|
|
5174
|
+
/**
|
|
5175
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
5176
|
+
* @param {string} imageId
|
|
5177
|
+
* @param {*} [options] Override http request option.
|
|
5178
|
+
* @throws {RequiredError}
|
|
5179
|
+
*/
|
|
5180
|
+
async v1GetImageMetadata(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageMetadata>> {
|
|
5181
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetImageMetadata(imageId, options);
|
|
5182
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5183
|
+
},
|
|
4024
5184
|
/**
|
|
4025
5185
|
* Get an image set.
|
|
4026
5186
|
* @param {string} id
|
|
@@ -4138,7 +5298,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4138
5298
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4139
5299
|
},
|
|
4140
5300
|
/**
|
|
4141
|
-
* Get organization targets see the [create](#
|
|
5301
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
4142
5302
|
* @param {*} [options] Override http request option.
|
|
4143
5303
|
* @throws {RequiredError}
|
|
4144
5304
|
*/
|
|
@@ -4295,6 +5455,56 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4295
5455
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1UpdateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options);
|
|
4296
5456
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4297
5457
|
},
|
|
5458
|
+
/**
|
|
5459
|
+
* Create a plane scan to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
5460
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
5461
|
+
* @param {*} [options] Override http request option.
|
|
5462
|
+
* @throws {RequiredError}
|
|
5463
|
+
*/
|
|
5464
|
+
async v2CreatePlaneScan(v1PlaneScanRequest: V1PlaneScanRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
5465
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2CreatePlaneScan(v1PlaneScanRequest, options);
|
|
5466
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5467
|
+
},
|
|
5468
|
+
/**
|
|
5469
|
+
* Create a RIC volume search to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
5470
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
5471
|
+
* @param {*} [options] Override http request option.
|
|
5472
|
+
* @throws {RequiredError}
|
|
5473
|
+
*/
|
|
5474
|
+
async v2CreateRicVolumeSearch(v1RicVolumeSearchRequest: V1RicVolumeSearchRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
5475
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2CreateRicVolumeSearch(v1RicVolumeSearchRequest, options);
|
|
5476
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5477
|
+
},
|
|
5478
|
+
/**
|
|
5479
|
+
* Delete a plane scan.
|
|
5480
|
+
* @param {string} id
|
|
5481
|
+
* @param {*} [options] Override http request option.
|
|
5482
|
+
* @throws {RequiredError}
|
|
5483
|
+
*/
|
|
5484
|
+
async v2DeletePlaneScan(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
5485
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2DeletePlaneScan(id, options);
|
|
5486
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5487
|
+
},
|
|
5488
|
+
/**
|
|
5489
|
+
* Delete a RIC volume search.
|
|
5490
|
+
* @param {string} id
|
|
5491
|
+
* @param {*} [options] Override http request option.
|
|
5492
|
+
* @throws {RequiredError}
|
|
5493
|
+
*/
|
|
5494
|
+
async v2DeleteRicVolumeSearch(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
5495
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2DeleteRicVolumeSearch(id, options);
|
|
5496
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5497
|
+
},
|
|
5498
|
+
/**
|
|
5499
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
5500
|
+
* @param {string} searchId
|
|
5501
|
+
* @param {*} [options] Override http request option.
|
|
5502
|
+
* @throws {RequiredError}
|
|
5503
|
+
*/
|
|
5504
|
+
async v2GetSearch(searchId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2Search>> {
|
|
5505
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2GetSearch(searchId, options);
|
|
5506
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5507
|
+
},
|
|
4298
5508
|
}
|
|
4299
5509
|
};
|
|
4300
5510
|
|
|
@@ -4305,6 +5515,25 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4305
5515
|
export const DefaultApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
4306
5516
|
const localVarFp = DefaultApiFp(configuration)
|
|
4307
5517
|
return {
|
|
5518
|
+
/**
|
|
5519
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
5520
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
5521
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
5522
|
+
* @param {*} [options] Override http request option.
|
|
5523
|
+
* @throws {RequiredError}
|
|
5524
|
+
*/
|
|
5525
|
+
getUncorrelatedTracks(requestParameters: DefaultApiGetUncorrelatedTracksRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V1Track>> {
|
|
5526
|
+
return localVarFp.getUncorrelatedTracks(requestParameters.after, options).then((request) => request(axios, basePath));
|
|
5527
|
+
},
|
|
5528
|
+
/**
|
|
5529
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
5530
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
5531
|
+
* @param {*} [options] Override http request option.
|
|
5532
|
+
* @throws {RequiredError}
|
|
5533
|
+
*/
|
|
5534
|
+
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
5535
|
+
return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
|
|
5536
|
+
},
|
|
4308
5537
|
/**
|
|
4309
5538
|
* Create an image set.
|
|
4310
5539
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -4324,7 +5553,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4324
5553
|
return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(axios, basePath));
|
|
4325
5554
|
},
|
|
4326
5555
|
/**
|
|
4327
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
5556
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
4328
5557
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
4329
5558
|
* @param {*} [options] Override http request option.
|
|
4330
5559
|
* @throws {RequiredError}
|
|
@@ -4342,9 +5571,10 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4342
5571
|
return localVarFp.v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
4343
5572
|
},
|
|
4344
5573
|
/**
|
|
4345
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
5574
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
4346
5575
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
4347
5576
|
* @param {*} [options] Override http request option.
|
|
5577
|
+
* @deprecated
|
|
4348
5578
|
* @throws {RequiredError}
|
|
4349
5579
|
*/
|
|
4350
5580
|
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
@@ -4377,6 +5607,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4377
5607
|
v1CreateWebhookTest(requestParameters: DefaultApiV1CreateWebhookTestRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4378
5608
|
return localVarFp.v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(axios, basePath));
|
|
4379
5609
|
},
|
|
5610
|
+
/**
|
|
5611
|
+
* Delete a blackout volume.
|
|
5612
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
5613
|
+
* @param {*} [options] Override http request option.
|
|
5614
|
+
* @throws {RequiredError}
|
|
5615
|
+
*/
|
|
5616
|
+
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete> {
|
|
5617
|
+
return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
5618
|
+
},
|
|
4380
5619
|
/**
|
|
4381
5620
|
* Delete an image set.
|
|
4382
5621
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4431,6 +5670,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4431
5670
|
v1DeleteWebhookConfiguration(requestParameters: DefaultApiV1DeleteWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4432
5671
|
return localVarFp.v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4433
5672
|
},
|
|
5673
|
+
/**
|
|
5674
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
5675
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
5676
|
+
* @param {*} [options] Override http request option.
|
|
5677
|
+
* @throws {RequiredError}
|
|
5678
|
+
*/
|
|
5679
|
+
v1GetImageMetadata(requestParameters: DefaultApiV1GetImageMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageMetadata> {
|
|
5680
|
+
return localVarFp.v1GetImageMetadata(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
5681
|
+
},
|
|
4434
5682
|
/**
|
|
4435
5683
|
* Get an image set.
|
|
4436
5684
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -4530,7 +5778,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4530
5778
|
return localVarFp.v1GetOrganizationTarget(requestParameters.organizationTargetId, options).then((request) => request(axios, basePath));
|
|
4531
5779
|
},
|
|
4532
5780
|
/**
|
|
4533
|
-
* Get organization targets see the [create](#
|
|
5781
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
4534
5782
|
* @param {*} [options] Override http request option.
|
|
4535
5783
|
* @throws {RequiredError}
|
|
4536
5784
|
*/
|
|
@@ -4662,9 +5910,82 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4662
5910
|
v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4663
5911
|
return localVarFp.v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
4664
5912
|
},
|
|
5913
|
+
/**
|
|
5914
|
+
* Create a plane scan to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
5915
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
5916
|
+
* @param {*} [options] Override http request option.
|
|
5917
|
+
* @throws {RequiredError}
|
|
5918
|
+
*/
|
|
5919
|
+
v2CreatePlaneScan(requestParameters: DefaultApiV2CreatePlaneScanRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
5920
|
+
return localVarFp.v2CreatePlaneScan(requestParameters.v1PlaneScanRequest, options).then((request) => request(axios, basePath));
|
|
5921
|
+
},
|
|
5922
|
+
/**
|
|
5923
|
+
* Create a RIC volume search to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
5924
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
5925
|
+
* @param {*} [options] Override http request option.
|
|
5926
|
+
* @throws {RequiredError}
|
|
5927
|
+
*/
|
|
5928
|
+
v2CreateRicVolumeSearch(requestParameters: DefaultApiV2CreateRicVolumeSearchRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
5929
|
+
return localVarFp.v2CreateRicVolumeSearch(requestParameters.v1RicVolumeSearchRequest, options).then((request) => request(axios, basePath));
|
|
5930
|
+
},
|
|
5931
|
+
/**
|
|
5932
|
+
* Delete a plane scan.
|
|
5933
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
5934
|
+
* @param {*} [options] Override http request option.
|
|
5935
|
+
* @throws {RequiredError}
|
|
5936
|
+
*/
|
|
5937
|
+
v2DeletePlaneScan(requestParameters: DefaultApiV2DeletePlaneScanRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
5938
|
+
return localVarFp.v2DeletePlaneScan(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
5939
|
+
},
|
|
5940
|
+
/**
|
|
5941
|
+
* Delete a RIC volume search.
|
|
5942
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
5943
|
+
* @param {*} [options] Override http request option.
|
|
5944
|
+
* @throws {RequiredError}
|
|
5945
|
+
*/
|
|
5946
|
+
v2DeleteRicVolumeSearch(requestParameters: DefaultApiV2DeleteRicVolumeSearchRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
5947
|
+
return localVarFp.v2DeleteRicVolumeSearch(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
5948
|
+
},
|
|
5949
|
+
/**
|
|
5950
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
5951
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
5952
|
+
* @param {*} [options] Override http request option.
|
|
5953
|
+
* @throws {RequiredError}
|
|
5954
|
+
*/
|
|
5955
|
+
v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): AxiosPromise<V2Search> {
|
|
5956
|
+
return localVarFp.v2GetSearch(requestParameters.searchId, options).then((request) => request(axios, basePath));
|
|
5957
|
+
},
|
|
4665
5958
|
};
|
|
4666
5959
|
};
|
|
4667
5960
|
|
|
5961
|
+
/**
|
|
5962
|
+
* Request parameters for getUncorrelatedTracks operation in DefaultApi.
|
|
5963
|
+
* @export
|
|
5964
|
+
* @interface DefaultApiGetUncorrelatedTracksRequest
|
|
5965
|
+
*/
|
|
5966
|
+
export interface DefaultApiGetUncorrelatedTracksRequest {
|
|
5967
|
+
/**
|
|
5968
|
+
* The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
5969
|
+
* @type {string}
|
|
5970
|
+
* @memberof DefaultApiGetUncorrelatedTracks
|
|
5971
|
+
*/
|
|
5972
|
+
readonly after?: string
|
|
5973
|
+
}
|
|
5974
|
+
|
|
5975
|
+
/**
|
|
5976
|
+
* Request parameters for v1CreateBlackoutVolume operation in DefaultApi.
|
|
5977
|
+
* @export
|
|
5978
|
+
* @interface DefaultApiV1CreateBlackoutVolumeRequest
|
|
5979
|
+
*/
|
|
5980
|
+
export interface DefaultApiV1CreateBlackoutVolumeRequest {
|
|
5981
|
+
/**
|
|
5982
|
+
*
|
|
5983
|
+
* @type {V1BlackoutVolumeRequest}
|
|
5984
|
+
* @memberof DefaultApiV1CreateBlackoutVolume
|
|
5985
|
+
*/
|
|
5986
|
+
readonly v1BlackoutVolumeRequest: V1BlackoutVolumeRequest
|
|
5987
|
+
}
|
|
5988
|
+
|
|
4668
5989
|
/**
|
|
4669
5990
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
4670
5991
|
* @export
|
|
@@ -4777,6 +6098,20 @@ export interface DefaultApiV1CreateWebhookTestRequest {
|
|
|
4777
6098
|
readonly v1CreateWebhookTestRequest: V1CreateWebhookTestRequest
|
|
4778
6099
|
}
|
|
4779
6100
|
|
|
6101
|
+
/**
|
|
6102
|
+
* Request parameters for v1DeleteBlackoutVolume operation in DefaultApi.
|
|
6103
|
+
* @export
|
|
6104
|
+
* @interface DefaultApiV1DeleteBlackoutVolumeRequest
|
|
6105
|
+
*/
|
|
6106
|
+
export interface DefaultApiV1DeleteBlackoutVolumeRequest {
|
|
6107
|
+
/**
|
|
6108
|
+
*
|
|
6109
|
+
* @type {string}
|
|
6110
|
+
* @memberof DefaultApiV1DeleteBlackoutVolume
|
|
6111
|
+
*/
|
|
6112
|
+
readonly id: string
|
|
6113
|
+
}
|
|
6114
|
+
|
|
4780
6115
|
/**
|
|
4781
6116
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
4782
6117
|
* @export
|
|
@@ -4861,6 +6196,20 @@ export interface DefaultApiV1DeleteWebhookConfigurationRequest {
|
|
|
4861
6196
|
readonly id: string
|
|
4862
6197
|
}
|
|
4863
6198
|
|
|
6199
|
+
/**
|
|
6200
|
+
* Request parameters for v1GetImageMetadata operation in DefaultApi.
|
|
6201
|
+
* @export
|
|
6202
|
+
* @interface DefaultApiV1GetImageMetadataRequest
|
|
6203
|
+
*/
|
|
6204
|
+
export interface DefaultApiV1GetImageMetadataRequest {
|
|
6205
|
+
/**
|
|
6206
|
+
*
|
|
6207
|
+
* @type {string}
|
|
6208
|
+
* @memberof DefaultApiV1GetImageMetadata
|
|
6209
|
+
*/
|
|
6210
|
+
readonly imageId: string
|
|
6211
|
+
}
|
|
6212
|
+
|
|
4864
6213
|
/**
|
|
4865
6214
|
* Request parameters for v1GetImageSet operation in DefaultApi.
|
|
4866
6215
|
* @export
|
|
@@ -5302,6 +6651,76 @@ export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
|
5302
6651
|
readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest
|
|
5303
6652
|
}
|
|
5304
6653
|
|
|
6654
|
+
/**
|
|
6655
|
+
* Request parameters for v2CreatePlaneScan operation in DefaultApi.
|
|
6656
|
+
* @export
|
|
6657
|
+
* @interface DefaultApiV2CreatePlaneScanRequest
|
|
6658
|
+
*/
|
|
6659
|
+
export interface DefaultApiV2CreatePlaneScanRequest {
|
|
6660
|
+
/**
|
|
6661
|
+
*
|
|
6662
|
+
* @type {V1PlaneScanRequest}
|
|
6663
|
+
* @memberof DefaultApiV2CreatePlaneScan
|
|
6664
|
+
*/
|
|
6665
|
+
readonly v1PlaneScanRequest: V1PlaneScanRequest
|
|
6666
|
+
}
|
|
6667
|
+
|
|
6668
|
+
/**
|
|
6669
|
+
* Request parameters for v2CreateRicVolumeSearch operation in DefaultApi.
|
|
6670
|
+
* @export
|
|
6671
|
+
* @interface DefaultApiV2CreateRicVolumeSearchRequest
|
|
6672
|
+
*/
|
|
6673
|
+
export interface DefaultApiV2CreateRicVolumeSearchRequest {
|
|
6674
|
+
/**
|
|
6675
|
+
*
|
|
6676
|
+
* @type {V1RicVolumeSearchRequest}
|
|
6677
|
+
* @memberof DefaultApiV2CreateRicVolumeSearch
|
|
6678
|
+
*/
|
|
6679
|
+
readonly v1RicVolumeSearchRequest: V1RicVolumeSearchRequest
|
|
6680
|
+
}
|
|
6681
|
+
|
|
6682
|
+
/**
|
|
6683
|
+
* Request parameters for v2DeletePlaneScan operation in DefaultApi.
|
|
6684
|
+
* @export
|
|
6685
|
+
* @interface DefaultApiV2DeletePlaneScanRequest
|
|
6686
|
+
*/
|
|
6687
|
+
export interface DefaultApiV2DeletePlaneScanRequest {
|
|
6688
|
+
/**
|
|
6689
|
+
*
|
|
6690
|
+
* @type {string}
|
|
6691
|
+
* @memberof DefaultApiV2DeletePlaneScan
|
|
6692
|
+
*/
|
|
6693
|
+
readonly id: string
|
|
6694
|
+
}
|
|
6695
|
+
|
|
6696
|
+
/**
|
|
6697
|
+
* Request parameters for v2DeleteRicVolumeSearch operation in DefaultApi.
|
|
6698
|
+
* @export
|
|
6699
|
+
* @interface DefaultApiV2DeleteRicVolumeSearchRequest
|
|
6700
|
+
*/
|
|
6701
|
+
export interface DefaultApiV2DeleteRicVolumeSearchRequest {
|
|
6702
|
+
/**
|
|
6703
|
+
*
|
|
6704
|
+
* @type {string}
|
|
6705
|
+
* @memberof DefaultApiV2DeleteRicVolumeSearch
|
|
6706
|
+
*/
|
|
6707
|
+
readonly id: string
|
|
6708
|
+
}
|
|
6709
|
+
|
|
6710
|
+
/**
|
|
6711
|
+
* Request parameters for v2GetSearch operation in DefaultApi.
|
|
6712
|
+
* @export
|
|
6713
|
+
* @interface DefaultApiV2GetSearchRequest
|
|
6714
|
+
*/
|
|
6715
|
+
export interface DefaultApiV2GetSearchRequest {
|
|
6716
|
+
/**
|
|
6717
|
+
*
|
|
6718
|
+
* @type {string}
|
|
6719
|
+
* @memberof DefaultApiV2GetSearch
|
|
6720
|
+
*/
|
|
6721
|
+
readonly searchId: string
|
|
6722
|
+
}
|
|
6723
|
+
|
|
5305
6724
|
/**
|
|
5306
6725
|
* DefaultApi - object-oriented interface
|
|
5307
6726
|
* @export
|
|
@@ -5309,6 +6728,29 @@ export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
|
5309
6728
|
* @extends {BaseAPI}
|
|
5310
6729
|
*/
|
|
5311
6730
|
export class DefaultApi extends BaseAPI {
|
|
6731
|
+
/**
|
|
6732
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
6733
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
6734
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
6735
|
+
* @param {*} [options] Override http request option.
|
|
6736
|
+
* @throws {RequiredError}
|
|
6737
|
+
* @memberof DefaultApi
|
|
6738
|
+
*/
|
|
6739
|
+
public getUncorrelatedTracks(requestParameters: DefaultApiGetUncorrelatedTracksRequest = {}, options?: AxiosRequestConfig) {
|
|
6740
|
+
return DefaultApiFp(this.configuration).getUncorrelatedTracks(requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
/**
|
|
6744
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
6745
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
6746
|
+
* @param {*} [options] Override http request option.
|
|
6747
|
+
* @throws {RequiredError}
|
|
6748
|
+
* @memberof DefaultApi
|
|
6749
|
+
*/
|
|
6750
|
+
public v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig) {
|
|
6751
|
+
return DefaultApiFp(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
6752
|
+
}
|
|
6753
|
+
|
|
5312
6754
|
/**
|
|
5313
6755
|
* Create an image set.
|
|
5314
6756
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -5332,7 +6774,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
5332
6774
|
}
|
|
5333
6775
|
|
|
5334
6776
|
/**
|
|
5335
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
6777
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
5336
6778
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
5337
6779
|
* @param {*} [options] Override http request option.
|
|
5338
6780
|
* @throws {RequiredError}
|
|
@@ -5354,9 +6796,10 @@ export class DefaultApi extends BaseAPI {
|
|
|
5354
6796
|
}
|
|
5355
6797
|
|
|
5356
6798
|
/**
|
|
5357
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
6799
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
5358
6800
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
5359
6801
|
* @param {*} [options] Override http request option.
|
|
6802
|
+
* @deprecated
|
|
5360
6803
|
* @throws {RequiredError}
|
|
5361
6804
|
* @memberof DefaultApi
|
|
5362
6805
|
*/
|
|
@@ -5397,6 +6840,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5397
6840
|
return DefaultApiFp(this.configuration).v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5398
6841
|
}
|
|
5399
6842
|
|
|
6843
|
+
/**
|
|
6844
|
+
* Delete a blackout volume.
|
|
6845
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
6846
|
+
* @param {*} [options] Override http request option.
|
|
6847
|
+
* @throws {RequiredError}
|
|
6848
|
+
* @memberof DefaultApi
|
|
6849
|
+
*/
|
|
6850
|
+
public v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig) {
|
|
6851
|
+
return DefaultApiFp(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
6852
|
+
}
|
|
6853
|
+
|
|
5400
6854
|
/**
|
|
5401
6855
|
* Delete an image set.
|
|
5402
6856
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -5463,6 +6917,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5463
6917
|
return DefaultApiFp(this.configuration).v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
5464
6918
|
}
|
|
5465
6919
|
|
|
6920
|
+
/**
|
|
6921
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
6922
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
6923
|
+
* @param {*} [options] Override http request option.
|
|
6924
|
+
* @throws {RequiredError}
|
|
6925
|
+
* @memberof DefaultApi
|
|
6926
|
+
*/
|
|
6927
|
+
public v1GetImageMetadata(requestParameters: DefaultApiV1GetImageMetadataRequest, options?: AxiosRequestConfig) {
|
|
6928
|
+
return DefaultApiFp(this.configuration).v1GetImageMetadata(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
6929
|
+
}
|
|
6930
|
+
|
|
5466
6931
|
/**
|
|
5467
6932
|
* Get an image set.
|
|
5468
6933
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -5584,7 +7049,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
5584
7049
|
}
|
|
5585
7050
|
|
|
5586
7051
|
/**
|
|
5587
|
-
* Get organization targets see the [create](#
|
|
7052
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
5588
7053
|
* @param {*} [options] Override http request option.
|
|
5589
7054
|
* @throws {RequiredError}
|
|
5590
7055
|
* @memberof DefaultApi
|
|
@@ -5745,6 +7210,61 @@ export class DefaultApi extends BaseAPI {
|
|
|
5745
7210
|
public v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig) {
|
|
5746
7211
|
return DefaultApiFp(this.configuration).v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5747
7212
|
}
|
|
7213
|
+
|
|
7214
|
+
/**
|
|
7215
|
+
* Create a plane scan to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
7216
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
7217
|
+
* @param {*} [options] Override http request option.
|
|
7218
|
+
* @throws {RequiredError}
|
|
7219
|
+
* @memberof DefaultApi
|
|
7220
|
+
*/
|
|
7221
|
+
public v2CreatePlaneScan(requestParameters: DefaultApiV2CreatePlaneScanRequest, options?: AxiosRequestConfig) {
|
|
7222
|
+
return DefaultApiFp(this.configuration).v2CreatePlaneScan(requestParameters.v1PlaneScanRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7223
|
+
}
|
|
7224
|
+
|
|
7225
|
+
/**
|
|
7226
|
+
* Create a RIC volume search to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
7227
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
7228
|
+
* @param {*} [options] Override http request option.
|
|
7229
|
+
* @throws {RequiredError}
|
|
7230
|
+
* @memberof DefaultApi
|
|
7231
|
+
*/
|
|
7232
|
+
public v2CreateRicVolumeSearch(requestParameters: DefaultApiV2CreateRicVolumeSearchRequest, options?: AxiosRequestConfig) {
|
|
7233
|
+
return DefaultApiFp(this.configuration).v2CreateRicVolumeSearch(requestParameters.v1RicVolumeSearchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7234
|
+
}
|
|
7235
|
+
|
|
7236
|
+
/**
|
|
7237
|
+
* Delete a plane scan.
|
|
7238
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
7239
|
+
* @param {*} [options] Override http request option.
|
|
7240
|
+
* @throws {RequiredError}
|
|
7241
|
+
* @memberof DefaultApi
|
|
7242
|
+
*/
|
|
7243
|
+
public v2DeletePlaneScan(requestParameters: DefaultApiV2DeletePlaneScanRequest, options?: AxiosRequestConfig) {
|
|
7244
|
+
return DefaultApiFp(this.configuration).v2DeletePlaneScan(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7245
|
+
}
|
|
7246
|
+
|
|
7247
|
+
/**
|
|
7248
|
+
* Delete a RIC volume search.
|
|
7249
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
7250
|
+
* @param {*} [options] Override http request option.
|
|
7251
|
+
* @throws {RequiredError}
|
|
7252
|
+
* @memberof DefaultApi
|
|
7253
|
+
*/
|
|
7254
|
+
public v2DeleteRicVolumeSearch(requestParameters: DefaultApiV2DeleteRicVolumeSearchRequest, options?: AxiosRequestConfig) {
|
|
7255
|
+
return DefaultApiFp(this.configuration).v2DeleteRicVolumeSearch(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7256
|
+
}
|
|
7257
|
+
|
|
7258
|
+
/**
|
|
7259
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
7260
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
7261
|
+
* @param {*} [options] Override http request option.
|
|
7262
|
+
* @throws {RequiredError}
|
|
7263
|
+
* @memberof DefaultApi
|
|
7264
|
+
*/
|
|
7265
|
+
public v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig) {
|
|
7266
|
+
return DefaultApiFp(this.configuration).v2GetSearch(requestParameters.searchId, options).then((request) => request(this.axios, this.basePath));
|
|
7267
|
+
}
|
|
5748
7268
|
}
|
|
5749
7269
|
|
|
5750
7270
|
|