@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/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
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.6669
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];
@@ -573,7 +582,7 @@ export interface V1CreateImageSetImageRequest {
573
582
 
574
583
 
575
584
  /**
576
- *
585
+ * Response from image creation, with image ID and presigned S3 upload URL.
577
586
  * @export
578
587
  * @interface V1CreateImageSetImageResponse
579
588
  */
@@ -971,6 +980,18 @@ export interface V1ImageMetadata {
971
980
  * @memberof V1ImageMetadata
972
981
  */
973
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;
974
995
  /**
975
996
  *
976
997
  * @type {string}
@@ -1216,6 +1237,172 @@ export interface V1ImageSetImage {
1216
1237
  */
1217
1238
  'predictedStreakLocation'?: V1PredictedStreakLocation;
1218
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
+
1219
1406
  /**
1220
1407
  * Observation Feature
1221
1408
  * @export
@@ -1574,55 +1761,6 @@ export interface V1PlaneScanRequest {
1574
1761
  */
1575
1762
  'stepSizeDegrees': number;
1576
1763
  }
1577
- /**
1578
- * Extracted stars that matched during plate solving
1579
- * @export
1580
- * @interface V1Plate
1581
- */
1582
- export interface V1Plate {
1583
- /**
1584
- * The x-centroid
1585
- * @type {number}
1586
- * @memberof V1Plate
1587
- */
1588
- 'xCentroid': number;
1589
- /**
1590
- * The y-centroid
1591
- * @type {number}
1592
- * @memberof V1Plate
1593
- */
1594
- 'yCentroid': number;
1595
- /**
1596
- * The UCAC4 or GaiaUD number if known
1597
- * @type {number}
1598
- * @memberof V1Plate
1599
- */
1600
- 'sequenceNumber': number;
1601
- /**
1602
- * Extracted magnitude
1603
- * @type {number}
1604
- * @memberof V1Plate
1605
- */
1606
- 'magnitude': number;
1607
- /**
1608
- * The star RA
1609
- * @type {number}
1610
- * @memberof V1Plate
1611
- */
1612
- 'raRad': number;
1613
- /**
1614
- * The star Dec
1615
- * @type {number}
1616
- * @memberof V1Plate
1617
- */
1618
- 'decRad': number;
1619
- /**
1620
- * The calculated offset from the catalog star, if known. 0 otherwise
1621
- * @type {number}
1622
- * @memberof V1Plate
1623
- */
1624
- 'catalogOffsetRad': number;
1625
- }
1626
1764
  /**
1627
1765
  *
1628
1766
  * @export
@@ -1631,10 +1769,16 @@ export interface V1Plate {
1631
1769
  export interface V1PlateSolveResult {
1632
1770
  /**
1633
1771
  *
1634
- * @type {Array<V1Plate>}
1772
+ * @type {V1PlateSolveStatus}
1635
1773
  * @memberof V1PlateSolveResult
1636
1774
  */
1637
- 'plates': Array<V1Plate>;
1775
+ 'status'?: V1PlateSolveStatus;
1776
+ /**
1777
+ *
1778
+ * @type {Array<V1MatchedStar>}
1779
+ * @memberof V1PlateSolveResult
1780
+ */
1781
+ 'matchedStars'?: Array<V1MatchedStar>;
1638
1782
  /**
1639
1783
  * The number of pixels in X directions
1640
1784
  * @type {number}
@@ -1690,6 +1834,23 @@ export interface V1PlateSolveResult {
1690
1834
  */
1691
1835
  'transformation': V1Transformation;
1692
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
+
1693
1854
  /**
1694
1855
  * A point in 3D space.
1695
1856
  * @export
@@ -1832,6 +1993,94 @@ export interface V1RicVolumeSearchRequest {
1832
1993
  */
1833
1994
  'ricStdevEpoch'?: string;
1834
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
+
1835
2084
  /**
1836
2085
  * SatellitePotential
1837
2086
  * @export
@@ -2069,6 +2318,18 @@ export interface V1SatelliteTarget {
2069
2318
  * @memberof V1SatelliteTarget
2070
2319
  */
2071
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;
2072
2333
  }
2073
2334
 
2074
2335
 
