@ourskyai/sda-api 1.3.6669 → 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 +769 -70
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +571 -55
- package/dist/api.js +280 -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 +571 -55
- package/dist/esm/api.js +279 -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/esm/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.8106
|
|
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
|
/**
|
|
@@ -522,7 +531,7 @@ export interface V1CreateImageSetImageRequest {
|
|
|
522
531
|
'capturedAt'?: string;
|
|
523
532
|
}
|
|
524
533
|
/**
|
|
525
|
-
*
|
|
534
|
+
* Response from image creation, with image ID and presigned S3 upload URL.
|
|
526
535
|
* @export
|
|
527
536
|
* @interface V1CreateImageSetImageResponse
|
|
528
537
|
*/
|
|
@@ -908,6 +917,18 @@ export interface V1ImageMetadata {
|
|
|
908
917
|
* @memberof V1ImageMetadata
|
|
909
918
|
*/
|
|
910
919
|
'inputStars'?: Array<V1HFRStar>;
|
|
920
|
+
/**
|
|
921
|
+
*
|
|
922
|
+
* @type {V1SIPCoefficients}
|
|
923
|
+
* @memberof V1ImageMetadata
|
|
924
|
+
*/
|
|
925
|
+
'sipCoefficients'?: V1SIPCoefficients;
|
|
926
|
+
/**
|
|
927
|
+
* Photometric zero point offset. Add to instrumental magnitude (-2.5*log10(flux)) to get calibrated magnitude in standard photometric system.
|
|
928
|
+
* @type {number}
|
|
929
|
+
* @memberof V1ImageMetadata
|
|
930
|
+
*/
|
|
931
|
+
'photometricZeroPoint'?: number;
|
|
911
932
|
/**
|
|
912
933
|
*
|
|
913
934
|
* @type {string}
|
|
@@ -1151,6 +1172,170 @@ export interface V1ImageSetImage {
|
|
|
1151
1172
|
*/
|
|
1152
1173
|
'predictedStreakLocation'?: V1PredictedStreakLocation;
|
|
1153
1174
|
}
|
|
1175
|
+
/**
|
|
1176
|
+
* Extracted stars that matched during plate solving
|
|
1177
|
+
* @export
|
|
1178
|
+
* @interface V1MatchedStar
|
|
1179
|
+
*/
|
|
1180
|
+
export interface V1MatchedStar {
|
|
1181
|
+
/**
|
|
1182
|
+
* The x-centroid
|
|
1183
|
+
* @type {number}
|
|
1184
|
+
* @memberof V1MatchedStar
|
|
1185
|
+
*/
|
|
1186
|
+
'xCentroid': number;
|
|
1187
|
+
/**
|
|
1188
|
+
* The y-centroid
|
|
1189
|
+
* @type {number}
|
|
1190
|
+
* @memberof V1MatchedStar
|
|
1191
|
+
*/
|
|
1192
|
+
'yCentroid': number;
|
|
1193
|
+
/**
|
|
1194
|
+
* The UCAC4 or GaiaUD number if known
|
|
1195
|
+
* @type {number}
|
|
1196
|
+
* @memberof V1MatchedStar
|
|
1197
|
+
*/
|
|
1198
|
+
'sequenceNumber': number;
|
|
1199
|
+
/**
|
|
1200
|
+
* Extracted magnitude
|
|
1201
|
+
* @type {number}
|
|
1202
|
+
* @memberof V1MatchedStar
|
|
1203
|
+
*/
|
|
1204
|
+
'magnitude': number;
|
|
1205
|
+
/**
|
|
1206
|
+
* The star RA
|
|
1207
|
+
* @type {number}
|
|
1208
|
+
* @memberof V1MatchedStar
|
|
1209
|
+
*/
|
|
1210
|
+
'raRad': number;
|
|
1211
|
+
/**
|
|
1212
|
+
* The star Dec
|
|
1213
|
+
* @type {number}
|
|
1214
|
+
* @memberof V1MatchedStar
|
|
1215
|
+
*/
|
|
1216
|
+
'decRad': number;
|
|
1217
|
+
/**
|
|
1218
|
+
* The calculated offset from the catalog star, if known. 0 otherwise
|
|
1219
|
+
* @type {number}
|
|
1220
|
+
* @memberof V1MatchedStar
|
|
1221
|
+
*/
|
|
1222
|
+
'catalogOffsetRad': number;
|
|
1223
|
+
/**
|
|
1224
|
+
*
|
|
1225
|
+
* @type {number}
|
|
1226
|
+
* @memberof V1MatchedStar
|
|
1227
|
+
*/
|
|
1228
|
+
'catalogOffsetMagnitude'?: number;
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* @type {number}
|
|
1232
|
+
* @memberof V1MatchedStar
|
|
1233
|
+
*/
|
|
1234
|
+
'flux': number;
|
|
1235
|
+
/**
|
|
1236
|
+
*
|
|
1237
|
+
* @type {number}
|
|
1238
|
+
* @memberof V1MatchedStar
|
|
1239
|
+
*/
|
|
1240
|
+
'hfr': number;
|
|
1241
|
+
}
|
|
1242
|
+
/**
|
|
1243
|
+
*
|
|
1244
|
+
* @export
|
|
1245
|
+
* @interface V1NodeCalibrationResult
|
|
1246
|
+
*/
|
|
1247
|
+
export interface V1NodeCalibrationResult {
|
|
1248
|
+
/**
|
|
1249
|
+
*
|
|
1250
|
+
* @type {string}
|
|
1251
|
+
* @memberof V1NodeCalibrationResult
|
|
1252
|
+
*/
|
|
1253
|
+
'id': string;
|
|
1254
|
+
/**
|
|
1255
|
+
*
|
|
1256
|
+
* @type {string}
|
|
1257
|
+
* @memberof V1NodeCalibrationResult
|
|
1258
|
+
*/
|
|
1259
|
+
'nodeId': string;
|
|
1260
|
+
/**
|
|
1261
|
+
*
|
|
1262
|
+
* @type {string}
|
|
1263
|
+
* @memberof V1NodeCalibrationResult
|
|
1264
|
+
*/
|
|
1265
|
+
'targetId': string;
|
|
1266
|
+
/**
|
|
1267
|
+
*
|
|
1268
|
+
* @type {string}
|
|
1269
|
+
* @memberof V1NodeCalibrationResult
|
|
1270
|
+
*/
|
|
1271
|
+
'imageId': string;
|
|
1272
|
+
/**
|
|
1273
|
+
* The right ascension of the center of the extracted streak, in radians
|
|
1274
|
+
* @type {number}
|
|
1275
|
+
* @memberof V1NodeCalibrationResult
|
|
1276
|
+
*/
|
|
1277
|
+
'calculatedRaRadians'?: number;
|
|
1278
|
+
/**
|
|
1279
|
+
* The declination of the center of the extracted streak, in radians
|
|
1280
|
+
* @type {number}
|
|
1281
|
+
* @memberof V1NodeCalibrationResult
|
|
1282
|
+
*/
|
|
1283
|
+
'calculatedDecRadians'?: number;
|
|
1284
|
+
/**
|
|
1285
|
+
* Ground truth right ascension in radians, from SP3 file
|
|
1286
|
+
* @type {number}
|
|
1287
|
+
* @memberof V1NodeCalibrationResult
|
|
1288
|
+
*/
|
|
1289
|
+
'groundTruthRaRadians'?: number;
|
|
1290
|
+
/**
|
|
1291
|
+
* Ground truth declination in radians, from SP3 file
|
|
1292
|
+
* @type {number}
|
|
1293
|
+
* @memberof V1NodeCalibrationResult
|
|
1294
|
+
*/
|
|
1295
|
+
'groundTruthDecRadians'?: number;
|
|
1296
|
+
/**
|
|
1297
|
+
* Calculated error in RA, in arc-seconds
|
|
1298
|
+
* @type {number}
|
|
1299
|
+
* @memberof V1NodeCalibrationResult
|
|
1300
|
+
*/
|
|
1301
|
+
'raErrorArcSeconds'?: number;
|
|
1302
|
+
/**
|
|
1303
|
+
* Calculated error in Dec, in arc-seconds
|
|
1304
|
+
* @type {number}
|
|
1305
|
+
* @memberof V1NodeCalibrationResult
|
|
1306
|
+
*/
|
|
1307
|
+
'decErrorArcSeconds'?: number;
|
|
1308
|
+
/**
|
|
1309
|
+
* Total error in RA/Dec, in arc-seconds
|
|
1310
|
+
* @type {number}
|
|
1311
|
+
* @memberof V1NodeCalibrationResult
|
|
1312
|
+
*/
|
|
1313
|
+
'totalErrorArcSeconds'?: number;
|
|
1314
|
+
/**
|
|
1315
|
+
*
|
|
1316
|
+
* @type {string}
|
|
1317
|
+
* @memberof V1NodeCalibrationResult
|
|
1318
|
+
*/
|
|
1319
|
+
'centerTime': string;
|
|
1320
|
+
/**
|
|
1321
|
+
*
|
|
1322
|
+
* @type {V1SatelliteCalibrationFamily}
|
|
1323
|
+
* @memberof V1NodeCalibrationResult
|
|
1324
|
+
*/
|
|
1325
|
+
'calibrationFamily': V1SatelliteCalibrationFamily;
|
|
1326
|
+
/**
|
|
1327
|
+
*
|
|
1328
|
+
* @type {string}
|
|
1329
|
+
* @memberof V1NodeCalibrationResult
|
|
1330
|
+
*/
|
|
1331
|
+
'sp3File': string;
|
|
1332
|
+
/**
|
|
1333
|
+
*
|
|
1334
|
+
* @type {string}
|
|
1335
|
+
* @memberof V1NodeCalibrationResult
|
|
1336
|
+
*/
|
|
1337
|
+
'createdAt': string;
|
|
1338
|
+
}
|
|
1154
1339
|
/**
|
|
1155
1340
|
* Observation Feature
|
|
1156
1341
|
* @export
|
|
@@ -1507,55 +1692,6 @@ export interface V1PlaneScanRequest {
|
|
|
1507
1692
|
*/
|
|
1508
1693
|
'stepSizeDegrees': number;
|
|
1509
1694
|
}
|
|
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
1695
|
/**
|
|
1560
1696
|
*
|
|
1561
1697
|
* @export
|
|
@@ -1564,10 +1700,16 @@ export interface V1Plate {
|
|
|
1564
1700
|
export interface V1PlateSolveResult {
|
|
1565
1701
|
/**
|
|
1566
1702
|
*
|
|
1567
|
-
* @type {
|
|
1703
|
+
* @type {V1PlateSolveStatus}
|
|
1704
|
+
* @memberof V1PlateSolveResult
|
|
1705
|
+
*/
|
|
1706
|
+
'status'?: V1PlateSolveStatus;
|
|
1707
|
+
/**
|
|
1708
|
+
*
|
|
1709
|
+
* @type {Array<V1MatchedStar>}
|
|
1568
1710
|
* @memberof V1PlateSolveResult
|
|
1569
1711
|
*/
|
|
1570
|
-
'
|
|
1712
|
+
'matchedStars'?: Array<V1MatchedStar>;
|
|
1571
1713
|
/**
|
|
1572
1714
|
* The number of pixels in X directions
|
|
1573
1715
|
* @type {number}
|
|
@@ -1623,6 +1765,17 @@ export interface V1PlateSolveResult {
|
|
|
1623
1765
|
*/
|
|
1624
1766
|
'transformation': V1Transformation;
|
|
1625
1767
|
}
|
|
1768
|
+
/**
|
|
1769
|
+
*
|
|
1770
|
+
* @export
|
|
1771
|
+
* @enum {string}
|
|
1772
|
+
*/
|
|
1773
|
+
export declare const V1PlateSolveStatus: {
|
|
1774
|
+
readonly MATCH_FOUND: "MATCH_FOUND";
|
|
1775
|
+
readonly NO_MATCH_FOUND: "NO_MATCH_FOUND";
|
|
1776
|
+
readonly CANCELLED: "CANCELLED";
|
|
1777
|
+
};
|
|
1778
|
+
export type V1PlateSolveStatus = typeof V1PlateSolveStatus[keyof typeof V1PlateSolveStatus];
|
|
1626
1779
|
/**
|
|
1627
1780
|
* A point in 3D space.
|
|
1628
1781
|
* @export
|
|
@@ -1765,6 +1918,90 @@ export interface V1RicVolumeSearchRequest {
|
|
|
1765
1918
|
*/
|
|
1766
1919
|
'ricStdevEpoch'?: string;
|
|
1767
1920
|
}
|
|
1921
|
+
/**
|
|
1922
|
+
*
|
|
1923
|
+
* @export
|
|
1924
|
+
* @interface V1SIPCoefficients
|
|
1925
|
+
*/
|
|
1926
|
+
export interface V1SIPCoefficients {
|
|
1927
|
+
/**
|
|
1928
|
+
* Order of the SIP transformation
|
|
1929
|
+
* @type {number}
|
|
1930
|
+
* @memberof V1SIPCoefficients
|
|
1931
|
+
*/
|
|
1932
|
+
'order': number;
|
|
1933
|
+
/**
|
|
1934
|
+
* Forward SIP coefficients matrix A
|
|
1935
|
+
* @type {Array<Array<number>>}
|
|
1936
|
+
* @memberof V1SIPCoefficients
|
|
1937
|
+
*/
|
|
1938
|
+
'A': Array<Array<number>>;
|
|
1939
|
+
/**
|
|
1940
|
+
* Forward SIP coefficients matrix B
|
|
1941
|
+
* @type {Array<Array<number>>}
|
|
1942
|
+
* @memberof V1SIPCoefficients
|
|
1943
|
+
*/
|
|
1944
|
+
'B': Array<Array<number>>;
|
|
1945
|
+
/**
|
|
1946
|
+
* Coordinate description matrix element (1,1) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
1947
|
+
* @type {number}
|
|
1948
|
+
* @memberof V1SIPCoefficients
|
|
1949
|
+
*/
|
|
1950
|
+
'CD1_1': number;
|
|
1951
|
+
/**
|
|
1952
|
+
* Coordinate description matrix element (1,2) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
1953
|
+
* @type {number}
|
|
1954
|
+
* @memberof V1SIPCoefficients
|
|
1955
|
+
*/
|
|
1956
|
+
'CD1_2': number;
|
|
1957
|
+
/**
|
|
1958
|
+
* Coordinate description matrix element (2,1) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
1959
|
+
* @type {number}
|
|
1960
|
+
* @memberof V1SIPCoefficients
|
|
1961
|
+
*/
|
|
1962
|
+
'CD2_1': number;
|
|
1963
|
+
/**
|
|
1964
|
+
* Coordinate description matrix element (2,2) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
|
|
1965
|
+
* @type {number}
|
|
1966
|
+
* @memberof V1SIPCoefficients
|
|
1967
|
+
*/
|
|
1968
|
+
'CD2_2': number;
|
|
1969
|
+
/**
|
|
1970
|
+
* X coordinate of the reference pixel
|
|
1971
|
+
* @type {number}
|
|
1972
|
+
* @memberof V1SIPCoefficients
|
|
1973
|
+
*/
|
|
1974
|
+
'coordinateReferencePixelX': number;
|
|
1975
|
+
/**
|
|
1976
|
+
* Y coordinate of the reference pixel
|
|
1977
|
+
* @type {number}
|
|
1978
|
+
* @memberof V1SIPCoefficients
|
|
1979
|
+
*/
|
|
1980
|
+
'coordinateReferencePixelY': number;
|
|
1981
|
+
/**
|
|
1982
|
+
* Right ascension of the reference coordinate in degrees
|
|
1983
|
+
* @type {number}
|
|
1984
|
+
* @memberof V1SIPCoefficients
|
|
1985
|
+
*/
|
|
1986
|
+
'coordinateReferenceRADegrees': number;
|
|
1987
|
+
/**
|
|
1988
|
+
* Declination of the reference coordinate in degrees
|
|
1989
|
+
* @type {number}
|
|
1990
|
+
* @memberof V1SIPCoefficients
|
|
1991
|
+
*/
|
|
1992
|
+
'coordinateReferenceDecDegrees': number;
|
|
1993
|
+
}
|
|
1994
|
+
/**
|
|
1995
|
+
*
|
|
1996
|
+
* @export
|
|
1997
|
+
* @enum {string}
|
|
1998
|
+
*/
|
|
1999
|
+
export declare const V1SatelliteCalibrationFamily: {
|
|
2000
|
+
readonly GPS: "GPS";
|
|
2001
|
+
readonly ILRS: "ILRS";
|
|
2002
|
+
readonly SWARM: "SWARM";
|
|
2003
|
+
};
|
|
2004
|
+
export type V1SatelliteCalibrationFamily = typeof V1SatelliteCalibrationFamily[keyof typeof V1SatelliteCalibrationFamily];
|
|
1768
2005
|
/**
|
|
1769
2006
|
* SatellitePotential
|
|
1770
2007
|
* @export
|
|
@@ -2000,6 +2237,18 @@ export interface V1SatelliteTarget {
|
|
|
2000
2237
|
* @memberof V1SatelliteTarget
|
|
2001
2238
|
*/
|
|
2002
2239
|
'linkedSatelliteTargetId'?: string;
|
|
2240
|
+
/**
|
|
2241
|
+
*
|
|
2242
|
+
* @type {string}
|
|
2243
|
+
* @memberof V1SatelliteTarget
|
|
2244
|
+
*/
|
|
2245
|
+
'orbitSourceId'?: string;
|
|
2246
|
+
/**
|
|
2247
|
+
*
|
|
2248
|
+
* @type {string}
|
|
2249
|
+
* @memberof V1SatelliteTarget
|
|
2250
|
+
*/
|
|
2251
|
+
'orbitSourceProviderName'?: string;
|
|
2003
2252
|
}
|
|
2004
2253
|
/**
|
|
2005
2254
|
* Search Instruction
|
|
@@ -2069,6 +2318,90 @@ export interface V1SearchInstructionStep {
|
|
|
2069
2318
|
*/
|
|
2070
2319
|
'durationSeconds': number;
|
|
2071
2320
|
}
|
|
2321
|
+
/**
|
|
2322
|
+
* State vector representing a satellite\'s position and velocity in space.
|
|
2323
|
+
* @export
|
|
2324
|
+
* @interface V1StateVector
|
|
2325
|
+
*/
|
|
2326
|
+
export interface V1StateVector {
|
|
2327
|
+
/**
|
|
2328
|
+
* Unique identifier for the state vector.
|
|
2329
|
+
* @type {string}
|
|
2330
|
+
* @memberof V1StateVector
|
|
2331
|
+
*/
|
|
2332
|
+
'id': string;
|
|
2333
|
+
/**
|
|
2334
|
+
* Identifier of the satellite target this state vector belongs to.
|
|
2335
|
+
* @type {string}
|
|
2336
|
+
* @memberof V1StateVector
|
|
2337
|
+
*/
|
|
2338
|
+
'targetId': string;
|
|
2339
|
+
/**
|
|
2340
|
+
* Position in the X direction in meters.
|
|
2341
|
+
* @type {number}
|
|
2342
|
+
* @memberof V1StateVector
|
|
2343
|
+
*/
|
|
2344
|
+
'posX': number;
|
|
2345
|
+
/**
|
|
2346
|
+
* Position in the Y direction in meters.
|
|
2347
|
+
* @type {number}
|
|
2348
|
+
* @memberof V1StateVector
|
|
2349
|
+
*/
|
|
2350
|
+
'posY': number;
|
|
2351
|
+
/**
|
|
2352
|
+
* Position in the Z direction in meters.
|
|
2353
|
+
* @type {number}
|
|
2354
|
+
* @memberof V1StateVector
|
|
2355
|
+
*/
|
|
2356
|
+
'posZ': number;
|
|
2357
|
+
/**
|
|
2358
|
+
* Velocity in the X direction in meters per second.
|
|
2359
|
+
* @type {number}
|
|
2360
|
+
* @memberof V1StateVector
|
|
2361
|
+
*/
|
|
2362
|
+
'velX': number;
|
|
2363
|
+
/**
|
|
2364
|
+
* Velocity in the Y direction in meters per second.
|
|
2365
|
+
* @type {number}
|
|
2366
|
+
* @memberof V1StateVector
|
|
2367
|
+
*/
|
|
2368
|
+
'velY': number;
|
|
2369
|
+
/**
|
|
2370
|
+
* Velocity in the Z direction in meters per second.
|
|
2371
|
+
* @type {number}
|
|
2372
|
+
* @memberof V1StateVector
|
|
2373
|
+
*/
|
|
2374
|
+
'velZ': number;
|
|
2375
|
+
/**
|
|
2376
|
+
* UTC epoch of the state vector
|
|
2377
|
+
* @type {string}
|
|
2378
|
+
* @memberof V1StateVector
|
|
2379
|
+
*/
|
|
2380
|
+
'epoch': string;
|
|
2381
|
+
/**
|
|
2382
|
+
*
|
|
2383
|
+
* @type {string}
|
|
2384
|
+
* @memberof V1StateVector
|
|
2385
|
+
*/
|
|
2386
|
+
'referenceFrame': V1StateVectorReferenceFrameEnum;
|
|
2387
|
+
/**
|
|
2388
|
+
* Drag coefficient of the satellite- normalized to a 1m^2 cross-sectional area and a 1kg mass.
|
|
2389
|
+
* @type {number}
|
|
2390
|
+
* @memberof V1StateVector
|
|
2391
|
+
*/
|
|
2392
|
+
'dragCoefficient': number;
|
|
2393
|
+
/**
|
|
2394
|
+
* Solar radiation pressure coefficient of the satellite- normalized to a 1m^2 cross-sectional area and a 1kg mass.
|
|
2395
|
+
* @type {number}
|
|
2396
|
+
* @memberof V1StateVector
|
|
2397
|
+
*/
|
|
2398
|
+
'srpCoefficient': number;
|
|
2399
|
+
}
|
|
2400
|
+
export declare const V1StateVectorReferenceFrameEnum: {
|
|
2401
|
+
readonly ECI_J2000: "ECI_J2000";
|
|
2402
|
+
readonly ECEF: "ECEF";
|
|
2403
|
+
};
|
|
2404
|
+
export type V1StateVectorReferenceFrameEnum = typeof V1StateVectorReferenceFrameEnum[keyof typeof V1StateVectorReferenceFrameEnum];
|
|
2072
2405
|
/**
|
|
2073
2406
|
*
|
|
2074
2407
|
* @export
|
|
@@ -2952,6 +3285,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2952
3285
|
* @throws {RequiredError}
|
|
2953
3286
|
*/
|
|
2954
3287
|
v1GetNodeProperties: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3288
|
+
/**
|
|
3289
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
3290
|
+
* @param {string} nodeId
|
|
3291
|
+
* @param {number} [limit]
|
|
3292
|
+
* @param {string} [before]
|
|
3293
|
+
* @param {*} [options] Override http request option.
|
|
3294
|
+
* @throws {RequiredError}
|
|
3295
|
+
*/
|
|
3296
|
+
v1GetNodeSatelliteCalibrations: (nodeId: string, limit?: number, before?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2955
3297
|
/**
|
|
2956
3298
|
* Get observation features.
|
|
2957
3299
|
* @param {string} imageId
|
|
@@ -2981,11 +3323,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2981
3323
|
* @param {string} [before]
|
|
2982
3324
|
* @param {string} [searchInstructionId]
|
|
2983
3325
|
* @param {string} [surveyInstructionId]
|
|
3326
|
+
* @param {string} [resolvedImageInstructionId]
|
|
2984
3327
|
* @param {string} [imageId]
|
|
2985
3328
|
* @param {*} [options] Override http request option.
|
|
2986
3329
|
* @throws {RequiredError}
|
|
2987
3330
|
*/
|
|
2988
|
-
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3331
|
+
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2989
3332
|
/**
|
|
2990
3333
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
2991
3334
|
* @param {string} until
|
|
@@ -3042,6 +3385,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3042
3385
|
* @throws {RequiredError}
|
|
3043
3386
|
*/
|
|
3044
3387
|
v1GetSearchInstructions: (before?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3388
|
+
/**
|
|
3389
|
+
* Get state vectors for a satellite.
|
|
3390
|
+
* @param {string} targetId
|
|
3391
|
+
* @param {string} [before]
|
|
3392
|
+
* @param {string} [after]
|
|
3393
|
+
* @param {*} [options] Override http request option.
|
|
3394
|
+
* @throws {RequiredError}
|
|
3395
|
+
*/
|
|
3396
|
+
v1GetStateVectors: (targetId: string, before?: string, after?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3045
3397
|
/**
|
|
3046
3398
|
* 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
3399
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -3149,6 +3501,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3149
3501
|
* @throws {RequiredError}
|
|
3150
3502
|
*/
|
|
3151
3503
|
v2GetSearch: (searchId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3504
|
+
/**
|
|
3505
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
3506
|
+
* @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
3507
|
+
* @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
|
|
3508
|
+
* @param {*} [options] Override http request option.
|
|
3509
|
+
* @throws {RequiredError}
|
|
3510
|
+
*/
|
|
3511
|
+
v2GetSearches: (after?: string, status?: V2GetSearchesStatusEnum, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3152
3512
|
};
|
|
3153
3513
|
/**
|
|
3154
3514
|
* DefaultApi - functional programming interface
|
|
@@ -3317,6 +3677,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3317
3677
|
* @throws {RequiredError}
|
|
3318
3678
|
*/
|
|
3319
3679
|
v1GetNodeProperties(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GroundStationParticipant>>;
|
|
3680
|
+
/**
|
|
3681
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
3682
|
+
* @param {string} nodeId
|
|
3683
|
+
* @param {number} [limit]
|
|
3684
|
+
* @param {string} [before]
|
|
3685
|
+
* @param {*} [options] Override http request option.
|
|
3686
|
+
* @throws {RequiredError}
|
|
3687
|
+
*/
|
|
3688
|
+
v1GetNodeSatelliteCalibrations(nodeId: string, limit?: number, before?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeCalibrationResult>>>;
|
|
3320
3689
|
/**
|
|
3321
3690
|
* Get observation features.
|
|
3322
3691
|
* @param {string} imageId
|
|
@@ -3346,11 +3715,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3346
3715
|
* @param {string} [before]
|
|
3347
3716
|
* @param {string} [searchInstructionId]
|
|
3348
3717
|
* @param {string} [surveyInstructionId]
|
|
3718
|
+
* @param {string} [resolvedImageInstructionId]
|
|
3349
3719
|
* @param {string} [imageId]
|
|
3350
3720
|
* @param {*} [options] Override http request option.
|
|
3351
3721
|
* @throws {RequiredError}
|
|
3352
3722
|
*/
|
|
3353
|
-
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
3723
|
+
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
3354
3724
|
/**
|
|
3355
3725
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
3356
3726
|
* @param {string} until
|
|
@@ -3407,6 +3777,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3407
3777
|
* @throws {RequiredError}
|
|
3408
3778
|
*/
|
|
3409
3779
|
v1GetSearchInstructions(before?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SearchInstruction>>>;
|
|
3780
|
+
/**
|
|
3781
|
+
* Get state vectors for a satellite.
|
|
3782
|
+
* @param {string} targetId
|
|
3783
|
+
* @param {string} [before]
|
|
3784
|
+
* @param {string} [after]
|
|
3785
|
+
* @param {*} [options] Override http request option.
|
|
3786
|
+
* @throws {RequiredError}
|
|
3787
|
+
*/
|
|
3788
|
+
v1GetStateVectors(targetId: string, before?: string, after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1StateVector>>>;
|
|
3410
3789
|
/**
|
|
3411
3790
|
* 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
3791
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -3514,6 +3893,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3514
3893
|
* @throws {RequiredError}
|
|
3515
3894
|
*/
|
|
3516
3895
|
v2GetSearch(searchId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2Search>>;
|
|
3896
|
+
/**
|
|
3897
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
3898
|
+
* @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
3899
|
+
* @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
|
|
3900
|
+
* @param {*} [options] Override http request option.
|
|
3901
|
+
* @throws {RequiredError}
|
|
3902
|
+
*/
|
|
3903
|
+
v2GetSearches(after?: string, status?: V2GetSearchesStatusEnum, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V2Search>>>;
|
|
3517
3904
|
};
|
|
3518
3905
|
/**
|
|
3519
3906
|
* DefaultApi - factory interface
|
|
@@ -3682,6 +4069,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3682
4069
|
* @throws {RequiredError}
|
|
3683
4070
|
*/
|
|
3684
4071
|
v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GroundStationParticipant>;
|
|
4072
|
+
/**
|
|
4073
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
4074
|
+
* @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
|
|
4075
|
+
* @param {*} [options] Override http request option.
|
|
4076
|
+
* @throws {RequiredError}
|
|
4077
|
+
*/
|
|
4078
|
+
v1GetNodeSatelliteCalibrations(requestParameters: DefaultApiV1GetNodeSatelliteCalibrationsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeCalibrationResult>>;
|
|
3685
4079
|
/**
|
|
3686
4080
|
* Get observation features.
|
|
3687
4081
|
* @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
|
|
@@ -3758,6 +4152,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3758
4152
|
* @throws {RequiredError}
|
|
3759
4153
|
*/
|
|
3760
4154
|
v1GetSearchInstructions(requestParameters?: DefaultApiV1GetSearchInstructionsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SearchInstruction>>;
|
|
4155
|
+
/**
|
|
4156
|
+
* Get state vectors for a satellite.
|
|
4157
|
+
* @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
|
|
4158
|
+
* @param {*} [options] Override http request option.
|
|
4159
|
+
* @throws {RequiredError}
|
|
4160
|
+
*/
|
|
4161
|
+
v1GetStateVectors(requestParameters: DefaultApiV1GetStateVectorsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1StateVector>>;
|
|
3761
4162
|
/**
|
|
3762
4163
|
* 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
4164
|
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
@@ -3862,6 +4263,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3862
4263
|
* @throws {RequiredError}
|
|
3863
4264
|
*/
|
|
3864
4265
|
v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): AxiosPromise<V2Search>;
|
|
4266
|
+
/**
|
|
4267
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
4268
|
+
* @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
|
|
4269
|
+
* @param {*} [options] Override http request option.
|
|
4270
|
+
* @throws {RequiredError}
|
|
4271
|
+
*/
|
|
4272
|
+
v2GetSearches(requestParameters?: DefaultApiV2GetSearchesRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V2Search>>;
|
|
3865
4273
|
};
|
|
3866
4274
|
/**
|
|
3867
4275
|
* Request parameters for getUncorrelatedTracks operation in DefaultApi.
|
|
@@ -4149,6 +4557,31 @@ export interface DefaultApiV1GetNodePropertiesRequest {
|
|
|
4149
4557
|
*/
|
|
4150
4558
|
readonly nodeId: string;
|
|
4151
4559
|
}
|
|
4560
|
+
/**
|
|
4561
|
+
* Request parameters for v1GetNodeSatelliteCalibrations operation in DefaultApi.
|
|
4562
|
+
* @export
|
|
4563
|
+
* @interface DefaultApiV1GetNodeSatelliteCalibrationsRequest
|
|
4564
|
+
*/
|
|
4565
|
+
export interface DefaultApiV1GetNodeSatelliteCalibrationsRequest {
|
|
4566
|
+
/**
|
|
4567
|
+
*
|
|
4568
|
+
* @type {string}
|
|
4569
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
4570
|
+
*/
|
|
4571
|
+
readonly nodeId: string;
|
|
4572
|
+
/**
|
|
4573
|
+
*
|
|
4574
|
+
* @type {number}
|
|
4575
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
4576
|
+
*/
|
|
4577
|
+
readonly limit?: number;
|
|
4578
|
+
/**
|
|
4579
|
+
*
|
|
4580
|
+
* @type {string}
|
|
4581
|
+
* @memberof DefaultApiV1GetNodeSatelliteCalibrations
|
|
4582
|
+
*/
|
|
4583
|
+
readonly before?: string;
|
|
4584
|
+
}
|
|
4152
4585
|
/**
|
|
4153
4586
|
* Request parameters for v1GetObservationFeatures operation in DefaultApi.
|
|
4154
4587
|
* @export
|
|
@@ -4230,6 +4663,12 @@ export interface DefaultApiV1GetObservationStatusesRequest {
|
|
|
4230
4663
|
* @memberof DefaultApiV1GetObservationStatuses
|
|
4231
4664
|
*/
|
|
4232
4665
|
readonly surveyInstructionId?: string;
|
|
4666
|
+
/**
|
|
4667
|
+
*
|
|
4668
|
+
* @type {string}
|
|
4669
|
+
* @memberof DefaultApiV1GetObservationStatuses
|
|
4670
|
+
*/
|
|
4671
|
+
readonly resolvedImageInstructionId?: string;
|
|
4233
4672
|
/**
|
|
4234
4673
|
*
|
|
4235
4674
|
* @type {string}
|
|
@@ -4363,6 +4802,31 @@ export interface DefaultApiV1GetSearchInstructionsRequest {
|
|
|
4363
4802
|
*/
|
|
4364
4803
|
readonly before?: string;
|
|
4365
4804
|
}
|
|
4805
|
+
/**
|
|
4806
|
+
* Request parameters for v1GetStateVectors operation in DefaultApi.
|
|
4807
|
+
* @export
|
|
4808
|
+
* @interface DefaultApiV1GetStateVectorsRequest
|
|
4809
|
+
*/
|
|
4810
|
+
export interface DefaultApiV1GetStateVectorsRequest {
|
|
4811
|
+
/**
|
|
4812
|
+
*
|
|
4813
|
+
* @type {string}
|
|
4814
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
4815
|
+
*/
|
|
4816
|
+
readonly targetId: string;
|
|
4817
|
+
/**
|
|
4818
|
+
*
|
|
4819
|
+
* @type {string}
|
|
4820
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
4821
|
+
*/
|
|
4822
|
+
readonly before?: string;
|
|
4823
|
+
/**
|
|
4824
|
+
*
|
|
4825
|
+
* @type {string}
|
|
4826
|
+
* @memberof DefaultApiV1GetStateVectors
|
|
4827
|
+
*/
|
|
4828
|
+
readonly after?: string;
|
|
4829
|
+
}
|
|
4366
4830
|
/**
|
|
4367
4831
|
* Request parameters for v1GetSurveyInstructions operation in DefaultApi.
|
|
4368
4832
|
* @export
|
|
@@ -4563,6 +5027,25 @@ export interface DefaultApiV2GetSearchRequest {
|
|
|
4563
5027
|
*/
|
|
4564
5028
|
readonly searchId: string;
|
|
4565
5029
|
}
|
|
5030
|
+
/**
|
|
5031
|
+
* Request parameters for v2GetSearches operation in DefaultApi.
|
|
5032
|
+
* @export
|
|
5033
|
+
* @interface DefaultApiV2GetSearchesRequest
|
|
5034
|
+
*/
|
|
5035
|
+
export interface DefaultApiV2GetSearchesRequest {
|
|
5036
|
+
/**
|
|
5037
|
+
* The timestamp after which to return results. Defaults to one day prior to the current time.
|
|
5038
|
+
* @type {string}
|
|
5039
|
+
* @memberof DefaultApiV2GetSearches
|
|
5040
|
+
*/
|
|
5041
|
+
readonly after?: string;
|
|
5042
|
+
/**
|
|
5043
|
+
* The status of the searches to return. Defaults to all statuses.
|
|
5044
|
+
* @type {'COMPLETED' | 'IN_PROGRESS' | 'FAILED'}
|
|
5045
|
+
* @memberof DefaultApiV2GetSearches
|
|
5046
|
+
*/
|
|
5047
|
+
readonly status?: V2GetSearchesStatusEnum;
|
|
5048
|
+
}
|
|
4566
5049
|
/**
|
|
4567
5050
|
* DefaultApi - object-oriented interface
|
|
4568
5051
|
* @export
|
|
@@ -4755,6 +5238,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4755
5238
|
* @memberof DefaultApi
|
|
4756
5239
|
*/
|
|
4757
5240
|
v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GroundStationParticipant, any>>;
|
|
5241
|
+
/**
|
|
5242
|
+
* Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
|
|
5243
|
+
* @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
|
|
5244
|
+
* @param {*} [options] Override http request option.
|
|
5245
|
+
* @throws {RequiredError}
|
|
5246
|
+
* @memberof DefaultApi
|
|
5247
|
+
*/
|
|
5248
|
+
v1GetNodeSatelliteCalibrations(requestParameters: DefaultApiV1GetNodeSatelliteCalibrationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeCalibrationResult[], any>>;
|
|
4758
5249
|
/**
|
|
4759
5250
|
* Get observation features.
|
|
4760
5251
|
* @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
|
|
@@ -4842,6 +5333,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4842
5333
|
* @memberof DefaultApi
|
|
4843
5334
|
*/
|
|
4844
5335
|
v1GetSearchInstructions(requestParameters?: DefaultApiV1GetSearchInstructionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SearchInstruction[], any>>;
|
|
5336
|
+
/**
|
|
5337
|
+
* Get state vectors for a satellite.
|
|
5338
|
+
* @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
|
|
5339
|
+
* @param {*} [options] Override http request option.
|
|
5340
|
+
* @throws {RequiredError}
|
|
5341
|
+
* @memberof DefaultApi
|
|
5342
|
+
*/
|
|
5343
|
+
v1GetStateVectors(requestParameters: DefaultApiV1GetStateVectorsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1StateVector[], any>>;
|
|
4845
5344
|
/**
|
|
4846
5345
|
* 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
5346
|
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
@@ -4961,4 +5460,21 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4961
5460
|
* @memberof DefaultApi
|
|
4962
5461
|
*/
|
|
4963
5462
|
v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2Search, any>>;
|
|
5463
|
+
/**
|
|
5464
|
+
* Get a list of your organization\'s V2 searches by time range or status.
|
|
5465
|
+
* @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
|
|
5466
|
+
* @param {*} [options] Override http request option.
|
|
5467
|
+
* @throws {RequiredError}
|
|
5468
|
+
* @memberof DefaultApi
|
|
5469
|
+
*/
|
|
5470
|
+
v2GetSearches(requestParameters?: DefaultApiV2GetSearchesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2Search[], any>>;
|
|
4964
5471
|
}
|
|
5472
|
+
/**
|
|
5473
|
+
* @export
|
|
5474
|
+
*/
|
|
5475
|
+
export declare const V2GetSearchesStatusEnum: {
|
|
5476
|
+
readonly COMPLETED: "COMPLETED";
|
|
5477
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
5478
|
+
readonly FAILED: "FAILED";
|
|
5479
|
+
};
|
|
5480
|
+
export type V2GetSearchesStatusEnum = typeof V2GetSearchesStatusEnum[keyof typeof V2GetSearchesStatusEnum];
|