@ourskyai/sda-api 1.3.5667 → 1.3.8106
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 +2359 -140
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +1764 -136
- package/dist/api.js +949 -56
- 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 +1764 -136
- package/dist/esm/api.js +948 -55
- 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.8106
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -103,7 +103,16 @@ export const FilterType = {
|
|
|
103
103
|
PHOTO_JOHNSON_B: 'PHOTO_JOHNSON_B',
|
|
104
104
|
PHOTO_JOHNSON_V: 'PHOTO_JOHNSON_V',
|
|
105
105
|
PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
|
|
106
|
-
PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
|
|
106
|
+
PHOTO_COUSINS_I: 'PHOTO_COUSINS_I',
|
|
107
|
+
PHOTO_SLOAN_U: 'PHOTO_SLOAN_U',
|
|
108
|
+
PHOTO_SLOAN_G: 'PHOTO_SLOAN_G',
|
|
109
|
+
PHOTO_SLOAN_R: 'PHOTO_SLOAN_R',
|
|
110
|
+
PHOTO_SLOAN_I: 'PHOTO_SLOAN_I',
|
|
111
|
+
PHOTO_SLOAN_Z: 'PHOTO_SLOAN_Z',
|
|
112
|
+
TRIPLE_BAND: 'TRIPLE_BAND',
|
|
113
|
+
QUAD_BAND: 'QUAD_BAND',
|
|
114
|
+
DARK: 'DARK',
|
|
115
|
+
OTHER: 'OTHER'
|
|
107
116
|
} as const;
|
|
108
117
|
|
|
109
118
|
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
@@ -135,6 +144,10 @@ export interface FitsHeader {
|
|
|
135
144
|
*/
|
|
136
145
|
|
|
137
146
|
export const ImageSetType = {
|
|
147
|
+
ASTRONOMICAL: 'ASTRONOMICAL',
|
|
148
|
+
EARTH_ORBITAL: 'EARTH_ORBITAL',
|
|
149
|
+
GNSS_CALIBRATION: 'GNSS_CALIBRATION',
|
|
150
|
+
SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
|
|
138
151
|
ALL_SKY: 'ALL_SKY'
|
|
139
152
|
} as const;
|
|
140
153
|
|
|
@@ -419,6 +432,22 @@ export const SatelliteTargetTrackingStatus = {
|
|
|
419
432
|
export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
|
|
420
433
|
|
|
421
434
|
|
|
435
|
+
/**
|
|
436
|
+
* The reason a search was completed.
|
|
437
|
+
* @export
|
|
438
|
+
* @enum {string}
|
|
439
|
+
*/
|
|
440
|
+
|
|
441
|
+
export const SearchCompletedReason = {
|
|
442
|
+
ALL_HYPOTHESES_TESTED: 'ALL_HYPOTHESES_TESTED',
|
|
443
|
+
FOUND_TARGET: 'FOUND_TARGET',
|
|
444
|
+
CANCELLED: 'CANCELLED',
|
|
445
|
+
FAILED: 'FAILED'
|
|
446
|
+
} as const;
|
|
447
|
+
|
|
448
|
+
export type SearchCompletedReason = typeof SearchCompletedReason[keyof typeof SearchCompletedReason];
|
|
449
|
+
|
|
450
|
+
|
|
422
451
|
/**
|
|
423
452
|
*
|
|
424
453
|
* @export
|
|
@@ -474,6 +503,33 @@ export const TrackingType = {
|
|
|
474
503
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
475
504
|
|
|
476
505
|
|
|
506
|
+
/**
|
|
507
|
+
* A designated volume of space that is not to be observed.
|
|
508
|
+
* @export
|
|
509
|
+
* @interface V1BlackoutVolumeRequest
|
|
510
|
+
*/
|
|
511
|
+
export interface V1BlackoutVolumeRequest {
|
|
512
|
+
/**
|
|
513
|
+
* The reference frame in which the volume is defined.
|
|
514
|
+
* @type {string}
|
|
515
|
+
* @memberof V1BlackoutVolumeRequest
|
|
516
|
+
*/
|
|
517
|
+
'reference_frame': V1BlackoutVolumeRequestReferenceFrameEnum;
|
|
518
|
+
/**
|
|
519
|
+
* The set of 8 points that define the volume, coordinates should be in the selected reference frame.
|
|
520
|
+
* @type {Array<V1Point>}
|
|
521
|
+
* @memberof V1BlackoutVolumeRequest
|
|
522
|
+
*/
|
|
523
|
+
'points': Array<V1Point>;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
export const V1BlackoutVolumeRequestReferenceFrameEnum = {
|
|
527
|
+
ECI_J2000: 'ECI_J2000',
|
|
528
|
+
ECEF: 'ECEF'
|
|
529
|
+
} as const;
|
|
530
|
+
|
|
531
|
+
export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeRequestReferenceFrameEnum[keyof typeof V1BlackoutVolumeRequestReferenceFrameEnum];
|
|
532
|
+
|
|
477
533
|
/**
|
|
478
534
|
*
|
|
479
535
|
* @export
|
|
@@ -486,9 +542,47 @@ export interface V1CreateImageSetImageRequest {
|
|
|
486
542
|
* @memberof V1CreateImageSetImageRequest
|
|
487
543
|
*/
|
|
488
544
|
'imageSetId': string;
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @type {V1ImageFileType}
|
|
548
|
+
* @memberof V1CreateImageSetImageRequest
|
|
549
|
+
*/
|
|
550
|
+
'imageFileType'?: V1ImageFileType;
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @type {number}
|
|
554
|
+
* @memberof V1CreateImageSetImageRequest
|
|
555
|
+
*/
|
|
556
|
+
'binning'?: number;
|
|
557
|
+
/**
|
|
558
|
+
*
|
|
559
|
+
* @type {number}
|
|
560
|
+
* @memberof V1CreateImageSetImageRequest
|
|
561
|
+
*/
|
|
562
|
+
'exposureLength'?: number;
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @type {string}
|
|
566
|
+
* @memberof V1CreateImageSetImageRequest
|
|
567
|
+
*/
|
|
568
|
+
'imageSha'?: string;
|
|
569
|
+
/**
|
|
570
|
+
*
|
|
571
|
+
* @type {number}
|
|
572
|
+
* @memberof V1CreateImageSetImageRequest
|
|
573
|
+
*/
|
|
574
|
+
'imageSizeMb'?: number;
|
|
575
|
+
/**
|
|
576
|
+
*
|
|
577
|
+
* @type {string}
|
|
578
|
+
* @memberof V1CreateImageSetImageRequest
|
|
579
|
+
*/
|
|
580
|
+
'capturedAt'?: string;
|
|
489
581
|
}
|
|
582
|
+
|
|
583
|
+
|
|
490
584
|
/**
|
|
491
|
-
*
|
|
585
|
+
* Response from image creation, with image ID and presigned S3 upload URL.
|
|
492
586
|
* @export
|
|
493
587
|
* @interface V1CreateImageSetImageResponse
|
|
494
588
|
*/
|
|
@@ -817,6 +911,94 @@ export interface V1GroundStationParticipant {
|
|
|
817
911
|
}
|
|
818
912
|
|
|
819
913
|
|
|
914
|
+
/**
|
|
915
|
+
* HFR extracted star from the image
|
|
916
|
+
* @export
|
|
917
|
+
* @interface V1HFRStar
|
|
918
|
+
*/
|
|
919
|
+
export interface V1HFRStar {
|
|
920
|
+
/**
|
|
921
|
+
*
|
|
922
|
+
* @type {V1PixelCoordinates}
|
|
923
|
+
* @memberof V1HFRStar
|
|
924
|
+
*/
|
|
925
|
+
'coordinates'?: V1PixelCoordinates;
|
|
926
|
+
/**
|
|
927
|
+
*
|
|
928
|
+
* @type {number}
|
|
929
|
+
* @memberof V1HFRStar
|
|
930
|
+
*/
|
|
931
|
+
'hfr': number;
|
|
932
|
+
/**
|
|
933
|
+
*
|
|
934
|
+
* @type {number}
|
|
935
|
+
* @memberof V1HFRStar
|
|
936
|
+
*/
|
|
937
|
+
'flux': number;
|
|
938
|
+
}
|
|
939
|
+
/**
|
|
940
|
+
*
|
|
941
|
+
* @export
|
|
942
|
+
* @enum {string}
|
|
943
|
+
*/
|
|
944
|
+
|
|
945
|
+
export const V1ImageFileType = {
|
|
946
|
+
FITS: 'FITS',
|
|
947
|
+
JPG: 'JPG'
|
|
948
|
+
} as const;
|
|
949
|
+
|
|
950
|
+
export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
/**
|
|
954
|
+
*
|
|
955
|
+
* @export
|
|
956
|
+
* @interface V1ImageMetadata
|
|
957
|
+
*/
|
|
958
|
+
export interface V1ImageMetadata {
|
|
959
|
+
/**
|
|
960
|
+
*
|
|
961
|
+
* @type {string}
|
|
962
|
+
* @memberof V1ImageMetadata
|
|
963
|
+
*/
|
|
964
|
+
'id': string;
|
|
965
|
+
/**
|
|
966
|
+
*
|
|
967
|
+
* @type {string}
|
|
968
|
+
* @memberof V1ImageMetadata
|
|
969
|
+
*/
|
|
970
|
+
'imageId': string;
|
|
971
|
+
/**
|
|
972
|
+
*
|
|
973
|
+
* @type {V1PlateSolveResult}
|
|
974
|
+
* @memberof V1ImageMetadata
|
|
975
|
+
*/
|
|
976
|
+
'plateSolveResult': V1PlateSolveResult;
|
|
977
|
+
/**
|
|
978
|
+
* Extracted star features from the image. Used as inputs to plate solving
|
|
979
|
+
* @type {Array<V1HFRStar>}
|
|
980
|
+
* @memberof V1ImageMetadata
|
|
981
|
+
*/
|
|
982
|
+
'inputStars'?: Array<V1HFRStar>;
|
|
983
|
+
/**
|
|
984
|
+
*
|
|
985
|
+
* @type {V1SIPCoefficients}
|
|
986
|
+
* @memberof V1ImageMetadata
|
|
987
|
+
*/
|
|
988
|
+
'sipCoefficients'?: V1SIPCoefficients;
|
|
989
|
+
/**
|
|
990
|
+
* Photometric zero point offset. Add to instrumental magnitude (-2.5*log10(flux)) to get calibrated magnitude in standard photometric system.
|
|
991
|
+
* @type {number}
|
|
992
|
+
* @memberof V1ImageMetadata
|
|
993
|
+
*/
|
|
994
|
+
'photometricZeroPoint'?: number;
|
|
995
|
+
/**
|
|
996
|
+
*
|
|
997
|
+
* @type {string}
|
|
998
|
+
* @memberof V1ImageMetadata
|
|
999
|
+
*/
|
|
1000
|
+
'createdAt': string;
|
|
1001
|
+
}
|
|
820
1002
|
/**
|
|
821
1003
|
* An image set represents a contiguous set of observations of the same target captured by the same node.
|
|
822
1004
|
* @export
|
|
@@ -1055,6 +1237,172 @@ export interface V1ImageSetImage {
|
|
|
1055
1237
|
*/
|
|
1056
1238
|
'predictedStreakLocation'?: V1PredictedStreakLocation;
|
|
1057
1239
|
}
|
|
1240
|
+
/**
|
|
1241
|
+
* Extracted stars that matched during plate solving
|
|
1242
|
+
* @export
|
|
1243
|
+
* @interface V1MatchedStar
|
|
1244
|
+
*/
|
|
1245
|
+
export interface V1MatchedStar {
|
|
1246
|
+
/**
|
|
1247
|
+
* The x-centroid
|
|
1248
|
+
* @type {number}
|
|
1249
|
+
* @memberof V1MatchedStar
|
|
1250
|
+
*/
|
|
1251
|
+
'xCentroid': number;
|
|
1252
|
+
/**
|
|
1253
|
+
* The y-centroid
|
|
1254
|
+
* @type {number}
|
|
1255
|
+
* @memberof V1MatchedStar
|
|
1256
|
+
*/
|
|
1257
|
+
'yCentroid': number;
|
|
1258
|
+
/**
|
|
1259
|
+
* The UCAC4 or GaiaUD number if known
|
|
1260
|
+
* @type {number}
|
|
1261
|
+
* @memberof V1MatchedStar
|
|
1262
|
+
*/
|
|
1263
|
+
'sequenceNumber': number;
|
|
1264
|
+
/**
|
|
1265
|
+
* Extracted magnitude
|
|
1266
|
+
* @type {number}
|
|
1267
|
+
* @memberof V1MatchedStar
|
|
1268
|
+
*/
|
|
1269
|
+
'magnitude': number;
|
|
1270
|
+
/**
|
|
1271
|
+
* The star RA
|
|
1272
|
+
* @type {number}
|
|
1273
|
+
* @memberof V1MatchedStar
|
|
1274
|
+
*/
|
|
1275
|
+
'raRad': number;
|
|
1276
|
+
/**
|
|
1277
|
+
* The star Dec
|
|
1278
|
+
* @type {number}
|
|
1279
|
+
* @memberof V1MatchedStar
|
|
1280
|
+
*/
|
|
1281
|
+
'decRad': number;
|
|
1282
|
+
/**
|
|
1283
|
+
* The calculated offset from the catalog star, if known. 0 otherwise
|
|
1284
|
+
* @type {number}
|
|
1285
|
+
* @memberof V1MatchedStar
|
|
1286
|
+
*/
|
|
1287
|
+
'catalogOffsetRad': number;
|
|
1288
|
+
/**
|
|
1289
|
+
*
|
|
1290
|
+
* @type {number}
|
|
1291
|
+
* @memberof V1MatchedStar
|
|
1292
|
+
*/
|
|
1293
|
+
'catalogOffsetMagnitude'?: number;
|
|
1294
|
+
/**
|
|
1295
|
+
*
|
|
1296
|
+
* @type {number}
|
|
1297
|
+
* @memberof V1MatchedStar
|
|
1298
|
+
*/
|
|
1299
|
+
'flux': number;
|
|
1300
|
+
/**
|
|
1301
|
+
*
|
|
1302
|
+
* @type {number}
|
|
1303
|
+
* @memberof V1MatchedStar
|
|
1304
|
+
*/
|
|
1305
|
+
'hfr': number;
|
|
1306
|
+
}
|
|
1307
|
+
/**
|
|
1308
|
+
*
|
|
1309
|
+
* @export
|
|
1310
|
+
* @interface V1NodeCalibrationResult
|
|
1311
|
+
*/
|
|
1312
|
+
export interface V1NodeCalibrationResult {
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @type {string}
|
|
1316
|
+
* @memberof V1NodeCalibrationResult
|
|
1317
|
+
*/
|
|
1318
|
+
'id': string;
|
|
1319
|
+
/**
|
|
1320
|
+
*
|
|
1321
|
+
* @type {string}
|
|
1322
|
+
* @memberof V1NodeCalibrationResult
|
|
1323
|
+
*/
|
|
1324
|
+
'nodeId': string;
|
|
1325
|
+
/**
|
|
1326
|
+
*
|
|
1327
|
+
* @type {string}
|
|
1328
|
+
* @memberof V1NodeCalibrationResult
|
|
1329
|
+
*/
|
|
1330
|
+
'targetId': string;
|
|
1331
|
+
/**
|
|
1332
|
+
*
|
|
1333
|
+
* @type {string}
|
|
1334
|
+
* @memberof V1NodeCalibrationResult
|
|
1335
|
+
*/
|
|
1336
|
+
'imageId': string;
|
|
1337
|
+
/**
|
|
1338
|
+
* The right ascension of the center of the extracted streak, in radians
|
|
1339
|
+
* @type {number}
|
|
1340
|
+
* @memberof V1NodeCalibrationResult
|
|
1341
|
+
*/
|
|
1342
|
+
'calculatedRaRadians'?: number;
|
|
1343
|
+
/**
|
|
1344
|
+
* The declination of the center of the extracted streak, in radians
|
|
1345
|
+
* @type {number}
|
|
1346
|
+
* @memberof V1NodeCalibrationResult
|
|
1347
|
+
*/
|
|
1348
|
+
'calculatedDecRadians'?: number;
|
|
1349
|
+
/**
|
|
1350
|
+
* Ground truth right ascension in radians, from SP3 file
|
|
1351
|
+
* @type {number}
|
|
1352
|
+
* @memberof V1NodeCalibrationResult
|
|
1353
|
+
*/
|
|
1354
|
+
'groundTruthRaRadians'?: number;
|
|
1355
|
+
/**
|
|
1356
|
+
* Ground truth declination in radians, from SP3 file
|
|
1357
|
+
* @type {number}
|
|
1358
|
+
* @memberof V1NodeCalibrationResult
|
|
1359
|
+
*/
|
|
1360
|
+
'groundTruthDecRadians'?: number;
|
|
1361
|
+
/**
|
|
1362
|
+
* Calculated error in RA, in arc-seconds
|
|
1363
|
+
* @type {number}
|
|
1364
|
+
* @memberof V1NodeCalibrationResult
|
|
1365
|
+
*/
|
|
1366
|
+
'raErrorArcSeconds'?: number;
|
|
1367
|
+
/**
|
|
1368
|
+
* Calculated error in Dec, in arc-seconds
|
|
1369
|
+
* @type {number}
|
|
1370
|
+
* @memberof V1NodeCalibrationResult
|
|
1371
|
+
*/
|
|
1372
|
+
'decErrorArcSeconds'?: number;
|
|
1373
|
+
/**
|
|
1374
|
+
* Total error in RA/Dec, in arc-seconds
|
|
1375
|
+
* @type {number}
|
|
1376
|
+
* @memberof V1NodeCalibrationResult
|
|
1377
|
+
*/
|
|
1378
|
+
'totalErrorArcSeconds'?: number;
|
|
1379
|
+
/**
|
|
1380
|
+
*
|
|
1381
|
+
* @type {string}
|
|
1382
|
+
* @memberof V1NodeCalibrationResult
|
|
1383
|
+
*/
|
|
1384
|
+
'centerTime': string;
|
|
1385
|
+
/**
|
|
1386
|
+
*
|
|
1387
|
+
* @type {V1SatelliteCalibrationFamily}
|
|
1388
|
+
* @memberof V1NodeCalibrationResult
|
|
1389
|
+
*/
|
|
1390
|
+
'calibrationFamily': V1SatelliteCalibrationFamily;
|
|
1391
|
+
/**
|
|
1392
|
+
*
|
|
1393
|
+
* @type {string}
|
|
1394
|
+
* @memberof V1NodeCalibrationResult
|
|
1395
|
+
*/
|
|
1396
|
+
'sp3File': string;
|
|
1397
|
+
/**
|
|
1398
|
+
*
|
|
1399
|
+
* @type {string}
|
|
1400
|
+
* @memberof V1NodeCalibrationResult
|
|
1401
|
+
*/
|
|
1402
|
+
'createdAt': string;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
|
|
1058
1406
|
/**
|
|
1059
1407
|
* Observation Feature
|
|
1060
1408
|
* @export
|
|
@@ -1062,13 +1410,25 @@ export interface V1ImageSetImage {
|
|
|
1062
1410
|
*/
|
|
1063
1411
|
export interface V1ObservationFeature {
|
|
1064
1412
|
/**
|
|
1065
|
-
*
|
|
1413
|
+
* EME2000 right ascension, corrected for stellar aberration [degrees]
|
|
1414
|
+
* @type {number}
|
|
1415
|
+
* @memberof V1ObservationFeature
|
|
1416
|
+
*/
|
|
1417
|
+
'correctedRa'?: number;
|
|
1418
|
+
/**
|
|
1419
|
+
* EME2000 declination, corrected for stellar aberration [degrees]
|
|
1420
|
+
* @type {number}
|
|
1421
|
+
* @memberof V1ObservationFeature
|
|
1422
|
+
*/
|
|
1423
|
+
'correctedDec'?: number;
|
|
1424
|
+
/**
|
|
1425
|
+
* the right ascension in degrees in EME2000 frame, not corrected for stellar aberration
|
|
1066
1426
|
* @type {number}
|
|
1067
1427
|
* @memberof V1ObservationFeature
|
|
1068
1428
|
*/
|
|
1069
1429
|
'ra': number;
|
|
1070
1430
|
/**
|
|
1071
|
-
* the declination in degrees in EME2000 frame
|
|
1431
|
+
* the declination in degrees in EME2000 frame, not corrected for stellar aberration
|
|
1072
1432
|
* @type {number}
|
|
1073
1433
|
* @memberof V1ObservationFeature
|
|
1074
1434
|
*/
|
|
@@ -1295,6 +1655,31 @@ export interface V1ObservationStatus {
|
|
|
1295
1655
|
}
|
|
1296
1656
|
|
|
1297
1657
|
|
|
1658
|
+
/**
|
|
1659
|
+
*
|
|
1660
|
+
* @export
|
|
1661
|
+
* @interface V1ObserverLocation
|
|
1662
|
+
*/
|
|
1663
|
+
export interface V1ObserverLocation {
|
|
1664
|
+
/**
|
|
1665
|
+
*
|
|
1666
|
+
* @type {number}
|
|
1667
|
+
* @memberof V1ObserverLocation
|
|
1668
|
+
*/
|
|
1669
|
+
'latitudeRadians': number;
|
|
1670
|
+
/**
|
|
1671
|
+
*
|
|
1672
|
+
* @type {number}
|
|
1673
|
+
* @memberof V1ObserverLocation
|
|
1674
|
+
*/
|
|
1675
|
+
'longitudeRadians': number;
|
|
1676
|
+
/**
|
|
1677
|
+
*
|
|
1678
|
+
* @type {number}
|
|
1679
|
+
* @memberof V1ObserverLocation
|
|
1680
|
+
*/
|
|
1681
|
+
'elevationMeters': number;
|
|
1682
|
+
}
|
|
1298
1683
|
/**
|
|
1299
1684
|
*
|
|
1300
1685
|
* @export
|
|
@@ -1307,6 +1692,12 @@ export interface V1OrganizationTarget {
|
|
|
1307
1692
|
* @memberof V1OrganizationTarget
|
|
1308
1693
|
*/
|
|
1309
1694
|
'id': string;
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {number}
|
|
1698
|
+
* @memberof V1OrganizationTarget
|
|
1699
|
+
*/
|
|
1700
|
+
'revisitRateMinutes'?: number;
|
|
1310
1701
|
/**
|
|
1311
1702
|
*
|
|
1312
1703
|
* @type {V1SatelliteTarget}
|
|
@@ -1327,23 +1718,182 @@ export interface V1OrganizationTarget {
|
|
|
1327
1718
|
'createdAt': string;
|
|
1328
1719
|
}
|
|
1329
1720
|
/**
|
|
1330
|
-
*
|
|
1721
|
+
* An (x,y) pixel location in the image
|
|
1331
1722
|
* @export
|
|
1332
|
-
* @interface
|
|
1723
|
+
* @interface V1PixelCoordinates
|
|
1333
1724
|
*/
|
|
1334
|
-
export interface
|
|
1725
|
+
export interface V1PixelCoordinates {
|
|
1335
1726
|
/**
|
|
1336
1727
|
*
|
|
1337
1728
|
* @type {number}
|
|
1338
|
-
* @memberof
|
|
1729
|
+
* @memberof V1PixelCoordinates
|
|
1339
1730
|
*/
|
|
1340
|
-
'
|
|
1731
|
+
'x': number;
|
|
1341
1732
|
/**
|
|
1342
1733
|
*
|
|
1343
1734
|
* @type {number}
|
|
1344
|
-
* @memberof
|
|
1735
|
+
* @memberof V1PixelCoordinates
|
|
1345
1736
|
*/
|
|
1346
|
-
'
|
|
1737
|
+
'y': number;
|
|
1738
|
+
}
|
|
1739
|
+
/**
|
|
1740
|
+
* Parameters to create a plane scan to search for a target
|
|
1741
|
+
* @export
|
|
1742
|
+
* @interface V1PlaneScanRequest
|
|
1743
|
+
*/
|
|
1744
|
+
export interface V1PlaneScanRequest {
|
|
1745
|
+
/**
|
|
1746
|
+
*
|
|
1747
|
+
* @type {string}
|
|
1748
|
+
* @memberof V1PlaneScanRequest
|
|
1749
|
+
*/
|
|
1750
|
+
'targetId': string;
|
|
1751
|
+
/**
|
|
1752
|
+
* The angle in degrees to search around the target\'s anomaly- centered on the target\'s prior position.
|
|
1753
|
+
* @type {number}
|
|
1754
|
+
* @memberof V1PlaneScanRequest
|
|
1755
|
+
*/
|
|
1756
|
+
'plusMinusAnomalyAngleDegrees': number;
|
|
1757
|
+
/**
|
|
1758
|
+
* The step size in degrees to search across the specified anomaly angle range
|
|
1759
|
+
* @type {number}
|
|
1760
|
+
* @memberof V1PlaneScanRequest
|
|
1761
|
+
*/
|
|
1762
|
+
'stepSizeDegrees': number;
|
|
1763
|
+
}
|
|
1764
|
+
/**
|
|
1765
|
+
*
|
|
1766
|
+
* @export
|
|
1767
|
+
* @interface V1PlateSolveResult
|
|
1768
|
+
*/
|
|
1769
|
+
export interface V1PlateSolveResult {
|
|
1770
|
+
/**
|
|
1771
|
+
*
|
|
1772
|
+
* @type {V1PlateSolveStatus}
|
|
1773
|
+
* @memberof V1PlateSolveResult
|
|
1774
|
+
*/
|
|
1775
|
+
'status'?: V1PlateSolveStatus;
|
|
1776
|
+
/**
|
|
1777
|
+
*
|
|
1778
|
+
* @type {Array<V1MatchedStar>}
|
|
1779
|
+
* @memberof V1PlateSolveResult
|
|
1780
|
+
*/
|
|
1781
|
+
'matchedStars'?: Array<V1MatchedStar>;
|
|
1782
|
+
/**
|
|
1783
|
+
* The number of pixels in X directions
|
|
1784
|
+
* @type {number}
|
|
1785
|
+
* @memberof V1PlateSolveResult
|
|
1786
|
+
*/
|
|
1787
|
+
'pixelWidth': number;
|
|
1788
|
+
/**
|
|
1789
|
+
* The number of pixels in Y directions
|
|
1790
|
+
* @type {number}
|
|
1791
|
+
* @memberof V1PlateSolveResult
|
|
1792
|
+
*/
|
|
1793
|
+
'pixelHeight': number;
|
|
1794
|
+
/**
|
|
1795
|
+
* The number of matched stars
|
|
1796
|
+
* @type {number}
|
|
1797
|
+
* @memberof V1PlateSolveResult
|
|
1798
|
+
*/
|
|
1799
|
+
'numberMatchedStars': number;
|
|
1800
|
+
/**
|
|
1801
|
+
* In radians, the exact RA center when matched
|
|
1802
|
+
* @type {number}
|
|
1803
|
+
* @memberof V1PlateSolveResult
|
|
1804
|
+
*/
|
|
1805
|
+
'centerRightAscensionRadians': number;
|
|
1806
|
+
/**
|
|
1807
|
+
* In radians, the exact Dec center when matched
|
|
1808
|
+
* @type {number}
|
|
1809
|
+
* @memberof V1PlateSolveResult
|
|
1810
|
+
*/
|
|
1811
|
+
'centerDeclinationRadians': number;
|
|
1812
|
+
/**
|
|
1813
|
+
* The approximate plate size in X-direction, in radians
|
|
1814
|
+
* @type {number}
|
|
1815
|
+
* @memberof V1PlateSolveResult
|
|
1816
|
+
*/
|
|
1817
|
+
'xSizeRadians': number;
|
|
1818
|
+
/**
|
|
1819
|
+
* The approximate plate size in Y-direction, in radians
|
|
1820
|
+
* @type {number}
|
|
1821
|
+
* @memberof V1PlateSolveResult
|
|
1822
|
+
*/
|
|
1823
|
+
'ySizeRadians': number;
|
|
1824
|
+
/**
|
|
1825
|
+
* True if there is a valid plate match
|
|
1826
|
+
* @type {boolean}
|
|
1827
|
+
* @memberof V1PlateSolveResult
|
|
1828
|
+
*/
|
|
1829
|
+
'isMatched': boolean;
|
|
1830
|
+
/**
|
|
1831
|
+
*
|
|
1832
|
+
* @type {V1Transformation}
|
|
1833
|
+
* @memberof V1PlateSolveResult
|
|
1834
|
+
*/
|
|
1835
|
+
'transformation': V1Transformation;
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @export
|
|
1842
|
+
* @enum {string}
|
|
1843
|
+
*/
|
|
1844
|
+
|
|
1845
|
+
export const V1PlateSolveStatus = {
|
|
1846
|
+
MATCH_FOUND: 'MATCH_FOUND',
|
|
1847
|
+
NO_MATCH_FOUND: 'NO_MATCH_FOUND',
|
|
1848
|
+
CANCELLED: 'CANCELLED'
|
|
1849
|
+
} as const;
|
|
1850
|
+
|
|
1851
|
+
export type V1PlateSolveStatus = typeof V1PlateSolveStatus[keyof typeof V1PlateSolveStatus];
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
/**
|
|
1855
|
+
* A point in 3D space.
|
|
1856
|
+
* @export
|
|
1857
|
+
* @interface V1Point
|
|
1858
|
+
*/
|
|
1859
|
+
export interface V1Point {
|
|
1860
|
+
/**
|
|
1861
|
+
* The x-coordinate of the point in meters.
|
|
1862
|
+
* @type {number}
|
|
1863
|
+
* @memberof V1Point
|
|
1864
|
+
*/
|
|
1865
|
+
'x': number;
|
|
1866
|
+
/**
|
|
1867
|
+
* The y-coordinate of the point in meters.
|
|
1868
|
+
* @type {number}
|
|
1869
|
+
* @memberof V1Point
|
|
1870
|
+
*/
|
|
1871
|
+
'y': number;
|
|
1872
|
+
/**
|
|
1873
|
+
* The z-coordinate of the point in meters.
|
|
1874
|
+
* @type {number}
|
|
1875
|
+
* @memberof V1Point
|
|
1876
|
+
*/
|
|
1877
|
+
'z': number;
|
|
1878
|
+
}
|
|
1879
|
+
/**
|
|
1880
|
+
*
|
|
1881
|
+
* @export
|
|
1882
|
+
* @interface V1PredictedStreakLocation
|
|
1883
|
+
*/
|
|
1884
|
+
export interface V1PredictedStreakLocation {
|
|
1885
|
+
/**
|
|
1886
|
+
*
|
|
1887
|
+
* @type {number}
|
|
1888
|
+
* @memberof V1PredictedStreakLocation
|
|
1889
|
+
*/
|
|
1890
|
+
'startX'?: number;
|
|
1891
|
+
/**
|
|
1892
|
+
*
|
|
1893
|
+
* @type {number}
|
|
1894
|
+
* @memberof V1PredictedStreakLocation
|
|
1895
|
+
*/
|
|
1896
|
+
'startY'?: number;
|
|
1347
1897
|
/**
|
|
1348
1898
|
*
|
|
1349
1899
|
* @type {number}
|
|
@@ -1406,6 +1956,131 @@ export interface V1PutOrbitProviderTLERequest {
|
|
|
1406
1956
|
*/
|
|
1407
1957
|
'crossSection'?: number;
|
|
1408
1958
|
}
|
|
1959
|
+
/**
|
|
1960
|
+
* 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
|
|
1961
|
+
* @export
|
|
1962
|
+
* @interface V1RicVolumeSearchRequest
|
|
1963
|
+
*/
|
|
1964
|
+
export interface V1RicVolumeSearchRequest {
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
* @type {string}
|
|
1968
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1969
|
+
*/
|
|
1970
|
+
'targetId': string;
|
|
1971
|
+
/**
|
|
1972
|
+
* The radial 3-sigma uncertainty in meters
|
|
1973
|
+
* @type {number}
|
|
1974
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1975
|
+
*/
|
|
1976
|
+
'radial3SigmaMeters': number;
|
|
1977
|
+
/**
|
|
1978
|
+
* The intrack 3-sigma uncertainty in meters
|
|
1979
|
+
* @type {number}
|
|
1980
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1981
|
+
*/
|
|
1982
|
+
'intrack3SigmaMeters': number;
|
|
1983
|
+
/**
|
|
1984
|
+
* The crosstrack 3-sigma uncertainty in meters
|
|
1985
|
+
* @type {number}
|
|
1986
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1987
|
+
*/
|
|
1988
|
+
'crosstrack3SigmaMeters': number;
|
|
1989
|
+
/**
|
|
1990
|
+
* The epoch of the RIC standard deviation- if none is provided the current time is used
|
|
1991
|
+
* @type {string}
|
|
1992
|
+
* @memberof V1RicVolumeSearchRequest
|
|
1993
|
+
*/
|
|
1994
|
+
'ricStdevEpoch'?: string;
|
|
1995
|
+
}
|
|
1996
|
+
/**
|
|
1997
|
+
*
|
|
1998
|
+
* @export
|
|
1999
|
+
* @interface V1SIPCoefficients
|
|
2000
|
+
*/
|
|
2001
|
+
export interface V1SIPCoefficients {
|
|
2002
|
+
/**
|
|
2003
|
+
* Order of the SIP transformation
|
|
2004
|
+
* @type {number}
|
|
2005
|
+
* @memberof V1SIPCoefficients
|
|
2006
|
+
*/
|
|
2007
|
+
'order': number;
|
|
2008
|
+
/**
|
|
2009
|
+
* Forward SIP coefficients matrix A
|
|
2010
|
+
* @type {Array<Array<number>>}
|
|
2011
|
+
* @memberof V1SIPCoefficients
|
|
2012
|
+
*/
|
|
2013
|
+
'A': Array<Array<number>>;
|
|
2014
|
+
/**
|
|
2015
|
+
* Forward SIP coefficients matrix B
|
|
2016
|
+
* @type {Array<Array<number>>}
|
|
2017
|
+
* @memberof V1SIPCoefficients
|
|
2018
|
+
*/
|
|
2019
|
+
'B': Array<Array<number>>;
|
|
2020
|
+
/**
|
|
2021
|
+
* Coordinate description matrix element (1,1) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
2022
|
+
* @type {number}
|
|
2023
|
+
* @memberof V1SIPCoefficients
|
|
2024
|
+
*/
|
|
2025
|
+
'CD1_1': number;
|
|
2026
|
+
/**
|
|
2027
|
+
* Coordinate description matrix element (1,2) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
2028
|
+
* @type {number}
|
|
2029
|
+
* @memberof V1SIPCoefficients
|
|
2030
|
+
*/
|
|
2031
|
+
'CD1_2': number;
|
|
2032
|
+
/**
|
|
2033
|
+
* Coordinate description matrix element (2,1) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
2034
|
+
* @type {number}
|
|
2035
|
+
* @memberof V1SIPCoefficients
|
|
2036
|
+
*/
|
|
2037
|
+
'CD2_1': number;
|
|
2038
|
+
/**
|
|
2039
|
+
* Coordinate description matrix element (2,2) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
2040
|
+
* @type {number}
|
|
2041
|
+
* @memberof V1SIPCoefficients
|
|
2042
|
+
*/
|
|
2043
|
+
'CD2_2': number;
|
|
2044
|
+
/**
|
|
2045
|
+
* X coordinate of the reference pixel
|
|
2046
|
+
* @type {number}
|
|
2047
|
+
* @memberof V1SIPCoefficients
|
|
2048
|
+
*/
|
|
2049
|
+
'coordinateReferencePixelX': number;
|
|
2050
|
+
/**
|
|
2051
|
+
* Y coordinate of the reference pixel
|
|
2052
|
+
* @type {number}
|
|
2053
|
+
* @memberof V1SIPCoefficients
|
|
2054
|
+
*/
|
|
2055
|
+
'coordinateReferencePixelY': number;
|
|
2056
|
+
/**
|
|
2057
|
+
* Right ascension of the reference coordinate in degrees
|
|
2058
|
+
* @type {number}
|
|
2059
|
+
* @memberof V1SIPCoefficients
|
|
2060
|
+
*/
|
|
2061
|
+
'coordinateReferenceRADegrees': number;
|
|
2062
|
+
/**
|
|
2063
|
+
* Declination of the reference coordinate in degrees
|
|
2064
|
+
* @type {number}
|
|
2065
|
+
* @memberof V1SIPCoefficients
|
|
2066
|
+
*/
|
|
2067
|
+
'coordinateReferenceDecDegrees': number;
|
|
2068
|
+
}
|
|
2069
|
+
/**
|
|
2070
|
+
*
|
|
2071
|
+
* @export
|
|
2072
|
+
* @enum {string}
|
|
2073
|
+
*/
|
|
2074
|
+
|
|
2075
|
+
export const V1SatelliteCalibrationFamily = {
|
|
2076
|
+
GPS: 'GPS',
|
|
2077
|
+
ILRS: 'ILRS',
|
|
2078
|
+
SWARM: 'SWARM'
|
|
2079
|
+
} as const;
|
|
2080
|
+
|
|
2081
|
+
export type V1SatelliteCalibrationFamily = typeof V1SatelliteCalibrationFamily[keyof typeof V1SatelliteCalibrationFamily];
|
|
2082
|
+
|
|
2083
|
+
|
|
1409
2084
|
/**
|
|
1410
2085
|
* SatellitePotential
|
|
1411
2086
|
* @export
|
|
@@ -1637,6 +2312,24 @@ export interface V1SatelliteTarget {
|
|
|
1637
2312
|
* @memberof V1SatelliteTarget
|
|
1638
2313
|
*/
|
|
1639
2314
|
'area'?: number;
|
|
2315
|
+
/**
|
|
2316
|
+
* Linked satellite target id on our system. See [POST /v1/satellite-target](#tag/satellite-targets/POST/v1/satellite-target)
|
|
2317
|
+
* @type {string}
|
|
2318
|
+
* @memberof V1SatelliteTarget
|
|
2319
|
+
*/
|
|
2320
|
+
'linkedSatelliteTargetId'?: string;
|
|
2321
|
+
/**
|
|
2322
|
+
*
|
|
2323
|
+
* @type {string}
|
|
2324
|
+
* @memberof V1SatelliteTarget
|
|
2325
|
+
*/
|
|
2326
|
+
'orbitSourceId'?: string;
|
|
2327
|
+
/**
|
|
2328
|
+
*
|
|
2329
|
+
* @type {string}
|
|
2330
|
+
* @memberof V1SatelliteTarget
|
|
2331
|
+
*/
|
|
2332
|
+
'orbitSourceProviderName'?: string;
|
|
1640
2333
|
}
|
|
1641
2334
|
|
|
1642
2335
|
|
|
@@ -1710,6 +2403,93 @@ export interface V1SearchInstructionStep {
|
|
|
1710
2403
|
*/
|
|
1711
2404
|
'durationSeconds': number;
|
|
1712
2405
|
}
|
|
2406
|
+
/**
|
|
2407
|
+
* State vector representing a satellite\'s position and velocity in space.
|
|
2408
|
+
* @export
|
|
2409
|
+
* @interface V1StateVector
|
|
2410
|
+
*/
|
|
2411
|
+
export interface V1StateVector {
|
|
2412
|
+
/**
|
|
2413
|
+
* Unique identifier for the state vector.
|
|
2414
|
+
* @type {string}
|
|
2415
|
+
* @memberof V1StateVector
|
|
2416
|
+
*/
|
|
2417
|
+
'id': string;
|
|
2418
|
+
/**
|
|
2419
|
+
* Identifier of the satellite target this state vector belongs to.
|
|
2420
|
+
* @type {string}
|
|
2421
|
+
* @memberof V1StateVector
|
|
2422
|
+
*/
|
|
2423
|
+
'targetId': string;
|
|
2424
|
+
/**
|
|
2425
|
+
* Position in the X direction in meters.
|
|
2426
|
+
* @type {number}
|
|
2427
|
+
* @memberof V1StateVector
|
|
2428
|
+
*/
|
|
2429
|
+
'posX': number;
|
|
2430
|
+
/**
|
|
2431
|
+
* Position in the Y direction in meters.
|
|
2432
|
+
* @type {number}
|
|
2433
|
+
* @memberof V1StateVector
|
|
2434
|
+
*/
|
|
2435
|
+
'posY': number;
|
|
2436
|
+
/**
|
|
2437
|
+
* Position in the Z direction in meters.
|
|
2438
|
+
* @type {number}
|
|
2439
|
+
* @memberof V1StateVector
|
|
2440
|
+
*/
|
|
2441
|
+
'posZ': number;
|
|
2442
|
+
/**
|
|
2443
|
+
* Velocity in the X direction in meters per second.
|
|
2444
|
+
* @type {number}
|
|
2445
|
+
* @memberof V1StateVector
|
|
2446
|
+
*/
|
|
2447
|
+
'velX': number;
|
|
2448
|
+
/**
|
|
2449
|
+
* Velocity in the Y direction in meters per second.
|
|
2450
|
+
* @type {number}
|
|
2451
|
+
* @memberof V1StateVector
|
|
2452
|
+
*/
|
|
2453
|
+
'velY': number;
|
|
2454
|
+
/**
|
|
2455
|
+
* Velocity in the Z direction in meters per second.
|
|
2456
|
+
* @type {number}
|
|
2457
|
+
* @memberof V1StateVector
|
|
2458
|
+
*/
|
|
2459
|
+
'velZ': number;
|
|
2460
|
+
/**
|
|
2461
|
+
* UTC epoch of the state vector
|
|
2462
|
+
* @type {string}
|
|
2463
|
+
* @memberof V1StateVector
|
|
2464
|
+
*/
|
|
2465
|
+
'epoch': string;
|
|
2466
|
+
/**
|
|
2467
|
+
*
|
|
2468
|
+
* @type {string}
|
|
2469
|
+
* @memberof V1StateVector
|
|
2470
|
+
*/
|
|
2471
|
+
'referenceFrame': V1StateVectorReferenceFrameEnum;
|
|
2472
|
+
/**
|
|
2473
|
+
* Drag coefficient of the satellite- normalized to a 1m^2 cross-sectional area and a 1kg mass.
|
|
2474
|
+
* @type {number}
|
|
2475
|
+
* @memberof V1StateVector
|
|
2476
|
+
*/
|
|
2477
|
+
'dragCoefficient': number;
|
|
2478
|
+
/**
|
|
2479
|
+
* Solar radiation pressure coefficient of the satellite- normalized to a 1m^2 cross-sectional area and a 1kg mass.
|
|
2480
|
+
* @type {number}
|
|
2481
|
+
* @memberof V1StateVector
|
|
2482
|
+
*/
|
|
2483
|
+
'srpCoefficient': number;
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2486
|
+
export const V1StateVectorReferenceFrameEnum = {
|
|
2487
|
+
ECI_J2000: 'ECI_J2000',
|
|
2488
|
+
ECEF: 'ECEF'
|
|
2489
|
+
} as const;
|
|
2490
|
+
|
|
2491
|
+
export type V1StateVectorReferenceFrameEnum = typeof V1StateVectorReferenceFrameEnum[keyof typeof V1StateVectorReferenceFrameEnum];
|
|
2492
|
+
|
|
1713
2493
|
/**
|
|
1714
2494
|
*
|
|
1715
2495
|
* @export
|
|
@@ -1741,7 +2521,7 @@ export interface V1SurveyInstruction {
|
|
|
1741
2521
|
*/
|
|
1742
2522
|
'firstStepAt'?: string;
|
|
1743
2523
|
/**
|
|
1744
|
-
* Each step indicates a sidereal observation attempt at a given (Ra, Dec)
|
|
2524
|
+
* Each step indicates a sidereal observation attempt at a given (Ra, Dec) or local az/el. If az/el is used, a node ID must also be provided.
|
|
1745
2525
|
* @type {Array<V1SurveyInstructionStep>}
|
|
1746
2526
|
* @memberof V1SurveyInstruction
|
|
1747
2527
|
*/
|
|
@@ -1758,13 +2538,37 @@ export interface V1SurveyInstructionStep {
|
|
|
1758
2538
|
* @type {number}
|
|
1759
2539
|
* @memberof V1SurveyInstructionStep
|
|
1760
2540
|
*/
|
|
1761
|
-
'ra'
|
|
2541
|
+
'ra'?: number;
|
|
1762
2542
|
/**
|
|
1763
2543
|
*
|
|
1764
2544
|
* @type {number}
|
|
1765
2545
|
* @memberof V1SurveyInstructionStep
|
|
1766
2546
|
*/
|
|
1767
|
-
'dec'
|
|
2547
|
+
'dec'?: number;
|
|
2548
|
+
/**
|
|
2549
|
+
*
|
|
2550
|
+
* @type {number}
|
|
2551
|
+
* @memberof V1SurveyInstructionStep
|
|
2552
|
+
*/
|
|
2553
|
+
'az'?: number;
|
|
2554
|
+
/**
|
|
2555
|
+
*
|
|
2556
|
+
* @type {number}
|
|
2557
|
+
* @memberof V1SurveyInstructionStep
|
|
2558
|
+
*/
|
|
2559
|
+
'el'?: number;
|
|
2560
|
+
/**
|
|
2561
|
+
*
|
|
2562
|
+
* @type {string}
|
|
2563
|
+
* @memberof V1SurveyInstructionStep
|
|
2564
|
+
*/
|
|
2565
|
+
'nodeId'?: string;
|
|
2566
|
+
/**
|
|
2567
|
+
*
|
|
2568
|
+
* @type {string}
|
|
2569
|
+
* @memberof V1SurveyInstructionStep
|
|
2570
|
+
*/
|
|
2571
|
+
'time'?: string;
|
|
1768
2572
|
/**
|
|
1769
2573
|
*
|
|
1770
2574
|
* @type {number}
|
|
@@ -1873,16 +2677,259 @@ export interface V1Tdm {
|
|
|
1873
2677
|
/**
|
|
1874
2678
|
*
|
|
1875
2679
|
* @export
|
|
1876
|
-
* @interface
|
|
2680
|
+
* @interface V1TimeTaggedRaDec
|
|
1877
2681
|
*/
|
|
1878
|
-
export interface
|
|
2682
|
+
export interface V1TimeTaggedRaDec {
|
|
1879
2683
|
/**
|
|
1880
2684
|
*
|
|
1881
|
-
* @type {
|
|
1882
|
-
* @memberof
|
|
2685
|
+
* @type {number}
|
|
2686
|
+
* @memberof V1TimeTaggedRaDec
|
|
1883
2687
|
*/
|
|
1884
|
-
'
|
|
1885
|
-
|
|
2688
|
+
'raRadians': number;
|
|
2689
|
+
/**
|
|
2690
|
+
*
|
|
2691
|
+
* @type {number}
|
|
2692
|
+
* @memberof V1TimeTaggedRaDec
|
|
2693
|
+
*/
|
|
2694
|
+
'decRadians': number;
|
|
2695
|
+
/**
|
|
2696
|
+
*
|
|
2697
|
+
* @type {number}
|
|
2698
|
+
* @memberof V1TimeTaggedRaDec
|
|
2699
|
+
*/
|
|
2700
|
+
'magnitude'?: number;
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
* @type {number}
|
|
2704
|
+
* @memberof V1TimeTaggedRaDec
|
|
2705
|
+
*/
|
|
2706
|
+
'solarPhaseAngleRadians'?: number;
|
|
2707
|
+
/**
|
|
2708
|
+
*
|
|
2709
|
+
* @type {string}
|
|
2710
|
+
* @memberof V1TimeTaggedRaDec
|
|
2711
|
+
*/
|
|
2712
|
+
'epoch': string;
|
|
2713
|
+
}
|
|
2714
|
+
/**
|
|
2715
|
+
*
|
|
2716
|
+
* @export
|
|
2717
|
+
* @interface V1Track
|
|
2718
|
+
*/
|
|
2719
|
+
export interface V1Track {
|
|
2720
|
+
/**
|
|
2721
|
+
*
|
|
2722
|
+
* @type {string}
|
|
2723
|
+
* @memberof V1Track
|
|
2724
|
+
*/
|
|
2725
|
+
'id': string;
|
|
2726
|
+
/**
|
|
2727
|
+
*
|
|
2728
|
+
* @type {Array<V1TimeTaggedRaDec>}
|
|
2729
|
+
* @memberof V1Track
|
|
2730
|
+
*/
|
|
2731
|
+
'observations': Array<V1TimeTaggedRaDec>;
|
|
2732
|
+
/**
|
|
2733
|
+
*
|
|
2734
|
+
* @type {V1ObserverLocation}
|
|
2735
|
+
* @memberof V1Track
|
|
2736
|
+
*/
|
|
2737
|
+
'observerLocation': V1ObserverLocation;
|
|
2738
|
+
}
|
|
2739
|
+
/**
|
|
2740
|
+
* Plate to catplate transform with 3rd-order distortion
|
|
2741
|
+
* @export
|
|
2742
|
+
* @interface V1Transformation
|
|
2743
|
+
*/
|
|
2744
|
+
export interface V1Transformation {
|
|
2745
|
+
/**
|
|
2746
|
+
* Affine transformation coefficient
|
|
2747
|
+
* @type {number}
|
|
2748
|
+
* @memberof V1Transformation
|
|
2749
|
+
*/
|
|
2750
|
+
'a': number;
|
|
2751
|
+
/**
|
|
2752
|
+
* Affine transformation coefficient
|
|
2753
|
+
* @type {number}
|
|
2754
|
+
* @memberof V1Transformation
|
|
2755
|
+
*/
|
|
2756
|
+
'b': number;
|
|
2757
|
+
/**
|
|
2758
|
+
* Affine transformation coefficient
|
|
2759
|
+
* @type {number}
|
|
2760
|
+
* @memberof V1Transformation
|
|
2761
|
+
*/
|
|
2762
|
+
'c': number;
|
|
2763
|
+
/**
|
|
2764
|
+
* Affine transformation coefficient
|
|
2765
|
+
* @type {number}
|
|
2766
|
+
* @memberof V1Transformation
|
|
2767
|
+
*/
|
|
2768
|
+
'd': number;
|
|
2769
|
+
/**
|
|
2770
|
+
* Horizontal offset for the affine transformation
|
|
2771
|
+
* @type {number}
|
|
2772
|
+
* @memberof V1Transformation
|
|
2773
|
+
*/
|
|
2774
|
+
'u0': number;
|
|
2775
|
+
/**
|
|
2776
|
+
* Vertical offset for the affine transformation
|
|
2777
|
+
* @type {number}
|
|
2778
|
+
* @memberof V1Transformation
|
|
2779
|
+
*/
|
|
2780
|
+
'v0': number;
|
|
2781
|
+
/**
|
|
2782
|
+
* Scale
|
|
2783
|
+
* @type {number}
|
|
2784
|
+
* @memberof V1Transformation
|
|
2785
|
+
*/
|
|
2786
|
+
'alpha'?: number;
|
|
2787
|
+
/**
|
|
2788
|
+
* Stretch
|
|
2789
|
+
* @type {number}
|
|
2790
|
+
* @memberof V1Transformation
|
|
2791
|
+
*/
|
|
2792
|
+
'beta': number;
|
|
2793
|
+
/**
|
|
2794
|
+
* Rotation
|
|
2795
|
+
* @type {number}
|
|
2796
|
+
* @memberof V1Transformation
|
|
2797
|
+
*/
|
|
2798
|
+
'theta': number;
|
|
2799
|
+
/**
|
|
2800
|
+
* Skew
|
|
2801
|
+
* @type {number}
|
|
2802
|
+
* @memberof V1Transformation
|
|
2803
|
+
*/
|
|
2804
|
+
'gamma': number;
|
|
2805
|
+
/**
|
|
2806
|
+
* 3rd-order plate distortion, X-direction
|
|
2807
|
+
* @type {number}
|
|
2808
|
+
* @memberof V1Transformation
|
|
2809
|
+
*/
|
|
2810
|
+
'epsX': number;
|
|
2811
|
+
/**
|
|
2812
|
+
* 3rd-order plate distortion, Y-direction
|
|
2813
|
+
* @type {number}
|
|
2814
|
+
* @memberof V1Transformation
|
|
2815
|
+
*/
|
|
2816
|
+
'epsY': number;
|
|
2817
|
+
/**
|
|
2818
|
+
* The reference RA and Dec, in radians, at U = 0, V = 0
|
|
2819
|
+
* @type {number}
|
|
2820
|
+
* @memberof V1Transformation
|
|
2821
|
+
*/
|
|
2822
|
+
'raCen': number;
|
|
2823
|
+
/**
|
|
2824
|
+
* The reference RA and Dec, in radians, at U = 0, V = 0
|
|
2825
|
+
* @type {number}
|
|
2826
|
+
* @memberof V1Transformation
|
|
2827
|
+
*/
|
|
2828
|
+
'decCen': number;
|
|
2829
|
+
/**
|
|
2830
|
+
* 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
|
|
2831
|
+
* @type {number}
|
|
2832
|
+
* @memberof V1Transformation
|
|
2833
|
+
*/
|
|
2834
|
+
'px': number;
|
|
2835
|
+
/**
|
|
2836
|
+
* 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
|
|
2837
|
+
* @type {number}
|
|
2838
|
+
* @memberof V1Transformation
|
|
2839
|
+
*/
|
|
2840
|
+
'py': number;
|
|
2841
|
+
/**
|
|
2842
|
+
* The U-coefficients of the full N-th order match, if available. UCoef(0..NumCoef)
|
|
2843
|
+
* @type {Array<number>}
|
|
2844
|
+
* @memberof V1Transformation
|
|
2845
|
+
*/
|
|
2846
|
+
'uCoef': Array<number>;
|
|
2847
|
+
/**
|
|
2848
|
+
* The V-coefficients of the full N-th order match, if available. VCoef(0..NumCoef)
|
|
2849
|
+
* @type {Array<number>}
|
|
2850
|
+
* @memberof V1Transformation
|
|
2851
|
+
*/
|
|
2852
|
+
'vCoef': Array<number>;
|
|
2853
|
+
/**
|
|
2854
|
+
* The X-coefficients of the full N-th order match, if available. XCoef(0..NumCoef)
|
|
2855
|
+
* @type {Array<number>}
|
|
2856
|
+
* @memberof V1Transformation
|
|
2857
|
+
*/
|
|
2858
|
+
'xCoef': Array<number>;
|
|
2859
|
+
/**
|
|
2860
|
+
* The Y-coefficients of the full N-th order match, if available. YCoef(0..NumCoef)
|
|
2861
|
+
* @type {Array<number>}
|
|
2862
|
+
* @memberof V1Transformation
|
|
2863
|
+
*/
|
|
2864
|
+
'yCoef': Array<number>;
|
|
2865
|
+
/**
|
|
2866
|
+
* The number of coefficients + 1. 0 if there is no high-order match
|
|
2867
|
+
* @type {number}
|
|
2868
|
+
* @memberof V1Transformation
|
|
2869
|
+
*/
|
|
2870
|
+
'numCoef': number;
|
|
2871
|
+
/**
|
|
2872
|
+
* The RMS fit error, in radians, for the simple affine + third-order distortion transform
|
|
2873
|
+
* @type {number}
|
|
2874
|
+
* @memberof V1Transformation
|
|
2875
|
+
*/
|
|
2876
|
+
'fitErrorRadians': number;
|
|
2877
|
+
/**
|
|
2878
|
+
* The RMS fit error, in pixels, for the simple affine + third-order distortion transform
|
|
2879
|
+
* @type {number}
|
|
2880
|
+
* @memberof V1Transformation
|
|
2881
|
+
*/
|
|
2882
|
+
'fitErrorPix': number;
|
|
2883
|
+
/**
|
|
2884
|
+
* The RMS fit error, in radians, for the full third-order transform
|
|
2885
|
+
* @type {number}
|
|
2886
|
+
* @memberof V1Transformation
|
|
2887
|
+
*/
|
|
2888
|
+
'fitError3Radians': number;
|
|
2889
|
+
/**
|
|
2890
|
+
* The RMS fit error, in pixels, for the full third-order transform
|
|
2891
|
+
* @type {number}
|
|
2892
|
+
* @memberof V1Transformation
|
|
2893
|
+
*/
|
|
2894
|
+
'fitError3Pix': number;
|
|
2895
|
+
/**
|
|
2896
|
+
* The difference in scale values between the X and Y axes, used to test the match geometry
|
|
2897
|
+
* @type {number}
|
|
2898
|
+
* @memberof V1Transformation
|
|
2899
|
+
*/
|
|
2900
|
+
'stretch': number;
|
|
2901
|
+
/**
|
|
2902
|
+
* The image skew, used to test the match geometry
|
|
2903
|
+
* @type {number}
|
|
2904
|
+
* @memberof V1Transformation
|
|
2905
|
+
*/
|
|
2906
|
+
'skew': number;
|
|
2907
|
+
/**
|
|
2908
|
+
* The matched image scale, in pixels per radian
|
|
2909
|
+
* @type {number}
|
|
2910
|
+
* @memberof V1Transformation
|
|
2911
|
+
*/
|
|
2912
|
+
'scale': number;
|
|
2913
|
+
/**
|
|
2914
|
+
* The image rotation, in degrees, agrees with PinPoint
|
|
2915
|
+
* @type {number}
|
|
2916
|
+
* @memberof V1Transformation
|
|
2917
|
+
*/
|
|
2918
|
+
'rotation': number;
|
|
2919
|
+
}
|
|
2920
|
+
/**
|
|
2921
|
+
*
|
|
2922
|
+
* @export
|
|
2923
|
+
* @interface V1UpdateEmailConfigurationRequest
|
|
2924
|
+
*/
|
|
2925
|
+
export interface V1UpdateEmailConfigurationRequest {
|
|
2926
|
+
/**
|
|
2927
|
+
*
|
|
2928
|
+
* @type {Array<string>}
|
|
2929
|
+
* @memberof V1UpdateEmailConfigurationRequest
|
|
2930
|
+
*/
|
|
2931
|
+
'emails': Array<string>;
|
|
2932
|
+
}
|
|
1886
2933
|
/**
|
|
1887
2934
|
*
|
|
1888
2935
|
* @export
|
|
@@ -2074,6 +3121,45 @@ export interface V1WebhookLog {
|
|
|
2074
3121
|
*/
|
|
2075
3122
|
'log'?: string;
|
|
2076
3123
|
}
|
|
3124
|
+
/**
|
|
3125
|
+
* V2 Search- created by either RIC volumetric search or plane scan.
|
|
3126
|
+
* @export
|
|
3127
|
+
* @interface V2Search
|
|
3128
|
+
*/
|
|
3129
|
+
export interface V2Search {
|
|
3130
|
+
/**
|
|
3131
|
+
*
|
|
3132
|
+
* @type {string}
|
|
3133
|
+
* @memberof V2Search
|
|
3134
|
+
*/
|
|
3135
|
+
'searchId': string;
|
|
3136
|
+
/**
|
|
3137
|
+
*
|
|
3138
|
+
* @type {string}
|
|
3139
|
+
* @memberof V2Search
|
|
3140
|
+
*/
|
|
3141
|
+
'targetId': string;
|
|
3142
|
+
/**
|
|
3143
|
+
*
|
|
3144
|
+
* @type {string}
|
|
3145
|
+
* @memberof V2Search
|
|
3146
|
+
*/
|
|
3147
|
+
'completedAt'?: string | null;
|
|
3148
|
+
/**
|
|
3149
|
+
*
|
|
3150
|
+
* @type {SearchCompletedReason}
|
|
3151
|
+
* @memberof V2Search
|
|
3152
|
+
*/
|
|
3153
|
+
'completedReason'?: SearchCompletedReason;
|
|
3154
|
+
/**
|
|
3155
|
+
*
|
|
3156
|
+
* @type {Array<string>}
|
|
3157
|
+
* @memberof V2Search
|
|
3158
|
+
*/
|
|
3159
|
+
'observationSequenceResultIds': Array<string>;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
|
|
2077
3163
|
/**
|
|
2078
3164
|
*
|
|
2079
3165
|
* @export
|
|
@@ -2125,7 +3211,10 @@ export const WebhookEvent = {
|
|
|
2125
3211
|
V1_OBSERVATION_STATUS_UPDATED: 'V1_OBSERVATION_STATUS_UPDATED',
|
|
2126
3212
|
V1_EO_CALIBRATION_OBSERVATION_CREATED: 'V1_EO_CALIBRATION_OBSERVATION_CREATED',
|
|
2127
3213
|
V1_NODE_CALIBRATION_DATA_CREATED: 'V1_NODE_CALIBRATION_DATA_CREATED',
|
|
2128
|
-
V1_NODE_UPDATED: 'V1_NODE_UPDATED'
|
|
3214
|
+
V1_NODE_UPDATED: 'V1_NODE_UPDATED',
|
|
3215
|
+
V1_EO_SKY_IMAGERY_CREATED: 'V1_EO_SKY_IMAGERY_CREATED',
|
|
3216
|
+
V2_SEARCH_COMPLETED: 'V2_SEARCH_COMPLETED',
|
|
3217
|
+
V1_UCT_CREATED: 'V1_UCT_CREATED'
|
|
2129
3218
|
} as const;
|
|
2130
3219
|
|
|
2131
3220
|
export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
|
|
@@ -2138,6 +3227,90 @@ export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
|
|
|
2138
3227
|
*/
|
|
2139
3228
|
export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
2140
3229
|
return {
|
|
3230
|
+
/**
|
|
3231
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
3232
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
3233
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
3234
|
+
* @param {*} [options] Override http request option.
|
|
3235
|
+
* @throws {RequiredError}
|
|
3236
|
+
*/
|
|
3237
|
+
getUncorrelatedTracks: async (after?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3238
|
+
const localVarPath = `/v1/uncorrelated-tracks`;
|
|
3239
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3240
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3241
|
+
let baseOptions;
|
|
3242
|
+
if (configuration) {
|
|
3243
|
+
baseOptions = configuration.baseOptions;
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3247
|
+
const localVarHeaderParameter = {} as any;
|
|
3248
|
+
const localVarQueryParameter = {} as any;
|
|
3249
|
+
|
|
3250
|
+
// authentication Roles required
|
|
3251
|
+
|
|
3252
|
+
// authentication BearerToken required
|
|
3253
|
+
// http bearer authentication required
|
|
3254
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3255
|
+
|
|
3256
|
+
if (after !== undefined) {
|
|
3257
|
+
localVarQueryParameter['after'] = (after as any instanceof Date) ?
|
|
3258
|
+
(after as any).toISOString() :
|
|
3259
|
+
after;
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
|
|
3263
|
+
|
|
3264
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3265
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3266
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3267
|
+
|
|
3268
|
+
return {
|
|
3269
|
+
url: toPathString(localVarUrlObj),
|
|
3270
|
+
options: localVarRequestOptions,
|
|
3271
|
+
};
|
|
3272
|
+
},
|
|
3273
|
+
/**
|
|
3274
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
3275
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
3276
|
+
* @param {*} [options] Override http request option.
|
|
3277
|
+
* @throws {RequiredError}
|
|
3278
|
+
*/
|
|
3279
|
+
v1CreateBlackoutVolume: async (v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3280
|
+
// verify required parameter 'v1BlackoutVolumeRequest' is not null or undefined
|
|
3281
|
+
assertParamExists('v1CreateBlackoutVolume', 'v1BlackoutVolumeRequest', v1BlackoutVolumeRequest)
|
|
3282
|
+
const localVarPath = `/v2/search/blackout-volume`;
|
|
3283
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3284
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3285
|
+
let baseOptions;
|
|
3286
|
+
if (configuration) {
|
|
3287
|
+
baseOptions = configuration.baseOptions;
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3291
|
+
const localVarHeaderParameter = {} as any;
|
|
3292
|
+
const localVarQueryParameter = {} as any;
|
|
3293
|
+
|
|
3294
|
+
// authentication Roles required
|
|
3295
|
+
|
|
3296
|
+
// authentication BearerToken required
|
|
3297
|
+
// http bearer authentication required
|
|
3298
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3299
|
+
|
|
3300
|
+
|
|
3301
|
+
|
|
3302
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3303
|
+
|
|
3304
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3305
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3306
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3307
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1BlackoutVolumeRequest, localVarRequestOptions, configuration)
|
|
3308
|
+
|
|
3309
|
+
return {
|
|
3310
|
+
url: toPathString(localVarUrlObj),
|
|
3311
|
+
options: localVarRequestOptions,
|
|
3312
|
+
};
|
|
3313
|
+
},
|
|
2141
3314
|
/**
|
|
2142
3315
|
* Create an image set.
|
|
2143
3316
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2221,7 +3394,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2221
3394
|
};
|
|
2222
3395
|
},
|
|
2223
3396
|
/**
|
|
2224
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
3397
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
2225
3398
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
2226
3399
|
* @param {*} [options] Override http request option.
|
|
2227
3400
|
* @throws {RequiredError}
|
|
@@ -2303,9 +3476,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2303
3476
|
};
|
|
2304
3477
|
},
|
|
2305
3478
|
/**
|
|
2306
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3479
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2307
3480
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
2308
3481
|
* @param {*} [options] Override http request option.
|
|
3482
|
+
* @deprecated
|
|
2309
3483
|
* @throws {RequiredError}
|
|
2310
3484
|
*/
|
|
2311
3485
|
v1CreateSearchInstruction: async (v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -2467,15 +3641,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2467
3641
|
};
|
|
2468
3642
|
},
|
|
2469
3643
|
/**
|
|
2470
|
-
* Delete
|
|
3644
|
+
* Delete a blackout volume.
|
|
2471
3645
|
* @param {string} id
|
|
2472
3646
|
* @param {*} [options] Override http request option.
|
|
2473
3647
|
* @throws {RequiredError}
|
|
2474
3648
|
*/
|
|
2475
|
-
|
|
3649
|
+
v1DeleteBlackoutVolume: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2476
3650
|
// verify required parameter 'id' is not null or undefined
|
|
2477
|
-
assertParamExists('
|
|
2478
|
-
const localVarPath = `/
|
|
3651
|
+
assertParamExists('v1DeleteBlackoutVolume', 'id', id)
|
|
3652
|
+
const localVarPath = `/v2/search/blackout-volume`;
|
|
2479
3653
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2480
3654
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2481
3655
|
let baseOptions;
|
|
@@ -2509,15 +3683,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2509
3683
|
};
|
|
2510
3684
|
},
|
|
2511
3685
|
/**
|
|
2512
|
-
* Delete an image.
|
|
2513
|
-
* @param {string}
|
|
3686
|
+
* Delete an image set.
|
|
3687
|
+
* @param {string} id
|
|
2514
3688
|
* @param {*} [options] Override http request option.
|
|
2515
3689
|
* @throws {RequiredError}
|
|
2516
3690
|
*/
|
|
2517
|
-
|
|
2518
|
-
// verify required parameter '
|
|
2519
|
-
assertParamExists('
|
|
2520
|
-
const localVarPath = `/v1/image-set
|
|
3691
|
+
v1DeleteImageSet: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3692
|
+
// verify required parameter 'id' is not null or undefined
|
|
3693
|
+
assertParamExists('v1DeleteImageSet', 'id', id)
|
|
3694
|
+
const localVarPath = `/v1/image-set`;
|
|
2521
3695
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2522
3696
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2523
3697
|
let baseOptions;
|
|
@@ -2535,8 +3709,8 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2535
3709
|
// http bearer authentication required
|
|
2536
3710
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2537
3711
|
|
|
2538
|
-
if (
|
|
2539
|
-
localVarQueryParameter['
|
|
3712
|
+
if (id !== undefined) {
|
|
3713
|
+
localVarQueryParameter['id'] = id;
|
|
2540
3714
|
}
|
|
2541
3715
|
|
|
2542
3716
|
|
|
@@ -2551,12 +3725,54 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2551
3725
|
};
|
|
2552
3726
|
},
|
|
2553
3727
|
/**
|
|
2554
|
-
* Delete an
|
|
2555
|
-
* @param {string}
|
|
3728
|
+
* Delete an image.
|
|
3729
|
+
* @param {string} imageId
|
|
2556
3730
|
* @param {*} [options] Override http request option.
|
|
2557
3731
|
* @throws {RequiredError}
|
|
2558
3732
|
*/
|
|
2559
|
-
|
|
3733
|
+
v1DeleteImageSetImage: async (imageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3734
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
3735
|
+
assertParamExists('v1DeleteImageSetImage', 'imageId', imageId)
|
|
3736
|
+
const localVarPath = `/v1/image-set-image`;
|
|
3737
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3738
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3739
|
+
let baseOptions;
|
|
3740
|
+
if (configuration) {
|
|
3741
|
+
baseOptions = configuration.baseOptions;
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
3745
|
+
const localVarHeaderParameter = {} as any;
|
|
3746
|
+
const localVarQueryParameter = {} as any;
|
|
3747
|
+
|
|
3748
|
+
// authentication Roles required
|
|
3749
|
+
|
|
3750
|
+
// authentication BearerToken required
|
|
3751
|
+
// http bearer authentication required
|
|
3752
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3753
|
+
|
|
3754
|
+
if (imageId !== undefined) {
|
|
3755
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
3756
|
+
}
|
|
3757
|
+
|
|
3758
|
+
|
|
3759
|
+
|
|
3760
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3761
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3762
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3763
|
+
|
|
3764
|
+
return {
|
|
3765
|
+
url: toPathString(localVarUrlObj),
|
|
3766
|
+
options: localVarRequestOptions,
|
|
3767
|
+
};
|
|
3768
|
+
},
|
|
3769
|
+
/**
|
|
3770
|
+
* Delete an organization target.
|
|
3771
|
+
* @param {string} satelliteTargetId
|
|
3772
|
+
* @param {*} [options] Override http request option.
|
|
3773
|
+
* @throws {RequiredError}
|
|
3774
|
+
*/
|
|
3775
|
+
v1DeleteOrganizationTarget: async (satelliteTargetId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2560
3776
|
// verify required parameter 'satelliteTargetId' is not null or undefined
|
|
2561
3777
|
assertParamExists('v1DeleteOrganizationTarget', 'satelliteTargetId', satelliteTargetId)
|
|
2562
3778
|
const localVarPath = `/v1/organization-target`;
|
|
@@ -2709,6 +3925,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2709
3925
|
|
|
2710
3926
|
|
|
2711
3927
|
|
|
3928
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3929
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3930
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3931
|
+
|
|
3932
|
+
return {
|
|
3933
|
+
url: toPathString(localVarUrlObj),
|
|
3934
|
+
options: localVarRequestOptions,
|
|
3935
|
+
};
|
|
3936
|
+
},
|
|
3937
|
+
/**
|
|
3938
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
3939
|
+
* @param {string} imageId
|
|
3940
|
+
* @param {*} [options] Override http request option.
|
|
3941
|
+
* @throws {RequiredError}
|
|
3942
|
+
*/
|
|
3943
|
+
v1GetImageMetadata: async (imageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3944
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
3945
|
+
assertParamExists('v1GetImageMetadata', 'imageId', imageId)
|
|
3946
|
+
const localVarPath = `/v1/image-metadata`;
|
|
3947
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3948
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3949
|
+
let baseOptions;
|
|
3950
|
+
if (configuration) {
|
|
3951
|
+
baseOptions = configuration.baseOptions;
|
|
3952
|
+
}
|
|
3953
|
+
|
|
3954
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3955
|
+
const localVarHeaderParameter = {} as any;
|
|
3956
|
+
const localVarQueryParameter = {} as any;
|
|
3957
|
+
|
|
3958
|
+
// authentication Roles required
|
|
3959
|
+
|
|
3960
|
+
// authentication BearerToken required
|
|
3961
|
+
// http bearer authentication required
|
|
3962
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3963
|
+
|
|
3964
|
+
if (imageId !== undefined) {
|
|
3965
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3968
|
+
|
|
3969
|
+
|
|
2712
3970
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2713
3971
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2714
3972
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2912,6 +4170,60 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2912
4170
|
|
|
2913
4171
|
|
|
2914
4172
|
|
|
4173
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4174
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4175
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4176
|
+
|
|
4177
|
+
return {
|
|
4178
|
+
url: toPathString(localVarUrlObj),
|
|
4179
|
+
options: localVarRequestOptions,
|
|
4180
|
+
};
|
|
4181
|
+
},
|
|
4182
|
+
/**
|
|
4183
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
4184
|
+
* @param {string} nodeId
|
|
4185
|
+
* @param {number} [limit]
|
|
4186
|
+
* @param {string} [before]
|
|
4187
|
+
* @param {*} [options] Override http request option.
|
|
4188
|
+
* @throws {RequiredError}
|
|
4189
|
+
*/
|
|
4190
|
+
v1GetNodeSatelliteCalibrations: async (nodeId: string, limit?: number, before?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4191
|
+
// verify required parameter 'nodeId' is not null or undefined
|
|
4192
|
+
assertParamExists('v1GetNodeSatelliteCalibrations', 'nodeId', nodeId)
|
|
4193
|
+
const localVarPath = `/v1/satellite-calibrations`;
|
|
4194
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4195
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4196
|
+
let baseOptions;
|
|
4197
|
+
if (configuration) {
|
|
4198
|
+
baseOptions = configuration.baseOptions;
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
4202
|
+
const localVarHeaderParameter = {} as any;
|
|
4203
|
+
const localVarQueryParameter = {} as any;
|
|
4204
|
+
|
|
4205
|
+
// authentication Roles required
|
|
4206
|
+
|
|
4207
|
+
// authentication BearerToken required
|
|
4208
|
+
// http bearer authentication required
|
|
4209
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4210
|
+
|
|
4211
|
+
if (nodeId !== undefined) {
|
|
4212
|
+
localVarQueryParameter['nodeId'] = nodeId;
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
if (limit !== undefined) {
|
|
4216
|
+
localVarQueryParameter['limit'] = limit;
|
|
4217
|
+
}
|
|
4218
|
+
|
|
4219
|
+
if (before !== undefined) {
|
|
4220
|
+
localVarQueryParameter['before'] = (before as any instanceof Date) ?
|
|
4221
|
+
(before as any).toISOString() :
|
|
4222
|
+
before;
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
|
|
4226
|
+
|
|
2915
4227
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2916
4228
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2917
4229
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3061,11 +4373,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3061
4373
|
* @param {string} [before]
|
|
3062
4374
|
* @param {string} [searchInstructionId]
|
|
3063
4375
|
* @param {string} [surveyInstructionId]
|
|
4376
|
+
* @param {string} [resolvedImageInstructionId]
|
|
3064
4377
|
* @param {string} [imageId]
|
|
3065
4378
|
* @param {*} [options] Override http request option.
|
|
3066
4379
|
* @throws {RequiredError}
|
|
3067
4380
|
*/
|
|
3068
|
-
v1GetObservationStatuses: async (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4381
|
+
v1GetObservationStatuses: async (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3069
4382
|
const localVarPath = `/v1/observation-statuses`;
|
|
3070
4383
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3071
4384
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -3102,6 +4415,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3102
4415
|
localVarQueryParameter['surveyInstructionId'] = surveyInstructionId;
|
|
3103
4416
|
}
|
|
3104
4417
|
|
|
4418
|
+
if (resolvedImageInstructionId !== undefined) {
|
|
4419
|
+
localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
|
|
4420
|
+
}
|
|
4421
|
+
|
|
3105
4422
|
if (imageId !== undefined) {
|
|
3106
4423
|
localVarQueryParameter['imageId'] = imageId;
|
|
3107
4424
|
}
|
|
@@ -3209,7 +4526,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3209
4526
|
};
|
|
3210
4527
|
},
|
|
3211
4528
|
/**
|
|
3212
|
-
* Get organization targets see the [create](#
|
|
4529
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
3213
4530
|
* @param {*} [options] Override http request option.
|
|
3214
4531
|
* @throws {RequiredError}
|
|
3215
4532
|
*/
|
|
@@ -3439,6 +4756,62 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3439
4756
|
|
|
3440
4757
|
|
|
3441
4758
|
|
|
4759
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4760
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4761
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4762
|
+
|
|
4763
|
+
return {
|
|
4764
|
+
url: toPathString(localVarUrlObj),
|
|
4765
|
+
options: localVarRequestOptions,
|
|
4766
|
+
};
|
|
4767
|
+
},
|
|
4768
|
+
/**
|
|
4769
|
+
* Get state vectors for a satellite.
|
|
4770
|
+
* @param {string} targetId
|
|
4771
|
+
* @param {string} [before]
|
|
4772
|
+
* @param {string} [after]
|
|
4773
|
+
* @param {*} [options] Override http request option.
|
|
4774
|
+
* @throws {RequiredError}
|
|
4775
|
+
*/
|
|
4776
|
+
v1GetStateVectors: async (targetId: string, before?: string, after?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4777
|
+
// verify required parameter 'targetId' is not null or undefined
|
|
4778
|
+
assertParamExists('v1GetStateVectors', 'targetId', targetId)
|
|
4779
|
+
const localVarPath = `/v1/state-vectors`;
|
|
4780
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4781
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4782
|
+
let baseOptions;
|
|
4783
|
+
if (configuration) {
|
|
4784
|
+
baseOptions = configuration.baseOptions;
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4787
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
4788
|
+
const localVarHeaderParameter = {} as any;
|
|
4789
|
+
const localVarQueryParameter = {} as any;
|
|
4790
|
+
|
|
4791
|
+
// authentication Roles required
|
|
4792
|
+
|
|
4793
|
+
// authentication BearerToken required
|
|
4794
|
+
// http bearer authentication required
|
|
4795
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4796
|
+
|
|
4797
|
+
if (targetId !== undefined) {
|
|
4798
|
+
localVarQueryParameter['targetId'] = targetId;
|
|
4799
|
+
}
|
|
4800
|
+
|
|
4801
|
+
if (before !== undefined) {
|
|
4802
|
+
localVarQueryParameter['before'] = (before as any instanceof Date) ?
|
|
4803
|
+
(before as any).toISOString() :
|
|
4804
|
+
before;
|
|
4805
|
+
}
|
|
4806
|
+
|
|
4807
|
+
if (after !== undefined) {
|
|
4808
|
+
localVarQueryParameter['after'] = (after as any instanceof Date) ?
|
|
4809
|
+
(after as any).toISOString() :
|
|
4810
|
+
after;
|
|
4811
|
+
}
|
|
4812
|
+
|
|
4813
|
+
|
|
4814
|
+
|
|
3442
4815
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3443
4816
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3444
4817
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3633,7 +5006,262 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3633
5006
|
baseOptions = configuration.baseOptions;
|
|
3634
5007
|
}
|
|
3635
5008
|
|
|
3636
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
5009
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
5010
|
+
const localVarHeaderParameter = {} as any;
|
|
5011
|
+
const localVarQueryParameter = {} as any;
|
|
5012
|
+
|
|
5013
|
+
// authentication Roles required
|
|
5014
|
+
|
|
5015
|
+
// authentication BearerToken required
|
|
5016
|
+
// http bearer authentication required
|
|
5017
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5018
|
+
|
|
5019
|
+
if (webhookId !== undefined) {
|
|
5020
|
+
localVarQueryParameter['webhookId'] = webhookId;
|
|
5021
|
+
}
|
|
5022
|
+
|
|
5023
|
+
if (limit !== undefined) {
|
|
5024
|
+
localVarQueryParameter['limit'] = limit;
|
|
5025
|
+
}
|
|
5026
|
+
|
|
5027
|
+
if (offset !== undefined) {
|
|
5028
|
+
localVarQueryParameter['offset'] = offset;
|
|
5029
|
+
}
|
|
5030
|
+
|
|
5031
|
+
|
|
5032
|
+
|
|
5033
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5034
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5035
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5036
|
+
|
|
5037
|
+
return {
|
|
5038
|
+
url: toPathString(localVarUrlObj),
|
|
5039
|
+
options: localVarRequestOptions,
|
|
5040
|
+
};
|
|
5041
|
+
},
|
|
5042
|
+
/**
|
|
5043
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
5044
|
+
* @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
|
|
5045
|
+
* @param {*} [options] Override http request option.
|
|
5046
|
+
* @throws {RequiredError}
|
|
5047
|
+
*/
|
|
5048
|
+
v1PutOrbitProviderTLEOrbit: async (v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5049
|
+
// verify required parameter 'v1PutOrbitProviderTLERequest' is not null or undefined
|
|
5050
|
+
assertParamExists('v1PutOrbitProviderTLEOrbit', 'v1PutOrbitProviderTLERequest', v1PutOrbitProviderTLERequest)
|
|
5051
|
+
const localVarPath = `/v1/orbit-provider/tle`;
|
|
5052
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5053
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5054
|
+
let baseOptions;
|
|
5055
|
+
if (configuration) {
|
|
5056
|
+
baseOptions = configuration.baseOptions;
|
|
5057
|
+
}
|
|
5058
|
+
|
|
5059
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
5060
|
+
const localVarHeaderParameter = {} as any;
|
|
5061
|
+
const localVarQueryParameter = {} as any;
|
|
5062
|
+
|
|
5063
|
+
// authentication Roles required
|
|
5064
|
+
|
|
5065
|
+
// authentication BearerToken required
|
|
5066
|
+
// http bearer authentication required
|
|
5067
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5068
|
+
|
|
5069
|
+
|
|
5070
|
+
|
|
5071
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5072
|
+
|
|
5073
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5074
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5075
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5076
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1PutOrbitProviderTLERequest, localVarRequestOptions, configuration)
|
|
5077
|
+
|
|
5078
|
+
return {
|
|
5079
|
+
url: toPathString(localVarUrlObj),
|
|
5080
|
+
options: localVarRequestOptions,
|
|
5081
|
+
};
|
|
5082
|
+
},
|
|
5083
|
+
/**
|
|
5084
|
+
* 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.
|
|
5085
|
+
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
5086
|
+
* @param {*} [options] Override http request option.
|
|
5087
|
+
* @throws {RequiredError}
|
|
5088
|
+
*/
|
|
5089
|
+
v1UpdateEmailConfiguration: async (v1UpdateEmailConfigurationRequest: V1UpdateEmailConfigurationRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5090
|
+
// verify required parameter 'v1UpdateEmailConfigurationRequest' is not null or undefined
|
|
5091
|
+
assertParamExists('v1UpdateEmailConfiguration', 'v1UpdateEmailConfigurationRequest', v1UpdateEmailConfigurationRequest)
|
|
5092
|
+
const localVarPath = `/v1/communications/email`;
|
|
5093
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5094
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5095
|
+
let baseOptions;
|
|
5096
|
+
if (configuration) {
|
|
5097
|
+
baseOptions = configuration.baseOptions;
|
|
5098
|
+
}
|
|
5099
|
+
|
|
5100
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
5101
|
+
const localVarHeaderParameter = {} as any;
|
|
5102
|
+
const localVarQueryParameter = {} as any;
|
|
5103
|
+
|
|
5104
|
+
// authentication Roles required
|
|
5105
|
+
|
|
5106
|
+
// authentication BearerToken required
|
|
5107
|
+
// http bearer authentication required
|
|
5108
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5109
|
+
|
|
5110
|
+
|
|
5111
|
+
|
|
5112
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5113
|
+
|
|
5114
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5115
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5116
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5117
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateEmailConfigurationRequest, localVarRequestOptions, configuration)
|
|
5118
|
+
|
|
5119
|
+
return {
|
|
5120
|
+
url: toPathString(localVarUrlObj),
|
|
5121
|
+
options: localVarRequestOptions,
|
|
5122
|
+
};
|
|
5123
|
+
},
|
|
5124
|
+
/**
|
|
5125
|
+
* Update an existing organization target. The satellite target id cannot be changed. If you need to change the target you must delete the existing target and create a new one.
|
|
5126
|
+
* @param {V1UpdateOrganizationTargetRequest} v1UpdateOrganizationTargetRequest
|
|
5127
|
+
* @param {*} [options] Override http request option.
|
|
5128
|
+
* @throws {RequiredError}
|
|
5129
|
+
*/
|
|
5130
|
+
v1UpdateOrganizationTarget: async (v1UpdateOrganizationTargetRequest: V1UpdateOrganizationTargetRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5131
|
+
// verify required parameter 'v1UpdateOrganizationTargetRequest' is not null or undefined
|
|
5132
|
+
assertParamExists('v1UpdateOrganizationTarget', 'v1UpdateOrganizationTargetRequest', v1UpdateOrganizationTargetRequest)
|
|
5133
|
+
const localVarPath = `/v1/organization-target`;
|
|
5134
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5135
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5136
|
+
let baseOptions;
|
|
5137
|
+
if (configuration) {
|
|
5138
|
+
baseOptions = configuration.baseOptions;
|
|
5139
|
+
}
|
|
5140
|
+
|
|
5141
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
5142
|
+
const localVarHeaderParameter = {} as any;
|
|
5143
|
+
const localVarQueryParameter = {} as any;
|
|
5144
|
+
|
|
5145
|
+
// authentication Roles required
|
|
5146
|
+
|
|
5147
|
+
// authentication BearerToken required
|
|
5148
|
+
// http bearer authentication required
|
|
5149
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5150
|
+
|
|
5151
|
+
|
|
5152
|
+
|
|
5153
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5154
|
+
|
|
5155
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5156
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5157
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5158
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateOrganizationTargetRequest, localVarRequestOptions, configuration)
|
|
5159
|
+
|
|
5160
|
+
return {
|
|
5161
|
+
url: toPathString(localVarUrlObj),
|
|
5162
|
+
options: localVarRequestOptions,
|
|
5163
|
+
};
|
|
5164
|
+
},
|
|
5165
|
+
/**
|
|
5166
|
+
* Update a private satellite target.
|
|
5167
|
+
* @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
|
|
5168
|
+
* @param {*} [options] Override http request option.
|
|
5169
|
+
* @throws {RequiredError}
|
|
5170
|
+
*/
|
|
5171
|
+
v1UpdateSatelliteTarget: async (v1UpdateSatelliteTargetRequest: V1UpdateSatelliteTargetRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5172
|
+
// verify required parameter 'v1UpdateSatelliteTargetRequest' is not null or undefined
|
|
5173
|
+
assertParamExists('v1UpdateSatelliteTarget', 'v1UpdateSatelliteTargetRequest', v1UpdateSatelliteTargetRequest)
|
|
5174
|
+
const localVarPath = `/v1/satellite-target`;
|
|
5175
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5176
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5177
|
+
let baseOptions;
|
|
5178
|
+
if (configuration) {
|
|
5179
|
+
baseOptions = configuration.baseOptions;
|
|
5180
|
+
}
|
|
5181
|
+
|
|
5182
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
5183
|
+
const localVarHeaderParameter = {} as any;
|
|
5184
|
+
const localVarQueryParameter = {} as any;
|
|
5185
|
+
|
|
5186
|
+
// authentication Roles required
|
|
5187
|
+
|
|
5188
|
+
// authentication BearerToken required
|
|
5189
|
+
// http bearer authentication required
|
|
5190
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5191
|
+
|
|
5192
|
+
|
|
5193
|
+
|
|
5194
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5195
|
+
|
|
5196
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5197
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5198
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5199
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateSatelliteTargetRequest, localVarRequestOptions, configuration)
|
|
5200
|
+
|
|
5201
|
+
return {
|
|
5202
|
+
url: toPathString(localVarUrlObj),
|
|
5203
|
+
options: localVarRequestOptions,
|
|
5204
|
+
};
|
|
5205
|
+
},
|
|
5206
|
+
/**
|
|
5207
|
+
* Update a webhook configuration.
|
|
5208
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
5209
|
+
* @param {*} [options] Override http request option.
|
|
5210
|
+
* @throws {RequiredError}
|
|
5211
|
+
*/
|
|
5212
|
+
v1UpdateWebhookConfiguration: async (v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5213
|
+
// verify required parameter 'v1UpdateWebhookConfigurationRequest' is not null or undefined
|
|
5214
|
+
assertParamExists('v1UpdateWebhookConfiguration', 'v1UpdateWebhookConfigurationRequest', v1UpdateWebhookConfigurationRequest)
|
|
5215
|
+
const localVarPath = `/v1/communications/webhook`;
|
|
5216
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5217
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5218
|
+
let baseOptions;
|
|
5219
|
+
if (configuration) {
|
|
5220
|
+
baseOptions = configuration.baseOptions;
|
|
5221
|
+
}
|
|
5222
|
+
|
|
5223
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
5224
|
+
const localVarHeaderParameter = {} as any;
|
|
5225
|
+
const localVarQueryParameter = {} as any;
|
|
5226
|
+
|
|
5227
|
+
// authentication Roles required
|
|
5228
|
+
|
|
5229
|
+
// authentication BearerToken required
|
|
5230
|
+
// http bearer authentication required
|
|
5231
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5232
|
+
|
|
5233
|
+
|
|
5234
|
+
|
|
5235
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5236
|
+
|
|
5237
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5238
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5239
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5240
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration)
|
|
5241
|
+
|
|
5242
|
+
return {
|
|
5243
|
+
url: toPathString(localVarUrlObj),
|
|
5244
|
+
options: localVarRequestOptions,
|
|
5245
|
+
};
|
|
5246
|
+
},
|
|
5247
|
+
/**
|
|
5248
|
+
* 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.
|
|
5249
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
5250
|
+
* @param {*} [options] Override http request option.
|
|
5251
|
+
* @throws {RequiredError}
|
|
5252
|
+
*/
|
|
5253
|
+
v2CreatePlaneScan: async (v1PlaneScanRequest: V1PlaneScanRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5254
|
+
// verify required parameter 'v1PlaneScanRequest' is not null or undefined
|
|
5255
|
+
assertParamExists('v2CreatePlaneScan', 'v1PlaneScanRequest', v1PlaneScanRequest)
|
|
5256
|
+
const localVarPath = `/v2/search/plane-scan`;
|
|
5257
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5258
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5259
|
+
let baseOptions;
|
|
5260
|
+
if (configuration) {
|
|
5261
|
+
baseOptions = configuration.baseOptions;
|
|
5262
|
+
}
|
|
5263
|
+
|
|
5264
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3637
5265
|
const localVarHeaderParameter = {} as any;
|
|
3638
5266
|
const localVarQueryParameter = {} as any;
|
|
3639
5267
|
|
|
@@ -3643,23 +5271,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3643
5271
|
// http bearer authentication required
|
|
3644
5272
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3645
5273
|
|
|
3646
|
-
if (webhookId !== undefined) {
|
|
3647
|
-
localVarQueryParameter['webhookId'] = webhookId;
|
|
3648
|
-
}
|
|
3649
|
-
|
|
3650
|
-
if (limit !== undefined) {
|
|
3651
|
-
localVarQueryParameter['limit'] = limit;
|
|
3652
|
-
}
|
|
3653
|
-
|
|
3654
|
-
if (offset !== undefined) {
|
|
3655
|
-
localVarQueryParameter['offset'] = offset;
|
|
3656
|
-
}
|
|
3657
|
-
|
|
3658
5274
|
|
|
3659
5275
|
|
|
5276
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5277
|
+
|
|
3660
5278
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3661
5279
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3662
5280
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5281
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1PlaneScanRequest, localVarRequestOptions, configuration)
|
|
3663
5282
|
|
|
3664
5283
|
return {
|
|
3665
5284
|
url: toPathString(localVarUrlObj),
|
|
@@ -3667,15 +5286,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3667
5286
|
};
|
|
3668
5287
|
},
|
|
3669
5288
|
/**
|
|
3670
|
-
* Create
|
|
3671
|
-
* @param {
|
|
5289
|
+
* 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.
|
|
5290
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
3672
5291
|
* @param {*} [options] Override http request option.
|
|
3673
5292
|
* @throws {RequiredError}
|
|
3674
5293
|
*/
|
|
3675
|
-
|
|
3676
|
-
// verify required parameter '
|
|
3677
|
-
assertParamExists('
|
|
3678
|
-
const localVarPath = `/
|
|
5294
|
+
v2CreateRicVolumeSearch: async (v1RicVolumeSearchRequest: V1RicVolumeSearchRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5295
|
+
// verify required parameter 'v1RicVolumeSearchRequest' is not null or undefined
|
|
5296
|
+
assertParamExists('v2CreateRicVolumeSearch', 'v1RicVolumeSearchRequest', v1RicVolumeSearchRequest)
|
|
5297
|
+
const localVarPath = `/v2/search/ric-volumetric`;
|
|
3679
5298
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3680
5299
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3681
5300
|
let baseOptions;
|
|
@@ -3683,7 +5302,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3683
5302
|
baseOptions = configuration.baseOptions;
|
|
3684
5303
|
}
|
|
3685
5304
|
|
|
3686
|
-
const localVarRequestOptions = { method: '
|
|
5305
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3687
5306
|
const localVarHeaderParameter = {} as any;
|
|
3688
5307
|
const localVarQueryParameter = {} as any;
|
|
3689
5308
|
|
|
@@ -3700,7 +5319,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3700
5319
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3701
5320
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3702
5321
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3703
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
5322
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1RicVolumeSearchRequest, localVarRequestOptions, configuration)
|
|
3704
5323
|
|
|
3705
5324
|
return {
|
|
3706
5325
|
url: toPathString(localVarUrlObj),
|
|
@@ -3708,15 +5327,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3708
5327
|
};
|
|
3709
5328
|
},
|
|
3710
5329
|
/**
|
|
3711
|
-
*
|
|
3712
|
-
* @param {
|
|
5330
|
+
* Delete a plane scan.
|
|
5331
|
+
* @param {string} id
|
|
3713
5332
|
* @param {*} [options] Override http request option.
|
|
3714
5333
|
* @throws {RequiredError}
|
|
3715
5334
|
*/
|
|
3716
|
-
|
|
3717
|
-
// verify required parameter '
|
|
3718
|
-
assertParamExists('
|
|
3719
|
-
const localVarPath = `/
|
|
5335
|
+
v2DeletePlaneScan: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5336
|
+
// verify required parameter 'id' is not null or undefined
|
|
5337
|
+
assertParamExists('v2DeletePlaneScan', 'id', id)
|
|
5338
|
+
const localVarPath = `/v2/search/plane-scan`;
|
|
3720
5339
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3721
5340
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3722
5341
|
let baseOptions;
|
|
@@ -3724,7 +5343,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3724
5343
|
baseOptions = configuration.baseOptions;
|
|
3725
5344
|
}
|
|
3726
5345
|
|
|
3727
|
-
const localVarRequestOptions = { method: '
|
|
5346
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
3728
5347
|
const localVarHeaderParameter = {} as any;
|
|
3729
5348
|
const localVarQueryParameter = {} as any;
|
|
3730
5349
|
|
|
@@ -3734,14 +5353,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3734
5353
|
// http bearer authentication required
|
|
3735
5354
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3736
5355
|
|
|
5356
|
+
if (id !== undefined) {
|
|
5357
|
+
localVarQueryParameter['id'] = id;
|
|
5358
|
+
}
|
|
3737
5359
|
|
|
3738
|
-
|
|
3739
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3740
5360
|
|
|
5361
|
+
|
|
3741
5362
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3742
5363
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3743
5364
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3744
|
-
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateEmailConfigurationRequest, localVarRequestOptions, configuration)
|
|
3745
5365
|
|
|
3746
5366
|
return {
|
|
3747
5367
|
url: toPathString(localVarUrlObj),
|
|
@@ -3749,15 +5369,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3749
5369
|
};
|
|
3750
5370
|
},
|
|
3751
5371
|
/**
|
|
3752
|
-
*
|
|
3753
|
-
* @param {
|
|
5372
|
+
* Delete a RIC volume search.
|
|
5373
|
+
* @param {string} id
|
|
3754
5374
|
* @param {*} [options] Override http request option.
|
|
3755
5375
|
* @throws {RequiredError}
|
|
3756
5376
|
*/
|
|
3757
|
-
|
|
3758
|
-
// verify required parameter '
|
|
3759
|
-
assertParamExists('
|
|
3760
|
-
const localVarPath = `/
|
|
5377
|
+
v2DeleteRicVolumeSearch: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5378
|
+
// verify required parameter 'id' is not null or undefined
|
|
5379
|
+
assertParamExists('v2DeleteRicVolumeSearch', 'id', id)
|
|
5380
|
+
const localVarPath = `/v2/search/ric-volumetric`;
|
|
3761
5381
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3762
5382
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3763
5383
|
let baseOptions;
|
|
@@ -3765,7 +5385,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3765
5385
|
baseOptions = configuration.baseOptions;
|
|
3766
5386
|
}
|
|
3767
5387
|
|
|
3768
|
-
const localVarRequestOptions = { method: '
|
|
5388
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
3769
5389
|
const localVarHeaderParameter = {} as any;
|
|
3770
5390
|
const localVarQueryParameter = {} as any;
|
|
3771
5391
|
|
|
@@ -3775,14 +5395,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3775
5395
|
// http bearer authentication required
|
|
3776
5396
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3777
5397
|
|
|
5398
|
+
if (id !== undefined) {
|
|
5399
|
+
localVarQueryParameter['id'] = id;
|
|
5400
|
+
}
|
|
3778
5401
|
|
|
3779
|
-
|
|
3780
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3781
5402
|
|
|
5403
|
+
|
|
3782
5404
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3783
5405
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3784
5406
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3785
|
-
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateOrganizationTargetRequest, localVarRequestOptions, configuration)
|
|
3786
5407
|
|
|
3787
5408
|
return {
|
|
3788
5409
|
url: toPathString(localVarUrlObj),
|
|
@@ -3790,15 +5411,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3790
5411
|
};
|
|
3791
5412
|
},
|
|
3792
5413
|
/**
|
|
3793
|
-
*
|
|
3794
|
-
* @param {
|
|
5414
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
5415
|
+
* @param {string} searchId
|
|
3795
5416
|
* @param {*} [options] Override http request option.
|
|
3796
5417
|
* @throws {RequiredError}
|
|
3797
5418
|
*/
|
|
3798
|
-
|
|
3799
|
-
// verify required parameter '
|
|
3800
|
-
assertParamExists('
|
|
3801
|
-
const localVarPath = `/
|
|
5419
|
+
v2GetSearch: async (searchId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5420
|
+
// verify required parameter 'searchId' is not null or undefined
|
|
5421
|
+
assertParamExists('v2GetSearch', 'searchId', searchId)
|
|
5422
|
+
const localVarPath = `/v2/search`;
|
|
3802
5423
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3803
5424
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3804
5425
|
let baseOptions;
|
|
@@ -3806,7 +5427,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3806
5427
|
baseOptions = configuration.baseOptions;
|
|
3807
5428
|
}
|
|
3808
5429
|
|
|
3809
|
-
const localVarRequestOptions = { method: '
|
|
5430
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3810
5431
|
const localVarHeaderParameter = {} as any;
|
|
3811
5432
|
const localVarQueryParameter = {} as any;
|
|
3812
5433
|
|
|
@@ -3816,14 +5437,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3816
5437
|
// http bearer authentication required
|
|
3817
5438
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3818
5439
|
|
|
5440
|
+
if (searchId !== undefined) {
|
|
5441
|
+
localVarQueryParameter['searchId'] = searchId;
|
|
5442
|
+
}
|
|
5443
|
+
|
|
3819
5444
|
|
|
3820
5445
|
|
|
3821
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3822
|
-
|
|
3823
5446
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3824
5447
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3825
5448
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3826
|
-
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateSatelliteTargetRequest, localVarRequestOptions, configuration)
|
|
3827
5449
|
|
|
3828
5450
|
return {
|
|
3829
5451
|
url: toPathString(localVarUrlObj),
|
|
@@ -3831,15 +5453,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3831
5453
|
};
|
|
3832
5454
|
},
|
|
3833
5455
|
/**
|
|
3834
|
-
*
|
|
3835
|
-
* @param {
|
|
5456
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
5457
|
+
* @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
5458
|
+
* @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
|
|
3836
5459
|
* @param {*} [options] Override http request option.
|
|
3837
5460
|
* @throws {RequiredError}
|
|
3838
5461
|
*/
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
assertParamExists('v1UpdateWebhookConfiguration', 'v1UpdateWebhookConfigurationRequest', v1UpdateWebhookConfigurationRequest)
|
|
3842
|
-
const localVarPath = `/v1/communications/webhook`;
|
|
5462
|
+
v2GetSearches: async (after?: string, status?: V2GetSearchesStatusEnum, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5463
|
+
const localVarPath = `/v2/searches`;
|
|
3843
5464
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3844
5465
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3845
5466
|
let baseOptions;
|
|
@@ -3847,7 +5468,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3847
5468
|
baseOptions = configuration.baseOptions;
|
|
3848
5469
|
}
|
|
3849
5470
|
|
|
3850
|
-
const localVarRequestOptions = { method: '
|
|
5471
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3851
5472
|
const localVarHeaderParameter = {} as any;
|
|
3852
5473
|
const localVarQueryParameter = {} as any;
|
|
3853
5474
|
|
|
@@ -3857,14 +5478,21 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3857
5478
|
// http bearer authentication required
|
|
3858
5479
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3859
5480
|
|
|
5481
|
+
if (after !== undefined) {
|
|
5482
|
+
localVarQueryParameter['after'] = (after as any instanceof Date) ?
|
|
5483
|
+
(after as any).toISOString() :
|
|
5484
|
+
after;
|
|
5485
|
+
}
|
|
3860
5486
|
|
|
3861
|
-
|
|
3862
|
-
|
|
5487
|
+
if (status !== undefined) {
|
|
5488
|
+
localVarQueryParameter['status'] = status;
|
|
5489
|
+
}
|
|
3863
5490
|
|
|
5491
|
+
|
|
5492
|
+
|
|
3864
5493
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3865
5494
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3866
5495
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3867
|
-
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration)
|
|
3868
5496
|
|
|
3869
5497
|
return {
|
|
3870
5498
|
url: toPathString(localVarUrlObj),
|
|
@@ -3881,6 +5509,27 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3881
5509
|
export const DefaultApiFp = function(configuration?: Configuration) {
|
|
3882
5510
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
|
|
3883
5511
|
return {
|
|
5512
|
+
/**
|
|
5513
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
5514
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
5515
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
5516
|
+
* @param {*} [options] Override http request option.
|
|
5517
|
+
* @throws {RequiredError}
|
|
5518
|
+
*/
|
|
5519
|
+
async getUncorrelatedTracks(after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Track>>> {
|
|
5520
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getUncorrelatedTracks(after, options);
|
|
5521
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5522
|
+
},
|
|
5523
|
+
/**
|
|
5524
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
5525
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
5526
|
+
* @param {*} [options] Override http request option.
|
|
5527
|
+
* @throws {RequiredError}
|
|
5528
|
+
*/
|
|
5529
|
+
async v1CreateBlackoutVolume(v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
5530
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateBlackoutVolume(v1BlackoutVolumeRequest, options);
|
|
5531
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5532
|
+
},
|
|
3884
5533
|
/**
|
|
3885
5534
|
* Create an image set.
|
|
3886
5535
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -3902,7 +5551,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3902
5551
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3903
5552
|
},
|
|
3904
5553
|
/**
|
|
3905
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
5554
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
3906
5555
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
3907
5556
|
* @param {*} [options] Override http request option.
|
|
3908
5557
|
* @throws {RequiredError}
|
|
@@ -3922,9 +5571,10 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3922
5571
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3923
5572
|
},
|
|
3924
5573
|
/**
|
|
3925
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
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.
|
|
3926
5575
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
3927
5576
|
* @param {*} [options] Override http request option.
|
|
5577
|
+
* @deprecated
|
|
3928
5578
|
* @throws {RequiredError}
|
|
3929
5579
|
*/
|
|
3930
5580
|
async v1CreateSearchInstruction(v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
@@ -3961,6 +5611,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3961
5611
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateWebhookTest(v1CreateWebhookTestRequest, options);
|
|
3962
5612
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3963
5613
|
},
|
|
5614
|
+
/**
|
|
5615
|
+
* Delete a blackout volume.
|
|
5616
|
+
* @param {string} id
|
|
5617
|
+
* @param {*} [options] Override http request option.
|
|
5618
|
+
* @throws {RequiredError}
|
|
5619
|
+
*/
|
|
5620
|
+
async v1DeleteBlackoutVolume(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulDelete>> {
|
|
5621
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteBlackoutVolume(id, options);
|
|
5622
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5623
|
+
},
|
|
3964
5624
|
/**
|
|
3965
5625
|
* Delete an image set.
|
|
3966
5626
|
* @param {string} id
|
|
@@ -4021,6 +5681,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4021
5681
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteWebhookConfiguration(id, options);
|
|
4022
5682
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4023
5683
|
},
|
|
5684
|
+
/**
|
|
5685
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
5686
|
+
* @param {string} imageId
|
|
5687
|
+
* @param {*} [options] Override http request option.
|
|
5688
|
+
* @throws {RequiredError}
|
|
5689
|
+
*/
|
|
5690
|
+
async v1GetImageMetadata(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageMetadata>> {
|
|
5691
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetImageMetadata(imageId, options);
|
|
5692
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5693
|
+
},
|
|
4024
5694
|
/**
|
|
4025
5695
|
* Get an image set.
|
|
4026
5696
|
* @param {string} id
|
|
@@ -4070,6 +5740,18 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4070
5740
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeProperties(nodeId, options);
|
|
4071
5741
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4072
5742
|
},
|
|
5743
|
+
/**
|
|
5744
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
5745
|
+
* @param {string} nodeId
|
|
5746
|
+
* @param {number} [limit]
|
|
5747
|
+
* @param {string} [before]
|
|
5748
|
+
* @param {*} [options] Override http request option.
|
|
5749
|
+
* @throws {RequiredError}
|
|
5750
|
+
*/
|
|
5751
|
+
async v1GetNodeSatelliteCalibrations(nodeId: string, limit?: number, before?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeCalibrationResult>>> {
|
|
5752
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeSatelliteCalibrations(nodeId, limit, before, options);
|
|
5753
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5754
|
+
},
|
|
4073
5755
|
/**
|
|
4074
5756
|
* Get observation features.
|
|
4075
5757
|
* @param {string} imageId
|
|
@@ -4108,12 +5790,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4108
5790
|
* @param {string} [before]
|
|
4109
5791
|
* @param {string} [searchInstructionId]
|
|
4110
5792
|
* @param {string} [surveyInstructionId]
|
|
5793
|
+
* @param {string} [resolvedImageInstructionId]
|
|
4111
5794
|
* @param {string} [imageId]
|
|
4112
5795
|
* @param {*} [options] Override http request option.
|
|
4113
5796
|
* @throws {RequiredError}
|
|
4114
5797
|
*/
|
|
4115
|
-
async v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>> {
|
|
4116
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, imageId, options);
|
|
5798
|
+
async v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>> {
|
|
5799
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options);
|
|
4117
5800
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4118
5801
|
},
|
|
4119
5802
|
/**
|
|
@@ -4138,7 +5821,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4138
5821
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4139
5822
|
},
|
|
4140
5823
|
/**
|
|
4141
|
-
* Get organization targets see the [create](#
|
|
5824
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
4142
5825
|
* @param {*} [options] Override http request option.
|
|
4143
5826
|
* @throws {RequiredError}
|
|
4144
5827
|
*/
|
|
@@ -4193,6 +5876,18 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4193
5876
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetSearchInstructions(before, options);
|
|
4194
5877
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4195
5878
|
},
|
|
5879
|
+
/**
|
|
5880
|
+
* Get state vectors for a satellite.
|
|
5881
|
+
* @param {string} targetId
|
|
5882
|
+
* @param {string} [before]
|
|
5883
|
+
* @param {string} [after]
|
|
5884
|
+
* @param {*} [options] Override http request option.
|
|
5885
|
+
* @throws {RequiredError}
|
|
5886
|
+
*/
|
|
5887
|
+
async v1GetStateVectors(targetId: string, before?: string, after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1StateVector>>> {
|
|
5888
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetStateVectors(targetId, before, after, options);
|
|
5889
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5890
|
+
},
|
|
4196
5891
|
/**
|
|
4197
5892
|
* Get a list of survey instructions. Survey instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
4198
5893
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -4295,6 +5990,67 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4295
5990
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1UpdateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options);
|
|
4296
5991
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4297
5992
|
},
|
|
5993
|
+
/**
|
|
5994
|
+
* 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.
|
|
5995
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
5996
|
+
* @param {*} [options] Override http request option.
|
|
5997
|
+
* @throws {RequiredError}
|
|
5998
|
+
*/
|
|
5999
|
+
async v2CreatePlaneScan(v1PlaneScanRequest: V1PlaneScanRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
6000
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2CreatePlaneScan(v1PlaneScanRequest, options);
|
|
6001
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6002
|
+
},
|
|
6003
|
+
/**
|
|
6004
|
+
* 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.
|
|
6005
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
6006
|
+
* @param {*} [options] Override http request option.
|
|
6007
|
+
* @throws {RequiredError}
|
|
6008
|
+
*/
|
|
6009
|
+
async v2CreateRicVolumeSearch(v1RicVolumeSearchRequest: V1RicVolumeSearchRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
6010
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2CreateRicVolumeSearch(v1RicVolumeSearchRequest, options);
|
|
6011
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6012
|
+
},
|
|
6013
|
+
/**
|
|
6014
|
+
* Delete a plane scan.
|
|
6015
|
+
* @param {string} id
|
|
6016
|
+
* @param {*} [options] Override http request option.
|
|
6017
|
+
* @throws {RequiredError}
|
|
6018
|
+
*/
|
|
6019
|
+
async v2DeletePlaneScan(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
6020
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2DeletePlaneScan(id, options);
|
|
6021
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6022
|
+
},
|
|
6023
|
+
/**
|
|
6024
|
+
* Delete a RIC volume search.
|
|
6025
|
+
* @param {string} id
|
|
6026
|
+
* @param {*} [options] Override http request option.
|
|
6027
|
+
* @throws {RequiredError}
|
|
6028
|
+
*/
|
|
6029
|
+
async v2DeleteRicVolumeSearch(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
6030
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2DeleteRicVolumeSearch(id, options);
|
|
6031
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6032
|
+
},
|
|
6033
|
+
/**
|
|
6034
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
6035
|
+
* @param {string} searchId
|
|
6036
|
+
* @param {*} [options] Override http request option.
|
|
6037
|
+
* @throws {RequiredError}
|
|
6038
|
+
*/
|
|
6039
|
+
async v2GetSearch(searchId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2Search>> {
|
|
6040
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2GetSearch(searchId, options);
|
|
6041
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6042
|
+
},
|
|
6043
|
+
/**
|
|
6044
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
6045
|
+
* @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
6046
|
+
* @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
|
|
6047
|
+
* @param {*} [options] Override http request option.
|
|
6048
|
+
* @throws {RequiredError}
|
|
6049
|
+
*/
|
|
6050
|
+
async v2GetSearches(after?: string, status?: V2GetSearchesStatusEnum, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V2Search>>> {
|
|
6051
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v2GetSearches(after, status, options);
|
|
6052
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6053
|
+
},
|
|
4298
6054
|
}
|
|
4299
6055
|
};
|
|
4300
6056
|
|
|
@@ -4305,6 +6061,25 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4305
6061
|
export const DefaultApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
4306
6062
|
const localVarFp = DefaultApiFp(configuration)
|
|
4307
6063
|
return {
|
|
6064
|
+
/**
|
|
6065
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
6066
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
6067
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
6068
|
+
* @param {*} [options] Override http request option.
|
|
6069
|
+
* @throws {RequiredError}
|
|
6070
|
+
*/
|
|
6071
|
+
getUncorrelatedTracks(requestParameters: DefaultApiGetUncorrelatedTracksRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V1Track>> {
|
|
6072
|
+
return localVarFp.getUncorrelatedTracks(requestParameters.after, options).then((request) => request(axios, basePath));
|
|
6073
|
+
},
|
|
6074
|
+
/**
|
|
6075
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
6076
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
6077
|
+
* @param {*} [options] Override http request option.
|
|
6078
|
+
* @throws {RequiredError}
|
|
6079
|
+
*/
|
|
6080
|
+
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
6081
|
+
return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
|
|
6082
|
+
},
|
|
4308
6083
|
/**
|
|
4309
6084
|
* Create an image set.
|
|
4310
6085
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -4324,7 +6099,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4324
6099
|
return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(axios, basePath));
|
|
4325
6100
|
},
|
|
4326
6101
|
/**
|
|
4327
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
6102
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
4328
6103
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
4329
6104
|
* @param {*} [options] Override http request option.
|
|
4330
6105
|
* @throws {RequiredError}
|
|
@@ -4342,9 +6117,10 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4342
6117
|
return localVarFp.v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
4343
6118
|
},
|
|
4344
6119
|
/**
|
|
4345
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
6120
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
4346
6121
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
4347
6122
|
* @param {*} [options] Override http request option.
|
|
6123
|
+
* @deprecated
|
|
4348
6124
|
* @throws {RequiredError}
|
|
4349
6125
|
*/
|
|
4350
6126
|
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
@@ -4377,6 +6153,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4377
6153
|
v1CreateWebhookTest(requestParameters: DefaultApiV1CreateWebhookTestRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4378
6154
|
return localVarFp.v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(axios, basePath));
|
|
4379
6155
|
},
|
|
6156
|
+
/**
|
|
6157
|
+
* Delete a blackout volume.
|
|
6158
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
6159
|
+
* @param {*} [options] Override http request option.
|
|
6160
|
+
* @throws {RequiredError}
|
|
6161
|
+
*/
|
|
6162
|
+
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete> {
|
|
6163
|
+
return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
6164
|
+
},
|
|
4380
6165
|
/**
|
|
4381
6166
|
* Delete an image set.
|
|
4382
6167
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4431,6 +6216,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4431
6216
|
v1DeleteWebhookConfiguration(requestParameters: DefaultApiV1DeleteWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4432
6217
|
return localVarFp.v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4433
6218
|
},
|
|
6219
|
+
/**
|
|
6220
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
6221
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
6222
|
+
* @param {*} [options] Override http request option.
|
|
6223
|
+
* @throws {RequiredError}
|
|
6224
|
+
*/
|
|
6225
|
+
v1GetImageMetadata(requestParameters: DefaultApiV1GetImageMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageMetadata> {
|
|
6226
|
+
return localVarFp.v1GetImageMetadata(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
6227
|
+
},
|
|
4434
6228
|
/**
|
|
4435
6229
|
* Get an image set.
|
|
4436
6230
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -4475,6 +6269,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4475
6269
|
v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GroundStationParticipant> {
|
|
4476
6270
|
return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
|
|
4477
6271
|
},
|
|
6272
|
+
/**
|
|
6273
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
6274
|
+
* @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
|
|
6275
|
+
* @param {*} [options] Override http request option.
|
|
6276
|
+
* @throws {RequiredError}
|
|
6277
|
+
*/
|
|
6278
|
+
v1GetNodeSatelliteCalibrations(requestParameters: DefaultApiV1GetNodeSatelliteCalibrationsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeCalibrationResult>> {
|
|
6279
|
+
return localVarFp.v1GetNodeSatelliteCalibrations(requestParameters.nodeId, requestParameters.limit, requestParameters.before, options).then((request) => request(axios, basePath));
|
|
6280
|
+
},
|
|
4478
6281
|
/**
|
|
4479
6282
|
* Get observation features.
|
|
4480
6283
|
* @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
|
|
@@ -4509,7 +6312,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4509
6312
|
* @throws {RequiredError}
|
|
4510
6313
|
*/
|
|
4511
6314
|
v1GetObservationStatuses(requestParameters: DefaultApiV1GetObservationStatusesRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V1ObservationStatus>> {
|
|
4512
|
-
return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
6315
|
+
return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
4513
6316
|
},
|
|
4514
6317
|
/**
|
|
4515
6318
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
@@ -4530,7 +6333,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4530
6333
|
return localVarFp.v1GetOrganizationTarget(requestParameters.organizationTargetId, options).then((request) => request(axios, basePath));
|
|
4531
6334
|
},
|
|
4532
6335
|
/**
|
|
4533
|
-
* Get organization targets see the [create](#
|
|
6336
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
4534
6337
|
* @param {*} [options] Override http request option.
|
|
4535
6338
|
* @throws {RequiredError}
|
|
4536
6339
|
*/
|
|
@@ -4573,6 +6376,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4573
6376
|
v1GetSearchInstructions(requestParameters: DefaultApiV1GetSearchInstructionsRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V1SearchInstruction>> {
|
|
4574
6377
|
return localVarFp.v1GetSearchInstructions(requestParameters.before, options).then((request) => request(axios, basePath));
|
|
4575
6378
|
},
|
|
6379
|
+
/**
|
|
6380
|
+
* Get state vectors for a satellite.
|
|
6381
|
+
* @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
|
|
6382
|
+
* @param {*} [options] Override http request option.
|
|
6383
|
+
* @throws {RequiredError}
|
|
6384
|
+
*/
|
|
6385
|
+
v1GetStateVectors(requestParameters: DefaultApiV1GetStateVectorsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1StateVector>> {
|
|
6386
|
+
return localVarFp.v1GetStateVectors(requestParameters.targetId, requestParameters.before, requestParameters.after, options).then((request) => request(axios, basePath));
|
|
6387
|
+
},
|
|
4576
6388
|
/**
|
|
4577
6389
|
* Get a list of survey instructions. Survey instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
4578
6390
|
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
@@ -4609,62 +6421,144 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4609
6421
|
return localVarFp.v1GetWebhookConfigurations(options).then((request) => request(axios, basePath));
|
|
4610
6422
|
},
|
|
4611
6423
|
/**
|
|
4612
|
-
* Get webhook logs.
|
|
4613
|
-
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
6424
|
+
* Get webhook logs.
|
|
6425
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
6426
|
+
* @param {*} [options] Override http request option.
|
|
6427
|
+
* @throws {RequiredError}
|
|
6428
|
+
*/
|
|
6429
|
+
v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookLog>> {
|
|
6430
|
+
return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
|
|
6431
|
+
},
|
|
6432
|
+
/**
|
|
6433
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
6434
|
+
* @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
|
|
6435
|
+
* @param {*} [options] Override http request option.
|
|
6436
|
+
* @throws {RequiredError}
|
|
6437
|
+
*/
|
|
6438
|
+
v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
6439
|
+
return localVarFp.v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(axios, basePath));
|
|
6440
|
+
},
|
|
6441
|
+
/**
|
|
6442
|
+
* 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.
|
|
6443
|
+
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
6444
|
+
* @param {*} [options] Override http request option.
|
|
6445
|
+
* @throws {RequiredError}
|
|
6446
|
+
*/
|
|
6447
|
+
v1UpdateEmailConfiguration(requestParameters: DefaultApiV1UpdateEmailConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
6448
|
+
return localVarFp.v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
6449
|
+
},
|
|
6450
|
+
/**
|
|
6451
|
+
* Update an existing organization target. The satellite target id cannot be changed. If you need to change the target you must delete the existing target and create a new one.
|
|
6452
|
+
* @param {DefaultApiV1UpdateOrganizationTargetRequest} requestParameters Request parameters.
|
|
6453
|
+
* @param {*} [options] Override http request option.
|
|
6454
|
+
* @throws {RequiredError}
|
|
6455
|
+
*/
|
|
6456
|
+
v1UpdateOrganizationTarget(requestParameters: DefaultApiV1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1OrganizationTarget> {
|
|
6457
|
+
return localVarFp.v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
|
|
6458
|
+
},
|
|
6459
|
+
/**
|
|
6460
|
+
* Update a private satellite target.
|
|
6461
|
+
* @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
|
|
6462
|
+
* @param {*} [options] Override http request option.
|
|
6463
|
+
* @throws {RequiredError}
|
|
6464
|
+
*/
|
|
6465
|
+
v1UpdateSatelliteTarget(requestParameters: DefaultApiV1UpdateSatelliteTargetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
6466
|
+
return localVarFp.v1UpdateSatelliteTarget(requestParameters.v1UpdateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
6467
|
+
},
|
|
6468
|
+
/**
|
|
6469
|
+
* Update a webhook configuration.
|
|
6470
|
+
* @param {DefaultApiV1UpdateWebhookConfigurationRequest} requestParameters Request parameters.
|
|
6471
|
+
* @param {*} [options] Override http request option.
|
|
6472
|
+
* @throws {RequiredError}
|
|
6473
|
+
*/
|
|
6474
|
+
v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
6475
|
+
return localVarFp.v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
6476
|
+
},
|
|
6477
|
+
/**
|
|
6478
|
+
* 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.
|
|
6479
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
4614
6480
|
* @param {*} [options] Override http request option.
|
|
4615
6481
|
* @throws {RequiredError}
|
|
4616
6482
|
*/
|
|
4617
|
-
|
|
4618
|
-
return localVarFp.
|
|
6483
|
+
v2CreatePlaneScan(requestParameters: DefaultApiV2CreatePlaneScanRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
6484
|
+
return localVarFp.v2CreatePlaneScan(requestParameters.v1PlaneScanRequest, options).then((request) => request(axios, basePath));
|
|
4619
6485
|
},
|
|
4620
6486
|
/**
|
|
4621
|
-
* Create
|
|
4622
|
-
* @param {
|
|
6487
|
+
* 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.
|
|
6488
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
4623
6489
|
* @param {*} [options] Override http request option.
|
|
4624
6490
|
* @throws {RequiredError}
|
|
4625
6491
|
*/
|
|
4626
|
-
|
|
4627
|
-
return localVarFp.
|
|
6492
|
+
v2CreateRicVolumeSearch(requestParameters: DefaultApiV2CreateRicVolumeSearchRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
6493
|
+
return localVarFp.v2CreateRicVolumeSearch(requestParameters.v1RicVolumeSearchRequest, options).then((request) => request(axios, basePath));
|
|
4628
6494
|
},
|
|
4629
6495
|
/**
|
|
4630
|
-
*
|
|
4631
|
-
* @param {
|
|
6496
|
+
* Delete a plane scan.
|
|
6497
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
4632
6498
|
* @param {*} [options] Override http request option.
|
|
4633
6499
|
* @throws {RequiredError}
|
|
4634
6500
|
*/
|
|
4635
|
-
|
|
4636
|
-
return localVarFp.
|
|
6501
|
+
v2DeletePlaneScan(requestParameters: DefaultApiV2DeletePlaneScanRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
6502
|
+
return localVarFp.v2DeletePlaneScan(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4637
6503
|
},
|
|
4638
6504
|
/**
|
|
4639
|
-
*
|
|
4640
|
-
* @param {
|
|
6505
|
+
* Delete a RIC volume search.
|
|
6506
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
4641
6507
|
* @param {*} [options] Override http request option.
|
|
4642
6508
|
* @throws {RequiredError}
|
|
4643
6509
|
*/
|
|
4644
|
-
|
|
4645
|
-
return localVarFp.
|
|
6510
|
+
v2DeleteRicVolumeSearch(requestParameters: DefaultApiV2DeleteRicVolumeSearchRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
6511
|
+
return localVarFp.v2DeleteRicVolumeSearch(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4646
6512
|
},
|
|
4647
6513
|
/**
|
|
4648
|
-
*
|
|
4649
|
-
* @param {
|
|
6514
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
6515
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
4650
6516
|
* @param {*} [options] Override http request option.
|
|
4651
6517
|
* @throws {RequiredError}
|
|
4652
6518
|
*/
|
|
4653
|
-
|
|
4654
|
-
return localVarFp.
|
|
6519
|
+
v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): AxiosPromise<V2Search> {
|
|
6520
|
+
return localVarFp.v2GetSearch(requestParameters.searchId, options).then((request) => request(axios, basePath));
|
|
4655
6521
|
},
|
|
4656
6522
|
/**
|
|
4657
|
-
*
|
|
4658
|
-
* @param {
|
|
6523
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
6524
|
+
* @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
|
|
4659
6525
|
* @param {*} [options] Override http request option.
|
|
4660
6526
|
* @throws {RequiredError}
|
|
4661
6527
|
*/
|
|
4662
|
-
|
|
4663
|
-
return localVarFp.
|
|
6528
|
+
v2GetSearches(requestParameters: DefaultApiV2GetSearchesRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V2Search>> {
|
|
6529
|
+
return localVarFp.v2GetSearches(requestParameters.after, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
4664
6530
|
},
|
|
4665
6531
|
};
|
|
4666
6532
|
};
|
|
4667
6533
|
|
|
6534
|
+
/**
|
|
6535
|
+
* Request parameters for getUncorrelatedTracks operation in DefaultApi.
|
|
6536
|
+
* @export
|
|
6537
|
+
* @interface DefaultApiGetUncorrelatedTracksRequest
|
|
6538
|
+
*/
|
|
6539
|
+
export interface DefaultApiGetUncorrelatedTracksRequest {
|
|
6540
|
+
/**
|
|
6541
|
+
* The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
6542
|
+
* @type {string}
|
|
6543
|
+
* @memberof DefaultApiGetUncorrelatedTracks
|
|
6544
|
+
*/
|
|
6545
|
+
readonly after?: string
|
|
6546
|
+
}
|
|
6547
|
+
|
|
6548
|
+
/**
|
|
6549
|
+
* Request parameters for v1CreateBlackoutVolume operation in DefaultApi.
|
|
6550
|
+
* @export
|
|
6551
|
+
* @interface DefaultApiV1CreateBlackoutVolumeRequest
|
|
6552
|
+
*/
|
|
6553
|
+
export interface DefaultApiV1CreateBlackoutVolumeRequest {
|
|
6554
|
+
/**
|
|
6555
|
+
*
|
|
6556
|
+
* @type {V1BlackoutVolumeRequest}
|
|
6557
|
+
* @memberof DefaultApiV1CreateBlackoutVolume
|
|
6558
|
+
*/
|
|
6559
|
+
readonly v1BlackoutVolumeRequest: V1BlackoutVolumeRequest
|
|
6560
|
+
}
|
|
6561
|
+
|
|
4668
6562
|
/**
|
|
4669
6563
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
4670
6564
|
* @export
|
|
@@ -4777,6 +6671,20 @@ export interface DefaultApiV1CreateWebhookTestRequest {
|
|
|
4777
6671
|
readonly v1CreateWebhookTestRequest: V1CreateWebhookTestRequest
|
|
4778
6672
|
}
|
|
4779
6673
|
|
|
6674
|
+
/**
|
|
6675
|
+
* Request parameters for v1DeleteBlackoutVolume operation in DefaultApi.
|
|
6676
|
+
* @export
|
|
6677
|
+
* @interface DefaultApiV1DeleteBlackoutVolumeRequest
|
|
6678
|
+
*/
|
|
6679
|
+
export interface DefaultApiV1DeleteBlackoutVolumeRequest {
|
|
6680
|
+
/**
|
|
6681
|
+
*
|
|
6682
|
+
* @type {string}
|
|
6683
|
+
* @memberof DefaultApiV1DeleteBlackoutVolume
|
|
6684
|
+
*/
|
|
6685
|
+
readonly id: string
|
|
6686
|
+
}
|
|
6687
|
+
|
|
4780
6688
|
/**
|
|
4781
6689
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
4782
6690
|
* @export
|
|
@@ -4861,6 +6769,20 @@ export interface DefaultApiV1DeleteWebhookConfigurationRequest {
|
|
|
4861
6769
|
readonly id: string
|
|
4862
6770
|
}
|
|
4863
6771
|
|
|
6772
|
+
/**
|
|
6773
|
+
* Request parameters for v1GetImageMetadata operation in DefaultApi.
|
|
6774
|
+
* @export
|
|
6775
|
+
* @interface DefaultApiV1GetImageMetadataRequest
|
|
6776
|
+
*/
|
|
6777
|
+
export interface DefaultApiV1GetImageMetadataRequest {
|
|
6778
|
+
/**
|
|
6779
|
+
*
|
|
6780
|
+
* @type {string}
|
|
6781
|
+
* @memberof DefaultApiV1GetImageMetadata
|
|
6782
|
+
*/
|
|
6783
|
+
readonly imageId: string
|
|
6784
|
+
}
|
|
6785
|
+
|
|
4864
6786
|
/**
|
|
4865
6787
|
* Request parameters for v1GetImageSet operation in DefaultApi.
|
|
4866
6788
|
* @export
|
|
@@ -4917,6 +6839,34 @@ export interface DefaultApiV1GetNodePropertiesRequest {
|
|
|
4917
6839
|
readonly nodeId: string
|
|
4918
6840
|
}
|
|
4919
6841
|
|
|
6842
|
+
/**
|
|
6843
|
+
* Request parameters for v1GetNodeSatelliteCalibrations operation in DefaultApi.
|
|
6844
|
+
* @export
|
|
6845
|
+
* @interface DefaultApiV1GetNodeSatelliteCalibrationsRequest
|
|
6846
|
+
*/
|
|
6847
|
+
export interface DefaultApiV1GetNodeSatelliteCalibrationsRequest {
|
|
6848
|
+
/**
|
|
6849
|
+
*
|
|
6850
|
+
* @type {string}
|
|
6851
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
6852
|
+
*/
|
|
6853
|
+
readonly nodeId: string
|
|
6854
|
+
|
|
6855
|
+
/**
|
|
6856
|
+
*
|
|
6857
|
+
* @type {number}
|
|
6858
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
6859
|
+
*/
|
|
6860
|
+
readonly limit?: number
|
|
6861
|
+
|
|
6862
|
+
/**
|
|
6863
|
+
*
|
|
6864
|
+
* @type {string}
|
|
6865
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
6866
|
+
*/
|
|
6867
|
+
readonly before?: string
|
|
6868
|
+
}
|
|
6869
|
+
|
|
4920
6870
|
/**
|
|
4921
6871
|
* Request parameters for v1GetObservationFeatures operation in DefaultApi.
|
|
4922
6872
|
* @export
|
|
@@ -5007,6 +6957,13 @@ export interface DefaultApiV1GetObservationStatusesRequest {
|
|
|
5007
6957
|
*/
|
|
5008
6958
|
readonly surveyInstructionId?: string
|
|
5009
6959
|
|
|
6960
|
+
/**
|
|
6961
|
+
*
|
|
6962
|
+
* @type {string}
|
|
6963
|
+
* @memberof DefaultApiV1GetObservationStatuses
|
|
6964
|
+
*/
|
|
6965
|
+
readonly resolvedImageInstructionId?: string
|
|
6966
|
+
|
|
5010
6967
|
/**
|
|
5011
6968
|
*
|
|
5012
6969
|
* @type {string}
|
|
@@ -5155,6 +7112,34 @@ export interface DefaultApiV1GetSearchInstructionsRequest {
|
|
|
5155
7112
|
readonly before?: string
|
|
5156
7113
|
}
|
|
5157
7114
|
|
|
7115
|
+
/**
|
|
7116
|
+
* Request parameters for v1GetStateVectors operation in DefaultApi.
|
|
7117
|
+
* @export
|
|
7118
|
+
* @interface DefaultApiV1GetStateVectorsRequest
|
|
7119
|
+
*/
|
|
7120
|
+
export interface DefaultApiV1GetStateVectorsRequest {
|
|
7121
|
+
/**
|
|
7122
|
+
*
|
|
7123
|
+
* @type {string}
|
|
7124
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
7125
|
+
*/
|
|
7126
|
+
readonly targetId: string
|
|
7127
|
+
|
|
7128
|
+
/**
|
|
7129
|
+
*
|
|
7130
|
+
* @type {string}
|
|
7131
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
7132
|
+
*/
|
|
7133
|
+
readonly before?: string
|
|
7134
|
+
|
|
7135
|
+
/**
|
|
7136
|
+
*
|
|
7137
|
+
* @type {string}
|
|
7138
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
7139
|
+
*/
|
|
7140
|
+
readonly after?: string
|
|
7141
|
+
}
|
|
7142
|
+
|
|
5158
7143
|
/**
|
|
5159
7144
|
* Request parameters for v1GetSurveyInstructions operation in DefaultApi.
|
|
5160
7145
|
* @export
|
|
@@ -5302,6 +7287,97 @@ export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
|
5302
7287
|
readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest
|
|
5303
7288
|
}
|
|
5304
7289
|
|
|
7290
|
+
/**
|
|
7291
|
+
* Request parameters for v2CreatePlaneScan operation in DefaultApi.
|
|
7292
|
+
* @export
|
|
7293
|
+
* @interface DefaultApiV2CreatePlaneScanRequest
|
|
7294
|
+
*/
|
|
7295
|
+
export interface DefaultApiV2CreatePlaneScanRequest {
|
|
7296
|
+
/**
|
|
7297
|
+
*
|
|
7298
|
+
* @type {V1PlaneScanRequest}
|
|
7299
|
+
* @memberof DefaultApiV2CreatePlaneScan
|
|
7300
|
+
*/
|
|
7301
|
+
readonly v1PlaneScanRequest: V1PlaneScanRequest
|
|
7302
|
+
}
|
|
7303
|
+
|
|
7304
|
+
/**
|
|
7305
|
+
* Request parameters for v2CreateRicVolumeSearch operation in DefaultApi.
|
|
7306
|
+
* @export
|
|
7307
|
+
* @interface DefaultApiV2CreateRicVolumeSearchRequest
|
|
7308
|
+
*/
|
|
7309
|
+
export interface DefaultApiV2CreateRicVolumeSearchRequest {
|
|
7310
|
+
/**
|
|
7311
|
+
*
|
|
7312
|
+
* @type {V1RicVolumeSearchRequest}
|
|
7313
|
+
* @memberof DefaultApiV2CreateRicVolumeSearch
|
|
7314
|
+
*/
|
|
7315
|
+
readonly v1RicVolumeSearchRequest: V1RicVolumeSearchRequest
|
|
7316
|
+
}
|
|
7317
|
+
|
|
7318
|
+
/**
|
|
7319
|
+
* Request parameters for v2DeletePlaneScan operation in DefaultApi.
|
|
7320
|
+
* @export
|
|
7321
|
+
* @interface DefaultApiV2DeletePlaneScanRequest
|
|
7322
|
+
*/
|
|
7323
|
+
export interface DefaultApiV2DeletePlaneScanRequest {
|
|
7324
|
+
/**
|
|
7325
|
+
*
|
|
7326
|
+
* @type {string}
|
|
7327
|
+
* @memberof DefaultApiV2DeletePlaneScan
|
|
7328
|
+
*/
|
|
7329
|
+
readonly id: string
|
|
7330
|
+
}
|
|
7331
|
+
|
|
7332
|
+
/**
|
|
7333
|
+
* Request parameters for v2DeleteRicVolumeSearch operation in DefaultApi.
|
|
7334
|
+
* @export
|
|
7335
|
+
* @interface DefaultApiV2DeleteRicVolumeSearchRequest
|
|
7336
|
+
*/
|
|
7337
|
+
export interface DefaultApiV2DeleteRicVolumeSearchRequest {
|
|
7338
|
+
/**
|
|
7339
|
+
*
|
|
7340
|
+
* @type {string}
|
|
7341
|
+
* @memberof DefaultApiV2DeleteRicVolumeSearch
|
|
7342
|
+
*/
|
|
7343
|
+
readonly id: string
|
|
7344
|
+
}
|
|
7345
|
+
|
|
7346
|
+
/**
|
|
7347
|
+
* Request parameters for v2GetSearch operation in DefaultApi.
|
|
7348
|
+
* @export
|
|
7349
|
+
* @interface DefaultApiV2GetSearchRequest
|
|
7350
|
+
*/
|
|
7351
|
+
export interface DefaultApiV2GetSearchRequest {
|
|
7352
|
+
/**
|
|
7353
|
+
*
|
|
7354
|
+
* @type {string}
|
|
7355
|
+
* @memberof DefaultApiV2GetSearch
|
|
7356
|
+
*/
|
|
7357
|
+
readonly searchId: string
|
|
7358
|
+
}
|
|
7359
|
+
|
|
7360
|
+
/**
|
|
7361
|
+
* Request parameters for v2GetSearches operation in DefaultApi.
|
|
7362
|
+
* @export
|
|
7363
|
+
* @interface DefaultApiV2GetSearchesRequest
|
|
7364
|
+
*/
|
|
7365
|
+
export interface DefaultApiV2GetSearchesRequest {
|
|
7366
|
+
/**
|
|
7367
|
+
* The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
7368
|
+
* @type {string}
|
|
7369
|
+
* @memberof DefaultApiV2GetSearches
|
|
7370
|
+
*/
|
|
7371
|
+
readonly after?: string
|
|
7372
|
+
|
|
7373
|
+
/**
|
|
7374
|
+
* The status of the searches to return. Defaults to all statuses.
|
|
7375
|
+
* @type {'COMPLETED' | 'IN_PROGRESS' | 'FAILED'}
|
|
7376
|
+
* @memberof DefaultApiV2GetSearches
|
|
7377
|
+
*/
|
|
7378
|
+
readonly status?: V2GetSearchesStatusEnum
|
|
7379
|
+
}
|
|
7380
|
+
|
|
5305
7381
|
/**
|
|
5306
7382
|
* DefaultApi - object-oriented interface
|
|
5307
7383
|
* @export
|
|
@@ -5309,6 +7385,29 @@ export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
|
5309
7385
|
* @extends {BaseAPI}
|
|
5310
7386
|
*/
|
|
5311
7387
|
export class DefaultApi extends BaseAPI {
|
|
7388
|
+
/**
|
|
7389
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
7390
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
7391
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
7392
|
+
* @param {*} [options] Override http request option.
|
|
7393
|
+
* @throws {RequiredError}
|
|
7394
|
+
* @memberof DefaultApi
|
|
7395
|
+
*/
|
|
7396
|
+
public getUncorrelatedTracks(requestParameters: DefaultApiGetUncorrelatedTracksRequest = {}, options?: AxiosRequestConfig) {
|
|
7397
|
+
return DefaultApiFp(this.configuration).getUncorrelatedTracks(requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
7398
|
+
}
|
|
7399
|
+
|
|
7400
|
+
/**
|
|
7401
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
7402
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
7403
|
+
* @param {*} [options] Override http request option.
|
|
7404
|
+
* @throws {RequiredError}
|
|
7405
|
+
* @memberof DefaultApi
|
|
7406
|
+
*/
|
|
7407
|
+
public v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig) {
|
|
7408
|
+
return DefaultApiFp(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7409
|
+
}
|
|
7410
|
+
|
|
5312
7411
|
/**
|
|
5313
7412
|
* Create an image set.
|
|
5314
7413
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -5332,7 +7431,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
5332
7431
|
}
|
|
5333
7432
|
|
|
5334
7433
|
/**
|
|
5335
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
7434
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
5336
7435
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
5337
7436
|
* @param {*} [options] Override http request option.
|
|
5338
7437
|
* @throws {RequiredError}
|
|
@@ -5354,9 +7453,10 @@ export class DefaultApi extends BaseAPI {
|
|
|
5354
7453
|
}
|
|
5355
7454
|
|
|
5356
7455
|
/**
|
|
5357
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
7456
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
5358
7457
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
5359
7458
|
* @param {*} [options] Override http request option.
|
|
7459
|
+
* @deprecated
|
|
5360
7460
|
* @throws {RequiredError}
|
|
5361
7461
|
* @memberof DefaultApi
|
|
5362
7462
|
*/
|
|
@@ -5397,6 +7497,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5397
7497
|
return DefaultApiFp(this.configuration).v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5398
7498
|
}
|
|
5399
7499
|
|
|
7500
|
+
/**
|
|
7501
|
+
* Delete a blackout volume.
|
|
7502
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
7503
|
+
* @param {*} [options] Override http request option.
|
|
7504
|
+
* @throws {RequiredError}
|
|
7505
|
+
* @memberof DefaultApi
|
|
7506
|
+
*/
|
|
7507
|
+
public v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig) {
|
|
7508
|
+
return DefaultApiFp(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7509
|
+
}
|
|
7510
|
+
|
|
5400
7511
|
/**
|
|
5401
7512
|
* Delete an image set.
|
|
5402
7513
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -5463,6 +7574,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5463
7574
|
return DefaultApiFp(this.configuration).v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
5464
7575
|
}
|
|
5465
7576
|
|
|
7577
|
+
/**
|
|
7578
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
7579
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
7580
|
+
* @param {*} [options] Override http request option.
|
|
7581
|
+
* @throws {RequiredError}
|
|
7582
|
+
* @memberof DefaultApi
|
|
7583
|
+
*/
|
|
7584
|
+
public v1GetImageMetadata(requestParameters: DefaultApiV1GetImageMetadataRequest, options?: AxiosRequestConfig) {
|
|
7585
|
+
return DefaultApiFp(this.configuration).v1GetImageMetadata(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
7586
|
+
}
|
|
7587
|
+
|
|
5466
7588
|
/**
|
|
5467
7589
|
* Get an image set.
|
|
5468
7590
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -5517,6 +7639,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5517
7639
|
return DefaultApiFp(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
|
|
5518
7640
|
}
|
|
5519
7641
|
|
|
7642
|
+
/**
|
|
7643
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
7644
|
+
* @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
|
|
7645
|
+
* @param {*} [options] Override http request option.
|
|
7646
|
+
* @throws {RequiredError}
|
|
7647
|
+
* @memberof DefaultApi
|
|
7648
|
+
*/
|
|
7649
|
+
public v1GetNodeSatelliteCalibrations(requestParameters: DefaultApiV1GetNodeSatelliteCalibrationsRequest, options?: AxiosRequestConfig) {
|
|
7650
|
+
return DefaultApiFp(this.configuration).v1GetNodeSatelliteCalibrations(requestParameters.nodeId, requestParameters.limit, requestParameters.before, options).then((request) => request(this.axios, this.basePath));
|
|
7651
|
+
}
|
|
7652
|
+
|
|
5520
7653
|
/**
|
|
5521
7654
|
* Get observation features.
|
|
5522
7655
|
* @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
|
|
@@ -5558,7 +7691,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
5558
7691
|
* @memberof DefaultApi
|
|
5559
7692
|
*/
|
|
5560
7693
|
public v1GetObservationStatuses(requestParameters: DefaultApiV1GetObservationStatusesRequest = {}, options?: AxiosRequestConfig) {
|
|
5561
|
-
return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
7694
|
+
return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
5562
7695
|
}
|
|
5563
7696
|
|
|
5564
7697
|
/**
|
|
@@ -5584,7 +7717,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
5584
7717
|
}
|
|
5585
7718
|
|
|
5586
7719
|
/**
|
|
5587
|
-
* Get organization targets see the [create](#
|
|
7720
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
5588
7721
|
* @param {*} [options] Override http request option.
|
|
5589
7722
|
* @throws {RequiredError}
|
|
5590
7723
|
* @memberof DefaultApi
|
|
@@ -5637,6 +7770,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5637
7770
|
return DefaultApiFp(this.configuration).v1GetSearchInstructions(requestParameters.before, options).then((request) => request(this.axios, this.basePath));
|
|
5638
7771
|
}
|
|
5639
7772
|
|
|
7773
|
+
/**
|
|
7774
|
+
* Get state vectors for a satellite.
|
|
7775
|
+
* @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
|
|
7776
|
+
* @param {*} [options] Override http request option.
|
|
7777
|
+
* @throws {RequiredError}
|
|
7778
|
+
* @memberof DefaultApi
|
|
7779
|
+
*/
|
|
7780
|
+
public v1GetStateVectors(requestParameters: DefaultApiV1GetStateVectorsRequest, options?: AxiosRequestConfig) {
|
|
7781
|
+
return DefaultApiFp(this.configuration).v1GetStateVectors(requestParameters.targetId, requestParameters.before, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
7782
|
+
}
|
|
7783
|
+
|
|
5640
7784
|
/**
|
|
5641
7785
|
* Get a list of survey instructions. Survey instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
5642
7786
|
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
@@ -5745,7 +7889,82 @@ export class DefaultApi extends BaseAPI {
|
|
|
5745
7889
|
public v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig) {
|
|
5746
7890
|
return DefaultApiFp(this.configuration).v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5747
7891
|
}
|
|
7892
|
+
|
|
7893
|
+
/**
|
|
7894
|
+
* 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.
|
|
7895
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
7896
|
+
* @param {*} [options] Override http request option.
|
|
7897
|
+
* @throws {RequiredError}
|
|
7898
|
+
* @memberof DefaultApi
|
|
7899
|
+
*/
|
|
7900
|
+
public v2CreatePlaneScan(requestParameters: DefaultApiV2CreatePlaneScanRequest, options?: AxiosRequestConfig) {
|
|
7901
|
+
return DefaultApiFp(this.configuration).v2CreatePlaneScan(requestParameters.v1PlaneScanRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7902
|
+
}
|
|
7903
|
+
|
|
7904
|
+
/**
|
|
7905
|
+
* 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.
|
|
7906
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
7907
|
+
* @param {*} [options] Override http request option.
|
|
7908
|
+
* @throws {RequiredError}
|
|
7909
|
+
* @memberof DefaultApi
|
|
7910
|
+
*/
|
|
7911
|
+
public v2CreateRicVolumeSearch(requestParameters: DefaultApiV2CreateRicVolumeSearchRequest, options?: AxiosRequestConfig) {
|
|
7912
|
+
return DefaultApiFp(this.configuration).v2CreateRicVolumeSearch(requestParameters.v1RicVolumeSearchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7913
|
+
}
|
|
7914
|
+
|
|
7915
|
+
/**
|
|
7916
|
+
* Delete a plane scan.
|
|
7917
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
7918
|
+
* @param {*} [options] Override http request option.
|
|
7919
|
+
* @throws {RequiredError}
|
|
7920
|
+
* @memberof DefaultApi
|
|
7921
|
+
*/
|
|
7922
|
+
public v2DeletePlaneScan(requestParameters: DefaultApiV2DeletePlaneScanRequest, options?: AxiosRequestConfig) {
|
|
7923
|
+
return DefaultApiFp(this.configuration).v2DeletePlaneScan(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7924
|
+
}
|
|
7925
|
+
|
|
7926
|
+
/**
|
|
7927
|
+
* Delete a RIC volume search.
|
|
7928
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
7929
|
+
* @param {*} [options] Override http request option.
|
|
7930
|
+
* @throws {RequiredError}
|
|
7931
|
+
* @memberof DefaultApi
|
|
7932
|
+
*/
|
|
7933
|
+
public v2DeleteRicVolumeSearch(requestParameters: DefaultApiV2DeleteRicVolumeSearchRequest, options?: AxiosRequestConfig) {
|
|
7934
|
+
return DefaultApiFp(this.configuration).v2DeleteRicVolumeSearch(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7935
|
+
}
|
|
7936
|
+
|
|
7937
|
+
/**
|
|
7938
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
7939
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
7940
|
+
* @param {*} [options] Override http request option.
|
|
7941
|
+
* @throws {RequiredError}
|
|
7942
|
+
* @memberof DefaultApi
|
|
7943
|
+
*/
|
|
7944
|
+
public v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig) {
|
|
7945
|
+
return DefaultApiFp(this.configuration).v2GetSearch(requestParameters.searchId, options).then((request) => request(this.axios, this.basePath));
|
|
7946
|
+
}
|
|
7947
|
+
|
|
7948
|
+
/**
|
|
7949
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
7950
|
+
* @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
|
|
7951
|
+
* @param {*} [options] Override http request option.
|
|
7952
|
+
* @throws {RequiredError}
|
|
7953
|
+
* @memberof DefaultApi
|
|
7954
|
+
*/
|
|
7955
|
+
public v2GetSearches(requestParameters: DefaultApiV2GetSearchesRequest = {}, options?: AxiosRequestConfig) {
|
|
7956
|
+
return DefaultApiFp(this.configuration).v2GetSearches(requestParameters.after, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
7957
|
+
}
|
|
5748
7958
|
}
|
|
5749
7959
|
|
|
7960
|
+
/**
|
|
7961
|
+
* @export
|
|
7962
|
+
*/
|
|
7963
|
+
export const V2GetSearchesStatusEnum = {
|
|
7964
|
+
COMPLETED: 'COMPLETED',
|
|
7965
|
+
IN_PROGRESS: 'IN_PROGRESS',
|
|
7966
|
+
FAILED: 'FAILED'
|
|
7967
|
+
} as const;
|
|
7968
|
+
export type V2GetSearchesStatusEnum = typeof V2GetSearchesStatusEnum[keyof typeof V2GetSearchesStatusEnum];
|
|
5750
7969
|
|
|
5751
7970
|
|