@@ -2142,6 +2403,93 @@ export interface V1SearchInstructionStep {
2142
2403
  */
2143
2404
  'durationSeconds': number;
2144
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
+
2145
2493
  /**
2146
2494
  *
2147
2495
  * @export
@@ -3739,10 +4087,45 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3739
4087
  // http bearer authentication required
3740
4088
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
3741
4089
 
3742
- if (imageSets) {
3743
- localVarQueryParameter['imageSets'] = imageSets.join(COLLECTION_FORMATS.csv);
3744
- }
3745
-
4090
+ if (imageSets) {
4091
+ localVarQueryParameter['imageSets'] = imageSets.join(COLLECTION_FORMATS.csv);
4092
+ }
4093
+
4094
+
4095
+
4096
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4097
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4098
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
4099
+
4100
+ return {
4101
+ url: toPathString(localVarUrlObj),
4102
+ options: localVarRequestOptions,
4103
+ };
4104
+ },
4105
+ /**
4106
+ * Get image sets.
4107
+ * @param {*} [options] Override http request option.
4108
+ * @throws {RequiredError}
4109
+ */
4110
+ v1GetImageSets: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4111
+ const localVarPath = `/v1/image-sets`;
4112
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4113
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4114
+ let baseOptions;
4115
+ if (configuration) {
4116
+ baseOptions = configuration.baseOptions;
4117
+ }
4118
+
4119
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
4120
+ const localVarHeaderParameter = {} as any;
4121
+ const localVarQueryParameter = {} as any;
4122
+
4123
+ // authentication Roles required
4124
+
4125
+ // authentication BearerToken required
4126
+ // http bearer authentication required
4127
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
4128
+
3746
4129
 
3747
4130
 
3748
4131
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3755,12 +4138,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3755
4138
  };
3756
4139
  },
3757
4140
  /**
3758
- * Get image sets.
4141
+ * Get node properties.
4142
+ * @param {string} nodeId
3759
4143
  * @param {*} [options] Override http request option.
3760
4144
  * @throws {RequiredError}
3761
4145
  */
3762
- v1GetImageSets: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3763
- const localVarPath = `/v1/image-sets`;
4146
+ v1GetNodeProperties: async (nodeId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4147
+ // verify required parameter 'nodeId' is not null or undefined
4148
+ assertParamExists('v1GetNodeProperties', 'nodeId', nodeId)
4149
+ const localVarPath = `/v1/node-properties`;
3764
4150
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3765
4151
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3766
4152
  let baseOptions;
@@ -3778,6 +4164,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3778
4164
  // http bearer authentication required
3779
4165
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
3780
4166
 
4167
+ if (nodeId !== undefined) {
4168
+ localVarQueryParameter['nodeId'] = nodeId;
4169
+ }
4170
+
3781
4171
 
3782
4172
 
3783
4173
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3790,15 +4180,17 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3790
4180
  };
3791
4181
  },
3792
4182
  /**
3793
- * Get node properties.
4183
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
3794
4184
  * @param {string} nodeId
4185
+ * @param {number} [limit]
4186
+ * @param {string} [before]
3795
4187
  * @param {*} [options] Override http request option.
3796
4188
  * @throws {RequiredError}
3797
4189
  */
