@ourskyai/sda-api 1.3.6669 → 1.3.8459
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 +965 -68
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +680 -55
- package/dist/api.js +409 -8
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +680 -55
- package/dist/esm/api.js +408 -7
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8459
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -93,6 +93,15 @@ export declare const FilterType: {
|
|
|
93
93
|
readonly PHOTO_JOHNSON_V: "PHOTO_JOHNSON_V";
|
|
94
94
|
readonly PHOTO_COUSINS_R: "PHOTO_COUSINS_R";
|
|
95
95
|
readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
|
|
96
|
+
readonly PHOTO_SLOAN_U: "PHOTO_SLOAN_U";
|
|
97
|
+
readonly PHOTO_SLOAN_G: "PHOTO_SLOAN_G";
|
|
98
|
+
readonly PHOTO_SLOAN_R: "PHOTO_SLOAN_R";
|
|
99
|
+
readonly PHOTO_SLOAN_I: "PHOTO_SLOAN_I";
|
|
100
|
+
readonly PHOTO_SLOAN_Z: "PHOTO_SLOAN_Z";
|
|
101
|
+
readonly TRIPLE_BAND: "TRIPLE_BAND";
|
|
102
|
+
readonly QUAD_BAND: "QUAD_BAND";
|
|
103
|
+
readonly DARK: "DARK";
|
|
104
|
+
readonly OTHER: "OTHER";
|
|
96
105
|
};
|
|
97
106
|
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
98
107
|
/**
|
|
@@ -472,6 +481,31 @@ export declare const V1BlackoutVolumeRequestReferenceFrameEnum: {
|
|
|
472
481
|
readonly ECEF: "ECEF";
|
|
473
482
|
};
|
|
474
483
|
export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeRequestReferenceFrameEnum[keyof typeof V1BlackoutVolumeRequestReferenceFrameEnum];
|
|
484
|
+
/**
|
|
485
|
+
*
|
|
486
|
+
* @export
|
|
487
|
+
* @interface V1CreateDirectTaskInstructionRequest
|
|
488
|
+
*/
|
|
489
|
+
export interface V1CreateDirectTaskInstructionRequest {
|
|
490
|
+
/**
|
|
491
|
+
* NET time after which the instruction can be executed. If null, the instruction can be executed immediately.
|
|
492
|
+
* @type {string}
|
|
493
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
494
|
+
*/
|
|
495
|
+
'executableAfter'?: string;
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @type {string}
|
|
499
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
500
|
+
*/
|
|
501
|
+
'targetId': string;
|
|
502
|
+
/**
|
|
503
|
+
*
|
|
504
|
+
* @type {TrackingType}
|
|
505
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
506
|
+
*/
|
|
507
|
+
'trackingType': TrackingType;
|
|
508
|
+
}
|
|
475
509
|
/**
|
|
476
510
|
*
|
|
477
511
|
* @export
|
|
@@ -522,7 +556,7 @@ export interface V1CreateImageSetImageRequest {
|
|
|
522
556
|
'capturedAt'?: string;
|
|
523
557
|
}
|
|
524
558
|
/**
|
|
525
|
-
*
|
|
559
|
+
* Response from image creation, with image ID and presigned S3 upload URL.
|
|
526
560
|
* @export
|
|
527
561
|
* @interface V1CreateImageSetImageResponse
|
|
528
562
|
*/
|
|
@@ -908,6 +942,18 @@ export interface V1ImageMetadata {
|
|
|
908
942
|
* @memberof V1ImageMetadata
|
|
909
943
|
*/
|
|
910
944
|
'inputStars'?: Array<V1HFRStar>;
|
|
945
|
+
/**
|
|
946
|
+
*
|
|
947
|
+
* @type {V1SIPCoefficients}
|
|
948
|
+
* @memberof V1ImageMetadata
|
|
949
|
+
*/
|
|
950
|
+
'sipCoefficients'?: V1SIPCoefficients;
|
|
951
|
+
/**
|
|
952
|
+
* Photometric zero point offset. Add to instrumental magnitude (-2.5*log10(flux)) to get calibrated magnitude in standard photometric system.
|
|
953
|
+
* @type {number}
|
|
954
|
+
* @memberof V1ImageMetadata
|
|
955
|
+
*/
|
|
956
|
+
'photometricZeroPoint'?: number;
|
|
911
957
|
/**
|
|
912
958
|
*
|
|
913
959
|
* @type {string}
|
|
@@ -1151,6 +1197,170 @@ export interface V1ImageSetImage {
|
|
|
1151
1197
|
*/
|
|
1152
1198
|
'predictedStreakLocation'?: V1PredictedStreakLocation;
|
|
1153
1199
|
}
|
|
1200
|
+
/**
|
|
1201
|
+
* Extracted stars that matched during plate solving
|
|
1202
|
+
* @export
|
|
1203
|
+
* @interface V1MatchedStar
|
|
1204
|
+
*/
|
|
1205
|
+
export interface V1MatchedStar {
|
|
1206
|
+
/**
|
|
1207
|
+
* The x-centroid
|
|
1208
|
+
* @type {number}
|
|
1209
|
+
* @memberof V1MatchedStar
|
|
1210
|
+
*/
|
|
1211
|
+
'xCentroid': number;
|
|
1212
|
+
/**
|
|
1213
|
+
* The y-centroid
|
|
1214
|
+
* @type {number}
|
|
1215
|
+
* @memberof V1MatchedStar
|
|
1216
|
+
*/
|
|
1217
|
+
'yCentroid': number;
|
|
1218
|
+
/**
|
|
1219
|
+
* The UCAC4 or GaiaUD number if known
|
|
1220
|
+
* @type {number}
|
|
1221
|
+
* @memberof V1MatchedStar
|
|
1222
|
+
*/
|
|
1223
|
+
'sequenceNumber': number;
|
|
1224
|
+
/**
|
|
1225
|
+
* Extracted magnitude
|
|
1226
|
+
* @type {number}
|
|
1227
|
+
* @memberof V1MatchedStar
|
|
1228
|
+
*/
|
|
1229
|
+
'magnitude': number;
|
|
1230
|
+
/**
|
|
1231
|
+
* The star RA
|
|
1232
|
+
* @type {number}
|
|
1233
|
+
* @memberof V1MatchedStar
|
|
1234
|
+
*/
|
|
1235
|
+
'raRad': number;
|
|
1236
|
+
/**
|
|
1237
|
+
* The star Dec
|
|
1238
|
+
* @type {number}
|
|
1239
|
+
* @memberof V1MatchedStar
|
|
1240
|
+
*/
|
|
1241
|
+
'decRad': number;
|
|
1242
|
+
/**
|
|
1243
|
+
* The calculated offset from the catalog star, if known. 0 otherwise
|
|
1244
|
+
* @type {number}
|
|
1245
|
+
* @memberof V1MatchedStar
|
|
1246
|
+
*/
|
|
1247
|
+
'catalogOffsetRad': number;
|
|
1248
|
+
/**
|
|
1249
|
+
*
|
|
1250
|
+
* @type {number}
|
|
1251
|
+
* @memberof V1MatchedStar
|
|
1252
|
+
*/
|
|
1253
|
+
'catalogOffsetMagnitude'?: number;
|
|
1254
|
+
/**
|
|
1255
|
+
*
|
|
1256
|
+
* @type {number}
|
|
1257
|
+
* @memberof V1MatchedStar
|
|
1258
|
+
*/
|
|
1259
|
+
'flux': number;
|
|
1260
|
+
/**
|
|
1261
|
+
*
|
|
1262
|
+
* @type {number}
|
|
1263
|
+
* @memberof V1MatchedStar
|
|
1264
|
+
*/
|
|
1265
|
+
'hfr': number;
|
|
1266
|
+
}
|
|
1267
|
+
/**
|
|
1268
|
+
*
|
|
1269
|
+
* @export
|
|
1270
|
+
* @interface V1NodeCalibrationResult
|
|
1271
|
+
*/
|
|
1272
|
+
export interface V1NodeCalibrationResult {
|
|
1273
|
+
/**
|
|
1274
|
+
*
|
|
1275
|
+
* @type {string}
|
|
1276
|
+
* @memberof V1NodeCalibrationResult
|
|
1277
|
+
*/
|
|
1278
|
+
'id': string;
|
|
1279
|
+
/**
|
|
1280
|
+
*
|
|
1281
|
+
* @type {string}
|
|
1282
|
+
* @memberof V1NodeCalibrationResult
|
|
1283
|
+
*/
|
|
1284
|
+
'nodeId': string;
|
|
1285
|
+
/**
|
|
1286
|
+
*
|
|
1287
|
+
* @type {string}
|
|
1288
|
+
* @memberof V1NodeCalibrationResult
|
|
1289
|
+
*/
|
|
1290
|
+
'targetId': string;
|
|
1291
|
+
/**
|
|
1292
|
+
*
|
|
1293
|
+
* @type {string}
|
|
1294
|
+
* @memberof V1NodeCalibrationResult
|
|
1295
|
+
*/
|
|
1296
|
+
'imageId': string;
|
|
1297
|
+
/**
|
|
1298
|
+
* The right ascension of the center of the extracted streak, in radians
|
|
1299
|
+
* @type {number}
|
|
1300
|
+
* @memberof V1NodeCalibrationResult
|
|
1301
|
+
*/
|
|
1302
|
+
'calculatedRaRadians'?: number;
|
|
1303
|
+
/**
|
|
1304
|
+
* The declination of the center of the extracted streak, in radians
|
|
1305
|
+
* @type {number}
|
|
1306
|
+
* @memberof V1NodeCalibrationResult
|
|
1307
|
+
*/
|
|
1308
|
+
'calculatedDecRadians'?: number;
|
|
1309
|
+
/**
|
|
1310
|
+
* Ground truth right ascension in radians, from SP3 file
|
|
1311
|
+
* @type {number}
|
|
1312
|
+
* @memberof V1NodeCalibrationResult
|
|
1313
|
+
*/
|
|
1314
|
+
'groundTruthRaRadians'?: number;
|
|
1315
|
+
/**
|
|
1316
|
+
* Ground truth declination in radians, from SP3 file
|
|
1317
|
+
* @type {number}
|
|
1318
|
+
* @memberof V1NodeCalibrationResult
|
|
1319
|
+
*/
|
|
1320
|
+
'groundTruthDecRadians'?: number;
|
|
1321
|
+
/**
|
|
1322
|
+
* Calculated error in RA, in arc-seconds
|
|
1323
|
+
* @type {number}
|
|
1324
|
+
* @memberof V1NodeCalibrationResult
|
|
1325
|
+
*/
|
|
1326
|
+
'raErrorArcSeconds'?: number;
|
|
1327
|
+
/**
|
|
1328
|
+
* Calculated error in Dec, in arc-seconds
|
|
1329
|
+
* @type {number}
|
|
1330
|
+
* @memberof V1NodeCalibrationResult
|
|
1331
|
+
*/
|
|
1332
|
+
'decErrorArcSeconds'?: number;
|
|
1333
|
+
/**
|
|
1334
|
+
* Total error in RA/Dec, in arc-seconds
|
|
1335
|
+
* @type {number}
|
|
1336
|
+
* @memberof V1NodeCalibrationResult
|
|
1337
|
+
*/
|
|
1338
|
+
'totalErrorArcSeconds'?: number;
|
|
1339
|
+
/**
|
|
1340
|
+
*
|
|
1341
|
+
* @type {string}
|
|
1342
|
+
* @memberof V1NodeCalibrationResult
|
|
1343
|
+
*/
|
|
1344
|
+
'centerTime': string;
|
|
1345
|
+
/**
|
|
1346
|
+
*
|
|
1347
|
+
* @type {V1SatelliteCalibrationFamily}
|
|
1348
|
+
* @memberof V1NodeCalibrationResult
|
|
1349
|
+
*/
|
|
1350
|
+
'calibrationFamily': V1SatelliteCalibrationFamily;
|
|
1351
|
+
/**
|
|
1352
|
+
*
|
|
1353
|
+
* @type {string}
|
|
1354
|
+
* @memberof V1NodeCalibrationResult
|
|
1355
|
+
*/
|
|
1356
|
+
'sp3File': string;
|
|
1357
|
+
/**
|
|
1358
|
+
*
|
|
1359
|
+
* @type {string}
|
|
1360
|
+
* @memberof V1NodeCalibrationResult
|
|
1361
|
+
*/
|
|
1362
|
+
'createdAt': string;
|
|
1363
|
+
}
|
|
1154
1364
|
/**
|
|
1155
1365
|
* Observation Feature
|
|
1156
1366
|
* @export
|
|
@@ -1507,55 +1717,6 @@ export interface V1PlaneScanRequest {
|
|
|
1507
1717
|
*/
|
|
1508
1718
|
'stepSizeDegrees': number;
|
|
1509
1719
|
}
|
|
1510
|
-
/**
|
|
1511
|
-
* Extracted stars that matched during plate solving
|
|
1512
|
-
* @export
|
|
1513
|
-
* @interface V1Plate
|
|
1514
|
-
*/
|
|
1515
|
-
export interface V1Plate {
|
|
1516
|
-
/**
|
|
1517
|
-
* The x-centroid
|
|
1518
|
-
* @type {number}
|
|
1519
|
-
* @memberof V1Plate
|
|
1520
|
-
*/
|
|
1521
|
-
'xCentroid': number;
|
|
1522
|
-
/**
|
|
1523
|
-
* The y-centroid
|
|
1524
|
-
* @type {number}
|
|
1525
|
-
* @memberof V1Plate
|
|
1526
|
-
*/
|
|
1527
|
-
'yCentroid': number;
|
|
1528
|
-
/**
|
|
1529
|
-
* The UCAC4 or GaiaUD number if known
|
|
1530
|
-
* @type {number}
|
|
1531
|
-
* @memberof V1Plate
|
|
1532
|
-
*/
|
|
1533
|
-
'sequenceNumber': number;
|
|
1534
|
-
/**
|
|
1535
|
-
* Extracted magnitude
|
|
1536
|
-
* @type {number}
|
|
1537
|
-
* @memberof V1Plate
|
|
1538
|
-
*/
|
|
1539
|
-
'magnitude': number;
|
|
1540
|
-
/**
|
|
1541
|
-
* The star RA
|
|
1542
|
-
* @type {number}
|
|
1543
|
-
* @memberof V1Plate
|
|
1544
|
-
*/
|
|
1545
|
-
'raRad': number;
|
|
1546
|
-
/**
|
|
1547
|
-
* The star Dec
|
|
1548
|
-
* @type {number}
|
|
1549
|
-
* @memberof V1Plate
|
|
1550
|
-
*/
|
|
1551
|
-
'decRad': number;
|
|
1552
|
-
/**
|
|
1553
|
-
* The calculated offset from the catalog star, if known. 0 otherwise
|
|
1554
|
-
* @type {number}
|
|
1555
|
-
* @memberof V1Plate
|
|
1556
|
-
*/
|
|
1557
|
-
'catalogOffsetRad': number;
|
|
1558
|
-
}
|
|
1559
1720
|
/**
|
|
1560
1721
|
*
|
|
1561
1722
|
* @export
|
|
@@ -1564,10 +1725,16 @@ export interface V1Plate {
|
|
|
1564
1725
|
export interface V1PlateSolveResult {
|
|
1565
1726
|
/**
|
|
1566
1727
|
*
|
|
1567
|
-
* @type {
|
|
1728
|
+
* @type {V1PlateSolveStatus}
|
|
1568
1729
|
* @memberof V1PlateSolveResult
|
|
1569
1730
|
*/
|
|
1570
|
-
'
|
|
1731
|
+
'status'?: V1PlateSolveStatus;
|
|
1732
|
+
/**
|
|
1733
|
+
*
|
|
1734
|
+
* @type {Array<V1MatchedStar>}
|
|
1735
|
+
* @memberof V1PlateSolveResult
|
|
1736
|
+
*/
|
|
1737
|
+
'matchedStars'?: Array<V1MatchedStar>;
|
|
1571
1738
|
/**
|
|
1572
1739
|
* The number of pixels in X directions
|
|
1573
1740
|
* @type {number}
|
|
@@ -1623,6 +1790,17 @@ export interface V1PlateSolveResult {
|
|
|
1623
1790
|
*/
|
|
1624
1791
|
'transformation': V1Transformation;
|
|
1625
1792
|
}
|
|
1793
|
+
/**
|
|
1794
|
+
*
|
|
1795
|
+
* @export
|
|
1796
|
+
* @enum {string}
|
|
1797
|
+
*/
|
|
1798
|
+
export declare const V1PlateSolveStatus: {
|
|
1799
|
+
readonly MATCH_FOUND: "MATCH_FOUND";
|
|
1800
|
+
readonly NO_MATCH_FOUND: "NO_MATCH_FOUND";
|
|
1801
|
+
readonly CANCELLED: "CANCELLED";
|
|
1802
|
+
};
|
|
1803
|
+
export type V1PlateSolveStatus = typeof V1PlateSolveStatus[keyof typeof V1PlateSolveStatus];
|
|
1626
1804
|
/**
|
|
1627
1805
|
* A point in 3D space.
|
|
1628
1806
|
* @export
|
|
@@ -1765,6 +1943,90 @@ export interface V1RicVolumeSearchRequest {
|
|
|
1765
1943
|
*/
|
|
1766
1944
|
'ricStdevEpoch'?: string;
|
|
1767
1945
|
}
|
|
1946
|
+
/**
|
|
1947
|
+
*
|
|
1948
|
+
* @export
|
|
1949
|
+
* @interface V1SIPCoefficients
|
|
1950
|
+
*/
|
|
1951
|
+
export interface V1SIPCoefficients {
|
|
1952
|
+
/**
|
|
1953
|
+
* Order of the SIP transformation
|
|
1954
|
+
* @type {number}
|
|
1955
|
+
* @memberof V1SIPCoefficients
|
|
1956
|
+
*/
|
|
1957
|
+
'order': number;
|
|
1958
|
+
/**
|
|
1959
|
+
* Forward SIP coefficients matrix A
|
|
1960
|
+
* @type {Array<Array<number>>}
|
|
1961
|
+
* @memberof V1SIPCoefficients
|
|
1962
|
+
*/
|
|
1963
|
+
'A': Array<Array<number>>;
|
|
1964
|
+
/**
|
|
1965
|
+
* Forward SIP coefficients matrix B
|
|
1966
|
+
* @type {Array<Array<number>>}
|
|
1967
|
+
* @memberof V1SIPCoefficients
|
|
1968
|
+
*/
|
|
1969
|
+
'B': Array<Array<number>>;
|
|
1970
|
+
/**
|
|
1971
|
+
* Coordinate description matrix element (1,1) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
1972
|
+
* @type {number}
|
|
1973
|
+
* @memberof V1SIPCoefficients
|
|
1974
|
+
*/
|
|
1975
|
+
'CD1_1': number;
|
|
1976
|
+
/**
|
|
1977
|
+
* Coordinate description matrix element (1,2) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
1978
|
+
* @type {number}
|
|
1979
|
+
* @memberof V1SIPCoefficients
|
|
1980
|
+
*/
|
|
1981
|
+
'CD1_2': number;
|
|
1982
|
+
/**
|
|
1983
|
+
* Coordinate description matrix element (2,1) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
1984
|
+
* @type {number}
|
|
1985
|
+
* @memberof V1SIPCoefficients
|
|
1986
|
+
*/
|
|
1987
|
+
'CD2_1': number;
|
|
1988
|
+
/**
|
|
1989
|
+
* Coordinate description matrix element (2,2) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
1990
|
+
* @type {number}
|
|
1991
|
+
* @memberof V1SIPCoefficients
|
|
1992
|
+
*/
|
|
1993
|
+
'CD2_2': number;
|
|
1994
|
+
/**
|
|
1995
|
+
* X coordinate of the reference pixel
|
|
1996
|
+
* @type {number}
|
|
1997
|
+
* @memberof V1SIPCoefficients
|
|
1998
|
+
*/
|
|
1999
|
+
'coordinateReferencePixelX': number;
|
|
2000
|
+
/**
|
|
2001
|
+
* Y coordinate of the reference pixel
|
|
2002
|
+
* @type {number}
|
|
2003
|
+
* @memberof V1SIPCoefficients
|
|
2004
|
+
*/
|
|
2005
|
+
'coordinateReferencePixelY': number;
|
|
2006
|
+
/**
|
|
2007
|
+
* Right ascension of the reference coordinate in degrees
|
|
2008
|
+
* @type {number}
|
|
2009
|
+
* @memberof V1SIPCoefficients
|
|
2010
|
+
*/
|
|
2011
|
+
'coordinateReferenceRADegrees': number;
|
|
2012
|
+
/**
|
|
2013
|
+
* Declination of the reference coordinate in degrees
|
|
2014
|
+
* @type {number}
|
|
2015
|
+
* @memberof V1SIPCoefficients
|
|
2016
|
+
*/
|
|
2017
|
+
'coordinateReferenceDecDegrees': number;
|
|
2018
|
+
}
|
|
2019
|
+
/**
|
|
2020
|
+
*
|
|
2021
|
+
* @export
|
|
2022
|
+
* @enum {string}
|
|
2023
|
+
*/
|
|
2024
|
+
export declare const V1SatelliteCalibrationFamily: {
|
|
2025
|
+
readonly GPS: "GPS";
|
|
2026
|
+
readonly ILRS: "ILRS";
|
|
2027
|
+
readonly SWARM: "SWARM";
|
|
2028
|
+
};
|
|
2029
|
+
export type V1SatelliteCalibrationFamily = typeof V1SatelliteCalibrationFamily[keyof typeof V1SatelliteCalibrationFamily];
|
|
1768
2030
|
/**
|
|
1769
2031
|
* SatellitePotential
|
|
1770
2032
|
* @export
|
|
@@ -2000,6 +2262,18 @@ export interface V1SatelliteTarget {
|
|
|
2000
2262
|
* @memberof V1SatelliteTarget
|
|
2001
2263
|
*/
|
|
2002
2264
|
'linkedSatelliteTargetId'?: string;
|
|
2265
|
+
/**
|
|
2266
|
+
*
|
|
2267
|
+
* @type {string}
|
|
2268
|
+
* @memberof V1SatelliteTarget
|
|
2269
|
+
*/
|
|
2270
|
+
'orbitSourceId'?: string;
|
|
2271
|
+
/**
|
|
2272
|
+
*
|
|
2273
|
+
* @type {string}
|
|
2274
|
+
* @memberof V1SatelliteTarget
|
|
2275
|
+
*/
|
|
2276
|
+
'orbitSourceProviderName'?: string;
|
|
2003
2277
|
}
|
|
2004
2278
|
/**
|
|
2005
2279
|
* Search Instruction
|
|
@@ -2069,6 +2343,90 @@ export interface V1SearchInstructionStep {
|
|
|
2069
2343
|
*/
|
|
2070
2344
|
'durationSeconds': number;
|
|
2071
2345
|
}
|
|
2346
|
+
/**
|
|
2347
|
+
* State vector representing a satellite\'s position and velocity in space.
|
|
2348
|
+
* @export
|
|
2349
|
+
* @interface V1StateVector
|
|
2350
|
+
*/
|
|
2351
|
+
export interface V1StateVector {
|
|
2352
|
+
/**
|
|
2353
|
+
* Unique identifier for the state vector.
|
|
2354
|
+
* @type {string}
|
|
2355
|
+
* @memberof V1StateVector
|
|
2356
|
+
*/
|
|
2357
|
+
'id': string;
|
|
2358
|
+
/**
|
|
2359
|
+
* Identifier of the satellite target this state vector belongs to.
|
|
2360
|
+
* @type {string}
|
|
2361
|
+
* @memberof V1StateVector
|
|
2362
|
+
*/
|
|
2363
|
+
'targetId': string;
|
|
2364
|
+
/**
|
|
2365
|
+
* Position in the X direction in meters.
|
|
2366
|
+
* @type {number}
|
|
2367
|
+
* @memberof V1StateVector
|
|
2368
|
+
*/
|
|
2369
|
+
'posX': number;
|
|
2370
|
+
/**
|
|
2371
|
+
* Position in the Y direction in meters.
|
|
2372
|
+
* @type {number}
|
|
2373
|
+
* @memberof V1StateVector
|
|
2374
|
+
*/
|
|
2375
|
+
'posY': number;
|
|
2376
|
+
/**
|
|
2377
|
+
* Position in the Z direction in meters.
|
|
2378
|
+
* @type {number}
|
|
2379
|
+
* @memberof V1StateVector
|
|
2380
|
+
*/
|
|
2381
|
+
'posZ': number;
|
|
2382
|
+
/**
|
|
2383
|
+
* Velocity in the X direction in meters per second.
|
|
2384
|
+
* @type {number}
|
|
2385
|
+
* @memberof V1StateVector
|
|
2386
|
+
*/
|
|
2387
|
+
'velX': number;
|
|
2388
|
+
/**
|
|
2389
|
+
* Velocity in the Y direction in meters per second.
|
|
2390
|
+
* @type {number}
|
|
2391
|
+
* @memberof V1StateVector
|
|
2392
|
+
*/
|
|
2393
|
+
'velY': number;
|
|
2394
|
+
/**
|
|
2395
|
+
* Velocity in the Z direction in meters per second.
|
|
2396
|
+
* @type {number}
|
|
2397
|
+
* @memberof V1StateVector
|
|
2398
|
+
*/
|
|
2399
|
+
'velZ': number;
|
|
2400
|
+
/**
|
|
2401
|
+
* UTC epoch of the state vector
|
|
2402
|
+
* @type {string}
|
|
2403
|
+
* @memberof V1StateVector
|
|
2404
|
+
*/
|
|
2405
|
+
'epoch': string;
|
|
2406
|
+
/**
|
|
2407
|
+
*
|
|
2408
|
+
* @type {string}
|
|
2409
|
+
* @memberof V1StateVector
|
|
2410
|
+
*/
|
|
2411
|
+
'referenceFrame': V1StateVectorReferenceFrameEnum;
|
|
2412
|
+
/**
|
|
2413
|
+
* Drag coefficient of the satellite- normalized to a 1m^2 cross-sectional area and a 1kg mass.
|
|
2414
|
+
* @type {number}
|
|
2415
|
+
* @memberof V1StateVector
|
|
2416
|
+
*/
|
|
2417
|
+
'dragCoefficient': number;
|
|
2418
|
+
/**
|
|
2419
|
+
* Solar radiation pressure coefficient of the satellite- normalized to a 1m^2 cross-sectional area and a 1kg mass.
|
|
2420
|
+
* @type {number}
|
|
2421
|
+
* @memberof V1StateVector
|
|
2422
|
+
*/
|
|
2423
|
+
'srpCoefficient': number;
|
|
2424
|
+
}
|
|
2425
|
+
export declare const V1StateVectorReferenceFrameEnum: {
|
|
2426
|
+
readonly ECI_J2000: "ECI_J2000";
|
|
2427
|
+
readonly ECEF: "ECEF";
|
|
2428
|
+
};
|
|
2429
|
+
export type V1StateVectorReferenceFrameEnum = typeof V1StateVectorReferenceFrameEnum[keyof typeof V1StateVectorReferenceFrameEnum];
|
|
2072
2430
|
/**
|
|
2073
2431
|
*
|
|
2074
2432
|
* @export
|
|
@@ -2805,6 +3163,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2805
3163
|
* @throws {RequiredError}
|
|
2806
3164
|
*/
|
|
2807
3165
|
v1CreateBlackoutVolume: (v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3166
|
+
/**
|
|
3167
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3168
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
3169
|
+
* @param {*} [options] Override http request option.
|
|
3170
|
+
* @throws {RequiredError}
|
|
3171
|
+
*/
|
|
3172
|
+
v1CreateDirectTaskInstruction: (v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2808
3173
|
/**
|
|
2809
3174
|
* Create an image set.
|
|
2810
3175
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2869,6 +3234,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2869
3234
|
* @throws {RequiredError}
|
|
2870
3235
|
*/
|
|
2871
3236
|
v1DeleteBlackoutVolume: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3237
|
+
/**
|
|
3238
|
+
* Delete a direct task instruction.
|
|
3239
|
+
* @param {string} id
|
|
3240
|
+
* @param {*} [options] Override http request option.
|
|
3241
|
+
* @throws {RequiredError}
|
|
3242
|
+
*/
|
|
3243
|
+
v1DeleteDirectTaskInstruction: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2872
3244
|
/**
|
|
2873
3245
|
* Delete an image set.
|
|
2874
3246
|
* @param {string} id
|
|
@@ -2952,6 +3324,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2952
3324
|
* @throws {RequiredError}
|
|
2953
3325
|
*/
|
|
2954
3326
|
v1GetNodeProperties: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3327
|
+
/**
|
|
3328
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
3329
|
+
* @param {string} nodeId
|
|
3330
|
+
* @param {number} [limit]
|
|
3331
|
+
* @param {string} [before]
|
|
3332
|
+
* @param {*} [options] Override http request option.
|
|
3333
|
+
* @throws {RequiredError}
|
|
3334
|
+
*/
|
|
3335
|
+
v1GetNodeSatelliteCalibrations: (nodeId: string, limit?: number, before?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2955
3336
|
/**
|
|
2956
3337
|
* Get observation features.
|
|
2957
3338
|
* @param {string} imageId
|
|
@@ -2981,11 +3362,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2981
3362
|
* @param {string} [before]
|
|
2982
3363
|
* @param {string} [searchInstructionId]
|
|
2983
3364
|
* @param {string} [surveyInstructionId]
|
|
3365
|
+
* @param {string} [resolvedImageInstructionId]
|
|
2984
3366
|
* @param {string} [imageId]
|
|
2985
3367
|
* @param {*} [options] Override http request option.
|
|
2986
3368
|
* @throws {RequiredError}
|
|
2987
3369
|
*/
|
|
2988
|
-
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3370
|
+
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2989
3371
|
/**
|
|
2990
3372
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
2991
3373
|
* @param {string} until
|
|
@@ -3042,6 +3424,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3042
3424
|
* @throws {RequiredError}
|
|
3043
3425
|
*/
|
|
3044
3426
|
v1GetSearchInstructions: (before?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3427
|
+
/**
|
|
3428
|
+
* Get state vectors for a satellite.
|
|
3429
|
+
* @param {string} targetId
|
|
3430
|
+
* @param {string} [before]
|
|
3431
|
+
* @param {string} [after]
|
|
3432
|
+
* @param {*} [options] Override http request option.
|
|
3433
|
+
* @throws {RequiredError}
|
|
3434
|
+
*/
|
|
3435
|
+
v1GetStateVectors: (targetId: string, before?: string, after?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3045
3436
|
/**
|
|
3046
3437
|
* 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.
|
|
3047
3438
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -3149,6 +3540,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3149
3540
|
* @throws {RequiredError}
|
|
3150
3541
|
*/
|
|
3151
3542
|
v2GetSearch: (searchId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3543
|
+
/**
|
|
3544
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
3545
|
+
* @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
3546
|
+
* @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
|
|
3547
|
+
* @param {*} [options] Override http request option.
|
|
3548
|
+
* @throws {RequiredError}
|
|
3549
|
+
*/
|
|
3550
|
+
v2GetSearches: (after?: string, status?: V2GetSearchesStatusEnum, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3152
3551
|
};
|
|
3153
3552
|
/**
|
|
3154
3553
|
* DefaultApi - functional programming interface
|
|
@@ -3170,6 +3569,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3170
3569
|
* @throws {RequiredError}
|
|
3171
3570
|
*/
|
|
3172
3571
|
v1CreateBlackoutVolume(v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
3572
|
+
/**
|
|
3573
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3574
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
3575
|
+
* @param {*} [options] Override http request option.
|
|
3576
|
+
* @throws {RequiredError}
|
|
3577
|
+
*/
|
|
3578
|
+
v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
3173
3579
|
/**
|
|
3174
3580
|
* Create an image set.
|
|
3175
3581
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -3234,6 +3640,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3234
3640
|
* @throws {RequiredError}
|
|
3235
3641
|
*/
|
|
3236
3642
|
v1DeleteBlackoutVolume(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulDelete>>;
|
|
3643
|
+
/**
|
|
3644
|
+
* Delete a direct task instruction.
|
|
3645
|
+
* @param {string} id
|
|
3646
|
+
* @param {*} [options] Override http request option.
|
|
3647
|
+
* @throws {RequiredError}
|
|
3648
|
+
*/
|
|
3649
|
+
v1DeleteDirectTaskInstruction(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3237
3650
|
/**
|
|
3238
3651
|
* Delete an image set.
|
|
3239
3652
|
* @param {string} id
|
|
@@ -3317,6 +3730,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3317
3730
|
* @throws {RequiredError}
|
|
3318
3731
|
*/
|
|
3319
3732
|
v1GetNodeProperties(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GroundStationParticipant>>;
|
|
3733
|
+
/**
|
|
3734
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
3735
|
+
* @param {string} nodeId
|
|
3736
|
+
* @param {number} [limit]
|
|
3737
|
+
* @param {string} [before]
|
|
3738
|
+
* @param {*} [options] Override http request option.
|
|
3739
|
+
* @throws {RequiredError}
|
|
3740
|
+
*/
|
|
3741
|
+
v1GetNodeSatelliteCalibrations(nodeId: string, limit?: number, before?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeCalibrationResult>>>;
|
|
3320
3742
|
/**
|
|
3321
3743
|
* Get observation features.
|
|
3322
3744
|
* @param {string} imageId
|
|
@@ -3346,11 +3768,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3346
3768
|
* @param {string} [before]
|
|
3347
3769
|
* @param {string} [searchInstructionId]
|
|
3348
3770
|
* @param {string} [surveyInstructionId]
|
|
3771
|
+
* @param {string} [resolvedImageInstructionId]
|
|
3349
3772
|
* @param {string} [imageId]
|
|
3350
3773
|
* @param {*} [options] Override http request option.
|
|
3351
3774
|
* @throws {RequiredError}
|
|
3352
3775
|
*/
|
|
3353
|
-
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
3776
|
+
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
3354
3777
|
/**
|
|
3355
3778
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
3356
3779
|
* @param {string} until
|
|
@@ -3407,6 +3830,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3407
3830
|
* @throws {RequiredError}
|
|
3408
3831
|
*/
|
|
3409
3832
|
v1GetSearchInstructions(before?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SearchInstruction>>>;
|
|
3833
|
+
/**
|
|
3834
|
+
* Get state vectors for a satellite.
|
|
3835
|
+
* @param {string} targetId
|
|
3836
|
+
* @param {string} [before]
|
|
3837
|
+
* @param {string} [after]
|
|
3838
|
+
* @param {*} [options] Override http request option.
|
|
3839
|
+
* @throws {RequiredError}
|
|
3840
|
+
*/
|
|
3841
|
+
v1GetStateVectors(targetId: string, before?: string, after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1StateVector>>>;
|
|
3410
3842
|
/**
|
|
3411
3843
|
* 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.
|
|
3412
3844
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -3514,6 +3946,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3514
3946
|
* @throws {RequiredError}
|
|
3515
3947
|
*/
|
|
3516
3948
|
v2GetSearch(searchId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2Search>>;
|
|
3949
|
+
/**
|
|
3950
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
3951
|
+
* @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
3952
|
+
* @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
|
|
3953
|
+
* @param {*} [options] Override http request option.
|
|
3954
|
+
* @throws {RequiredError}
|
|
3955
|
+
*/
|
|
3956
|
+
v2GetSearches(after?: string, status?: V2GetSearchesStatusEnum, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V2Search>>>;
|
|
3517
3957
|
};
|
|
3518
3958
|
/**
|
|
3519
3959
|
* DefaultApi - factory interface
|
|
@@ -3535,6 +3975,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3535
3975
|
* @throws {RequiredError}
|
|
3536
3976
|
*/
|
|
3537
3977
|
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
3978
|
+
/**
|
|
3979
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3980
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
3981
|
+
* @param {*} [options] Override http request option.
|
|
3982
|
+
* @throws {RequiredError}
|
|
3983
|
+
*/
|
|
3984
|
+
v1CreateDirectTaskInstruction(requestParameters: DefaultApiV1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
3538
3985
|
/**
|
|
3539
3986
|
* Create an image set.
|
|
3540
3987
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -3599,6 +4046,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3599
4046
|
* @throws {RequiredError}
|
|
3600
4047
|
*/
|
|
3601
4048
|
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete>;
|
|
4049
|
+
/**
|
|
4050
|
+
* Delete a direct task instruction.
|
|
4051
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
4052
|
+
* @param {*} [options] Override http request option.
|
|
4053
|
+
* @throws {RequiredError}
|
|
4054
|
+
*/
|
|
4055
|
+
v1DeleteDirectTaskInstruction(requestParameters: DefaultApiV1DeleteDirectTaskInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3602
4056
|
/**
|
|
3603
4057
|
* Delete an image set.
|
|
3604
4058
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -3682,6 +4136,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3682
4136
|
* @throws {RequiredError}
|
|
3683
4137
|
*/
|
|
3684
4138
|
v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GroundStationParticipant>;
|
|
4139
|
+
/**
|
|
4140
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
4141
|
+
* @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
|
|
4142
|
+
* @param {*} [options] Override http request option.
|
|
4143
|
+
* @throws {RequiredError}
|
|
4144
|
+
*/
|
|
4145
|
+
v1GetNodeSatelliteCalibrations(requestParameters: DefaultApiV1GetNodeSatelliteCalibrationsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeCalibrationResult>>;
|
|
3685
4146
|
/**
|
|
3686
4147
|
* Get observation features.
|
|
3687
4148
|
* @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
|
|
@@ -3758,6 +4219,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3758
4219
|
* @throws {RequiredError}
|
|
3759
4220
|
*/
|
|
3760
4221
|
v1GetSearchInstructions(requestParameters?: DefaultApiV1GetSearchInstructionsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SearchInstruction>>;
|
|
4222
|
+
/**
|
|
4223
|
+
* Get state vectors for a satellite.
|
|
4224
|
+
* @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
|
|
4225
|
+
* @param {*} [options] Override http request option.
|
|
4226
|
+
* @throws {RequiredError}
|
|
4227
|
+
*/
|
|
4228
|
+
v1GetStateVectors(requestParameters: DefaultApiV1GetStateVectorsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1StateVector>>;
|
|
3761
4229
|
/**
|
|
3762
4230
|
* 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.
|
|
3763
4231
|
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
@@ -3862,6 +4330,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3862
4330
|
* @throws {RequiredError}
|
|
3863
4331
|
*/
|
|
3864
4332
|
v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): AxiosPromise<V2Search>;
|
|
4333
|
+
/**
|
|
4334
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
4335
|
+
* @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
|
|
4336
|
+
* @param {*} [options] Override http request option.
|
|
4337
|
+
* @throws {RequiredError}
|
|
4338
|
+
*/
|
|
4339
|
+
v2GetSearches(requestParameters?: DefaultApiV2GetSearchesRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V2Search>>;
|
|
3865
4340
|
};
|
|
3866
4341
|
/**
|
|
3867
4342
|
* Request parameters for getUncorrelatedTracks operation in DefaultApi.
|
|
@@ -3889,6 +4364,19 @@ export interface DefaultApiV1CreateBlackoutVolumeRequest {
|
|
|
3889
4364
|
*/
|
|
3890
4365
|
readonly v1BlackoutVolumeRequest: V1BlackoutVolumeRequest;
|
|
3891
4366
|
}
|
|
4367
|
+
/**
|
|
4368
|
+
* Request parameters for v1CreateDirectTaskInstruction operation in DefaultApi.
|
|
4369
|
+
* @export
|
|
4370
|
+
* @interface DefaultApiV1CreateDirectTaskInstructionRequest
|
|
4371
|
+
*/
|
|
4372
|
+
export interface DefaultApiV1CreateDirectTaskInstructionRequest {
|
|
4373
|
+
/**
|
|
4374
|
+
*
|
|
4375
|
+
* @type {V1CreateDirectTaskInstructionRequest}
|
|
4376
|
+
* @memberof DefaultApiV1CreateDirectTaskInstruction
|
|
4377
|
+
*/
|
|
4378
|
+
readonly v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest;
|
|
4379
|
+
}
|
|
3892
4380
|
/**
|
|
3893
4381
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
3894
4382
|
* @export
|
|
@@ -4006,6 +4494,19 @@ export interface DefaultApiV1DeleteBlackoutVolumeRequest {
|
|
|
4006
4494
|
*/
|
|
4007
4495
|
readonly id: string;
|
|
4008
4496
|
}
|
|
4497
|
+
/**
|
|
4498
|
+
* Request parameters for v1DeleteDirectTaskInstruction operation in DefaultApi.
|
|
4499
|
+
* @export
|
|
4500
|
+
* @interface DefaultApiV1DeleteDirectTaskInstructionRequest
|
|
4501
|
+
*/
|
|
4502
|
+
export interface DefaultApiV1DeleteDirectTaskInstructionRequest {
|
|
4503
|
+
/**
|
|
4504
|
+
*
|
|
4505
|
+
* @type {string}
|
|
4506
|
+
* @memberof DefaultApiV1DeleteDirectTaskInstruction
|
|
4507
|
+
*/
|
|
4508
|
+
readonly id: string;
|
|
4509
|
+
}
|
|
4009
4510
|
/**
|
|
4010
4511
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
4011
4512
|
* @export
|
|
@@ -4149,6 +4650,31 @@ export interface DefaultApiV1GetNodePropertiesRequest {
|
|
|
4149
4650
|
*/
|
|
4150
4651
|
readonly nodeId: string;
|
|
4151
4652
|
}
|
|
4653
|
+
/**
|
|
4654
|
+
* Request parameters for v1GetNodeSatelliteCalibrations operation in DefaultApi.
|
|
4655
|
+
* @export
|
|
4656
|
+
* @interface DefaultApiV1GetNodeSatelliteCalibrationsRequest
|
|
4657
|
+
*/
|
|
4658
|
+
export interface DefaultApiV1GetNodeSatelliteCalibrationsRequest {
|
|
4659
|
+
/**
|
|
4660
|
+
*
|
|
4661
|
+
* @type {string}
|
|
4662
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
4663
|
+
*/
|
|
4664
|
+
readonly nodeId: string;
|
|
4665
|
+
/**
|
|
4666
|
+
*
|
|
4667
|
+
* @type {number}
|
|
4668
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
4669
|
+
*/
|
|
4670
|
+
readonly limit?: number;
|
|
4671
|
+
/**
|
|
4672
|
+
*
|
|
4673
|
+
* @type {string}
|
|
4674
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
4675
|
+
*/
|
|
4676
|
+
readonly before?: string;
|
|
4677
|
+
}
|
|
4152
4678
|
/**
|
|
4153
4679
|
* Request parameters for v1GetObservationFeatures operation in DefaultApi.
|
|
4154
4680
|
* @export
|
|
@@ -4230,6 +4756,12 @@ export interface DefaultApiV1GetObservationStatusesRequest {
|
|
|
4230
4756
|
* @memberof DefaultApiV1GetObservationStatuses
|
|
4231
4757
|
*/
|
|
4232
4758
|
readonly surveyInstructionId?: string;
|
|
4759
|
+
/**
|
|
4760
|
+
*
|
|
4761
|
+
* @type {string}
|
|
4762
|
+
* @memberof DefaultApiV1GetObservationStatuses
|
|
4763
|
+
*/
|
|
4764
|
+
readonly resolvedImageInstructionId?: string;
|
|
4233
4765
|
/**
|
|
4234
4766
|
*
|
|
4235
4767
|
* @type {string}
|
|
@@ -4363,6 +4895,31 @@ export interface DefaultApiV1GetSearchInstructionsRequest {
|
|
|
4363
4895
|
*/
|
|
4364
4896
|
readonly before?: string;
|
|
4365
4897
|
}
|
|
4898
|
+
/**
|
|
4899
|
+
* Request parameters for v1GetStateVectors operation in DefaultApi.
|
|
4900
|
+
* @export
|
|
4901
|
+
* @interface DefaultApiV1GetStateVectorsRequest
|
|
4902
|
+
*/
|
|
4903
|
+
export interface DefaultApiV1GetStateVectorsRequest {
|
|
4904
|
+
/**
|
|
4905
|
+
*
|
|
4906
|
+
* @type {string}
|
|
4907
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
4908
|
+
*/
|
|
4909
|
+
readonly targetId: string;
|
|
4910
|
+
/**
|
|
4911
|
+
*
|
|
4912
|
+
* @type {string}
|
|
4913
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
4914
|
+
*/
|
|
4915
|
+
readonly before?: string;
|
|
4916
|
+
/**
|
|
4917
|
+
*
|
|
4918
|
+
* @type {string}
|
|
4919
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
4920
|
+
*/
|
|
4921
|
+
readonly after?: string;
|
|
4922
|
+
}
|
|
4366
4923
|
/**
|
|
4367
4924
|
* Request parameters for v1GetSurveyInstructions operation in DefaultApi.
|
|
4368
4925
|
* @export
|
|
@@ -4563,6 +5120,25 @@ export interface DefaultApiV2GetSearchRequest {
|
|
|
4563
5120
|
*/
|
|
4564
5121
|
readonly searchId: string;
|
|
4565
5122
|
}
|
|
5123
|
+
/**
|
|
5124
|
+
* Request parameters for v2GetSearches operation in DefaultApi.
|
|
5125
|
+
* @export
|
|
5126
|
+
* @interface DefaultApiV2GetSearchesRequest
|
|
5127
|
+
*/
|
|
5128
|
+
export interface DefaultApiV2GetSearchesRequest {
|
|
5129
|
+
/**
|
|
5130
|
+
* The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
5131
|
+
* @type {string}
|
|
5132
|
+
* @memberof DefaultApiV2GetSearches
|
|
5133
|
+
*/
|
|
5134
|
+
readonly after?: string;
|
|
5135
|
+
/**
|
|
5136
|
+
* The status of the searches to return. Defaults to all statuses.
|
|
5137
|
+
* @type {'COMPLETED' | 'IN_PROGRESS' | 'FAILED'}
|
|
5138
|
+
* @memberof DefaultApiV2GetSearches
|
|
5139
|
+
*/
|
|
5140
|
+
readonly status?: V2GetSearchesStatusEnum;
|
|
5141
|
+
}
|
|
4566
5142
|
/**
|
|
4567
5143
|
* DefaultApi - object-oriented interface
|
|
4568
5144
|
* @export
|
|
@@ -4587,6 +5163,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4587
5163
|
* @memberof DefaultApi
|
|
4588
5164
|
*/
|
|
4589
5165
|
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
5166
|
+
/**
|
|
5167
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
5168
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
5169
|
+
* @param {*} [options] Override http request option.
|
|
5170
|
+
* @throws {RequiredError}
|
|
5171
|
+
* @memberof DefaultApi
|
|
5172
|
+
*/
|
|
5173
|
+
v1CreateDirectTaskInstruction(requestParameters: DefaultApiV1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
4590
5174
|
/**
|
|
4591
5175
|
* Create an image set.
|
|
4592
5176
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -4660,6 +5244,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4660
5244
|
* @memberof DefaultApi
|
|
4661
5245
|
*/
|
|
4662
5246
|
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulDelete, any>>;
|
|
5247
|
+
/**
|
|
5248
|
+
* Delete a direct task instruction.
|
|
5249
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
5250
|
+
* @param {*} [options] Override http request option.
|
|
5251
|
+
* @throws {RequiredError}
|
|
5252
|
+
* @memberof DefaultApi
|
|
5253
|
+
*/
|
|
5254
|
+
v1DeleteDirectTaskInstruction(requestParameters: DefaultApiV1DeleteDirectTaskInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4663
5255
|
/**
|
|
4664
5256
|
* Delete an image set.
|
|
4665
5257
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4755,6 +5347,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4755
5347
|
* @memberof DefaultApi
|
|
4756
5348
|
*/
|
|
4757
5349
|
v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GroundStationParticipant, any>>;
|
|
5350
|
+
/**
|
|
5351
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
5352
|
+
* @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
|
|
5353
|
+
* @param {*} [options] Override http request option.
|
|
5354
|
+
* @throws {RequiredError}
|
|
5355
|
+
* @memberof DefaultApi
|
|
5356
|
+
*/
|
|
5357
|
+
v1GetNodeSatelliteCalibrations(requestParameters: DefaultApiV1GetNodeSatelliteCalibrationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeCalibrationResult[], any>>;
|
|
4758
5358
|
/**
|
|
4759
5359
|
* Get observation features.
|
|
4760
5360
|
* @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
|
|
@@ -4842,6 +5442,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4842
5442
|
* @memberof DefaultApi
|
|
4843
5443
|
*/
|
|
4844
5444
|
v1GetSearchInstructions(requestParameters?: DefaultApiV1GetSearchInstructionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SearchInstruction[], any>>;
|
|
5445
|
+
/**
|
|
5446
|
+
* Get state vectors for a satellite.
|
|
5447
|
+
* @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
|
|
5448
|
+
* @param {*} [options] Override http request option.
|
|
5449
|
+
* @throws {RequiredError}
|
|
5450
|
+
* @memberof DefaultApi
|
|
5451
|
+
*/
|
|
5452
|
+
v1GetStateVectors(requestParameters: DefaultApiV1GetStateVectorsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1StateVector[], any>>;
|
|
4845
5453
|
/**
|
|
4846
5454
|
* 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.
|
|
4847
5455
|
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
@@ -4961,4 +5569,21 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4961
5569
|
* @memberof DefaultApi
|
|
4962
5570
|
*/
|
|
4963
5571
|
v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2Search, any>>;
|
|
5572
|
+
/**
|
|
5573
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
5574
|
+
* @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
|
|
5575
|
+
* @param {*} [options] Override http request option.
|
|
5576
|
+
* @throws {RequiredError}
|
|
5577
|
+
* @memberof DefaultApi
|
|
5578
|
+
*/
|
|
5579
|
+
v2GetSearches(requestParameters?: DefaultApiV2GetSearchesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2Search[], any>>;
|
|
4964
5580
|
}
|
|
5581
|
+
/**
|
|
5582
|
+
* @export
|
|
5583
|
+
*/
|
|
5584
|
+
export declare const V2GetSearchesStatusEnum: {
|
|
5585
|
+
readonly COMPLETED: "COMPLETED";
|
|
5586
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
5587
|
+
readonly FAILED: "FAILED";
|
|
5588
|
+
};
|
|
5589
|
+
export type V2GetSearchesStatusEnum = typeof V2GetSearchesStatusEnum[keyof typeof V2GetSearchesStatusEnum];
|