@ourskyai/sda-api 1.3.5602 → 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 +1845 -191
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +1229 -26
- package/dist/api.js +705 -20
- 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 +1229 -26
- package/dist/esm/api.js +704 -19
- 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
|
|
|
@@ -321,13 +325,13 @@ export interface ObservationResult {
|
|
|
321
325
|
*/
|
|
322
326
|
'apparentMagnitude'?: number;
|
|
323
327
|
/**
|
|
324
|
-
* BETA: the solar phase angle in degrees at the time of observation
|
|
328
|
+
* BETA: the solar phase angle, defined as the angle between the target->observer and target->sun vectors, in degrees at the time of observation
|
|
325
329
|
* @type {number}
|
|
326
330
|
* @memberof ObservationResult
|
|
327
331
|
*/
|
|
328
332
|
'solarPhaseAngle'?: number;
|
|
329
333
|
/**
|
|
330
|
-
* BETA: the solar equatorial phase angle in degrees at the time of observation
|
|
334
|
+
* BETA: the solar equatorial phase angle, defined as the solar phase angle in the equatorial plane, in degrees at the time of observation
|
|
331
335
|
* @type {number}
|
|
332
336
|
* @memberof ObservationResult
|
|
333
337
|
*/
|
|
@@ -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}
|
|
@@ -1327,163 +1531,434 @@ export interface V1OrganizationTarget {
|
|
|
1327
1531
|
'createdAt': string;
|
|
1328
1532
|
}
|
|
1329
1533
|
/**
|
|
1330
|
-
*
|
|
1534
|
+
* An (x,y) pixel location in the image
|
|
1331
1535
|
* @export
|
|
1332
|
-
* @interface
|
|
1536
|
+
* @interface V1PixelCoordinates
|
|
1333
1537
|
*/
|
|
1334
|
-
export interface
|
|
1538
|
+
export interface V1PixelCoordinates {
|
|
1335
1539
|
/**
|
|
1336
1540
|
*
|
|
1337
1541
|
* @type {number}
|
|
1338
|
-
* @memberof
|
|
1542
|
+
* @memberof V1PixelCoordinates
|
|
1339
1543
|
*/
|
|
1340
|
-
'
|
|
1544
|
+
'x': number;
|
|
1341
1545
|
/**
|
|
1342
1546
|
*
|
|
1343
1547
|
* @type {number}
|
|
1344
|
-
* @memberof
|
|
1548
|
+
* @memberof V1PixelCoordinates
|
|
1345
1549
|
*/
|
|
1346
|
-
'
|
|
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 {
|
|
1347
1558
|
/**
|
|
1348
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.
|
|
1349
1566
|
* @type {number}
|
|
1350
|
-
* @memberof
|
|
1567
|
+
* @memberof V1PlaneScanRequest
|
|
1351
1568
|
*/
|
|
1352
|
-
'
|
|
1569
|
+
'plusMinusAnomalyAngleDegrees': number;
|
|
1353
1570
|
/**
|
|
1354
|
-
*
|
|
1571
|
+
* The step size in degrees to search across the specified anomaly angle range
|
|
1355
1572
|
* @type {number}
|
|
1356
|
-
* @memberof
|
|
1573
|
+
* @memberof V1PlaneScanRequest
|
|
1357
1574
|
*/
|
|
1358
|
-
'
|
|
1575
|
+
'stepSizeDegrees': number;
|
|
1359
1576
|
}
|
|
1360
1577
|
/**
|
|
1361
|
-
*
|
|
1578
|
+
* Extracted stars that matched during plate solving
|
|
1362
1579
|
* @export
|
|
1363
|
-
* @interface
|
|
1580
|
+
* @interface V1Plate
|
|
1364
1581
|
*/
|
|
1365
|
-
export interface
|
|
1582
|
+
export interface V1Plate {
|
|
1366
1583
|
/**
|
|
1367
|
-
*
|
|
1368
|
-
* @type {
|
|
1369
|
-
* @memberof
|
|
1584
|
+
* The x-centroid
|
|
1585
|
+
* @type {number}
|
|
1586
|
+
* @memberof V1Plate
|
|
1370
1587
|
*/
|
|
1371
|
-
'
|
|
1588
|
+
'xCentroid': number;
|
|
1372
1589
|
/**
|
|
1373
|
-
*
|
|
1374
|
-
* @type {
|
|
1375
|
-
* @memberof
|
|
1590
|
+
* The y-centroid
|
|
1591
|
+
* @type {number}
|
|
1592
|
+
* @memberof V1Plate
|
|
1376
1593
|
*/
|
|
1377
|
-
'
|
|
1594
|
+
'yCentroid': number;
|
|
1378
1595
|
/**
|
|
1379
|
-
*
|
|
1380
|
-
* @type {
|
|
1381
|
-
* @memberof
|
|
1596
|
+
* The UCAC4 or GaiaUD number if known
|
|
1597
|
+
* @type {number}
|
|
1598
|
+
* @memberof V1Plate
|
|
1382
1599
|
*/
|
|
1383
|
-
'
|
|
1600
|
+
'sequenceNumber': number;
|
|
1384
1601
|
/**
|
|
1385
|
-
*
|
|
1386
|
-
* @type {
|
|
1387
|
-
* @memberof
|
|
1602
|
+
* Extracted magnitude
|
|
1603
|
+
* @type {number}
|
|
1604
|
+
* @memberof V1Plate
|
|
1388
1605
|
*/
|
|
1389
|
-
'
|
|
1606
|
+
'magnitude': number;
|
|
1390
1607
|
/**
|
|
1391
|
-
*
|
|
1392
|
-
* @type {
|
|
1393
|
-
* @memberof
|
|
1608
|
+
* The star RA
|
|
1609
|
+
* @type {number}
|
|
1610
|
+
* @memberof V1Plate
|
|
1394
1611
|
*/
|
|
1395
|
-
'
|
|
1612
|
+
'raRad': number;
|
|
1396
1613
|
/**
|
|
1397
|
-
*
|
|
1398
|
-
* @type {
|
|
1399
|
-
* @memberof
|
|
1614
|
+
* The star Dec
|
|
1615
|
+
* @type {number}
|
|
1616
|
+
* @memberof V1Plate
|
|
1400
1617
|
*/
|
|
1401
|
-
'
|
|
1618
|
+
'decRad': number;
|
|
1402
1619
|
/**
|
|
1403
|
-
*
|
|
1404
|
-
* @type {
|
|
1405
|
-
* @memberof
|
|
1620
|
+
* The calculated offset from the catalog star, if known. 0 otherwise
|
|
1621
|
+
* @type {number}
|
|
1622
|
+
* @memberof V1Plate
|
|
1406
1623
|
*/
|
|
1407
|
-
'
|
|
1624
|
+
'catalogOffsetRad': number;
|
|
1408
1625
|
}
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
1626
|
/**
|
|
1412
|
-
*
|
|
1627
|
+
*
|
|
1413
1628
|
* @export
|
|
1414
|
-
* @interface
|
|
1629
|
+
* @interface V1PlateSolveResult
|
|
1415
1630
|
*/
|
|
1416
|
-
export interface
|
|
1631
|
+
export interface V1PlateSolveResult {
|
|
1417
1632
|
/**
|
|
1418
1633
|
*
|
|
1419
|
-
* @type {
|
|
1420
|
-
* @memberof
|
|
1634
|
+
* @type {Array<V1Plate>}
|
|
1635
|
+
* @memberof V1PlateSolveResult
|
|
1421
1636
|
*/
|
|
1422
|
-
'
|
|
1637
|
+
'plates': Array<V1Plate>;
|
|
1423
1638
|
/**
|
|
1424
|
-
*
|
|
1425
|
-
* @type {
|
|
1426
|
-
* @memberof
|
|
1639
|
+
* The number of pixels in X directions
|
|
1640
|
+
* @type {number}
|
|
1641
|
+
* @memberof V1PlateSolveResult
|
|
1427
1642
|
*/
|
|
1428
|
-
'
|
|
1643
|
+
'pixelWidth': number;
|
|
1429
1644
|
/**
|
|
1430
|
-
*
|
|
1431
|
-
* @type {
|
|
1432
|
-
* @memberof
|
|
1645
|
+
* The number of pixels in Y directions
|
|
1646
|
+
* @type {number}
|
|
1647
|
+
* @memberof V1PlateSolveResult
|
|
1433
1648
|
*/
|
|
1434
|
-
'
|
|
1649
|
+
'pixelHeight': number;
|
|
1435
1650
|
/**
|
|
1436
|
-
*
|
|
1437
|
-
* @type {
|
|
1438
|
-
* @memberof
|
|
1651
|
+
* The number of matched stars
|
|
1652
|
+
* @type {number}
|
|
1653
|
+
* @memberof V1PlateSolveResult
|
|
1439
1654
|
*/
|
|
1440
|
-
'
|
|
1655
|
+
'numberMatchedStars': number;
|
|
1441
1656
|
/**
|
|
1442
|
-
*
|
|
1443
|
-
* @type {
|
|
1444
|
-
* @memberof
|
|
1657
|
+
* In radians, the exact RA center when matched
|
|
1658
|
+
* @type {number}
|
|
1659
|
+
* @memberof V1PlateSolveResult
|
|
1445
1660
|
*/
|
|
1446
|
-
'
|
|
1661
|
+
'centerRightAscensionRadians': number;
|
|
1447
1662
|
/**
|
|
1448
|
-
*
|
|
1449
|
-
* @type {
|
|
1450
|
-
* @memberof
|
|
1663
|
+
* In radians, the exact Dec center when matched
|
|
1664
|
+
* @type {number}
|
|
1665
|
+
* @memberof V1PlateSolveResult
|
|
1451
1666
|
*/
|
|
1452
|
-
'
|
|
1667
|
+
'centerDeclinationRadians': number;
|
|
1453
1668
|
/**
|
|
1454
|
-
*
|
|
1455
|
-
* @type {
|
|
1456
|
-
* @memberof
|
|
1669
|
+
* The approximate plate size in X-direction, in radians
|
|
1670
|
+
* @type {number}
|
|
1671
|
+
* @memberof V1PlateSolveResult
|
|
1457
1672
|
*/
|
|
1458
|
-
'
|
|
1673
|
+
'xSizeRadians': number;
|
|
1459
1674
|
/**
|
|
1460
|
-
*
|
|
1461
|
-
* @type {
|
|
1462
|
-
* @memberof
|
|
1675
|
+
* The approximate plate size in Y-direction, in radians
|
|
1676
|
+
* @type {number}
|
|
1677
|
+
* @memberof V1PlateSolveResult
|
|
1463
1678
|
*/
|
|
1464
|
-
'
|
|
1679
|
+
'ySizeRadians': number;
|
|
1465
1680
|
/**
|
|
1466
|
-
*
|
|
1467
|
-
* @type {
|
|
1468
|
-
* @memberof
|
|
1681
|
+
* True if there is a valid plate match
|
|
1682
|
+
* @type {boolean}
|
|
1683
|
+
* @memberof V1PlateSolveResult
|
|
1469
1684
|
*/
|
|
1470
|
-
'
|
|
1685
|
+
'isMatched': boolean;
|
|
1471
1686
|
/**
|
|
1472
1687
|
*
|
|
1473
|
-
* @type {
|
|
1474
|
-
* @memberof
|
|
1688
|
+
* @type {V1Transformation}
|
|
1689
|
+
* @memberof V1PlateSolveResult
|
|
1475
1690
|
*/
|
|
1476
|
-
'
|
|
1691
|
+
'transformation': V1Transformation;
|
|
1692
|
+
}
|
|
1693
|
+
/**
|
|
1694
|
+
* A point in 3D space.
|
|
1695
|
+
* @export
|
|
1696
|
+
* @interface V1Point
|
|
1697
|
+
*/
|
|
1698
|
+
export interface V1Point {
|
|
1477
1699
|
/**
|
|
1478
|
-
*
|
|
1700
|
+
* The x-coordinate of the point in meters.
|
|
1479
1701
|
* @type {number}
|
|
1480
|
-
* @memberof
|
|
1702
|
+
* @memberof V1Point
|
|
1481
1703
|
*/
|
|
1482
|
-
'
|
|
1704
|
+
'x': number;
|
|
1483
1705
|
/**
|
|
1484
|
-
*
|
|
1706
|
+
* The y-coordinate of the point in meters.
|
|
1485
1707
|
* @type {number}
|
|
1486
|
-
* @memberof
|
|
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
|
+
}
|
|
1718
|
+
/**
|
|
1719
|
+
*
|
|
1720
|
+
* @export
|
|
1721
|
+
* @interface V1PredictedStreakLocation
|
|
1722
|
+
*/
|
|
1723
|
+
export interface V1PredictedStreakLocation {
|
|
1724
|
+
/**
|
|
1725
|
+
*
|
|
1726
|
+
* @type {number}
|
|
1727
|
+
* @memberof V1PredictedStreakLocation
|
|
1728
|
+
*/
|
|
1729
|
+
'startX'?: number;
|
|
1730
|
+
/**
|
|
1731
|
+
*
|
|
1732
|
+
* @type {number}
|
|
1733
|
+
* @memberof V1PredictedStreakLocation
|
|
1734
|
+
*/
|
|
1735
|
+
'startY'?: number;
|
|
1736
|
+
/**
|
|
1737
|
+
*
|
|
1738
|
+
* @type {number}
|
|
1739
|
+
* @memberof V1PredictedStreakLocation
|
|
1740
|
+
*/
|
|
1741
|
+
'endX'?: number;
|
|
1742
|
+
/**
|
|
1743
|
+
*
|
|
1744
|
+
* @type {number}
|
|
1745
|
+
* @memberof V1PredictedStreakLocation
|
|
1746
|
+
*/
|
|
1747
|
+
'endY'?: number;
|
|
1748
|
+
}
|
|
1749
|
+
/**
|
|
1750
|
+
* Upsert (create or update) a satellite target with new a new TLE. If creating a new target, do not enter a `satellite_target_id`. If updating an existing satellite target, the satellite target id must be one found in the OurSky database using the `/v1/satellite-targets` endpoint.
|
|
1751
|
+
* @export
|
|
1752
|
+
* @interface V1PutOrbitProviderTLERequest
|
|
1753
|
+
*/
|
|
1754
|
+
export interface V1PutOrbitProviderTLERequest {
|
|
1755
|
+
/**
|
|
1756
|
+
* Existing target id of an OurSky target that you are providing a TLE for. Leave null if one does not exist in the database.
|
|
1757
|
+
* @type {string}
|
|
1758
|
+
* @memberof V1PutOrbitProviderTLERequest
|
|
1759
|
+
*/
|
|
1760
|
+
'satellite_target_id'?: string;
|
|
1761
|
+
/**
|
|
1762
|
+
*
|
|
1763
|
+
* @type {string}
|
|
1764
|
+
* @memberof V1PutOrbitProviderTLERequest
|
|
1765
|
+
*/
|
|
1766
|
+
'tle_line_1': string;
|
|
1767
|
+
/**
|
|
1768
|
+
*
|
|
1769
|
+
* @type {string}
|
|
1770
|
+
* @memberof V1PutOrbitProviderTLERequest
|
|
1771
|
+
*/
|
|
1772
|
+
'tle_line_2': string;
|
|
1773
|
+
/**
|
|
1774
|
+
*
|
|
1775
|
+
* @type {string}
|
|
1776
|
+
* @memberof V1PutOrbitProviderTLERequest
|
|
1777
|
+
*/
|
|
1778
|
+
'tle_name'?: string;
|
|
1779
|
+
/**
|
|
1780
|
+
* mass in kilograms
|
|
1781
|
+
* @type {number}
|
|
1782
|
+
* @memberof V1PutOrbitProviderTLERequest
|
|
1783
|
+
*/
|
|
1784
|
+
'mass'?: number;
|
|
1785
|
+
/**
|
|
1786
|
+
* The Cr value used to calculate acceleration due to solar radiation pressure
|
|
1787
|
+
* @type {number}
|
|
1788
|
+
* @memberof V1PutOrbitProviderTLERequest
|
|
1789
|
+
*/
|
|
1790
|
+
'coefficientOfReflection'?: number;
|
|
1791
|
+
/**
|
|
1792
|
+
* cross sectional area in meters^2
|
|
1793
|
+
* @type {number}
|
|
1794
|
+
* @memberof V1PutOrbitProviderTLERequest
|
|
1795
|
+
*/
|
|
1796
|
+
'crossSection'?: number;
|
|
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
|
+
}
|
|
1835
|
+
/**
|
|
1836
|
+
* SatellitePotential
|
|
1837
|
+
* @export
|
|
1838
|
+
* @interface V1SatellitePotential
|
|
1839
|
+
*/
|
|
1840
|
+
export interface V1SatellitePotential {
|
|
1841
|
+
/**
|
|
1842
|
+
*
|
|
1843
|
+
* @type {string}
|
|
1844
|
+
* @memberof V1SatellitePotential
|
|
1845
|
+
*/
|
|
1846
|
+
'firstObservableTime': string;
|
|
1847
|
+
/**
|
|
1848
|
+
*
|
|
1849
|
+
* @type {string}
|
|
1850
|
+
* @memberof V1SatellitePotential
|
|
1851
|
+
*/
|
|
1852
|
+
'lastObservableTime': string;
|
|
1853
|
+
/**
|
|
1854
|
+
*
|
|
1855
|
+
* @type {string}
|
|
1856
|
+
* @memberof V1SatellitePotential
|
|
1857
|
+
*/
|
|
1858
|
+
'satelliteTargetId'?: string;
|
|
1859
|
+
/**
|
|
1860
|
+
*
|
|
1861
|
+
* @type {string}
|
|
1862
|
+
* @memberof V1SatellitePotential
|
|
1863
|
+
*/
|
|
1864
|
+
'noradId'?: string;
|
|
1865
|
+
/**
|
|
1866
|
+
*
|
|
1867
|
+
* @type {OrbitType}
|
|
1868
|
+
* @memberof V1SatellitePotential
|
|
1869
|
+
*/
|
|
1870
|
+
'orbitType'?: OrbitType;
|
|
1871
|
+
/**
|
|
1872
|
+
*
|
|
1873
|
+
* @type {WeatherCondition}
|
|
1874
|
+
* @memberof V1SatellitePotential
|
|
1875
|
+
*/
|
|
1876
|
+
'weatherCondition'?: WeatherCondition;
|
|
1877
|
+
/**
|
|
1878
|
+
*
|
|
1879
|
+
* @type {string}
|
|
1880
|
+
* @memberof V1SatellitePotential
|
|
1881
|
+
*/
|
|
1882
|
+
'weatherDescription'?: string;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* Satellite Target
|
|
1888
|
+
* @export
|
|
1889
|
+
* @interface V1SatelliteTarget
|
|
1890
|
+
*/
|
|
1891
|
+
export interface V1SatelliteTarget {
|
|
1892
|
+
/**
|
|
1893
|
+
*
|
|
1894
|
+
* @type {string}
|
|
1895
|
+
* @memberof V1SatelliteTarget
|
|
1896
|
+
*/
|
|
1897
|
+
'id': string;
|
|
1898
|
+
/**
|
|
1899
|
+
*
|
|
1900
|
+
* @type {string}
|
|
1901
|
+
* @memberof V1SatelliteTarget
|
|
1902
|
+
*/
|
|
1903
|
+
'cosparId'?: string;
|
|
1904
|
+
/**
|
|
1905
|
+
*
|
|
1906
|
+
* @type {string}
|
|
1907
|
+
* @memberof V1SatelliteTarget
|
|
1908
|
+
*/
|
|
1909
|
+
'noradId'?: string;
|
|
1910
|
+
/**
|
|
1911
|
+
*
|
|
1912
|
+
* @type {OrbitType}
|
|
1913
|
+
* @memberof V1SatelliteTarget
|
|
1914
|
+
*/
|
|
1915
|
+
'orbitType': OrbitType;
|
|
1916
|
+
/**
|
|
1917
|
+
*
|
|
1918
|
+
* @type {string}
|
|
1919
|
+
* @memberof V1SatelliteTarget
|
|
1920
|
+
*/
|
|
1921
|
+
'tleEpoch'?: string;
|
|
1922
|
+
/**
|
|
1923
|
+
*
|
|
1924
|
+
* @type {string}
|
|
1925
|
+
* @memberof V1SatelliteTarget
|
|
1926
|
+
*/
|
|
1927
|
+
'tleName'?: string;
|
|
1928
|
+
/**
|
|
1929
|
+
*
|
|
1930
|
+
* @type {string}
|
|
1931
|
+
* @memberof V1SatelliteTarget
|
|
1932
|
+
*/
|
|
1933
|
+
'tleLine1'?: string;
|
|
1934
|
+
/**
|
|
1935
|
+
*
|
|
1936
|
+
* @type {string}
|
|
1937
|
+
* @memberof V1SatelliteTarget
|
|
1938
|
+
*/
|
|
1939
|
+
'tleLine2'?: string;
|
|
1940
|
+
/**
|
|
1941
|
+
*
|
|
1942
|
+
* @type {SatelliteTargetTrackingStatus}
|
|
1943
|
+
* @memberof V1SatelliteTarget
|
|
1944
|
+
*/
|
|
1945
|
+
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
1946
|
+
/**
|
|
1947
|
+
*
|
|
1948
|
+
* @type {string}
|
|
1949
|
+
* @memberof V1SatelliteTarget
|
|
1950
|
+
*/
|
|
1951
|
+
'classification'?: string;
|
|
1952
|
+
/**
|
|
1953
|
+
*
|
|
1954
|
+
* @type {number}
|
|
1955
|
+
* @memberof V1SatelliteTarget
|
|
1956
|
+
*/
|
|
1957
|
+
'launchYear'?: number;
|
|
1958
|
+
/**
|
|
1959
|
+
*
|
|
1960
|
+
* @type {number}
|
|
1961
|
+
* @memberof V1SatelliteTarget
|
|
1487
1962
|
*/
|
|
1488
1963
|
'epochYear'?: number;
|
|
1489
1964
|
/**
|
|
@@ -1588,6 +2063,12 @@ export interface V1SatelliteTarget {
|
|
|
1588
2063
|
* @memberof V1SatelliteTarget
|
|
1589
2064
|
*/
|
|
1590
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;
|
|
1591
2072
|
}
|
|
1592
2073
|
|
|
1593
2074
|
|
|
@@ -1692,7 +2173,7 @@ export interface V1SurveyInstruction {
|
|
|
1692
2173
|
*/
|
|
1693
2174
|
'firstStepAt'?: string;
|
|
1694
2175
|
/**
|
|
1695
|
-
* 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.
|
|
1696
2177
|
* @type {Array<V1SurveyInstructionStep>}
|
|
1697
2178
|
* @memberof V1SurveyInstruction
|
|
1698
2179
|
*/
|
|
@@ -1709,13 +2190,37 @@ export interface V1SurveyInstructionStep {
|
|
|
1709
2190
|
* @type {number}
|
|
1710
2191
|
* @memberof V1SurveyInstructionStep
|
|
1711
2192
|
*/
|
|
1712
|
-
'ra'
|
|
2193
|
+
'ra'?: number;
|
|
1713
2194
|
/**
|
|
1714
2195
|
*
|
|
1715
2196
|
* @type {number}
|
|
1716
2197
|
* @memberof V1SurveyInstructionStep
|
|
1717
2198
|
*/
|
|
1718
|
-
'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;
|
|
1719
2224
|
/**
|
|
1720
2225
|
*
|
|
1721
2226
|
* @type {number}
|
|
@@ -1730,96 +2235,339 @@ export interface V1SurveyInstructionStep {
|
|
|
1730
2235
|
*/
|
|
1731
2236
|
export interface V1TargetCorrelation {
|
|
1732
2237
|
/**
|
|
1733
|
-
*
|
|
1734
|
-
* @type {string}
|
|
1735
|
-
* @memberof V1TargetCorrelation
|
|
2238
|
+
*
|
|
2239
|
+
* @type {string}
|
|
2240
|
+
* @memberof V1TargetCorrelation
|
|
2241
|
+
*/
|
|
2242
|
+
'targetId': string;
|
|
2243
|
+
/**
|
|
2244
|
+
* The predicted (propagated) center of the targetId in Right Ascension in degrees
|
|
2245
|
+
* @type {number}
|
|
2246
|
+
* @memberof V1TargetCorrelation
|
|
2247
|
+
*/
|
|
2248
|
+
'ra': number;
|
|
2249
|
+
/**
|
|
2250
|
+
* The predicted (propagated) center of the streak in Declination in degrees
|
|
2251
|
+
* @type {number}
|
|
2252
|
+
* @memberof V1TargetCorrelation
|
|
2253
|
+
*/
|
|
2254
|
+
'dec': number;
|
|
2255
|
+
/**
|
|
2256
|
+
* The predicted (propagated) length of the target streak in degrees
|
|
2257
|
+
* @type {number}
|
|
2258
|
+
* @memberof V1TargetCorrelation
|
|
2259
|
+
*/
|
|
2260
|
+
'streakLength'?: number;
|
|
2261
|
+
/**
|
|
2262
|
+
* The distance between the predicted and actual center of the streak in degrees
|
|
2263
|
+
* @type {number}
|
|
2264
|
+
* @memberof V1TargetCorrelation
|
|
2265
|
+
*/
|
|
2266
|
+
'distanceFromStreak'?: number;
|
|
2267
|
+
/**
|
|
2268
|
+
* The angle between the predicted and actual angle-to-celestial-north for the streak in degrees
|
|
2269
|
+
* @type {number}
|
|
2270
|
+
* @memberof V1TargetCorrelation
|
|
2271
|
+
*/
|
|
2272
|
+
'angleFromStreak'?: number;
|
|
2273
|
+
}
|
|
2274
|
+
/**
|
|
2275
|
+
* TDM
|
|
2276
|
+
* @export
|
|
2277
|
+
* @interface V1Tdm
|
|
2278
|
+
*/
|
|
2279
|
+
export interface V1Tdm {
|
|
2280
|
+
/**
|
|
2281
|
+
*
|
|
2282
|
+
* @type {string}
|
|
2283
|
+
* @memberof V1Tdm
|
|
2284
|
+
*/
|
|
2285
|
+
'id': string;
|
|
2286
|
+
/**
|
|
2287
|
+
*
|
|
2288
|
+
* @type {string}
|
|
2289
|
+
* @memberof V1Tdm
|
|
2290
|
+
*/
|
|
2291
|
+
'targetId': string;
|
|
2292
|
+
/**
|
|
2293
|
+
*
|
|
2294
|
+
* @type {Array<string>}
|
|
2295
|
+
* @memberof V1Tdm
|
|
2296
|
+
*/
|
|
2297
|
+
'streaks': Array<string>;
|
|
2298
|
+
/**
|
|
2299
|
+
*
|
|
2300
|
+
* @type {string}
|
|
2301
|
+
* @memberof V1Tdm
|
|
2302
|
+
*/
|
|
2303
|
+
'assetUrl': string;
|
|
2304
|
+
/**
|
|
2305
|
+
*
|
|
2306
|
+
* @type {string}
|
|
2307
|
+
* @memberof V1Tdm
|
|
2308
|
+
*/
|
|
2309
|
+
'imageSetId': string;
|
|
2310
|
+
/**
|
|
2311
|
+
*
|
|
2312
|
+
* @type {Array<string>}
|
|
2313
|
+
* @memberof V1Tdm
|
|
2314
|
+
*/
|
|
2315
|
+
'imageUrls': Array<string>;
|
|
2316
|
+
/**
|
|
2317
|
+
*
|
|
2318
|
+
* @type {string}
|
|
2319
|
+
* @memberof V1Tdm
|
|
2320
|
+
*/
|
|
2321
|
+
'createdAt': string;
|
|
2322
|
+
/**
|
|
2323
|
+
*
|
|
2324
|
+
* @type {string}
|
|
2325
|
+
* @memberof V1Tdm
|
|
2326
|
+
*/
|
|
2327
|
+
'createdBy': string;
|
|
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
|
|
1736
2461
|
*/
|
|
1737
|
-
'
|
|
2462
|
+
'epsX': number;
|
|
1738
2463
|
/**
|
|
1739
|
-
*
|
|
2464
|
+
* 3rd-order plate distortion, Y-direction
|
|
1740
2465
|
* @type {number}
|
|
1741
|
-
* @memberof
|
|
2466
|
+
* @memberof V1Transformation
|
|
1742
2467
|
*/
|
|
1743
|
-
'
|
|
2468
|
+
'epsY': number;
|
|
1744
2469
|
/**
|
|
1745
|
-
* The
|
|
2470
|
+
* The reference RA and Dec, in radians, at U = 0, V = 0
|
|
1746
2471
|
* @type {number}
|
|
1747
|
-
* @memberof
|
|
2472
|
+
* @memberof V1Transformation
|
|
1748
2473
|
*/
|
|
1749
|
-
'
|
|
2474
|
+
'raCen': number;
|
|
1750
2475
|
/**
|
|
1751
|
-
* The
|
|
2476
|
+
* The reference RA and Dec, in radians, at U = 0, V = 0
|
|
1752
2477
|
* @type {number}
|
|
1753
|
-
* @memberof
|
|
2478
|
+
* @memberof V1Transformation
|
|
1754
2479
|
*/
|
|
1755
|
-
'
|
|
2480
|
+
'decCen': number;
|
|
1756
2481
|
/**
|
|
1757
|
-
* The
|
|
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
|
|
1758
2483
|
* @type {number}
|
|
1759
|
-
* @memberof
|
|
2484
|
+
* @memberof V1Transformation
|
|
1760
2485
|
*/
|
|
1761
|
-
'
|
|
2486
|
+
'px': number;
|
|
1762
2487
|
/**
|
|
1763
|
-
* The
|
|
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
|
|
1764
2489
|
* @type {number}
|
|
1765
|
-
* @memberof
|
|
2490
|
+
* @memberof V1Transformation
|
|
1766
2491
|
*/
|
|
1767
|
-
'
|
|
1768
|
-
}
|
|
1769
|
-
/**
|
|
1770
|
-
* TDM
|
|
1771
|
-
* @export
|
|
1772
|
-
* @interface V1Tdm
|
|
1773
|
-
*/
|
|
1774
|
-
export interface V1Tdm {
|
|
2492
|
+
'py': number;
|
|
1775
2493
|
/**
|
|
1776
|
-
*
|
|
1777
|
-
* @type {
|
|
1778
|
-
* @memberof
|
|
2494
|
+
* The U-coefficients of the full N-th order match, if available. UCoef(0..NumCoef)
|
|
2495
|
+
* @type {Array<number>}
|
|
2496
|
+
* @memberof V1Transformation
|
|
1779
2497
|
*/
|
|
1780
|
-
'
|
|
2498
|
+
'uCoef': Array<number>;
|
|
1781
2499
|
/**
|
|
1782
|
-
*
|
|
1783
|
-
* @type {
|
|
1784
|
-
* @memberof
|
|
2500
|
+
* The V-coefficients of the full N-th order match, if available. VCoef(0..NumCoef)
|
|
2501
|
+
* @type {Array<number>}
|
|
2502
|
+
* @memberof V1Transformation
|
|
1785
2503
|
*/
|
|
1786
|
-
'
|
|
2504
|
+
'vCoef': Array<number>;
|
|
1787
2505
|
/**
|
|
1788
|
-
*
|
|
1789
|
-
* @type {Array<
|
|
1790
|
-
* @memberof
|
|
2506
|
+
* The X-coefficients of the full N-th order match, if available. XCoef(0..NumCoef)
|
|
2507
|
+
* @type {Array<number>}
|
|
2508
|
+
* @memberof V1Transformation
|
|
1791
2509
|
*/
|
|
1792
|
-
'
|
|
2510
|
+
'xCoef': Array<number>;
|
|
1793
2511
|
/**
|
|
1794
|
-
*
|
|
1795
|
-
* @type {
|
|
1796
|
-
* @memberof
|
|
2512
|
+
* The Y-coefficients of the full N-th order match, if available. YCoef(0..NumCoef)
|
|
2513
|
+
* @type {Array<number>}
|
|
2514
|
+
* @memberof V1Transformation
|
|
1797
2515
|
*/
|
|
1798
|
-
'
|
|
2516
|
+
'yCoef': Array<number>;
|
|
1799
2517
|
/**
|
|
1800
|
-
*
|
|
1801
|
-
* @type {
|
|
1802
|
-
* @memberof
|
|
2518
|
+
* The number of coefficients + 1. 0 if there is no high-order match
|
|
2519
|
+
* @type {number}
|
|
2520
|
+
* @memberof V1Transformation
|
|
1803
2521
|
*/
|
|
1804
|
-
'
|
|
2522
|
+
'numCoef': number;
|
|
1805
2523
|
/**
|
|
1806
|
-
*
|
|
1807
|
-
* @type {
|
|
1808
|
-
* @memberof
|
|
2524
|
+
* The RMS fit error, in radians, for the simple affine + third-order distortion transform
|
|
2525
|
+
* @type {number}
|
|
2526
|
+
* @memberof V1Transformation
|
|
1809
2527
|
*/
|
|
1810
|
-
'
|
|
2528
|
+
'fitErrorRadians': number;
|
|
1811
2529
|
/**
|
|
1812
|
-
*
|
|
1813
|
-
* @type {
|
|
1814
|
-
* @memberof
|
|
2530
|
+
* The RMS fit error, in pixels, for the simple affine + third-order distortion transform
|
|
2531
|
+
* @type {number}
|
|
2532
|
+
* @memberof V1Transformation
|
|
1815
2533
|
*/
|
|
1816
|
-
'
|
|
2534
|
+
'fitErrorPix': number;
|
|
1817
2535
|
/**
|
|
1818
|
-
*
|
|
1819
|
-
* @type {
|
|
1820
|
-
* @memberof
|
|
2536
|
+
* The RMS fit error, in radians, for the full third-order transform
|
|
2537
|
+
* @type {number}
|
|
2538
|
+
* @memberof V1Transformation
|
|
1821
2539
|
*/
|
|
1822
|
-
'
|
|
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;
|
|
1823
2571
|
}
|
|
1824
2572
|
/**
|
|
1825
2573
|
*
|
|
@@ -1884,7 +2632,7 @@ export interface V1UpdateSatelliteTargetRequest {
|
|
|
1884
2632
|
*/
|
|
1885
2633
|
'tleLine2': string;
|
|
1886
2634
|
/**
|
|
1887
|
-
*
|
|
2635
|
+
* The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
|
|
1888
2636
|
* @type {string}
|
|
1889
2637
|
* @memberof V1UpdateSatelliteTargetRequest
|
|
1890
2638
|
*/
|
|
@@ -2025,6 +2773,45 @@ export interface V1WebhookLog {
|
|
|
2025
2773
|
*/
|
|
2026
2774
|
'log'?: string;
|
|
2027
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
|
+
|
|
2028
2815
|
/**
|
|
2029
2816
|
*
|
|
2030
2817
|
* @export
|
|
@@ -2076,7 +2863,10 @@ export const WebhookEvent = {
|
|
|
2076
2863
|
V1_OBSERVATION_STATUS_UPDATED: 'V1_OBSERVATION_STATUS_UPDATED',
|
|
2077
2864
|
V1_EO_CALIBRATION_OBSERVATION_CREATED: 'V1_EO_CALIBRATION_OBSERVATION_CREATED',
|
|
2078
2865
|
V1_NODE_CALIBRATION_DATA_CREATED: 'V1_NODE_CALIBRATION_DATA_CREATED',
|
|
2079
|
-
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'
|
|
2080
2870
|
} as const;
|
|
2081
2871
|
|
|
2082
2872
|
export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
|
|
@@ -2089,6 +2879,90 @@ export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
|
|
|
2089
2879
|
*/
|
|
2090
2880
|
export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
2091
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
|
+
},
|
|
2092
2966
|
/**
|
|
2093
2967
|
* Create an image set.
|
|
2094
2968
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2172,7 +3046,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2172
3046
|
};
|
|
2173
3047
|
},
|
|
2174
3048
|
/**
|
|
2175
|
-
* 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.
|
|
2176
3050
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
2177
3051
|
* @param {*} [options] Override http request option.
|
|
2178
3052
|
* @throws {RequiredError}
|
|
@@ -2254,9 +3128,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2254
3128
|
};
|
|
2255
3129
|
},
|
|
2256
3130
|
/**
|
|
2257
|
-
* 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.
|
|
2258
3132
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
2259
3133
|
* @param {*} [options] Override http request option.
|
|
3134
|
+
* @deprecated
|
|
2260
3135
|
* @throws {RequiredError}
|
|
2261
3136
|
*/
|
|
2262
3137
|
v1CreateSearchInstruction: async (v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -2417,6 +3292,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2417
3292
|
options: localVarRequestOptions,
|
|
2418
3293
|
};
|
|
2419
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
|
+
},
|
|
2420
3337
|
/**
|
|
2421
3338
|
* Delete an image set.
|
|
2422
3339
|
* @param {string} id
|
|
@@ -2551,8 +3468,50 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2551
3468
|
*/
|
|
2552
3469
|
v1DeleteSearchInstruction: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2553
3470
|
// verify required parameter 'id' is not null or undefined
|
|
2554
|
-
assertParamExists('v1DeleteSearchInstruction', 'id', id)
|
|
2555
|
-
const localVarPath = `/v1/search-instruction`;
|
|
3471
|
+
assertParamExists('v1DeleteSearchInstruction', 'id', id)
|
|
3472
|
+
const localVarPath = `/v1/search-instruction`;
|
|
3473
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3474
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3475
|
+
let baseOptions;
|
|
3476
|
+
if (configuration) {
|
|
3477
|
+
baseOptions = configuration.baseOptions;
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
3481
|
+
const localVarHeaderParameter = {} as any;
|
|
3482
|
+
const localVarQueryParameter = {} as any;
|
|
3483
|
+
|
|
3484
|
+
// authentication Roles required
|
|
3485
|
+
|
|
3486
|
+
// authentication BearerToken required
|
|
3487
|
+
// http bearer authentication required
|
|
3488
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3489
|
+
|
|
3490
|
+
if (id !== undefined) {
|
|
3491
|
+
localVarQueryParameter['id'] = id;
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
|
|
3495
|
+
|
|
3496
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3497
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3498
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3499
|
+
|
|
3500
|
+
return {
|
|
3501
|
+
url: toPathString(localVarUrlObj),
|
|
3502
|
+
options: localVarRequestOptions,
|
|
3503
|
+
};
|
|
3504
|
+
},
|
|
3505
|
+
/**
|
|
3506
|
+
* Delete a survey instruction.
|
|
3507
|
+
* @param {string} id
|
|
3508
|
+
* @param {*} [options] Override http request option.
|
|
3509
|
+
* @throws {RequiredError}
|
|
3510
|
+
*/
|
|
3511
|
+
v1DeleteSurveyInstruction: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3512
|
+
// verify required parameter 'id' is not null or undefined
|
|
3513
|
+
assertParamExists('v1DeleteSurveyInstruction', 'id', id)
|
|
3514
|
+
const localVarPath = `/v1/survey-instruction`;
|
|
2556
3515
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2557
3516
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2558
3517
|
let baseOptions;
|
|
@@ -2586,15 +3545,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2586
3545
|
};
|
|
2587
3546
|
},
|
|
2588
3547
|
/**
|
|
2589
|
-
* Delete a
|
|
3548
|
+
* Delete a webhook configuration.
|
|
2590
3549
|
* @param {string} id
|
|
2591
3550
|
* @param {*} [options] Override http request option.
|
|
2592
3551
|
* @throws {RequiredError}
|
|
2593
3552
|
*/
|
|
2594
|
-
|
|
3553
|
+
v1DeleteWebhookConfiguration: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2595
3554
|
// verify required parameter 'id' is not null or undefined
|
|
2596
|
-
assertParamExists('
|
|
2597
|
-
const localVarPath = `/v1/
|
|
3555
|
+
assertParamExists('v1DeleteWebhookConfiguration', 'id', id)
|
|
3556
|
+
const localVarPath = `/v1/communications/webhook`;
|
|
2598
3557
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2599
3558
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2600
3559
|
let baseOptions;
|
|
@@ -2628,15 +3587,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2628
3587
|
};
|
|
2629
3588
|
},
|
|
2630
3589
|
/**
|
|
2631
|
-
*
|
|
2632
|
-
* @param {string}
|
|
3590
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
3591
|
+
* @param {string} imageId
|
|
2633
3592
|
* @param {*} [options] Override http request option.
|
|
2634
3593
|
* @throws {RequiredError}
|
|
2635
3594
|
*/
|
|
2636
|
-
|
|
2637
|
-
// verify required parameter '
|
|
2638
|
-
assertParamExists('
|
|
2639
|
-
const localVarPath = `/v1/
|
|
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`;
|
|
2640
3599
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2641
3600
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2642
3601
|
let baseOptions;
|
|
@@ -2644,7 +3603,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2644
3603
|
baseOptions = configuration.baseOptions;
|
|
2645
3604
|
}
|
|
2646
3605
|
|
|
2647
|
-
const localVarRequestOptions = { method: '
|
|
3606
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
2648
3607
|
const localVarHeaderParameter = {} as any;
|
|
2649
3608
|
const localVarQueryParameter = {} as any;
|
|
2650
3609
|
|
|
@@ -2654,8 +3613,8 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2654
3613
|
// http bearer authentication required
|
|
2655
3614
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2656
3615
|
|
|
2657
|
-
if (
|
|
2658
|
-
localVarQueryParameter['
|
|
3616
|
+
if (imageId !== undefined) {
|
|
3617
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
2659
3618
|
}
|
|
2660
3619
|
|
|
2661
3620
|
|
|
@@ -3160,7 +4119,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3160
4119
|
};
|
|
3161
4120
|
},
|
|
3162
4121
|
/**
|
|
3163
|
-
* Get organization targets see the [create](#
|
|
4122
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
3164
4123
|
* @param {*} [options] Override http request option.
|
|
3165
4124
|
* @throws {RequiredError}
|
|
3166
4125
|
*/
|
|
@@ -3617,6 +4576,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3617
4576
|
options: localVarRequestOptions,
|
|
3618
4577
|
};
|
|
3619
4578
|
},
|
|
4579
|
+
/**
|
|
4580
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
4581
|
+
* @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
|
|
4582
|
+
* @param {*} [options] Override http request option.
|
|
4583
|
+
* @throws {RequiredError}
|
|
4584
|
+
*/
|
|
4585
|
+
v1PutOrbitProviderTLEOrbit: async (v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4586
|
+
// verify required parameter 'v1PutOrbitProviderTLERequest' is not null or undefined
|
|
4587
|
+
assertParamExists('v1PutOrbitProviderTLEOrbit', 'v1PutOrbitProviderTLERequest', v1PutOrbitProviderTLERequest)
|
|
4588
|
+
const localVarPath = `/v1/orbit-provider/tle`;
|
|
4589
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4590
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4591
|
+
let baseOptions;
|
|
4592
|
+
if (configuration) {
|
|
4593
|
+
baseOptions = configuration.baseOptions;
|
|
4594
|
+
}
|
|
4595
|
+
|
|
4596
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
4597
|
+
const localVarHeaderParameter = {} as any;
|
|
4598
|
+
const localVarQueryParameter = {} as any;
|
|
4599
|
+
|
|
4600
|
+
// authentication Roles required
|
|
4601
|
+
|
|
4602
|
+
// authentication BearerToken required
|
|
4603
|
+
// http bearer authentication required
|
|
4604
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4605
|
+
|
|
4606
|
+
|
|
4607
|
+
|
|
4608
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4609
|
+
|
|
4610
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4611
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4612
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4613
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1PutOrbitProviderTLERequest, localVarRequestOptions, configuration)
|
|
4614
|
+
|
|
4615
|
+
return {
|
|
4616
|
+
url: toPathString(localVarUrlObj),
|
|
4617
|
+
options: localVarRequestOptions,
|
|
4618
|
+
};
|
|
4619
|
+
},
|
|
3620
4620
|
/**
|
|
3621
4621
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
3622
4622
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -3700,7 +4700,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3700
4700
|
};
|
|
3701
4701
|
},
|
|
3702
4702
|
/**
|
|
3703
|
-
* Update satellite target.
|
|
4703
|
+
* Update a private satellite target.
|
|
3704
4704
|
* @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
|
|
3705
4705
|
* @param {*} [options] Override http request option.
|
|
3706
4706
|
* @throws {RequiredError}
|
|
@@ -3776,6 +4776,214 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3776
4776
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3777
4777
|
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration)
|
|
3778
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};
|
|
4968
|
+
const localVarHeaderParameter = {} as any;
|
|
4969
|
+
const localVarQueryParameter = {} as any;
|
|
4970
|
+
|
|
4971
|
+
// authentication Roles required
|
|
4972
|
+
|
|
4973
|
+
// authentication BearerToken required
|
|
4974
|
+
// http bearer authentication required
|
|
4975
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4976
|
+
|
|
4977
|
+
if (searchId !== undefined) {
|
|
4978
|
+
localVarQueryParameter['searchId'] = searchId;
|
|
4979
|
+
}
|
|
4980
|
+
|
|
4981
|
+
|
|
4982
|
+
|
|
4983
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4984
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4985
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4986
|
+
|
|
3779
4987
|
return {
|
|
3780
4988
|
url: toPathString(localVarUrlObj),
|
|
3781
4989
|
options: localVarRequestOptions,
|
|
@@ -3791,6 +4999,27 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3791
4999
|
export const DefaultApiFp = function(configuration?: Configuration) {
|
|
3792
5000
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
|
|
3793
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
|
+
},
|
|
3794
5023
|
/**
|
|
3795
5024
|
* Create an image set.
|
|
3796
5025
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -3812,7 +5041,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3812
5041
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3813
5042
|
},
|
|
3814
5043
|
/**
|
|
3815
|
-
* 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.
|
|
3816
5045
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
3817
5046
|
* @param {*} [options] Override http request option.
|
|
3818
5047
|
* @throws {RequiredError}
|
|
@@ -3832,9 +5061,10 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3832
5061
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3833
5062
|
},
|
|
3834
5063
|
/**
|
|
3835
|
-
* 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.
|
|
3836
5065
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
3837
5066
|
* @param {*} [options] Override http request option.
|
|
5067
|
+
* @deprecated
|
|
3838
5068
|
* @throws {RequiredError}
|
|
3839
5069
|
*/
|
|
3840
5070
|
async v1CreateSearchInstruction(v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
@@ -3871,6 +5101,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3871
5101
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateWebhookTest(v1CreateWebhookTestRequest, options);
|
|
3872
5102
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3873
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
|
+
},
|
|
3874
5114
|
/**
|
|
3875
5115
|
* Delete an image set.
|
|
3876
5116
|
* @param {string} id
|
|
@@ -3931,6 +5171,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3931
5171
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteWebhookConfiguration(id, options);
|
|
3932
5172
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3933
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
|
+
},
|
|
3934
5184
|
/**
|
|
3935
5185
|
* Get an image set.
|
|
3936
5186
|
* @param {string} id
|
|
@@ -4048,7 +5298,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4048
5298
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4049
5299
|
},
|
|
4050
5300
|
/**
|
|
4051
|
-
* Get organization targets see the [create](#
|
|
5301
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
4052
5302
|
* @param {*} [options] Override http request option.
|
|
4053
5303
|
* @throws {RequiredError}
|
|
4054
5304
|
*/
|
|
@@ -4155,6 +5405,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4155
5405
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetWebhookLogs(webhookId, limit, offset, options);
|
|
4156
5406
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4157
5407
|
},
|
|
5408
|
+
/**
|
|
5409
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
5410
|
+
* @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
|
|
5411
|
+
* @param {*} [options] Override http request option.
|
|
5412
|
+
* @throws {RequiredError}
|
|
5413
|
+
*/
|
|
5414
|
+
async v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
5415
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest, options);
|
|
5416
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5417
|
+
},
|
|
4158
5418
|
/**
|
|
4159
5419
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
4160
5420
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -4176,7 +5436,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4176
5436
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4177
5437
|
},
|
|
4178
5438
|
/**
|
|
4179
|
-
* Update satellite target.
|
|
5439
|
+
* Update a private satellite target.
|
|
4180
5440
|
* @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
|
|
4181
5441
|
* @param {*} [options] Override http request option.
|
|
4182
5442
|
* @throws {RequiredError}
|
|
@@ -4195,6 +5455,56 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4195
5455
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1UpdateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options);
|
|
4196
5456
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4197
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
|
+
},
|
|
4198
5508
|
}
|
|
4199
5509
|
};
|
|
4200
5510
|
|
|
@@ -4205,6 +5515,25 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4205
5515
|
export const DefaultApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
4206
5516
|
const localVarFp = DefaultApiFp(configuration)
|
|
4207
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
|
+
},
|
|
4208
5537
|
/**
|
|
4209
5538
|
* Create an image set.
|
|
4210
5539
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -4224,7 +5553,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4224
5553
|
return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(axios, basePath));
|
|
4225
5554
|
},
|
|
4226
5555
|
/**
|
|
4227
|
-
* 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.
|
|
4228
5557
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
4229
5558
|
* @param {*} [options] Override http request option.
|
|
4230
5559
|
* @throws {RequiredError}
|
|
@@ -4242,9 +5571,10 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4242
5571
|
return localVarFp.v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
4243
5572
|
},
|
|
4244
5573
|
/**
|
|
4245
|
-
* 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.
|
|
4246
5575
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
4247
5576
|
* @param {*} [options] Override http request option.
|
|
5577
|
+
* @deprecated
|
|
4248
5578
|
* @throws {RequiredError}
|
|
4249
5579
|
*/
|
|
4250
5580
|
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
@@ -4277,6 +5607,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4277
5607
|
v1CreateWebhookTest(requestParameters: DefaultApiV1CreateWebhookTestRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4278
5608
|
return localVarFp.v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(axios, basePath));
|
|
4279
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
|
+
},
|
|
4280
5619
|
/**
|
|
4281
5620
|
* Delete an image set.
|
|
4282
5621
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4331,6 +5670,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4331
5670
|
v1DeleteWebhookConfiguration(requestParameters: DefaultApiV1DeleteWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4332
5671
|
return localVarFp.v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4333
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
|
+
},
|
|
4334
5682
|
/**
|
|
4335
5683
|
* Get an image set.
|
|
4336
5684
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -4430,7 +5778,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4430
5778
|
return localVarFp.v1GetOrganizationTarget(requestParameters.organizationTargetId, options).then((request) => request(axios, basePath));
|
|
4431
5779
|
},
|
|
4432
5780
|
/**
|
|
4433
|
-
* Get organization targets see the [create](#
|
|
5781
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
4434
5782
|
* @param {*} [options] Override http request option.
|
|
4435
5783
|
* @throws {RequiredError}
|
|
4436
5784
|
*/
|
|
@@ -4517,6 +5865,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4517
5865
|
v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookLog>> {
|
|
4518
5866
|
return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
|
|
4519
5867
|
},
|
|
5868
|
+
/**
|
|
5869
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
5870
|
+
* @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
|
|
5871
|
+
* @param {*} [options] Override http request option.
|
|
5872
|
+
* @throws {RequiredError}
|
|
5873
|
+
*/
|
|
5874
|
+
v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
5875
|
+
return localVarFp.v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(axios, basePath));
|
|
5876
|
+
},
|
|
4520
5877
|
/**
|
|
4521
5878
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
4522
5879
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -4536,7 +5893,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4536
5893
|
return localVarFp.v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
|
|
4537
5894
|
},
|
|
4538
5895
|
/**
|
|
4539
|
-
* Update satellite target.
|
|
5896
|
+
* Update a private satellite target.
|
|
4540
5897
|
* @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
|
|
4541
5898
|
* @param {*} [options] Override http request option.
|
|
4542
5899
|
* @throws {RequiredError}
|
|
@@ -4553,9 +5910,82 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4553
5910
|
v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4554
5911
|
return localVarFp.v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
4555
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
|
+
},
|
|
4556
5958
|
};
|
|
4557
5959
|
};
|
|
4558
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
|
+
|
|
4559
5989
|
/**
|
|
4560
5990
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
4561
5991
|
* @export
|
|
@@ -4668,6 +6098,20 @@ export interface DefaultApiV1CreateWebhookTestRequest {
|
|
|
4668
6098
|
readonly v1CreateWebhookTestRequest: V1CreateWebhookTestRequest
|
|
4669
6099
|
}
|
|
4670
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
|
+
|
|
4671
6115
|
/**
|
|
4672
6116
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
4673
6117
|
* @export
|
|
@@ -4752,6 +6196,20 @@ export interface DefaultApiV1DeleteWebhookConfigurationRequest {
|
|
|
4752
6196
|
readonly id: string
|
|
4753
6197
|
}
|
|
4754
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
|
+
|
|
4755
6213
|
/**
|
|
4756
6214
|
* Request parameters for v1GetImageSet operation in DefaultApi.
|
|
4757
6215
|
* @export
|
|
@@ -5123,6 +6581,20 @@ export interface DefaultApiV1GetWebhookLogsRequest {
|
|
|
5123
6581
|
readonly offset?: number
|
|
5124
6582
|
}
|
|
5125
6583
|
|
|
6584
|
+
/**
|
|
6585
|
+
* Request parameters for v1PutOrbitProviderTLEOrbit operation in DefaultApi.
|
|
6586
|
+
* @export
|
|
6587
|
+
* @interface DefaultApiV1PutOrbitProviderTLEOrbitRequest
|
|
6588
|
+
*/
|
|
6589
|
+
export interface DefaultApiV1PutOrbitProviderTLEOrbitRequest {
|
|
6590
|
+
/**
|
|
6591
|
+
*
|
|
6592
|
+
* @type {V1PutOrbitProviderTLERequest}
|
|
6593
|
+
* @memberof DefaultApiV1PutOrbitProviderTLEOrbit
|
|
6594
|
+
*/
|
|
6595
|
+
readonly v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest
|
|
6596
|
+
}
|
|
6597
|
+
|
|
5126
6598
|
/**
|
|
5127
6599
|
* Request parameters for v1UpdateEmailConfiguration operation in DefaultApi.
|
|
5128
6600
|
* @export
|
|
@@ -5179,6 +6651,76 @@ export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
|
5179
6651
|
readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest
|
|
5180
6652
|
}
|
|
5181
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
|
+
|
|
5182
6724
|
/**
|
|
5183
6725
|
* DefaultApi - object-oriented interface
|
|
5184
6726
|
* @export
|
|
@@ -5186,6 +6728,29 @@ export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
|
5186
6728
|
* @extends {BaseAPI}
|
|
5187
6729
|
*/
|
|
5188
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
|
+
|
|
5189
6754
|
/**
|
|
5190
6755
|
* Create an image set.
|
|
5191
6756
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -5209,7 +6774,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
5209
6774
|
}
|
|
5210
6775
|
|
|
5211
6776
|
/**
|
|
5212
|
-
* 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.
|
|
5213
6778
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
5214
6779
|
* @param {*} [options] Override http request option.
|
|
5215
6780
|
* @throws {RequiredError}
|
|
@@ -5231,9 +6796,10 @@ export class DefaultApi extends BaseAPI {
|
|
|
5231
6796
|
}
|
|
5232
6797
|
|
|
5233
6798
|
/**
|
|
5234
|
-
* 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.
|
|
5235
6800
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
5236
6801
|
* @param {*} [options] Override http request option.
|
|
6802
|
+
* @deprecated
|
|
5237
6803
|
* @throws {RequiredError}
|
|
5238
6804
|
* @memberof DefaultApi
|
|
5239
6805
|
*/
|
|
@@ -5274,6 +6840,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5274
6840
|
return DefaultApiFp(this.configuration).v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5275
6841
|
}
|
|
5276
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
|
+
|
|
5277
6854
|
/**
|
|
5278
6855
|
* Delete an image set.
|
|
5279
6856
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -5340,6 +6917,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5340
6917
|
return DefaultApiFp(this.configuration).v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
5341
6918
|
}
|
|
5342
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
|
+
|
|
5343
6931
|
/**
|
|
5344
6932
|
* Get an image set.
|
|
5345
6933
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -5461,7 +7049,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
5461
7049
|
}
|
|
5462
7050
|
|
|
5463
7051
|
/**
|
|
5464
|
-
* Get organization targets see the [create](#
|
|
7052
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
5465
7053
|
* @param {*} [options] Override http request option.
|
|
5466
7054
|
* @throws {RequiredError}
|
|
5467
7055
|
* @memberof DefaultApi
|
|
@@ -5568,6 +7156,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5568
7156
|
return DefaultApiFp(this.configuration).v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
|
|
5569
7157
|
}
|
|
5570
7158
|
|
|
7159
|
+
/**
|
|
7160
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
7161
|
+
* @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
|
|
7162
|
+
* @param {*} [options] Override http request option.
|
|
7163
|
+
* @throws {RequiredError}
|
|
7164
|
+
* @memberof DefaultApi
|
|
7165
|
+
*/
|
|
7166
|
+
public v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig) {
|
|
7167
|
+
return DefaultApiFp(this.configuration).v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(this.axios, this.basePath));
|
|
7168
|
+
}
|
|
7169
|
+
|
|
5571
7170
|
/**
|
|
5572
7171
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
5573
7172
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -5591,7 +7190,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
5591
7190
|
}
|
|
5592
7191
|
|
|
5593
7192
|
/**
|
|
5594
|
-
* Update satellite target.
|
|
7193
|
+
* Update a private satellite target.
|
|
5595
7194
|
* @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
|
|
5596
7195
|
* @param {*} [options] Override http request option.
|
|
5597
7196
|
* @throws {RequiredError}
|
|
@@ -5611,6 +7210,61 @@ export class DefaultApi extends BaseAPI {
|
|
|
5611
7210
|
public v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig) {
|
|
5612
7211
|
return DefaultApiFp(this.configuration).v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5613
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
|
+
}
|
|
5614
7268
|
}
|
|
5615
7269
|
|
|
5616
7270
|
|