3798
- v1GetNodeProperties: async (nodeId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4190
+ v1GetNodeSatelliteCalibrations: async (nodeId: string, limit?: number, before?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3799
4191
  // verify required parameter 'nodeId' is not null or undefined
3800
- assertParamExists('v1GetNodeProperties', 'nodeId', nodeId)
3801
- const localVarPath = `/v1/node-properties`;
4192
+ assertParamExists('v1GetNodeSatelliteCalibrations', 'nodeId', nodeId)
4193
+ const localVarPath = `/v1/satellite-calibrations`;
3802
4194
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3803
4195
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3804
4196
  let baseOptions;
@@ -3820,6 +4212,16 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3820
4212
  localVarQueryParameter['nodeId'] = nodeId;
3821
4213
  }
3822
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
+
3823
4225
 
3824
4226
 
3825
4227
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3971,11 +4373,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3971
4373
  * @param {string} [before]
3972
4374
  * @param {string} [searchInstructionId]
3973
4375
  * @param {string} [surveyInstructionId]
4376
+ * @param {string} [resolvedImageInstructionId]
3974
4377
  * @param {string} [imageId]
3975
4378
  * @param {*} [options] Override http request option.
3976
4379
  * @throws {RequiredError}
3977
4380
  */
3978
- 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> => {
3979
4382
  const localVarPath = `/v1/observation-statuses`;
3980
4383
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3981
4384
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4012,6 +4415,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4012
4415
  localVarQueryParameter['surveyInstructionId'] = surveyInstructionId;
4013
4416
  }
4014
4417
 
4418
+ if (resolvedImageInstructionId !== undefined) {
4419
+ localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
4420
+ }
4421
+
4015
4422
  if (imageId !== undefined) {
4016
4423
  localVarQueryParameter['imageId'] = imageId;
4017
4424
  }
@@ -4349,6 +4756,62 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4349
4756
 
4350
4757
 
4351
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
+
4352
4815
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4353
4816
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4354
4817
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -4980,6 +5443,53 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4980
5443
 
4981
5444
 
4982
5445
 
5446
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
5447
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
5448
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
5449
+
5450
+ return {
5451
+ url: toPathString(localVarUrlObj),
5452
+ options: localVarRequestOptions,
5453
+ };
5454
+ },
5455
+ /**
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.
5459
+ * @param {*} [options] Override http request option.
5460
+ * @throws {RequiredError}
5461
+ */
5462
+ v2GetSearches: async (after?: string, status?: V2GetSearchesStatusEnum, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5463
+ const localVarPath = `/v2/searches`;
5464
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
5465
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5466
+ let baseOptions;
5467
+ if (configuration) {
5468
+ baseOptions = configuration.baseOptions;
5469
+ }
5470
+
5471
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
5472
+ const localVarHeaderParameter = {} as any;
5473
+ const localVarQueryParameter = {} as any;
5474
+
5475
+ // authentication Roles required
5476
+
5477
+ // authentication BearerToken required
5478
+ // http bearer authentication required
5479
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
5480
+
5481
+ if (after !== undefined) {
5482
+ localVarQueryParameter['after'] = (after as any instanceof Date) ?
5483
+ (after as any).toISOString() :
5484
+ after;
5485
+ }
5486
+
5487
+ if (status !== undefined) {
5488
+ localVarQueryParameter['status'] = status;
5489
+ }
5490
+
5491
+
5492
+
4983
5493
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4984
5494
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4985
5495
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -5230,6 +5740,18 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5230
5740
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeProperties(nodeId, options);
5231
5741
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5232
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
+ },
5233
5755
  /**
5234
5756
  * Get observation features.
5235
5757
  * @param {string} imageId
@@ -5268,12 +5790,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5268
5790
  * @param {string} [before]
5269
5791
  * @param {string} [searchInstructionId]
5270
5792
  * @param {string} [surveyInstructionId]
5793
+ * @param {string} [resolvedImageInstructionId]
5271
5794
  * @param {string} [imageId]
5272
5795
  * @param {*} [options] Override http request option.
5273
5796
  * @throws {RequiredError}
5274
5797
  */
5275
- async v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>> {
5276
- 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);
5277
5800
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5278
5801
  },
5279
5802
  /**
@@ -5353,6 +5876,18 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5353
5876
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetSearchInstructions(before, options);
5354
5877
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5355
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
+ },
5356
5891
  /**
5357
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.
5358
5893
  * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
@@ -5505,6 +6040,17 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5505
6040
  const localVarAxiosArgs = await localVarAxiosParamCreator.v2GetSearch(searchId, options);
5506
6041
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5507
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
+ },
5508
6054
  }
5509
6055
  };
5510
6056
 
@@ -5723,6 +6269,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5723
6269
  v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GroundStationParticipant> {
5724
6270
  return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
5725
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
+ },
5726
6281
  /**
5727
6282
  * Get observation features.
5728
6283
  * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
@@ -5757,7 +6312,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5757
6312
  * @throws {RequiredError}
5758
6313
  */
5759
6314
  v1GetObservationStatuses(requestParameters: DefaultApiV1GetObservationStatusesRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V1ObservationStatus>> {
5760
- 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));
5761
6316
  },
