@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/dist/api.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](
|
|
3
|
+
* 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.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -120,6 +120,10 @@ export interface FitsHeader {
|
|
|
120
120
|
* @enum {string}
|
|
121
121
|
*/
|
|
122
122
|
export declare const ImageSetType: {
|
|
123
|
+
readonly ASTRONOMICAL: "ASTRONOMICAL";
|
|
124
|
+
readonly EARTH_ORBITAL: "EARTH_ORBITAL";
|
|
125
|
+
readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
|
|
126
|
+
readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
|
|
123
127
|
readonly ALL_SKY: "ALL_SKY";
|
|
124
128
|
};
|
|
125
129
|
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
@@ -385,6 +389,18 @@ export declare const SatelliteTargetTrackingStatus: {
|
|
|
385
389
|
readonly DEORBITED: "DEORBITED";
|
|
386
390
|
};
|
|
387
391
|
export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
|
|
392
|
+
/**
|
|
393
|
+
* The reason a search was completed.
|
|
394
|
+
* @export
|
|
395
|
+
* @enum {string}
|
|
396
|
+
*/
|
|
397
|
+
export declare const SearchCompletedReason: {
|
|
398
|
+
readonly ALL_HYPOTHESES_TESTED: "ALL_HYPOTHESES_TESTED";
|
|
399
|
+
readonly FOUND_TARGET: "FOUND_TARGET";
|
|
400
|
+
readonly CANCELLED: "CANCELLED";
|
|
401
|
+
readonly FAILED: "FAILED";
|
|
402
|
+
};
|
|
403
|
+
export type SearchCompletedReason = typeof SearchCompletedReason[keyof typeof SearchCompletedReason];
|
|
388
404
|
/**
|
|
389
405
|
*
|
|
390
406
|
* @export
|
|
@@ -432,6 +448,30 @@ export declare const TrackingType: {
|
|
|
432
448
|
readonly NONE: "NONE";
|
|
433
449
|
};
|
|
434
450
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
451
|
+
/**
|
|
452
|
+
* A designated volume of space that is not to be observed.
|
|
453
|
+
* @export
|
|
454
|
+
* @interface V1BlackoutVolumeRequest
|
|
455
|
+
*/
|
|
456
|
+
export interface V1BlackoutVolumeRequest {
|
|
457
|
+
/**
|
|
458
|
+
* The reference frame in which the volume is defined.
|
|
459
|
+
* @type {string}
|
|
460
|
+
* @memberof V1BlackoutVolumeRequest
|
|
461
|
+
*/
|
|
462
|
+
'reference_frame': V1BlackoutVolumeRequestReferenceFrameEnum;
|
|
463
|
+
/**
|
|
464
|
+
* The set of 8 points that define the volume, coordinates should be in the selected reference frame.
|
|
465
|
+
* @type {Array<V1Point>}
|
|
466
|
+
* @memberof V1BlackoutVolumeRequest
|
|
467
|
+
*/
|
|
468
|
+
'points': Array<V1Point>;
|
|
469
|
+
}
|
|
470
|
+
export declare const V1BlackoutVolumeRequestReferenceFrameEnum: {
|
|
471
|
+
readonly ECI_J2000: "ECI_J2000";
|
|
472
|
+
readonly ECEF: "ECEF";
|
|
473
|
+
};
|
|
474
|
+
export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeRequestReferenceFrameEnum[keyof typeof V1BlackoutVolumeRequestReferenceFrameEnum];
|
|
435
475
|
/**
|
|
436
476
|
*
|
|
437
477
|
* @export
|
|
@@ -444,6 +484,42 @@ export interface V1CreateImageSetImageRequest {
|
|
|
444
484
|
* @memberof V1CreateImageSetImageRequest
|
|
445
485
|
*/
|
|
446
486
|
'imageSetId': string;
|
|
487
|
+
/**
|
|
488
|
+
*
|
|
489
|
+
* @type {V1ImageFileType}
|
|
490
|
+
* @memberof V1CreateImageSetImageRequest
|
|
491
|
+
*/
|
|
492
|
+
'imageFileType'?: V1ImageFileType;
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* @type {number}
|
|
496
|
+
* @memberof V1CreateImageSetImageRequest
|
|
497
|
+
*/
|
|
498
|
+
'binning'?: number;
|
|
499
|
+
/**
|
|
500
|
+
*
|
|
501
|
+
* @type {number}
|
|
502
|
+
* @memberof V1CreateImageSetImageRequest
|
|
503
|
+
*/
|
|
504
|
+
'exposureLength'?: number;
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @type {string}
|
|
508
|
+
* @memberof V1CreateImageSetImageRequest
|
|
509
|
+
*/
|
|
510
|
+
'imageSha'?: string;
|
|
511
|
+
/**
|
|
512
|
+
*
|
|
513
|
+
* @type {number}
|
|
514
|
+
* @memberof V1CreateImageSetImageRequest
|
|
515
|
+
*/
|
|
516
|
+
'imageSizeMb'?: number;
|
|
517
|
+
/**
|
|
518
|
+
*
|
|
519
|
+
* @type {string}
|
|
520
|
+
* @memberof V1CreateImageSetImageRequest
|
|
521
|
+
*/
|
|
522
|
+
'capturedAt'?: string;
|
|
447
523
|
}
|
|
448
524
|
/**
|
|
449
525
|
*
|
|
@@ -767,6 +843,78 @@ export interface V1GroundStationParticipant {
|
|
|
767
843
|
*/
|
|
768
844
|
'focuserTravelDistanceMm'?: number;
|
|
769
845
|
}
|
|
846
|
+
/**
|
|
847
|
+
* HFR extracted star from the image
|
|
848
|
+
* @export
|
|
849
|
+
* @interface V1HFRStar
|
|
850
|
+
*/
|
|
851
|
+
export interface V1HFRStar {
|
|
852
|
+
/**
|
|
853
|
+
*
|
|
854
|
+
* @type {V1PixelCoordinates}
|
|
855
|
+
* @memberof V1HFRStar
|
|
856
|
+
*/
|
|
857
|
+
'coordinates'?: V1PixelCoordinates;
|
|
858
|
+
/**
|
|
859
|
+
*
|
|
860
|
+
* @type {number}
|
|
861
|
+
* @memberof V1HFRStar
|
|
862
|
+
*/
|
|
863
|
+
'hfr': number;
|
|
864
|
+
/**
|
|
865
|
+
*
|
|
866
|
+
* @type {number}
|
|
867
|
+
* @memberof V1HFRStar
|
|
868
|
+
*/
|
|
869
|
+
'flux': number;
|
|
870
|
+
}
|
|
871
|
+
/**
|
|
872
|
+
*
|
|
873
|
+
* @export
|
|
874
|
+
* @enum {string}
|
|
875
|
+
*/
|
|
876
|
+
export declare const V1ImageFileType: {
|
|
877
|
+
readonly FITS: "FITS";
|
|
878
|
+
readonly JPG: "JPG";
|
|
879
|
+
};
|
|
880
|
+
export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
|
|
881
|
+
/**
|
|
882
|
+
*
|
|
883
|
+
* @export
|
|
884
|
+
* @interface V1ImageMetadata
|
|
885
|
+
*/
|
|
886
|
+
export interface V1ImageMetadata {
|
|
887
|
+
/**
|
|
888
|
+
*
|
|
889
|
+
* @type {string}
|
|
890
|
+
* @memberof V1ImageMetadata
|
|
891
|
+
*/
|
|
892
|
+
'id': string;
|
|
893
|
+
/**
|
|
894
|
+
*
|
|
895
|
+
* @type {string}
|
|
896
|
+
* @memberof V1ImageMetadata
|
|
897
|
+
*/
|
|
898
|
+
'imageId': string;
|
|
899
|
+
/**
|
|
900
|
+
*
|
|
901
|
+
* @type {V1PlateSolveResult}
|
|
902
|
+
* @memberof V1ImageMetadata
|
|
903
|
+
*/
|
|
904
|
+
'plateSolveResult': V1PlateSolveResult;
|
|
905
|
+
/**
|
|
906
|
+
* Extracted star features from the image. Used as inputs to plate solving
|
|
907
|
+
* @type {Array<V1HFRStar>}
|
|
908
|
+
* @memberof V1ImageMetadata
|
|
909
|
+
*/
|
|
910
|
+
'inputStars'?: Array<V1HFRStar>;
|
|
911
|
+
/**
|
|
912
|
+
*
|
|
913
|
+
* @type {string}
|
|
914
|
+
* @memberof V1ImageMetadata
|
|
915
|
+
*/
|
|
916
|
+
'createdAt': string;
|
|
917
|
+
}
|
|
770
918
|
/**
|
|
771
919
|
* An image set represents a contiguous set of observations of the same target captured by the same node.
|
|
772
920
|
* @export
|
|
@@ -1010,13 +1158,25 @@ export interface V1ImageSetImage {
|
|
|
1010
1158
|
*/
|
|
1011
1159
|
export interface V1ObservationFeature {
|
|
1012
1160
|
/**
|
|
1013
|
-
*
|
|
1161
|
+
* EME2000 right ascension, corrected for stellar aberration [degrees]
|
|
1162
|
+
* @type {number}
|
|
1163
|
+
* @memberof V1ObservationFeature
|
|
1164
|
+
*/
|
|
1165
|
+
'correctedRa'?: number;
|
|
1166
|
+
/**
|
|
1167
|
+
* EME2000 declination, corrected for stellar aberration [degrees]
|
|
1168
|
+
* @type {number}
|
|
1169
|
+
* @memberof V1ObservationFeature
|
|
1170
|
+
*/
|
|
1171
|
+
'correctedDec'?: number;
|
|
1172
|
+
/**
|
|
1173
|
+
* the right ascension in degrees in EME2000 frame, not corrected for stellar aberration
|
|
1014
1174
|
* @type {number}
|
|
1015
1175
|
* @memberof V1ObservationFeature
|
|
1016
1176
|
*/
|
|
1017
1177
|
'ra': number;
|
|
1018
1178
|
/**
|
|
1019
|
-
* the declination in degrees in EME2000 frame
|
|
1179
|
+
* the declination in degrees in EME2000 frame, not corrected for stellar aberration
|
|
1020
1180
|
* @type {number}
|
|
1021
1181
|
* @memberof V1ObservationFeature
|
|
1022
1182
|
*/
|
|
@@ -1241,6 +1401,31 @@ export interface V1ObservationStatus {
|
|
|
1241
1401
|
*/
|
|
1242
1402
|
'state': ObservationState;
|
|
1243
1403
|
}
|
|
1404
|
+
/**
|
|
1405
|
+
*
|
|
1406
|
+
* @export
|
|
1407
|
+
* @interface V1ObserverLocation
|
|
1408
|
+
*/
|
|
1409
|
+
export interface V1ObserverLocation {
|
|
1410
|
+
/**
|
|
1411
|
+
*
|
|
1412
|
+
* @type {number}
|
|
1413
|
+
* @memberof V1ObserverLocation
|
|
1414
|
+
*/
|
|
1415
|
+
'latitudeRadians': number;
|
|
1416
|
+
/**
|
|
1417
|
+
*
|
|
1418
|
+
* @type {number}
|
|
1419
|
+
* @memberof V1ObserverLocation
|
|
1420
|
+
*/
|
|
1421
|
+
'longitudeRadians': number;
|
|
1422
|
+
/**
|
|
1423
|
+
*
|
|
1424
|
+
* @type {number}
|
|
1425
|
+
* @memberof V1ObserverLocation
|
|
1426
|
+
*/
|
|
1427
|
+
'elevationMeters': number;
|
|
1428
|
+
}
|
|
1244
1429
|
/**
|
|
1245
1430
|
*
|
|
1246
1431
|
* @export
|
|
@@ -1253,6 +1438,12 @@ export interface V1OrganizationTarget {
|
|
|
1253
1438
|
* @memberof V1OrganizationTarget
|
|
1254
1439
|
*/
|
|
1255
1440
|
'id': string;
|
|
1441
|
+
/**
|
|
1442
|
+
*
|
|
1443
|
+
* @type {number}
|
|
1444
|
+
* @memberof V1OrganizationTarget
|
|
1445
|
+
*/
|
|
1446
|
+
'revisitRateMinutes'?: number;
|
|
1256
1447
|
/**
|
|
1257
1448
|
*
|
|
1258
1449
|
* @type {V1SatelliteTarget}
|
|
@@ -1272,6 +1463,191 @@ export interface V1OrganizationTarget {
|
|
|
1272
1463
|
*/
|
|
1273
1464
|
'createdAt': string;
|
|
1274
1465
|
}
|
|
1466
|
+
/**
|
|
1467
|
+
* An (x,y) pixel location in the image
|
|
1468
|
+
* @export
|
|
1469
|
+
* @interface V1PixelCoordinates
|
|
1470
|
+
*/
|
|
1471
|
+
export interface V1PixelCoordinates {
|
|
1472
|
+
/**
|
|
1473
|
+
*
|
|
1474
|
+
* @type {number}
|
|
1475
|
+
* @memberof V1PixelCoordinates
|
|
1476
|
+
*/
|
|
1477
|
+
'x': number;
|
|
1478
|
+
/**
|
|
1479
|
+
*
|
|
1480
|
+
* @type {number}
|
|
1481
|
+
* @memberof V1PixelCoordinates
|
|
1482
|
+
*/
|
|
1483
|
+
'y': number;
|
|
1484
|
+
}
|
|
1485
|
+
/**
|
|
1486
|
+
* Parameters to create a plane scan to search for a target
|
|
1487
|
+
* @export
|
|
1488
|
+
* @interface V1PlaneScanRequest
|
|
1489
|
+
*/
|
|
1490
|
+
export interface V1PlaneScanRequest {
|
|
1491
|
+
/**
|
|
1492
|
+
*
|
|
1493
|
+
* @type {string}
|
|
1494
|
+
* @memberof V1PlaneScanRequest
|
|
1495
|
+
*/
|
|
1496
|
+
'targetId': string;
|
|
1497
|
+
/**
|
|
1498
|
+
* The angle in degrees to search around the target\'s anomaly- centered on the target\'s prior position.
|
|
1499
|
+
* @type {number}
|
|
1500
|
+
* @memberof V1PlaneScanRequest
|
|
1501
|
+
*/
|
|
1502
|
+
'plusMinusAnomalyAngleDegrees': number;
|
|
1503
|
+
/**
|
|
1504
|
+
* The step size in degrees to search across the specified anomaly angle range
|
|
1505
|
+
* @type {number}
|
|
1506
|
+
* @memberof V1PlaneScanRequest
|
|
1507
|
+
*/
|
|
1508
|
+
'stepSizeDegrees': number;
|
|
1509
|
+
}
|
|
1510
|
+
/**
|
|
1511
|
+
* Extracted stars that matched during plate solving
|
|
1512
|
+
* @export
|
|
1513
|
+
* @interface V1Plate
|
|
1514
|
+
*/
|
|
1515
|
+
export interface V1Plate {
|
|
1516
|
+
/**
|
|
1517
|
+
* The x-centroid
|
|
1518
|
+
* @type {number}
|
|
1519
|
+
* @memberof V1Plate
|
|
1520
|
+
*/
|
|
1521
|
+
'xCentroid': number;
|
|
1522
|
+
/**
|
|
1523
|
+
* The y-centroid
|
|
1524
|
+
* @type {number}
|
|
1525
|
+
* @memberof V1Plate
|
|
1526
|
+
*/
|
|
1527
|
+
'yCentroid': number;
|
|
1528
|
+
/**
|
|
1529
|
+
* The UCAC4 or GaiaUD number if known
|
|
1530
|
+
* @type {number}
|
|
1531
|
+
* @memberof V1Plate
|
|
1532
|
+
*/
|
|
1533
|
+
'sequenceNumber': number;
|
|
1534
|
+
/**
|
|
1535
|
+
* Extracted magnitude
|
|
1536
|
+
* @type {number}
|
|
1537
|
+
* @memberof V1Plate
|
|
1538
|
+
*/
|
|
1539
|
+
'magnitude': number;
|
|
1540
|
+
/**
|
|
1541
|
+
* The star RA
|
|
1542
|
+
* @type {number}
|
|
1543
|
+
* @memberof V1Plate
|
|
1544
|
+
*/
|
|
1545
|
+
'raRad': number;
|
|
1546
|
+
/**
|
|
1547
|
+
* The star Dec
|
|
1548
|
+
* @type {number}
|
|
1549
|
+
* @memberof V1Plate
|
|
1550
|
+
*/
|
|
1551
|
+
'decRad': number;
|
|
1552
|
+
/**
|
|
1553
|
+
* The calculated offset from the catalog star, if known. 0 otherwise
|
|
1554
|
+
* @type {number}
|
|
1555
|
+
* @memberof V1Plate
|
|
1556
|
+
*/
|
|
1557
|
+
'catalogOffsetRad': number;
|
|
1558
|
+
}
|
|
1559
|
+
/**
|
|
1560
|
+
*
|
|
1561
|
+
* @export
|
|
1562
|
+
* @interface V1PlateSolveResult
|
|
1563
|
+
*/
|
|
1564
|
+
export interface V1PlateSolveResult {
|
|
1565
|
+
/**
|
|
1566
|
+
*
|
|
1567
|
+
* @type {Array<V1Plate>}
|
|
1568
|
+
* @memberof V1PlateSolveResult
|
|
1569
|
+
*/
|
|
1570
|
+
'plates': Array<V1Plate>;
|
|
1571
|
+
/**
|
|
1572
|
+
* The number of pixels in X directions
|
|
1573
|
+
* @type {number}
|
|
1574
|
+
* @memberof V1PlateSolveResult
|
|
1575
|
+
*/
|
|
1576
|
+
'pixelWidth': number;
|
|
1577
|
+
/**
|
|
1578
|
+
* The number of pixels in Y directions
|
|
1579
|
+
* @type {number}
|
|
1580
|
+
* @memberof V1PlateSolveResult
|
|
1581
|
+
*/
|
|
1582
|
+
'pixelHeight': number;
|
|
1583
|
+
/**
|
|
1584
|
+
* The number of matched stars
|
|
1585
|
+
* @type {number}
|
|
1586
|
+
* @memberof V1PlateSolveResult
|
|
1587
|
+
*/
|
|
1588
|
+
'numberMatchedStars': number;
|
|
1589
|
+
/**
|
|
1590
|
+
* In radians, the exact RA center when matched
|
|
1591
|
+
* @type {number}
|
|
1592
|
+
* @memberof V1PlateSolveResult
|
|
1593
|
+
*/
|
|
1594
|
+
'centerRightAscensionRadians': number;
|
|
1595
|
+
/**
|
|
1596
|
+
* In radians, the exact Dec center when matched
|
|
1597
|
+
* @type {number}
|
|
1598
|
+
* @memberof V1PlateSolveResult
|
|
1599
|
+
*/
|
|
1600
|
+
'centerDeclinationRadians': number;
|
|
1601
|
+
/**
|
|
1602
|
+
* The approximate plate size in X-direction, in radians
|
|
1603
|
+
* @type {number}
|
|
1604
|
+
* @memberof V1PlateSolveResult
|
|
1605
|
+
*/
|
|
1606
|
+
'xSizeRadians': number;
|
|
1607
|
+
/**
|
|
1608
|
+
* The approximate plate size in Y-direction, in radians
|
|
1609
|
+
* @type {number}
|
|
1610
|
+
* @memberof V1PlateSolveResult
|
|
1611
|
+
*/
|
|
1612
|
+
'ySizeRadians': number;
|
|
1613
|
+
/**
|
|
1614
|
+
* True if there is a valid plate match
|
|
1615
|
+
* @type {boolean}
|
|
1616
|
+
* @memberof V1PlateSolveResult
|
|
1617
|
+
*/
|
|
1618
|
+
'isMatched': boolean;
|
|
1619
|
+
/**
|
|
1620
|
+
*
|
|
1621
|
+
* @type {V1Transformation}
|
|
1622
|
+
* @memberof V1PlateSolveResult
|
|
1623
|
+
*/
|
|
1624
|
+
'transformation': V1Transformation;
|
|
1625
|
+
}
|
|
1626
|
+
/**
|
|
1627
|
+
* A point in 3D space.
|
|
1628
|
+
* @export
|
|
1629
|
+
* @interface V1Point
|
|
1630
|
+
*/
|
|
1631
|
+
export interface V1Point {
|
|
1632
|
+
/**
|
|
1633
|
+
* The x-coordinate of the point in meters.
|
|
1634
|
+
* @type {number}
|
|
1635
|
+
* @memberof V1Point
|
|
1636
|
+
*/
|
|
1637
|
+
'x': number;
|
|
1638
|
+
/**
|
|
1639
|
+
* The y-coordinate of the point in meters.
|
|
1640
|
+
* @type {number}
|
|
1641
|
+
* @memberof V1Point
|
|
1642
|
+
*/
|
|
1643
|
+
'y': number;
|
|
1644
|
+
/**
|
|
1645
|
+
* The z-coordinate of the point in meters.
|
|
1646
|
+
* @type {number}
|
|
1647
|
+
* @memberof V1Point
|
|
1648
|
+
*/
|
|
1649
|
+
'z': number;
|
|
1650
|
+
}
|
|
1275
1651
|
/**
|
|
1276
1652
|
*
|
|
1277
1653
|
* @export
|
|
@@ -1352,6 +1728,43 @@ export interface V1PutOrbitProviderTLERequest {
|
|
|
1352
1728
|
*/
|
|
1353
1729
|
'crossSection'?: number;
|
|
1354
1730
|
}
|
|
1731
|
+
/**
|
|
1732
|
+
* 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
|
|
1733
|
+
* @export
|
|
1734
|
+
* @interface V1RicVolumeSearchRequest
|
|
1735
|
+
*/
|
|
1736
|
+
export interface V1RicVolumeSearchRequest {
|
|
1737
|
+
/**
|
|
1738
|
+
*
|
|
1739
|
+
* @type {string}
|
|
1740
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1741
|
+
*/
|
|
1742
|
+
'targetId': string;
|
|
1743
|
+
/**
|
|
1744
|
+
* The radial 3-sigma uncertainty in meters
|
|
1745
|
+
* @type {number}
|
|
1746
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1747
|
+
*/
|
|
1748
|
+
'radial3SigmaMeters': number;
|
|
1749
|
+
/**
|
|
1750
|
+
* The intrack 3-sigma uncertainty in meters
|
|
1751
|
+
* @type {number}
|
|
1752
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1753
|
+
*/
|
|
1754
|
+
'intrack3SigmaMeters': number;
|
|
1755
|
+
/**
|
|
1756
|
+
* The crosstrack 3-sigma uncertainty in meters
|
|
1757
|
+
* @type {number}
|
|
1758
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1759
|
+
*/
|
|
1760
|
+
'crosstrack3SigmaMeters': number;
|
|
1761
|
+
/**
|
|
1762
|
+
* The epoch of the RIC standard deviation- if none is provided the current time is used
|
|
1763
|
+
* @type {string}
|
|
1764
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1765
|
+
*/
|
|
1766
|
+
'ricStdevEpoch'?: string;
|
|
1767
|
+
}
|
|
1355
1768
|
/**
|
|
1356
1769
|
* SatellitePotential
|
|
1357
1770
|
* @export
|
|
@@ -1581,6 +1994,12 @@ export interface V1SatelliteTarget {
|
|
|
1581
1994
|
* @memberof V1SatelliteTarget
|
|
1582
1995
|
*/
|
|
1583
1996
|
'area'?: number;
|
|
1997
|
+
/**
|
|
1998
|
+
* Linked satellite target id on our system. See [POST /v1/satellite-target](#tag/satellite-targets/POST/v1/satellite-target)
|
|
1999
|
+
* @type {string}
|
|
2000
|
+
* @memberof V1SatelliteTarget
|
|
2001
|
+
*/
|
|
2002
|
+
'linkedSatelliteTargetId'?: string;
|
|
1584
2003
|
}
|
|
1585
2004
|
/**
|
|
1586
2005
|
* Search Instruction
|
|
@@ -1681,7 +2100,7 @@ export interface V1SurveyInstruction {
|
|
|
1681
2100
|
*/
|
|
1682
2101
|
'firstStepAt'?: string;
|
|
1683
2102
|
/**
|
|
1684
|
-
* Each step indicates a sidereal observation attempt at a given (Ra, Dec)
|
|
2103
|
+
* 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.
|
|
1685
2104
|
* @type {Array<V1SurveyInstructionStep>}
|
|
1686
2105
|
* @memberof V1SurveyInstruction
|
|
1687
2106
|
*/
|
|
@@ -1698,13 +2117,37 @@ export interface V1SurveyInstructionStep {
|
|
|
1698
2117
|
* @type {number}
|
|
1699
2118
|
* @memberof V1SurveyInstructionStep
|
|
1700
2119
|
*/
|
|
1701
|
-
'ra'
|
|
2120
|
+
'ra'?: number;
|
|
1702
2121
|
/**
|
|
1703
2122
|
*
|
|
1704
2123
|
* @type {number}
|
|
1705
2124
|
* @memberof V1SurveyInstructionStep
|
|
1706
2125
|
*/
|
|
1707
|
-
'dec'
|
|
2126
|
+
'dec'?: number;
|
|
2127
|
+
/**
|
|
2128
|
+
*
|
|
2129
|
+
* @type {number}
|
|
2130
|
+
* @memberof V1SurveyInstructionStep
|
|
2131
|
+
*/
|
|
2132
|
+
'az'?: number;
|
|
2133
|
+
/**
|
|
2134
|
+
*
|
|
2135
|
+
* @type {number}
|
|
2136
|
+
* @memberof V1SurveyInstructionStep
|
|
2137
|
+
*/
|
|
2138
|
+
'el'?: number;
|
|
2139
|
+
/**
|
|
2140
|
+
*
|
|
2141
|
+
* @type {string}
|
|
2142
|
+
* @memberof V1SurveyInstructionStep
|
|
2143
|
+
*/
|
|
2144
|
+
'nodeId'?: string;
|
|
2145
|
+
/**
|
|
2146
|
+
*
|
|
2147
|
+
* @type {string}
|
|
2148
|
+
* @memberof V1SurveyInstructionStep
|
|
2149
|
+
*/
|
|
2150
|
+
'time'?: string;
|
|
1708
2151
|
/**
|
|
1709
2152
|
*
|
|
1710
2153
|
* @type {number}
|
|
@@ -1810,6 +2253,249 @@ export interface V1Tdm {
|
|
|
1810
2253
|
*/
|
|
1811
2254
|
'createdBy': string;
|
|
1812
2255
|
}
|
|
2256
|
+
/**
|
|
2257
|
+
*
|
|
2258
|
+
* @export
|
|
2259
|
+
* @interface V1TimeTaggedRaDec
|
|
2260
|
+
*/
|
|
2261
|
+
export interface V1TimeTaggedRaDec {
|
|
2262
|
+
/**
|
|
2263
|
+
*
|
|
2264
|
+
* @type {number}
|
|
2265
|
+
* @memberof V1TimeTaggedRaDec
|
|
2266
|
+
*/
|
|
2267
|
+
'raRadians': number;
|
|
2268
|
+
/**
|
|
2269
|
+
*
|
|
2270
|
+
* @type {number}
|
|
2271
|
+
* @memberof V1TimeTaggedRaDec
|
|
2272
|
+
*/
|
|
2273
|
+
'decRadians': number;
|
|
2274
|
+
/**
|
|
2275
|
+
*
|
|
2276
|
+
* @type {number}
|
|
2277
|
+
* @memberof V1TimeTaggedRaDec
|
|
2278
|
+
*/
|
|
2279
|
+
'magnitude'?: number;
|
|
2280
|
+
/**
|
|
2281
|
+
*
|
|
2282
|
+
* @type {number}
|
|
2283
|
+
* @memberof V1TimeTaggedRaDec
|
|
2284
|
+
*/
|
|
2285
|
+
'solarPhaseAngleRadians'?: number;
|
|
2286
|
+
/**
|
|
2287
|
+
*
|
|
2288
|
+
* @type {string}
|
|
2289
|
+
* @memberof V1TimeTaggedRaDec
|
|
2290
|
+
*/
|
|
2291
|
+
'epoch': string;
|
|
2292
|
+
}
|
|
2293
|
+
/**
|
|
2294
|
+
*
|
|
2295
|
+
* @export
|
|
2296
|
+
* @interface V1Track
|
|
2297
|
+
*/
|
|
2298
|
+
export interface V1Track {
|
|
2299
|
+
/**
|
|
2300
|
+
*
|
|
2301
|
+
* @type {string}
|
|
2302
|
+
* @memberof V1Track
|
|
2303
|
+
*/
|
|
2304
|
+
'id': string;
|
|
2305
|
+
/**
|
|
2306
|
+
*
|
|
2307
|
+
* @type {Array<V1TimeTaggedRaDec>}
|
|
2308
|
+
* @memberof V1Track
|
|
2309
|
+
*/
|
|
2310
|
+
'observations': Array<V1TimeTaggedRaDec>;
|
|
2311
|
+
/**
|
|
2312
|
+
*
|
|
2313
|
+
* @type {V1ObserverLocation}
|
|
2314
|
+
* @memberof V1Track
|
|
2315
|
+
*/
|
|
2316
|
+
'observerLocation': V1ObserverLocation;
|
|
2317
|
+
}
|
|
2318
|
+
/**
|
|
2319
|
+
* Plate to catplate transform with 3rd-order distortion
|
|
2320
|
+
* @export
|
|
2321
|
+
* @interface V1Transformation
|
|
2322
|
+
*/
|
|
2323
|
+
export interface V1Transformation {
|
|
2324
|
+
/**
|
|
2325
|
+
* Affine transformation coefficient
|
|
2326
|
+
* @type {number}
|
|
2327
|
+
* @memberof V1Transformation
|
|
2328
|
+
*/
|
|
2329
|
+
'a': number;
|
|
2330
|
+
/**
|
|
2331
|
+
* Affine transformation coefficient
|
|
2332
|
+
* @type {number}
|
|
2333
|
+
* @memberof V1Transformation
|
|
2334
|
+
*/
|
|
2335
|
+
'b': number;
|
|
2336
|
+
/**
|
|
2337
|
+
* Affine transformation coefficient
|
|
2338
|
+
* @type {number}
|
|
2339
|
+
* @memberof V1Transformation
|
|
2340
|
+
*/
|
|
2341
|
+
'c': number;
|
|
2342
|
+
/**
|
|
2343
|
+
* Affine transformation coefficient
|
|
2344
|
+
* @type {number}
|
|
2345
|
+
* @memberof V1Transformation
|
|
2346
|
+
*/
|
|
2347
|
+
'd': number;
|
|
2348
|
+
/**
|
|
2349
|
+
* Horizontal offset for the affine transformation
|
|
2350
|
+
* @type {number}
|
|
2351
|
+
* @memberof V1Transformation
|
|
2352
|
+
*/
|
|
2353
|
+
'u0': number;
|
|
2354
|
+
/**
|
|
2355
|
+
* Vertical offset for the affine transformation
|
|
2356
|
+
* @type {number}
|
|
2357
|
+
* @memberof V1Transformation
|
|
2358
|
+
*/
|
|
2359
|
+
'v0': number;
|
|
2360
|
+
/**
|
|
2361
|
+
* Scale
|
|
2362
|
+
* @type {number}
|
|
2363
|
+
* @memberof V1Transformation
|
|
2364
|
+
*/
|
|
2365
|
+
'alpha'?: number;
|
|
2366
|
+
/**
|
|
2367
|
+
* Stretch
|
|
2368
|
+
* @type {number}
|
|
2369
|
+
* @memberof V1Transformation
|
|
2370
|
+
*/
|
|
2371
|
+
'beta': number;
|
|
2372
|
+
/**
|
|
2373
|
+
* Rotation
|
|
2374
|
+
* @type {number}
|
|
2375
|
+
* @memberof V1Transformation
|
|
2376
|
+
*/
|
|
2377
|
+
'theta': number;
|
|
2378
|
+
/**
|
|
2379
|
+
* Skew
|
|
2380
|
+
* @type {number}
|
|
2381
|
+
* @memberof V1Transformation
|
|
2382
|
+
*/
|
|
2383
|
+
'gamma': number;
|
|
2384
|
+
/**
|
|
2385
|
+
* 3rd-order plate distortion, X-direction
|
|
2386
|
+
* @type {number}
|
|
2387
|
+
* @memberof V1Transformation
|
|
2388
|
+
*/
|
|
2389
|
+
'epsX': number;
|
|
2390
|
+
/**
|
|
2391
|
+
* 3rd-order plate distortion, Y-direction
|
|
2392
|
+
* @type {number}
|
|
2393
|
+
* @memberof V1Transformation
|
|
2394
|
+
*/
|
|
2395
|
+
'epsY': number;
|
|
2396
|
+
/**
|
|
2397
|
+
* The reference RA and Dec, in radians, at U = 0, V = 0
|
|
2398
|
+
* @type {number}
|
|
2399
|
+
* @memberof V1Transformation
|
|
2400
|
+
*/
|
|
2401
|
+
'raCen': number;
|
|
2402
|
+
/**
|
|
2403
|
+
* The reference RA and Dec, in radians, at U = 0, V = 0
|
|
2404
|
+
* @type {number}
|
|
2405
|
+
* @memberof V1Transformation
|
|
2406
|
+
*/
|
|
2407
|
+
'decCen': number;
|
|
2408
|
+
/**
|
|
2409
|
+
* 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
|
|
2410
|
+
* @type {number}
|
|
2411
|
+
* @memberof V1Transformation
|
|
2412
|
+
*/
|
|
2413
|
+
'px': number;
|
|
2414
|
+
/**
|
|
2415
|
+
* 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
|
|
2416
|
+
* @type {number}
|
|
2417
|
+
* @memberof V1Transformation
|
|
2418
|
+
*/
|
|
2419
|
+
'py': number;
|
|
2420
|
+
/**
|
|
2421
|
+
* The U-coefficients of the full N-th order match, if available. UCoef(0..NumCoef)
|
|
2422
|
+
* @type {Array<number>}
|
|
2423
|
+
* @memberof V1Transformation
|
|
2424
|
+
*/
|
|
2425
|
+
'uCoef': Array<number>;
|
|
2426
|
+
/**
|
|
2427
|
+
* The V-coefficients of the full N-th order match, if available. VCoef(0..NumCoef)
|
|
2428
|
+
* @type {Array<number>}
|
|
2429
|
+
* @memberof V1Transformation
|
|
2430
|
+
*/
|
|
2431
|
+
'vCoef': Array<number>;
|
|
2432
|
+
/**
|
|
2433
|
+
* The X-coefficients of the full N-th order match, if available. XCoef(0..NumCoef)
|
|
2434
|
+
* @type {Array<number>}
|
|
2435
|
+
* @memberof V1Transformation
|
|
2436
|
+
*/
|
|
2437
|
+
'xCoef': Array<number>;
|
|
2438
|
+
/**
|
|
2439
|
+
* The Y-coefficients of the full N-th order match, if available. YCoef(0..NumCoef)
|
|
2440
|
+
* @type {Array<number>}
|
|
2441
|
+
* @memberof V1Transformation
|
|
2442
|
+
*/
|
|
2443
|
+
'yCoef': Array<number>;
|
|
2444
|
+
/**
|
|
2445
|
+
* The number of coefficients + 1. 0 if there is no high-order match
|
|
2446
|
+
* @type {number}
|
|
2447
|
+
* @memberof V1Transformation
|
|
2448
|
+
*/
|
|
2449
|
+
'numCoef': number;
|
|
2450
|
+
/**
|
|
2451
|
+
* The RMS fit error, in radians, for the simple affine + third-order distortion transform
|
|
2452
|
+
* @type {number}
|
|
2453
|
+
* @memberof V1Transformation
|
|
2454
|
+
*/
|
|
2455
|
+
'fitErrorRadians': number;
|
|
2456
|
+
/**
|
|
2457
|
+
* The RMS fit error, in pixels, for the simple affine + third-order distortion transform
|
|
2458
|
+
* @type {number}
|
|
2459
|
+
* @memberof V1Transformation
|
|
2460
|
+
*/
|
|
2461
|
+
'fitErrorPix': number;
|
|
2462
|
+
/**
|
|
2463
|
+
* The RMS fit error, in radians, for the full third-order transform
|
|
2464
|
+
* @type {number}
|
|
2465
|
+
* @memberof V1Transformation
|
|
2466
|
+
*/
|
|
2467
|
+
'fitError3Radians': number;
|
|
2468
|
+
/**
|
|
2469
|
+
* The RMS fit error, in pixels, for the full third-order transform
|
|
2470
|
+
* @type {number}
|
|
2471
|
+
* @memberof V1Transformation
|
|
2472
|
+
*/
|
|
2473
|
+
'fitError3Pix': number;
|
|
2474
|
+
/**
|
|
2475
|
+
* The difference in scale values between the X and Y axes, used to test the match geometry
|
|
2476
|
+
* @type {number}
|
|
2477
|
+
* @memberof V1Transformation
|
|
2478
|
+
*/
|
|
2479
|
+
'stretch': number;
|
|
2480
|
+
/**
|
|
2481
|
+
* The image skew, used to test the match geometry
|
|
2482
|
+
* @type {number}
|
|
2483
|
+
* @memberof V1Transformation
|
|
2484
|
+
*/
|
|
2485
|
+
'skew': number;
|
|
2486
|
+
/**
|
|
2487
|
+
* The matched image scale, in pixels per radian
|
|
2488
|
+
* @type {number}
|
|
2489
|
+
* @memberof V1Transformation
|
|
2490
|
+
*/
|
|
2491
|
+
'scale': number;
|
|
2492
|
+
/**
|
|
2493
|
+
* The image rotation, in degrees, agrees with PinPoint
|
|
2494
|
+
* @type {number}
|
|
2495
|
+
* @memberof V1Transformation
|
|
2496
|
+
*/
|
|
2497
|
+
'rotation': number;
|
|
2498
|
+
}
|
|
1813
2499
|
/**
|
|
1814
2500
|
*
|
|
1815
2501
|
* @export
|
|
@@ -1974,45 +2660,82 @@ export interface V1WebhookConfiguration {
|
|
|
1974
2660
|
/**
|
|
1975
2661
|
*
|
|
1976
2662
|
* @export
|
|
1977
|
-
* @interface V1WebhookLog
|
|
2663
|
+
* @interface V1WebhookLog
|
|
2664
|
+
*/
|
|
2665
|
+
export interface V1WebhookLog {
|
|
2666
|
+
/**
|
|
2667
|
+
*
|
|
2668
|
+
* @type {string}
|
|
2669
|
+
* @memberof V1WebhookLog
|
|
2670
|
+
*/
|
|
2671
|
+
'id': string;
|
|
2672
|
+
/**
|
|
2673
|
+
*
|
|
2674
|
+
* @type {string}
|
|
2675
|
+
* @memberof V1WebhookLog
|
|
2676
|
+
*/
|
|
2677
|
+
'webhookId': string;
|
|
2678
|
+
/**
|
|
2679
|
+
*
|
|
2680
|
+
* @type {string}
|
|
2681
|
+
* @memberof V1WebhookLog
|
|
2682
|
+
*/
|
|
2683
|
+
'status': string;
|
|
2684
|
+
/**
|
|
2685
|
+
*
|
|
2686
|
+
* @type {number}
|
|
2687
|
+
* @memberof V1WebhookLog
|
|
2688
|
+
*/
|
|
2689
|
+
'statusCode'?: number;
|
|
2690
|
+
/**
|
|
2691
|
+
*
|
|
2692
|
+
* @type {string}
|
|
2693
|
+
* @memberof V1WebhookLog
|
|
2694
|
+
*/
|
|
2695
|
+
'createdAt': string;
|
|
2696
|
+
/**
|
|
2697
|
+
* The full log message
|
|
2698
|
+
* @type {string}
|
|
2699
|
+
* @memberof V1WebhookLog
|
|
2700
|
+
*/
|
|
2701
|
+
'log'?: string;
|
|
2702
|
+
}
|
|
2703
|
+
/**
|
|
2704
|
+
* V2 Search- created by either RIC volumetric search or plane scan.
|
|
2705
|
+
* @export
|
|
2706
|
+
* @interface V2Search
|
|
1978
2707
|
*/
|
|
1979
|
-
export interface
|
|
2708
|
+
export interface V2Search {
|
|
1980
2709
|
/**
|
|
1981
2710
|
*
|
|
1982
2711
|
* @type {string}
|
|
1983
|
-
* @memberof
|
|
2712
|
+
* @memberof V2Search
|
|
1984
2713
|
*/
|
|
1985
|
-
'
|
|
2714
|
+
'searchId': string;
|
|
1986
2715
|
/**
|
|
1987
2716
|
*
|
|
1988
2717
|
* @type {string}
|
|
1989
|
-
* @memberof
|
|
2718
|
+
* @memberof V2Search
|
|
1990
2719
|
*/
|
|
1991
|
-
'
|
|
2720
|
+
'targetId': string;
|
|
1992
2721
|
/**
|
|
1993
2722
|
*
|
|
1994
2723
|
* @type {string}
|
|
1995
|
-
* @memberof
|
|
2724
|
+
* @memberof V2Search
|
|
1996
2725
|
*/
|
|
1997
|
-
'
|
|
2726
|
+
'completedAt'?: string | null;
|
|
1998
2727
|
/**
|
|
1999
2728
|
*
|
|
2000
|
-
* @type {
|
|
2001
|
-
* @memberof
|
|
2729
|
+
* @type {SearchCompletedReason}
|
|
2730
|
+
* @memberof V2Search
|
|
2002
2731
|
*/
|
|
2003
|
-
'
|
|
2732
|
+
'completedReason'?: SearchCompletedReason;
|
|
2004
2733
|
/**
|
|
2005
2734
|
*
|
|
2006
|
-
* @type {string}
|
|
2007
|
-
* @memberof
|
|
2008
|
-
*/
|
|
2009
|
-
'createdAt': string;
|
|
2010
|
-
/**
|
|
2011
|
-
* The full log message
|
|
2012
|
-
* @type {string}
|
|
2013
|
-
* @memberof V1WebhookLog
|
|
2735
|
+
* @type {Array<string>}
|
|
2736
|
+
* @memberof V2Search
|
|
2014
2737
|
*/
|
|
2015
|
-
'
|
|
2738
|
+
'observationSequenceResultIds': Array<string>;
|
|
2016
2739
|
}
|
|
2017
2740
|
/**
|
|
2018
2741
|
*
|
|
@@ -2057,6 +2780,9 @@ export declare const WebhookEvent: {
|
|
|
2057
2780
|
readonly V1_EO_CALIBRATION_OBSERVATION_CREATED: "V1_EO_CALIBRATION_OBSERVATION_CREATED";
|
|
2058
2781
|
readonly V1_NODE_CALIBRATION_DATA_CREATED: "V1_NODE_CALIBRATION_DATA_CREATED";
|
|
2059
2782
|
readonly V1_NODE_UPDATED: "V1_NODE_UPDATED";
|
|
2783
|
+
readonly V1_EO_SKY_IMAGERY_CREATED: "V1_EO_SKY_IMAGERY_CREATED";
|
|
2784
|
+
readonly V2_SEARCH_COMPLETED: "V2_SEARCH_COMPLETED";
|
|
2785
|
+
readonly V1_UCT_CREATED: "V1_UCT_CREATED";
|
|
2060
2786
|
};
|
|
2061
2787
|
export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
|
|
2062
2788
|
/**
|
|
@@ -2064,6 +2790,21 @@ export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
|
|
|
2064
2790
|
* @export
|
|
2065
2791
|
*/
|
|
2066
2792
|
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2793
|
+
/**
|
|
2794
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
2795
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
2796
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
2797
|
+
* @param {*} [options] Override http request option.
|
|
2798
|
+
* @throws {RequiredError}
|
|
2799
|
+
*/
|
|
2800
|
+
getUncorrelatedTracks: (after?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2801
|
+
/**
|
|
2802
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
2803
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
2804
|
+
* @param {*} [options] Override http request option.
|
|
2805
|
+
* @throws {RequiredError}
|
|
2806
|
+
*/
|
|
2807
|
+
v1CreateBlackoutVolume: (v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2067
2808
|
/**
|
|
2068
2809
|
* Create an image set.
|
|
2069
2810
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2079,7 +2820,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2079
2820
|
*/
|
|
2080
2821
|
v1CreateImageSetImage: (v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2081
2822
|
/**
|
|
2082
|
-
* 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](#
|
|
2823
|
+
* 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.
|
|
2083
2824
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
2084
2825
|
* @param {*} [options] Override http request option.
|
|
2085
2826
|
* @throws {RequiredError}
|
|
@@ -2093,9 +2834,10 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2093
2834
|
*/
|
|
2094
2835
|
v1CreateSatelliteTarget: (v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2095
2836
|
/**
|
|
2096
|
-
* 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.
|
|
2837
|
+
* 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.
|
|
2097
2838
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
2098
2839
|
* @param {*} [options] Override http request option.
|
|
2840
|
+
* @deprecated
|
|
2099
2841
|
* @throws {RequiredError}
|
|
2100
2842
|
*/
|
|
2101
2843
|
v1CreateSearchInstruction: (v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -2120,6 +2862,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2120
2862
|
* @throws {RequiredError}
|
|
2121
2863
|
*/
|
|
2122
2864
|
v1CreateWebhookTest: (v1CreateWebhookTestRequest: V1CreateWebhookTestRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2865
|
+
/**
|
|
2866
|
+
* Delete a blackout volume.
|
|
2867
|
+
* @param {string} id
|
|
2868
|
+
* @param {*} [options] Override http request option.
|
|
2869
|
+
* @throws {RequiredError}
|
|
2870
|
+
*/
|
|
2871
|
+
v1DeleteBlackoutVolume: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2123
2872
|
/**
|
|
2124
2873
|
* Delete an image set.
|
|
2125
2874
|
* @param {string} id
|
|
@@ -2162,6 +2911,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2162
2911
|
* @throws {RequiredError}
|
|
2163
2912
|
*/
|
|
2164
2913
|
v1DeleteWebhookConfiguration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2914
|
+
/**
|
|
2915
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
2916
|
+
* @param {string} imageId
|
|
2917
|
+
* @param {*} [options] Override http request option.
|
|
2918
|
+
* @throws {RequiredError}
|
|
2919
|
+
*/
|
|
2920
|
+
v1GetImageMetadata: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2165
2921
|
/**
|
|
2166
2922
|
* Get an image set.
|
|
2167
2923
|
* @param {string} id
|
|
@@ -2246,7 +3002,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2246
3002
|
*/
|
|
2247
3003
|
v1GetOrganizationTarget: (organizationTargetId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2248
3004
|
/**
|
|
2249
|
-
* Get organization targets see the [create](#
|
|
3005
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
2250
3006
|
* @param {*} [options] Override http request option.
|
|
2251
3007
|
* @throws {RequiredError}
|
|
2252
3008
|
*/
|
|
@@ -2358,12 +3114,62 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2358
3114
|
* @throws {RequiredError}
|
|
2359
3115
|
*/
|
|
2360
3116
|
v1UpdateWebhookConfiguration: (v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3117
|
+
/**
|
|
3118
|
+
* 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.
|
|
3119
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
3120
|
+
* @param {*} [options] Override http request option.
|
|
3121
|
+
* @throws {RequiredError}
|
|
3122
|
+
*/
|
|
3123
|
+
v2CreatePlaneScan: (v1PlaneScanRequest: V1PlaneScanRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3124
|
+
/**
|
|
3125
|
+
* 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.
|
|
3126
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
3127
|
+
* @param {*} [options] Override http request option.
|
|
3128
|
+
* @throws {RequiredError}
|
|
3129
|
+
*/
|
|
3130
|
+
v2CreateRicVolumeSearch: (v1RicVolumeSearchRequest: V1RicVolumeSearchRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3131
|
+
/**
|
|
3132
|
+
* Delete a plane scan.
|
|
3133
|
+
* @param {string} id
|
|
3134
|
+
* @param {*} [options] Override http request option.
|
|
3135
|
+
* @throws {RequiredError}
|
|
3136
|
+
*/
|
|
3137
|
+
v2DeletePlaneScan: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3138
|
+
/**
|
|
3139
|
+
* Delete a RIC volume search.
|
|
3140
|
+
* @param {string} id
|
|
3141
|
+
* @param {*} [options] Override http request option.
|
|
3142
|
+
* @throws {RequiredError}
|
|
3143
|
+
*/
|
|
3144
|
+
v2DeleteRicVolumeSearch: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3145
|
+
/**
|
|
3146
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
3147
|
+
* @param {string} searchId
|
|
3148
|
+
* @param {*} [options] Override http request option.
|
|
3149
|
+
* @throws {RequiredError}
|
|
3150
|
+
*/
|
|
3151
|
+
v2GetSearch: (searchId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2361
3152
|
};
|
|
2362
3153
|
/**
|
|
2363
3154
|
* DefaultApi - functional programming interface
|
|
2364
3155
|
* @export
|
|
2365
3156
|
*/
|
|
2366
3157
|
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
3158
|
+
/**
|
|
3159
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
3160
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
3161
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
3162
|
+
* @param {*} [options] Override http request option.
|
|
3163
|
+
* @throws {RequiredError}
|
|
3164
|
+
*/
|
|
3165
|
+
getUncorrelatedTracks(after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Track>>>;
|
|
3166
|
+
/**
|
|
3167
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
3168
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
3169
|
+
* @param {*} [options] Override http request option.
|
|
3170
|
+
* @throws {RequiredError}
|
|
3171
|
+
*/
|
|
3172
|
+
v1CreateBlackoutVolume(v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
2367
3173
|
/**
|
|
2368
3174
|
* Create an image set.
|
|
2369
3175
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2379,7 +3185,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2379
3185
|
*/
|
|
2380
3186
|
v1CreateImageSetImage(v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
|
|
2381
3187
|
/**
|
|
2382
|
-
* 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](#
|
|
3188
|
+
* 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.
|
|
2383
3189
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
2384
3190
|
* @param {*} [options] Override http request option.
|
|
2385
3191
|
* @throws {RequiredError}
|
|
@@ -2393,9 +3199,10 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2393
3199
|
*/
|
|
2394
3200
|
v1CreateSatelliteTarget(v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
2395
3201
|
/**
|
|
2396
|
-
* 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.
|
|
3202
|
+
* 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.
|
|
2397
3203
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
2398
3204
|
* @param {*} [options] Override http request option.
|
|
3205
|
+
* @deprecated
|
|
2399
3206
|
* @throws {RequiredError}
|
|
2400
3207
|
*/
|
|
2401
3208
|
v1CreateSearchInstruction(v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
@@ -2420,6 +3227,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2420
3227
|
* @throws {RequiredError}
|
|
2421
3228
|
*/
|
|
2422
3229
|
v1CreateWebhookTest(v1CreateWebhookTestRequest: V1CreateWebhookTestRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3230
|
+
/**
|
|
3231
|
+
* Delete a blackout volume.
|
|
3232
|
+
* @param {string} id
|
|
3233
|
+
* @param {*} [options] Override http request option.
|
|
3234
|
+
* @throws {RequiredError}
|
|
3235
|
+
*/
|
|
3236
|
+
v1DeleteBlackoutVolume(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulDelete>>;
|
|
2423
3237
|
/**
|
|
2424
3238
|
* Delete an image set.
|
|
2425
3239
|
* @param {string} id
|
|
@@ -2462,6 +3276,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2462
3276
|
* @throws {RequiredError}
|
|
2463
3277
|
*/
|
|
2464
3278
|
v1DeleteWebhookConfiguration(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3279
|
+
/**
|
|
3280
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
3281
|
+
* @param {string} imageId
|
|
3282
|
+
* @param {*} [options] Override http request option.
|
|
3283
|
+
* @throws {RequiredError}
|
|
3284
|
+
*/
|
|
3285
|
+
v1GetImageMetadata(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageMetadata>>;
|
|
2465
3286
|
/**
|
|
2466
3287
|
* Get an image set.
|
|
2467
3288
|
* @param {string} id
|
|
@@ -2546,7 +3367,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2546
3367
|
*/
|
|
2547
3368
|
v1GetOrganizationTarget(organizationTargetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OrganizationTarget>>;
|
|
2548
3369
|
/**
|
|
2549
|
-
* Get organization targets see the [create](#
|
|
3370
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
2550
3371
|
* @param {*} [options] Override http request option.
|
|
2551
3372
|
* @throws {RequiredError}
|
|
2552
3373
|
*/
|
|
@@ -2658,12 +3479,62 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2658
3479
|
* @throws {RequiredError}
|
|
2659
3480
|
*/
|
|
2660
3481
|
v1UpdateWebhookConfiguration(v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3482
|
+
/**
|
|
3483
|
+
* 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.
|
|
3484
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
3485
|
+
* @param {*} [options] Override http request option.
|
|
3486
|
+
* @throws {RequiredError}
|
|
3487
|
+
*/
|
|
3488
|
+
v2CreatePlaneScan(v1PlaneScanRequest: V1PlaneScanRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
3489
|
+
/**
|
|
3490
|
+
* 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.
|
|
3491
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
3492
|
+
* @param {*} [options] Override http request option.
|
|
3493
|
+
* @throws {RequiredError}
|
|
3494
|
+
*/
|
|
3495
|
+
v2CreateRicVolumeSearch(v1RicVolumeSearchRequest: V1RicVolumeSearchRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
3496
|
+
/**
|
|
3497
|
+
* Delete a plane scan.
|
|
3498
|
+
* @param {string} id
|
|
3499
|
+
* @param {*} [options] Override http request option.
|
|
3500
|
+
* @throws {RequiredError}
|
|
3501
|
+
*/
|
|
3502
|
+
v2DeletePlaneScan(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3503
|
+
/**
|
|
3504
|
+
* Delete a RIC volume search.
|
|
3505
|
+
* @param {string} id
|
|
3506
|
+
* @param {*} [options] Override http request option.
|
|
3507
|
+
* @throws {RequiredError}
|
|
3508
|
+
*/
|
|
3509
|
+
v2DeleteRicVolumeSearch(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3510
|
+
/**
|
|
3511
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
3512
|
+
* @param {string} searchId
|
|
3513
|
+
* @param {*} [options] Override http request option.
|
|
3514
|
+
* @throws {RequiredError}
|
|
3515
|
+
*/
|
|
3516
|
+
v2GetSearch(searchId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2Search>>;
|
|
2661
3517
|
};
|
|
2662
3518
|
/**
|
|
2663
3519
|
* DefaultApi - factory interface
|
|
2664
3520
|
* @export
|
|
2665
3521
|
*/
|
|
2666
3522
|
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3523
|
+
/**
|
|
3524
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
3525
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
3526
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
3527
|
+
* @param {*} [options] Override http request option.
|
|
3528
|
+
* @throws {RequiredError}
|
|
3529
|
+
*/
|
|
3530
|
+
getUncorrelatedTracks(requestParameters?: DefaultApiGetUncorrelatedTracksRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Track>>;
|
|
3531
|
+
/**
|
|
3532
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
3533
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
3534
|
+
* @param {*} [options] Override http request option.
|
|
3535
|
+
* @throws {RequiredError}
|
|
3536
|
+
*/
|
|
3537
|
+
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2667
3538
|
/**
|
|
2668
3539
|
* Create an image set.
|
|
2669
3540
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2679,7 +3550,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2679
3550
|
*/
|
|
2680
3551
|
v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
|
|
2681
3552
|
/**
|
|
2682
|
-
* 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](#
|
|
3553
|
+
* 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.
|
|
2683
3554
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
2684
3555
|
* @param {*} [options] Override http request option.
|
|
2685
3556
|
* @throws {RequiredError}
|
|
@@ -2693,9 +3564,10 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2693
3564
|
*/
|
|
2694
3565
|
v1CreateSatelliteTarget(requestParameters: DefaultApiV1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2695
3566
|
/**
|
|
2696
|
-
* 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.
|
|
3567
|
+
* 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.
|
|
2697
3568
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2698
3569
|
* @param {*} [options] Override http request option.
|
|
3570
|
+
* @deprecated
|
|
2699
3571
|
* @throws {RequiredError}
|
|
2700
3572
|
*/
|
|
2701
3573
|
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
@@ -2720,6 +3592,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2720
3592
|
* @throws {RequiredError}
|
|
2721
3593
|
*/
|
|
2722
3594
|
v1CreateWebhookTest(requestParameters: DefaultApiV1CreateWebhookTestRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3595
|
+
/**
|
|
3596
|
+
* Delete a blackout volume.
|
|
3597
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
3598
|
+
* @param {*} [options] Override http request option.
|
|
3599
|
+
* @throws {RequiredError}
|
|
3600
|
+
*/
|
|
3601
|
+
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete>;
|
|
2723
3602
|
/**
|
|
2724
3603
|
* Delete an image set.
|
|
2725
3604
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -2762,6 +3641,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2762
3641
|
* @throws {RequiredError}
|
|
2763
3642
|
*/
|
|
2764
3643
|
v1DeleteWebhookConfiguration(requestParameters: DefaultApiV1DeleteWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3644
|
+
/**
|
|
3645
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
3646
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
3647
|
+
* @param {*} [options] Override http request option.
|
|
3648
|
+
* @throws {RequiredError}
|
|
3649
|
+
*/
|
|
3650
|
+
v1GetImageMetadata(requestParameters: DefaultApiV1GetImageMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageMetadata>;
|
|
2765
3651
|
/**
|
|
2766
3652
|
* Get an image set.
|
|
2767
3653
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -2839,7 +3725,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2839
3725
|
*/
|
|
2840
3726
|
v1GetOrganizationTarget(requestParameters: DefaultApiV1GetOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1OrganizationTarget>;
|
|
2841
3727
|
/**
|
|
2842
|
-
* Get organization targets see the [create](#
|
|
3728
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
2843
3729
|
* @param {*} [options] Override http request option.
|
|
2844
3730
|
* @throws {RequiredError}
|
|
2845
3731
|
*/
|
|
@@ -2941,7 +3827,68 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2941
3827
|
* @throws {RequiredError}
|
|
2942
3828
|
*/
|
|
2943
3829
|
v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3830
|
+
/**
|
|
3831
|
+
* 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.
|
|
3832
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
3833
|
+
* @param {*} [options] Override http request option.
|
|
3834
|
+
* @throws {RequiredError}
|
|
3835
|
+
*/
|
|
3836
|
+
v2CreatePlaneScan(requestParameters: DefaultApiV2CreatePlaneScanRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
3837
|
+
/**
|
|
3838
|
+
* 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.
|
|
3839
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
3840
|
+
* @param {*} [options] Override http request option.
|
|
3841
|
+
* @throws {RequiredError}
|
|
3842
|
+
*/
|
|
3843
|
+
v2CreateRicVolumeSearch(requestParameters: DefaultApiV2CreateRicVolumeSearchRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
3844
|
+
/**
|
|
3845
|
+
* Delete a plane scan.
|
|
3846
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
3847
|
+
* @param {*} [options] Override http request option.
|
|
3848
|
+
* @throws {RequiredError}
|
|
3849
|
+
*/
|
|
3850
|
+
v2DeletePlaneScan(requestParameters: DefaultApiV2DeletePlaneScanRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3851
|
+
/**
|
|
3852
|
+
* Delete a RIC volume search.
|
|
3853
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
3854
|
+
* @param {*} [options] Override http request option.
|
|
3855
|
+
* @throws {RequiredError}
|
|
3856
|
+
*/
|
|
3857
|
+
v2DeleteRicVolumeSearch(requestParameters: DefaultApiV2DeleteRicVolumeSearchRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3858
|
+
/**
|
|
3859
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
3860
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
3861
|
+
* @param {*} [options] Override http request option.
|
|
3862
|
+
* @throws {RequiredError}
|
|
3863
|
+
*/
|
|
3864
|
+
v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): AxiosPromise<V2Search>;
|
|
2944
3865
|
};
|
|
3866
|
+
/**
|
|
3867
|
+
* Request parameters for getUncorrelatedTracks operation in DefaultApi.
|
|
3868
|
+
* @export
|
|
3869
|
+
* @interface DefaultApiGetUncorrelatedTracksRequest
|
|
3870
|
+
*/
|
|
3871
|
+
export interface DefaultApiGetUncorrelatedTracksRequest {
|
|
3872
|
+
/**
|
|
3873
|
+
* The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
3874
|
+
* @type {string}
|
|
3875
|
+
* @memberof DefaultApiGetUncorrelatedTracks
|
|
3876
|
+
*/
|
|
3877
|
+
readonly after?: string;
|
|
3878
|
+
}
|
|
3879
|
+
/**
|
|
3880
|
+
* Request parameters for v1CreateBlackoutVolume operation in DefaultApi.
|
|
3881
|
+
* @export
|
|
3882
|
+
* @interface DefaultApiV1CreateBlackoutVolumeRequest
|
|
3883
|
+
*/
|
|
3884
|
+
export interface DefaultApiV1CreateBlackoutVolumeRequest {
|
|
3885
|
+
/**
|
|
3886
|
+
*
|
|
3887
|
+
* @type {V1BlackoutVolumeRequest}
|
|
3888
|
+
* @memberof DefaultApiV1CreateBlackoutVolume
|
|
3889
|
+
*/
|
|
3890
|
+
readonly v1BlackoutVolumeRequest: V1BlackoutVolumeRequest;
|
|
3891
|
+
}
|
|
2945
3892
|
/**
|
|
2946
3893
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
2947
3894
|
* @export
|
|
@@ -3046,6 +3993,19 @@ export interface DefaultApiV1CreateWebhookTestRequest {
|
|
|
3046
3993
|
*/
|
|
3047
3994
|
readonly v1CreateWebhookTestRequest: V1CreateWebhookTestRequest;
|
|
3048
3995
|
}
|
|
3996
|
+
/**
|
|
3997
|
+
* Request parameters for v1DeleteBlackoutVolume operation in DefaultApi.
|
|
3998
|
+
* @export
|
|
3999
|
+
* @interface DefaultApiV1DeleteBlackoutVolumeRequest
|
|
4000
|
+
*/
|
|
4001
|
+
export interface DefaultApiV1DeleteBlackoutVolumeRequest {
|
|
4002
|
+
/**
|
|
4003
|
+
*
|
|
4004
|
+
* @type {string}
|
|
4005
|
+
* @memberof DefaultApiV1DeleteBlackoutVolume
|
|
4006
|
+
*/
|
|
4007
|
+
readonly id: string;
|
|
4008
|
+
}
|
|
3049
4009
|
/**
|
|
3050
4010
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
3051
4011
|
* @export
|
|
@@ -3124,6 +4084,19 @@ export interface DefaultApiV1DeleteWebhookConfigurationRequest {
|
|
|
3124
4084
|
*/
|
|
3125
4085
|
readonly id: string;
|
|
3126
4086
|
}
|
|
4087
|
+
/**
|
|
4088
|
+
* Request parameters for v1GetImageMetadata operation in DefaultApi.
|
|
4089
|
+
* @export
|
|
4090
|
+
* @interface DefaultApiV1GetImageMetadataRequest
|
|
4091
|
+
*/
|
|
4092
|
+
export interface DefaultApiV1GetImageMetadataRequest {
|
|
4093
|
+
/**
|
|
4094
|
+
*
|
|
4095
|
+
* @type {string}
|
|
4096
|
+
* @memberof DefaultApiV1GetImageMetadata
|
|
4097
|
+
*/
|
|
4098
|
+
readonly imageId: string;
|
|
4099
|
+
}
|
|
3127
4100
|
/**
|
|
3128
4101
|
* Request parameters for v1GetImageSet operation in DefaultApi.
|
|
3129
4102
|
* @export
|
|
@@ -3525,6 +4498,71 @@ export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
|
3525
4498
|
*/
|
|
3526
4499
|
readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest;
|
|
3527
4500
|
}
|
|
4501
|
+
/**
|
|
4502
|
+
* Request parameters for v2CreatePlaneScan operation in DefaultApi.
|
|
4503
|
+
* @export
|
|
4504
|
+
* @interface DefaultApiV2CreatePlaneScanRequest
|
|
4505
|
+
*/
|
|
4506
|
+
export interface DefaultApiV2CreatePlaneScanRequest {
|
|
4507
|
+
/**
|
|
4508
|
+
*
|
|
4509
|
+
* @type {V1PlaneScanRequest}
|
|
4510
|
+
* @memberof DefaultApiV2CreatePlaneScan
|
|
4511
|
+
*/
|
|
4512
|
+
readonly v1PlaneScanRequest: V1PlaneScanRequest;
|
|
4513
|
+
}
|
|
4514
|
+
/**
|
|
4515
|
+
* Request parameters for v2CreateRicVolumeSearch operation in DefaultApi.
|
|
4516
|
+
* @export
|
|
4517
|
+
* @interface DefaultApiV2CreateRicVolumeSearchRequest
|
|
4518
|
+
*/
|
|
4519
|
+
export interface DefaultApiV2CreateRicVolumeSearchRequest {
|
|
4520
|
+
/**
|
|
4521
|
+
*
|
|
4522
|
+
* @type {V1RicVolumeSearchRequest}
|
|
4523
|
+
* @memberof DefaultApiV2CreateRicVolumeSearch
|
|
4524
|
+
*/
|
|
4525
|
+
readonly v1RicVolumeSearchRequest: V1RicVolumeSearchRequest;
|
|
4526
|
+
}
|
|
4527
|
+
/**
|
|
4528
|
+
* Request parameters for v2DeletePlaneScan operation in DefaultApi.
|
|
4529
|
+
* @export
|
|
4530
|
+
* @interface DefaultApiV2DeletePlaneScanRequest
|
|
4531
|
+
*/
|
|
4532
|
+
export interface DefaultApiV2DeletePlaneScanRequest {
|
|
4533
|
+
/**
|
|
4534
|
+
*
|
|
4535
|
+
* @type {string}
|
|
4536
|
+
* @memberof DefaultApiV2DeletePlaneScan
|
|
4537
|
+
*/
|
|
4538
|
+
readonly id: string;
|
|
4539
|
+
}
|
|
4540
|
+
/**
|
|
4541
|
+
* Request parameters for v2DeleteRicVolumeSearch operation in DefaultApi.
|
|
4542
|
+
* @export
|
|
4543
|
+
* @interface DefaultApiV2DeleteRicVolumeSearchRequest
|
|
4544
|
+
*/
|
|
4545
|
+
export interface DefaultApiV2DeleteRicVolumeSearchRequest {
|
|
4546
|
+
/**
|
|
4547
|
+
*
|
|
4548
|
+
* @type {string}
|
|
4549
|
+
* @memberof DefaultApiV2DeleteRicVolumeSearch
|
|
4550
|
+
*/
|
|
4551
|
+
readonly id: string;
|
|
4552
|
+
}
|
|
4553
|
+
/**
|
|
4554
|
+
* Request parameters for v2GetSearch operation in DefaultApi.
|
|
4555
|
+
* @export
|
|
4556
|
+
* @interface DefaultApiV2GetSearchRequest
|
|
4557
|
+
*/
|
|
4558
|
+
export interface DefaultApiV2GetSearchRequest {
|
|
4559
|
+
/**
|
|
4560
|
+
*
|
|
4561
|
+
* @type {string}
|
|
4562
|
+
* @memberof DefaultApiV2GetSearch
|
|
4563
|
+
*/
|
|
4564
|
+
readonly searchId: string;
|
|
4565
|
+
}
|
|
3528
4566
|
/**
|
|
3529
4567
|
* DefaultApi - object-oriented interface
|
|
3530
4568
|
* @export
|
|
@@ -3532,6 +4570,23 @@ export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
|
3532
4570
|
* @extends {BaseAPI}
|
|
3533
4571
|
*/
|
|
3534
4572
|
export declare class DefaultApi extends BaseAPI {
|
|
4573
|
+
/**
|
|
4574
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
4575
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
4576
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
4577
|
+
* @param {*} [options] Override http request option.
|
|
4578
|
+
* @throws {RequiredError}
|
|
4579
|
+
* @memberof DefaultApi
|
|
4580
|
+
*/
|
|
4581
|
+
getUncorrelatedTracks(requestParameters?: DefaultApiGetUncorrelatedTracksRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Track[], any>>;
|
|
4582
|
+
/**
|
|
4583
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
4584
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
4585
|
+
* @param {*} [options] Override http request option.
|
|
4586
|
+
* @throws {RequiredError}
|
|
4587
|
+
* @memberof DefaultApi
|
|
4588
|
+
*/
|
|
4589
|
+
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
3535
4590
|
/**
|
|
3536
4591
|
* Create an image set.
|
|
3537
4592
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -3549,7 +4604,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3549
4604
|
*/
|
|
3550
4605
|
v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
|
|
3551
4606
|
/**
|
|
3552
|
-
* 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](#
|
|
4607
|
+
* 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.
|
|
3553
4608
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
3554
4609
|
* @param {*} [options] Override http request option.
|
|
3555
4610
|
* @throws {RequiredError}
|
|
@@ -3565,9 +4620,10 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3565
4620
|
*/
|
|
3566
4621
|
v1CreateSatelliteTarget(requestParameters: DefaultApiV1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
3567
4622
|
/**
|
|
3568
|
-
* 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.
|
|
4623
|
+
* 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.
|
|
3569
4624
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
3570
4625
|
* @param {*} [options] Override http request option.
|
|
4626
|
+
* @deprecated
|
|
3571
4627
|
* @throws {RequiredError}
|
|
3572
4628
|
* @memberof DefaultApi
|
|
3573
4629
|
*/
|
|
@@ -3596,6 +4652,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3596
4652
|
* @memberof DefaultApi
|
|
3597
4653
|
*/
|
|
3598
4654
|
v1CreateWebhookTest(requestParameters: DefaultApiV1CreateWebhookTestRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4655
|
+
/**
|
|
4656
|
+
* Delete a blackout volume.
|
|
4657
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
4658
|
+
* @param {*} [options] Override http request option.
|
|
4659
|
+
* @throws {RequiredError}
|
|
4660
|
+
* @memberof DefaultApi
|
|
4661
|
+
*/
|
|
4662
|
+
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulDelete, any>>;
|
|
3599
4663
|
/**
|
|
3600
4664
|
* Delete an image set.
|
|
3601
4665
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -3644,6 +4708,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3644
4708
|
* @memberof DefaultApi
|
|
3645
4709
|
*/
|
|
3646
4710
|
v1DeleteWebhookConfiguration(requestParameters: DefaultApiV1DeleteWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4711
|
+
/**
|
|
4712
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
4713
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
4714
|
+
* @param {*} [options] Override http request option.
|
|
4715
|
+
* @throws {RequiredError}
|
|
4716
|
+
* @memberof DefaultApi
|
|
4717
|
+
*/
|
|
4718
|
+
v1GetImageMetadata(requestParameters: DefaultApiV1GetImageMetadataRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageMetadata, any>>;
|
|
3647
4719
|
/**
|
|
3648
4720
|
* Get an image set.
|
|
3649
4721
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -3732,7 +4804,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3732
4804
|
*/
|
|
3733
4805
|
v1GetOrganizationTarget(requestParameters: DefaultApiV1GetOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OrganizationTarget, any>>;
|
|
3734
4806
|
/**
|
|
3735
|
-
* Get organization targets see the [create](#
|
|
4807
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
3736
4808
|
* @param {*} [options] Override http request option.
|
|
3737
4809
|
* @throws {RequiredError}
|
|
3738
4810
|
* @memberof DefaultApi
|
|
@@ -3849,4 +4921,44 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3849
4921
|
* @memberof DefaultApi
|
|
3850
4922
|
*/
|
|
3851
4923
|
v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4924
|
+
/**
|
|
4925
|
+
* 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.
|
|
4926
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
4927
|
+
* @param {*} [options] Override http request option.
|
|
4928
|
+
* @throws {RequiredError}
|
|
4929
|
+
* @memberof DefaultApi
|
|
4930
|
+
*/
|
|
4931
|
+
v2CreatePlaneScan(requestParameters: DefaultApiV2CreatePlaneScanRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
4932
|
+
/**
|
|
4933
|
+
* 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.
|
|
4934
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
4935
|
+
* @param {*} [options] Override http request option.
|
|
4936
|
+
* @throws {RequiredError}
|
|
4937
|
+
* @memberof DefaultApi
|
|
4938
|
+
*/
|
|
4939
|
+
v2CreateRicVolumeSearch(requestParameters: DefaultApiV2CreateRicVolumeSearchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
4940
|
+
/**
|
|
4941
|
+
* Delete a plane scan.
|
|
4942
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
4943
|
+
* @param {*} [options] Override http request option.
|
|
4944
|
+
* @throws {RequiredError}
|
|
4945
|
+
* @memberof DefaultApi
|
|
4946
|
+
*/
|
|
4947
|
+
v2DeletePlaneScan(requestParameters: DefaultApiV2DeletePlaneScanRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4948
|
+
/**
|
|
4949
|
+
* Delete a RIC volume search.
|
|
4950
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
4951
|
+
* @param {*} [options] Override http request option.
|
|
4952
|
+
* @throws {RequiredError}
|
|
4953
|
+
* @memberof DefaultApi
|
|
4954
|
+
*/
|
|
4955
|
+
v2DeleteRicVolumeSearch(requestParameters: DefaultApiV2DeleteRicVolumeSearchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4956
|
+
/**
|
|
4957
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
4958
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
4959
|
+
* @param {*} [options] Override http request option.
|
|
4960
|
+
* @throws {RequiredError}
|
|
4961
|
+
* @memberof DefaultApi
|
|
4962
|
+
*/
|
|
4963
|
+
v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2Search, any>>;
|
|
3852
4964
|
}
|