5762
6317
  /**
5763
6318
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
@@ -5821,6 +6376,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5821
6376
  v1GetSearchInstructions(requestParameters: DefaultApiV1GetSearchInstructionsRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V1SearchInstruction>> {
5822
6377
  return localVarFp.v1GetSearchInstructions(requestParameters.before, options).then((request) => request(axios, basePath));
5823
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
+ },
5824
6388
  /**
5825
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.
5826
6390
  * @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
@@ -5955,6 +6519,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5955
6519
  v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): AxiosPromise<V2Search> {
5956
6520
  return localVarFp.v2GetSearch(requestParameters.searchId, options).then((request) => request(axios, basePath));
5957
6521
  },
6522
+ /**
6523
+ * Get a list of your organization\'s V2 searches by time range or status.
6524
+ * @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
6525
+ * @param {*} [options] Override http request option.
6526
+ * @throws {RequiredError}
6527
+ */
6528
+ v2GetSearches(requestParameters: DefaultApiV2GetSearchesRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V2Search>> {
6529
+ return localVarFp.v2GetSearches(requestParameters.after, requestParameters.status, options).then((request) => request(axios, basePath));
6530
+ },
5958
6531
  };
5959
6532
  };
5960
6533
 
@@ -6266,6 +6839,34 @@ export interface DefaultApiV1GetNodePropertiesRequest {
6266
6839
  readonly nodeId: string
6267
6840
  }
6268
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
+
6269
6870
  /**
6270
6871
  * Request parameters for v1GetObservationFeatures operation in DefaultApi.
6271
6872
  * @export
@@ -6356,6 +6957,13 @@ export interface DefaultApiV1GetObservationStatusesRequest {
6356
6957
  */
6357
6958
  readonly surveyInstructionId?: string
6358
6959
 
6960
+ /**
6961
+ *
6962
+ * @type {string}
6963
+ * @memberof DefaultApiV1GetObservationStatuses
6964
+ */
6965
+ readonly resolvedImageInstructionId?: string
6966
+
6359
6967
  /**
6360
6968
  *
6361
6969
  * @type {string}
@@ -6504,6 +7112,34 @@ export interface DefaultApiV1GetSearchInstructionsRequest {
6504
7112
  readonly before?: string
6505
7113
  }
6506
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
+
6507
7143
  /**
6508
7144
  * Request parameters for v1GetSurveyInstructions operation in DefaultApi.
6509
7145
  * @export
@@ -6721,6 +7357,27 @@ export interface DefaultApiV2GetSearchRequest {
6721
7357
  readonly searchId: string
6722
7358
  }
6723
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
+
6724
7381
  /**
6725
7382
  * DefaultApi - object-oriented interface
6726
7383
  * @export
@@ -6982,6 +7639,17 @@ export class DefaultApi extends BaseAPI {
6982
7639
  return DefaultApiFp(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
6983
7640
  }
6984
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
+
6985
7653
  /**
6986
7654
  * Get observation features.
6987
7655
  * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
@@ -7023,7 +7691,7 @@ export class DefaultApi extends BaseAPI {
7023
7691
  * @memberof DefaultApi
7024
7692
  */
7025
7693
  public v1GetObservationStatuses(requestParameters: DefaultApiV1GetObservationStatusesRequest = {}, options?: AxiosRequestConfig) {
7026
- 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));
7027
7695
  }
7028
7696
 
7029
7697
  /**
@@ -7102,6 +7770,17 @@ export class DefaultApi extends BaseAPI {
7102
7770
  return DefaultApiFp(this.configuration).v1GetSearchInstructions(requestParameters.before, options).then((request) => request(this.axios, this.basePath));
7103
7771
  }
7104
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
+
7105
7784
  /**
7106
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.
7107
7786
  * @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
@@ -7265,7 +7944,27 @@ export class DefaultApi extends BaseAPI {
7265
7944
  public v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig) {
7266
7945
  return DefaultApiFp(this.configuration).v2GetSearch(requestParameters.searchId, options).then((request) => request(this.axios, this.basePath));
7267
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
+ }
7268
7958
  }
7269
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];
7270
7969
 
7271
7970