@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/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.8459
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];
@@ -521,6 +530,33 @@ export const V1BlackoutVolumeRequestReferenceFrameEnum = {
521
530
 
522
531
  export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeRequestReferenceFrameEnum[keyof typeof V1BlackoutVolumeRequestReferenceFrameEnum];
523
532
 
533
+ /**
534
+ *
535
+ * @export
536
+ * @interface V1CreateDirectTaskInstructionRequest
537
+ */
538
+ export interface V1CreateDirectTaskInstructionRequest {
539
+ /**
540
+ * NET time after which the instruction can be executed. If null, the instruction can be executed immediately.
541
+ * @type {string}
542
+ * @memberof V1CreateDirectTaskInstructionRequest
543
+ */
544
+ 'executableAfter'?: string;
545
+ /**
546
+ *
547
+ * @type {string}
548
+ * @memberof V1CreateDirectTaskInstructionRequest
549
+ */
550
+ 'targetId': string;
551
+ /**
552
+ *
553
+ * @type {TrackingType}
554
+ * @memberof V1CreateDirectTaskInstructionRequest
555
+ */
556
+ 'trackingType': TrackingType;
557
+ }
558
+
559
+
524
560
  /**
525
561
  *
526
562
  * @export
@@ -573,7 +609,7 @@ export interface V1CreateImageSetImageRequest {
573
609
 
574
610
 
575
611
  /**
576
- *
612
+ * Response from image creation, with image ID and presigned S3 upload URL.
577
613
  * @export
578
614
  * @interface V1CreateImageSetImageResponse
579
615
  */
@@ -971,6 +1007,18 @@ export interface V1ImageMetadata {
971
1007
  * @memberof V1ImageMetadata
972
1008
  */
973
1009
  'inputStars'?: Array<V1HFRStar>;
1010
+ /**
1011
+ *
1012
+ * @type {V1SIPCoefficients}
1013
+ * @memberof V1ImageMetadata
1014
+ */
1015
+ 'sipCoefficients'?: V1SIPCoefficients;
1016
+ /**
1017
+ * Photometric zero point offset. Add to instrumental magnitude (-2.5*log10(flux)) to get calibrated magnitude in standard photometric system.
1018
+ * @type {number}
1019
+ * @memberof V1ImageMetadata
1020
+ */
1021
+ 'photometricZeroPoint'?: number;
974
1022
  /**
975
1023
  *
976
1024
  * @type {string}
@@ -1216,6 +1264,172 @@ export interface V1ImageSetImage {
1216
1264
  */
1217
1265
  'predictedStreakLocation'?: V1PredictedStreakLocation;
1218
1266
  }
1267
+ /**
1268
+ * Extracted stars that matched during plate solving
1269
+ * @export
1270
+ * @interface V1MatchedStar
1271
+ */
1272
+ export interface V1MatchedStar {
1273
+ /**
1274
+ * The x-centroid
1275
+ * @type {number}
1276
+ * @memberof V1MatchedStar
1277
+ */
1278
+ 'xCentroid': number;
1279
+ /**
1280
+ * The y-centroid
1281
+ * @type {number}
1282
+ * @memberof V1MatchedStar
1283
+ */
1284
+ 'yCentroid': number;
1285
+ /**
1286
+ * The UCAC4 or GaiaUD number if known
1287
+ * @type {number}
1288
+ * @memberof V1MatchedStar
1289
+ */
1290
+ 'sequenceNumber': number;
1291
+ /**
1292
+ * Extracted magnitude
1293
+ * @type {number}
1294
+ * @memberof V1MatchedStar
1295
+ */
1296
+ 'magnitude': number;
1297
+ /**
1298
+ * The star RA
1299
+ * @type {number}
1300
+ * @memberof V1MatchedStar
1301
+ */
1302
+ 'raRad': number;
1303
+ /**
1304
+ * The star Dec
1305
+ * @type {number}
1306
+ * @memberof V1MatchedStar
1307
+ */
1308
+ 'decRad': number;
1309
+ /**
1310
+ * The calculated offset from the catalog star, if known. 0 otherwise
1311
+ * @type {number}
1312
+ * @memberof V1MatchedStar
1313
+ */
1314
+ 'catalogOffsetRad': number;
1315
+ /**
1316
+ *
1317
+ * @type {number}
1318
+ * @memberof V1MatchedStar
1319
+ */
1320
+ 'catalogOffsetMagnitude'?: number;
1321
+ /**
1322
+ *
1323
+ * @type {number}
1324
+ * @memberof V1MatchedStar
1325
+ */
1326
+ 'flux': number;
1327
+ /**
1328
+ *
1329
+ * @type {number}
1330
+ * @memberof V1MatchedStar
1331
+ */
1332
+ 'hfr': number;
1333
+ }
1334
+ /**
1335
+ *
1336
+ * @export
1337
+ * @interface V1NodeCalibrationResult
1338
+ */
1339
+ export interface V1NodeCalibrationResult {
1340
+ /**
1341
+ *
1342
+ * @type {string}
1343
+ * @memberof V1NodeCalibrationResult
1344
+ */
1345
+ 'id': string;
1346
+ /**
1347
+ *
1348
+ * @type {string}
1349
+ * @memberof V1NodeCalibrationResult
1350
+ */
1351
+ 'nodeId': string;
1352
+ /**
1353
+ *
1354
+ * @type {string}
1355
+ * @memberof V1NodeCalibrationResult
1356
+ */
1357
+ 'targetId': string;
1358
+ /**
1359
+ *
1360
+ * @type {string}
1361
+ * @memberof V1NodeCalibrationResult
1362
+ */
1363
+ 'imageId': string;
1364
+ /**
1365
+ * The right ascension of the center of the extracted streak, in radians
1366
+ * @type {number}
1367
+ * @memberof V1NodeCalibrationResult
1368
+ */
1369
+ 'calculatedRaRadians'?: number;
1370
+ /**
1371
+ * The declination of the center of the extracted streak, in radians
1372
+ * @type {number}
1373
+ * @memberof V1NodeCalibrationResult
1374
+ */
1375
+ 'calculatedDecRadians'?: number;
1376
+ /**
1377
+ * Ground truth right ascension in radians, from SP3 file
1378
+ * @type {number}
1379
+ * @memberof V1NodeCalibrationResult
1380
+ */
1381
+ 'groundTruthRaRadians'?: number;
1382
+ /**
1383
+ * Ground truth declination in radians, from SP3 file
1384
+ * @type {number}
1385
+ * @memberof V1NodeCalibrationResult
1386
+ */
1387
+ 'groundTruthDecRadians'?: number;
1388
+ /**
1389
+ * Calculated error in RA, in arc-seconds
1390
+ * @type {number}
1391
+ * @memberof V1NodeCalibrationResult
1392
+ */
1393
+ 'raErrorArcSeconds'?: number;
1394
+ /**
1395
+ * Calculated error in Dec, in arc-seconds
1396
+ * @type {number}
1397
+ * @memberof V1NodeCalibrationResult
1398
+ */
1399
+ 'decErrorArcSeconds'?: number;
1400
+ /**
1401
+ * Total error in RA/Dec, in arc-seconds
1402
+ * @type {number}
1403
+ * @memberof V1NodeCalibrationResult
1404
+ */
1405
+ 'totalErrorArcSeconds'?: number;
1406
+ /**
1407
+ *
1408
+ * @type {string}
1409
+ * @memberof V1NodeCalibrationResult
1410
+ */
1411
+ 'centerTime': string;
1412
+ /**
1413
+ *
1414
+ * @type {V1SatelliteCalibrationFamily}
1415
+ * @memberof V1NodeCalibrationResult
1416
+ */
1417
+ 'calibrationFamily': V1SatelliteCalibrationFamily;
1418
+ /**
1419
+ *
1420
+ * @type {string}
1421
+ * @memberof V1NodeCalibrationResult
1422
+ */
1423
+ 'sp3File': string;
1424
+ /**
1425
+ *
1426
+ * @type {string}
1427
+ * @memberof V1NodeCalibrationResult
1428
+ */
1429
+ 'createdAt': string;
1430
+ }
1431
+
1432
+
1219
1433
  /**
1220
1434
  * Observation Feature
1221
1435
  * @export
@@ -1574,55 +1788,6 @@ export interface V1PlaneScanRequest {
1574
1788
  */
1575
1789
  'stepSizeDegrees': number;
1576
1790
  }
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
1791
  /**
1627
1792
  *
1628
1793
  * @export
@@ -1631,10 +1796,16 @@ export interface V1Plate {
1631
1796
  export interface V1PlateSolveResult {
1632
1797
  /**
1633
1798
  *
1634
- * @type {Array<V1Plate>}
1799
+ * @type {V1PlateSolveStatus}
1800
+ * @memberof V1PlateSolveResult
1801
+ */
1802
+ 'status'?: V1PlateSolveStatus;
1803
+ /**
1804
+ *
1805
+ * @type {Array<V1MatchedStar>}
1635
1806
  * @memberof V1PlateSolveResult
1636
1807
  */
1637
- 'plates': Array<V1Plate>;
1808
+ 'matchedStars'?: Array<V1MatchedStar>;
1638
1809
  /**
1639
1810
  * The number of pixels in X directions
1640
1811
  * @type {number}
@@ -1690,6 +1861,23 @@ export interface V1PlateSolveResult {
1690
1861
  */
1691
1862
  'transformation': V1Transformation;
1692
1863
  }
1864
+
1865
+
1866
+ /**
1867
+ *
1868
+ * @export
1869
+ * @enum {string}
1870
+ */
1871
+
1872
+ export const V1PlateSolveStatus = {
1873
+ MATCH_FOUND: 'MATCH_FOUND',
1874
+ NO_MATCH_FOUND: 'NO_MATCH_FOUND',
1875
+ CANCELLED: 'CANCELLED'
1876
+ } as const;
1877
+
1878
+ export type V1PlateSolveStatus = typeof V1PlateSolveStatus[keyof typeof V1PlateSolveStatus];
1879
+
1880
+
1693
1881
  /**
1694
1882
  * A point in 3D space.
1695
1883
  * @export
@@ -1832,6 +2020,94 @@ export interface V1RicVolumeSearchRequest {
1832
2020
  */
1833
2021
  'ricStdevEpoch'?: string;
1834
2022
  }
2023
+ /**
2024
+ *
2025
+ * @export
2026
+ * @interface V1SIPCoefficients
2027
+ */
2028
+ export interface V1SIPCoefficients {
2029
+ /**
2030
+ * Order of the SIP transformation
2031
+ * @type {number}
2032
+ * @memberof V1SIPCoefficients
2033
+ */
2034
+ 'order': number;
2035
+ /**
2036
+ * Forward SIP coefficients matrix A
2037
+ * @type {Array<Array<number>>}
2038
+ * @memberof V1SIPCoefficients
2039
+ */
2040
+ 'A': Array<Array<number>>;
2041
+ /**
2042
+ * Forward SIP coefficients matrix B
2043
+ * @type {Array<Array<number>>}
2044
+ * @memberof V1SIPCoefficients
2045
+ */
2046
+ 'B': Array<Array<number>>;
2047
+ /**
2048
+ * Coordinate description matrix element (1,1) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
2049
+ * @type {number}
2050
+ * @memberof V1SIPCoefficients
2051
+ */
2052
+ 'CD1_1': number;
2053
+ /**
2054
+ * Coordinate description matrix element (1,2) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
2055
+ * @type {number}
2056
+ * @memberof V1SIPCoefficients
2057
+ */
2058
+ 'CD1_2': number;
2059
+ /**
2060
+ * Coordinate description matrix element (2,1) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
2061
+ * @type {number}
2062
+ * @memberof V1SIPCoefficients
2063
+ */
2064
+ 'CD2_1': number;
2065
+ /**
2066
+ * Coordinate description matrix element (2,2) - maps pixel coordinates to sky coordinates in degrees, encapsulating scale, rotation and skew
2067
+ * @type {number}
2068
+ * @memberof V1SIPCoefficients
2069
+ */
2070
+ 'CD2_2': number;
2071
+ /**
2072
+ * X coordinate of the reference pixel
2073
+ * @type {number}
2074
+ * @memberof V1SIPCoefficients
2075
+ */
2076
+ 'coordinateReferencePixelX': number;
2077
+ /**
2078
+ * Y coordinate of the reference pixel
2079
+ * @type {number}
2080
+ * @memberof V1SIPCoefficients
2081
+ */
2082
+ 'coordinateReferencePixelY': number;
2083
+ /**
2084
+ * Right ascension of the reference coordinate in degrees
2085
+ * @type {number}
2086
+ * @memberof V1SIPCoefficients
2087
+ */
2088
+ 'coordinateReferenceRADegrees': number;
2089
+ /**
2090
+ * Declination of the reference coordinate in degrees
2091
+ * @type {number}
2092
+ * @memberof V1SIPCoefficients
2093
+ */
2094
+ 'coordinateReferenceDecDegrees': number;
2095
+ }
2096
+ /**
2097
+ *
2098
+ * @export
2099
+ * @enum {string}
2100
+ */
2101
+
2102
+ export const V1SatelliteCalibrationFamily = {
2103
+ GPS: 'GPS',
2104
+ ILRS: 'ILRS',
2105
+ SWARM: 'SWARM'
2106
+ } as const;
2107
+
2108
+ export type V1SatelliteCalibrationFamily = typeof V1SatelliteCalibrationFamily[keyof typeof V1SatelliteCalibrationFamily];
2109
+
2110
+
1835
2111
  /**
1836
2112
  * SatellitePotential
1837
2113
  * @export
@@ -2069,6 +2345,18 @@ export interface V1SatelliteTarget {
2069
2345
  * @memberof V1SatelliteTarget
2070
2346
  */
2071
2347
  'linkedSatelliteTargetId'?: string;
2348
+ /**
2349
+ *
2350
+ * @type {string}
2351
+ * @memberof V1SatelliteTarget
2352
+ */
2353
+ 'orbitSourceId'?: string;
2354
+ /**
2355
+ *
2356
+ * @type {string}
2357
+ * @memberof V1SatelliteTarget
2358
+ */
2359
+ 'orbitSourceProviderName'?: string;
2072
2360
  }
2073
2361
 
2074
2362
 
@@ -2142,6 +2430,93 @@ export interface V1SearchInstructionStep {
2142
2430
  */
2143
2431
  'durationSeconds': number;
2144
2432
  }
2433
+ /**
2434
+ * State vector representing a satellite\'s position and velocity in space.
2435
+ * @export
2436
+ * @interface V1StateVector
2437
+ */
2438
+ export interface V1StateVector {
2439
+ /**
2440
+ * Unique identifier for the state vector.
2441
+ * @type {string}
2442
+ * @memberof V1StateVector
2443
+ */
2444
+ 'id': string;
2445
+ /**
2446
+ * Identifier of the satellite target this state vector belongs to.
2447
+ * @type {string}
2448
+ * @memberof V1StateVector
2449
+ */
2450
+ 'targetId': string;
2451
+ /**
2452
+ * Position in the X direction in meters.
2453
+ * @type {number}
2454
+ * @memberof V1StateVector
2455
+ */
2456
+ 'posX': number;
2457
+ /**
2458
+ * Position in the Y direction in meters.
2459
+ * @type {number}
2460
+ * @memberof V1StateVector
2461
+ */
2462
+ 'posY': number;
2463
+ /**
2464
+ * Position in the Z direction in meters.
2465
+ * @type {number}
2466
+ * @memberof V1StateVector
2467
+ */
2468
+ 'posZ': number;
2469
+ /**
2470
+ * Velocity in the X direction in meters per second.
2471
+ * @type {number}
2472
+ * @memberof V1StateVector
2473
+ */
2474
+ 'velX': number;
2475
+ /**
2476
+ * Velocity in the Y direction in meters per second.
2477
+ * @type {number}
2478
+ * @memberof V1StateVector
2479
+ */
2480
+ 'velY': number;
2481
+ /**
2482
+ * Velocity in the Z direction in meters per second.
2483
+ * @type {number}
2484
+ * @memberof V1StateVector
2485
+ */
2486
+ 'velZ': number;
2487
+ /**
2488
+ * UTC epoch of the state vector
2489
+ * @type {string}
2490
+ * @memberof V1StateVector
2491
+ */
2492
+ 'epoch': string;
2493
+ /**
2494
+ *
2495
+ * @type {string}
2496
+ * @memberof V1StateVector
2497
+ */
2498
+ 'referenceFrame': V1StateVectorReferenceFrameEnum;
2499
+ /**
2500
+ * Drag coefficient of the satellite- normalized to a 1m^2 cross-sectional area and a 1kg mass.
2501
+ * @type {number}
2502
+ * @memberof V1StateVector
2503
+ */
2504
+ 'dragCoefficient': number;
2505
+ /**
2506
+ * Solar radiation pressure coefficient of the satellite- normalized to a 1m^2 cross-sectional area and a 1kg mass.
2507
+ * @type {number}
2508
+ * @memberof V1StateVector
2509
+ */
2510
+ 'srpCoefficient': number;
2511
+ }
2512
+
2513
+ export const V1StateVectorReferenceFrameEnum = {
2514
+ ECI_J2000: 'ECI_J2000',
2515
+ ECEF: 'ECEF'
2516
+ } as const;
2517
+
2518
+ export type V1StateVectorReferenceFrameEnum = typeof V1StateVectorReferenceFrameEnum[keyof typeof V1StateVectorReferenceFrameEnum];
2519
+
2145
2520
  /**
2146
2521
  *
2147
2522
  * @export
@@ -2963,6 +3338,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
2963
3338
  options: localVarRequestOptions,
2964
3339
  };
2965
3340
  },
3341
+ /**
3342
+ * Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
3343
+ * @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
3344
+ * @param {*} [options] Override http request option.
3345
+ * @throws {RequiredError}
3346
+ */
3347
+ v1CreateDirectTaskInstruction: async (v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3348
+ // verify required parameter 'v1CreateDirectTaskInstructionRequest' is not null or undefined
3349
+ assertParamExists('v1CreateDirectTaskInstruction', 'v1CreateDirectTaskInstructionRequest', v1CreateDirectTaskInstructionRequest)
3350
+ const localVarPath = `/v1/direct-task-instruction`;
3351
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3352
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3353
+ let baseOptions;
3354
+ if (configuration) {
3355
+ baseOptions = configuration.baseOptions;
3356
+ }
3357
+
3358
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
3359
+ const localVarHeaderParameter = {} as any;
3360
+ const localVarQueryParameter = {} as any;
3361
+
3362
+ // authentication Roles required
3363
+
3364
+ // authentication BearerToken required
3365
+ // http bearer authentication required
3366
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
3367
+
3368
+
3369
+
3370
+ localVarHeaderParameter['Content-Type'] = 'application/json';
3371
+
3372
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3373
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3374
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3375
+ localVarRequestOptions.data = serializeDataIfNeeded(v1CreateDirectTaskInstructionRequest, localVarRequestOptions, configuration)
3376
+
3377
+ return {
3378
+ url: toPathString(localVarUrlObj),
3379
+ options: localVarRequestOptions,
3380
+ };
3381
+ },
2966
3382
  /**
2967
3383
  * Create an image set.
2968
3384
  * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
@@ -3325,6 +3741,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3325
3741
 
3326
3742
 
3327
3743
 
3744
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3745
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3746
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3747
+
3748
+ return {
3749
+ url: toPathString(localVarUrlObj),
3750
+ options: localVarRequestOptions,
3751
+ };
3752
+ },
3753
+ /**
3754
+ * Delete a direct task instruction.
3755
+ * @param {string} id
3756
+ * @param {*} [options] Override http request option.
3757
+ * @throws {RequiredError}
3758
+ */
3759
+ v1DeleteDirectTaskInstruction: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3760
+ // verify required parameter 'id' is not null or undefined
3761
+ assertParamExists('v1DeleteDirectTaskInstruction', 'id', id)
3762
+ const localVarPath = `/v1/direct-task-instruction`;
3763
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3764
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3765
+ let baseOptions;
3766
+ if (configuration) {
3767
+ baseOptions = configuration.baseOptions;
3768
+ }
3769
+
3770
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
3771
+ const localVarHeaderParameter = {} as any;
3772
+ const localVarQueryParameter = {} as any;
3773
+
3774
+ // authentication Roles required
3775
+
3776
+ // authentication BearerToken required
3777
+ // http bearer authentication required
3778
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
3779
+
3780
+ if (id !== undefined) {
3781
+ localVarQueryParameter['id'] = id;
3782
+ }
3783
+
3784
+
3785
+
3328
3786
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3329
3787
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3330
3788
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -3822,6 +4280,60 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3822
4280
 
3823
4281
 
3824
4282
 
4283
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4284
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4285
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
4286
+
4287
+ return {
4288
+ url: toPathString(localVarUrlObj),
4289
+ options: localVarRequestOptions,
4290
+ };
4291
+ },
4292
+ /**
4293
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
4294
+ * @param {string} nodeId
4295
+ * @param {number} [limit]
4296
+ * @param {string} [before]
4297
+ * @param {*} [options] Override http request option.
4298
+ * @throws {RequiredError}
4299
+ */
4300
+ v1GetNodeSatelliteCalibrations: async (nodeId: string, limit?: number, before?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4301
+ // verify required parameter 'nodeId' is not null or undefined
4302
+ assertParamExists('v1GetNodeSatelliteCalibrations', 'nodeId', nodeId)
4303
+ const localVarPath = `/v1/satellite-calibrations`;
4304
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4305
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4306
+ let baseOptions;
4307
+ if (configuration) {
4308
+ baseOptions = configuration.baseOptions;
4309
+ }
4310
+
4311
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
4312
+ const localVarHeaderParameter = {} as any;
4313
+ const localVarQueryParameter = {} as any;
4314
+
4315
+ // authentication Roles required
4316
+
4317
+ // authentication BearerToken required
4318
+ // http bearer authentication required
4319
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
4320
+
4321
+ if (nodeId !== undefined) {
4322
+ localVarQueryParameter['nodeId'] = nodeId;
4323
+ }
4324
+
4325
+ if (limit !== undefined) {
4326
+ localVarQueryParameter['limit'] = limit;
4327
+ }
4328
+
4329
+ if (before !== undefined) {
4330
+ localVarQueryParameter['before'] = (before as any instanceof Date) ?
4331
+ (before as any).toISOString() :
4332
+ before;
4333
+ }
4334
+
4335
+
4336
+
3825
4337
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3826
4338
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3827
4339
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -3971,11 +4483,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3971
4483
  * @param {string} [before]
3972
4484
  * @param {string} [searchInstructionId]
3973
4485
  * @param {string} [surveyInstructionId]
4486
+ * @param {string} [resolvedImageInstructionId]
3974
4487
  * @param {string} [imageId]
3975
4488
  * @param {*} [options] Override http request option.
3976
4489
  * @throws {RequiredError}
3977
4490
  */
3978
- v1GetObservationStatuses: async (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4491
+ v1GetObservationStatuses: async (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3979
4492
  const localVarPath = `/v1/observation-statuses`;
3980
4493
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3981
4494
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4012,6 +4525,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4012
4525
  localVarQueryParameter['surveyInstructionId'] = surveyInstructionId;
4013
4526
  }
4014
4527
 
4528
+ if (resolvedImageInstructionId !== undefined) {
4529
+ localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
4530
+ }
4531
+
4015
4532
  if (imageId !== undefined) {
4016
4533
  localVarQueryParameter['imageId'] = imageId;
4017
4534
  }
@@ -4297,12 +4814,54 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4297
4814
  localVarQueryParameter['noradId'] = noradId;
4298
4815
  }
4299
4816
 
4300
- if (publicTargets !== undefined) {
4301
- localVarQueryParameter['publicTargets'] = publicTargets;
4302
- }
4817
+ if (publicTargets !== undefined) {
4818
+ localVarQueryParameter['publicTargets'] = publicTargets;
4819
+ }
4820
+
4821
+ if (privateTargets !== undefined) {
4822
+ localVarQueryParameter['privateTargets'] = privateTargets;
4823
+ }
4824
+
4825
+
4826
+
4827
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4828
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4829
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
4830
+
4831
+ return {
4832
+ url: toPathString(localVarUrlObj),
4833
+ options: localVarRequestOptions,
4834
+ };
4835
+ },
4836
+ /**
4837
+ * Get a list of search instructions. Search 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.
4838
+ * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
4839
+ * @param {*} [options] Override http request option.
4840
+ * @throws {RequiredError}
4841
+ */
4842
+ v1GetSearchInstructions: async (before?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4843
+ const localVarPath = `/v1/search-instructions`;
4844
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4845
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4846
+ let baseOptions;
4847
+ if (configuration) {
4848
+ baseOptions = configuration.baseOptions;
4849
+ }
4850
+
4851
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
4852
+ const localVarHeaderParameter = {} as any;
4853
+ const localVarQueryParameter = {} as any;
4303
4854
 
4304
- if (privateTargets !== undefined) {
4305
- localVarQueryParameter['privateTargets'] = privateTargets;
4855
+ // authentication Roles required
4856
+
4857
+ // authentication BearerToken required
4858
+ // http bearer authentication required
4859
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
4860
+
4861
+ if (before !== undefined) {
4862
+ localVarQueryParameter['before'] = (before as any instanceof Date) ?
4863
+ (before as any).toISOString() :
4864
+ before;
4306
4865
  }
4307
4866
 
4308
4867
 
@@ -4317,13 +4876,17 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4317
4876
  };
4318
4877
  },
4319
4878
  /**
4320
- * Get a list of search instructions. Search 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.
4321
- * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
4879
+ * Get state vectors for a satellite.
4880
+ * @param {string} targetId
4881
+ * @param {string} [before]
4882
+ * @param {string} [after]
4322
4883
  * @param {*} [options] Override http request option.
4323
4884
  * @throws {RequiredError}
4324
4885
  */
4325
- v1GetSearchInstructions: async (before?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4326
- const localVarPath = `/v1/search-instructions`;
4886
+ v1GetStateVectors: async (targetId: string, before?: string, after?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4887
+ // verify required parameter 'targetId' is not null or undefined
4888
+ assertParamExists('v1GetStateVectors', 'targetId', targetId)
4889
+ const localVarPath = `/v1/state-vectors`;
4327
4890
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4328
4891
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4329
4892
  let baseOptions;
@@ -4341,12 +4904,22 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4341
4904
  // http bearer authentication required
4342
4905
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
4343
4906
 
4907
+ if (targetId !== undefined) {
4908
+ localVarQueryParameter['targetId'] = targetId;
4909
+ }
4910
+
4344
4911
  if (before !== undefined) {
4345
4912
  localVarQueryParameter['before'] = (before as any instanceof Date) ?
4346
4913
  (before as any).toISOString() :
4347
4914
  before;
4348
4915
  }
4349
4916
 
4917
+ if (after !== undefined) {
4918
+ localVarQueryParameter['after'] = (after as any instanceof Date) ?
4919
+ (after as any).toISOString() :
4920
+ after;
4921
+ }
4922
+
4350
4923
 
4351
4924
 
4352
4925
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4980,6 +5553,53 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4980
5553
 
4981
5554
 
4982
5555
 
5556
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
5557
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
5558
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
5559
+
5560
+ return {
5561
+ url: toPathString(localVarUrlObj),
5562
+ options: localVarRequestOptions,
5563
+ };
5564
+ },
5565
+ /**
5566
+ * Get a list of your organization\'s V2 searches by time range or status.
5567
+ * @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
5568
+ * @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
5569
+ * @param {*} [options] Override http request option.
5570
+ * @throws {RequiredError}
5571
+ */
5572
+ v2GetSearches: async (after?: string, status?: V2GetSearchesStatusEnum, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5573
+ const localVarPath = `/v2/searches`;
5574
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
5575
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5576
+ let baseOptions;
5577
+ if (configuration) {
5578
+ baseOptions = configuration.baseOptions;
5579
+ }
5580
+
5581
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
5582
+ const localVarHeaderParameter = {} as any;
5583
+ const localVarQueryParameter = {} as any;
5584
+
5585
+ // authentication Roles required
5586
+
5587
+ // authentication BearerToken required
5588
+ // http bearer authentication required
5589
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
5590
+
5591
+ if (after !== undefined) {
5592
+ localVarQueryParameter['after'] = (after as any instanceof Date) ?
5593
+ (after as any).toISOString() :
5594
+ after;
5595
+ }
5596
+
5597
+ if (status !== undefined) {
5598
+ localVarQueryParameter['status'] = status;
5599
+ }
5600
+
5601
+
5602
+
4983
5603
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4984
5604
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4985
5605
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -5020,6 +5640,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5020
5640
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateBlackoutVolume(v1BlackoutVolumeRequest, options);
5021
5641
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5022
5642
  },
5643
+ /**
5644
+ * Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
5645
+ * @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
5646
+ * @param {*} [options] Override http request option.
5647
+ * @throws {RequiredError}
5648
+ */
5649
+ async v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
5650
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest, options);
5651
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5652
+ },
5023
5653
  /**
5024
5654
  * Create an image set.
5025
5655
  * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
@@ -5111,6 +5741,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5111
5741
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteBlackoutVolume(id, options);
5112
5742
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5113
5743
  },
5744
+ /**
5745
+ * Delete a direct task instruction.
5746
+ * @param {string} id
5747
+ * @param {*} [options] Override http request option.
5748
+ * @throws {RequiredError}
5749
+ */
5750
+ async v1DeleteDirectTaskInstruction(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
5751
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteDirectTaskInstruction(id, options);
5752
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5753
+ },
5114
5754
  /**
5115
5755
  * Delete an image set.
5116
5756
  * @param {string} id
@@ -5230,6 +5870,18 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5230
5870
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeProperties(nodeId, options);
5231
5871
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5232
5872
  },
5873
+ /**
5874
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
5875
+ * @param {string} nodeId
5876
+ * @param {number} [limit]
5877
+ * @param {string} [before]
5878
+ * @param {*} [options] Override http request option.
5879
+ * @throws {RequiredError}
5880
+ */
5881
+ async v1GetNodeSatelliteCalibrations(nodeId: string, limit?: number, before?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeCalibrationResult>>> {
5882
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeSatelliteCalibrations(nodeId, limit, before, options);
5883
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5884
+ },
5233
5885
  /**
5234
5886
  * Get observation features.
5235
5887
  * @param {string} imageId
@@ -5268,12 +5920,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5268
5920
  * @param {string} [before]
5269
5921
  * @param {string} [searchInstructionId]
5270
5922
  * @param {string} [surveyInstructionId]
5923
+ * @param {string} [resolvedImageInstructionId]
5271
5924
  * @param {string} [imageId]
5272
5925
  * @param {*} [options] Override http request option.
5273
5926
  * @throws {RequiredError}
5274
5927
  */
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);
5928
+ async v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>> {
5929
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options);
5277
5930
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5278
5931
  },
5279
5932
  /**
@@ -5353,6 +6006,18 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5353
6006
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetSearchInstructions(before, options);
5354
6007
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5355
6008
  },
6009
+ /**
6010
+ * Get state vectors for a satellite.
6011
+ * @param {string} targetId
6012
+ * @param {string} [before]
6013
+ * @param {string} [after]
6014
+ * @param {*} [options] Override http request option.
6015
+ * @throws {RequiredError}
6016
+ */
6017
+ async v1GetStateVectors(targetId: string, before?: string, after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1StateVector>>> {
6018
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetStateVectors(targetId, before, after, options);
6019
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
6020
+ },
5356
6021
  /**
5357
6022
  * 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
6023
  * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
@@ -5505,6 +6170,17 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5505
6170
  const localVarAxiosArgs = await localVarAxiosParamCreator.v2GetSearch(searchId, options);
5506
6171
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5507
6172
  },
6173
+ /**
6174
+ * Get a list of your organization\'s V2 searches by time range or status.
6175
+ * @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
6176
+ * @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
6177
+ * @param {*} [options] Override http request option.
6178
+ * @throws {RequiredError}
6179
+ */
6180
+ async v2GetSearches(after?: string, status?: V2GetSearchesStatusEnum, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V2Search>>> {
6181
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v2GetSearches(after, status, options);
6182
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
6183
+ },
5508
6184
  }
5509
6185
  };
5510
6186
 
@@ -5534,6 +6210,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5534
6210
  v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
5535
6211
  return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
5536
6212
  },
6213
+ /**
6214
+ * Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
6215
+ * @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
6216
+ * @param {*} [options] Override http request option.
6217
+ * @throws {RequiredError}
6218
+ */
6219
+ v1CreateDirectTaskInstruction(requestParameters: DefaultApiV1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
6220
+ return localVarFp.v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(axios, basePath));
6221
+ },
5537
6222
  /**
5538
6223
  * Create an image set.
5539
6224
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
@@ -5616,6 +6301,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5616
6301
  v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete> {
5617
6302
  return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
5618
6303
  },
6304
+ /**
6305
+ * Delete a direct task instruction.
6306
+ * @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
6307
+ * @param {*} [options] Override http request option.
6308
+ * @throws {RequiredError}
6309
+ */
6310
+ v1DeleteDirectTaskInstruction(requestParameters: DefaultApiV1DeleteDirectTaskInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
6311
+ return localVarFp.v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(axios, basePath));
6312
+ },
5619
6313
  /**
5620
6314
  * Delete an image set.
5621
6315
  * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
@@ -5723,6 +6417,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5723
6417
  v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GroundStationParticipant> {
5724
6418
  return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
5725
6419
  },
6420
+ /**
6421
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
6422
+ * @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
6423
+ * @param {*} [options] Override http request option.
6424
+ * @throws {RequiredError}
6425
+ */
6426
+ v1GetNodeSatelliteCalibrations(requestParameters: DefaultApiV1GetNodeSatelliteCalibrationsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeCalibrationResult>> {
6427
+ return localVarFp.v1GetNodeSatelliteCalibrations(requestParameters.nodeId, requestParameters.limit, requestParameters.before, options).then((request) => request(axios, basePath));
6428
+ },
5726
6429
  /**
5727
6430
  * Get observation features.
5728
6431
  * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
@@ -5757,7 +6460,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5757
6460
  * @throws {RequiredError}
5758
6461
  */
5759
6462
  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));
6463
+ return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
5761
6464
  },
5762
6465
  /**
5763
6466
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
@@ -5821,6 +6524,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5821
6524
  v1GetSearchInstructions(requestParameters: DefaultApiV1GetSearchInstructionsRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V1SearchInstruction>> {
5822
6525
  return localVarFp.v1GetSearchInstructions(requestParameters.before, options).then((request) => request(axios, basePath));
5823
6526
  },
6527
+ /**
6528
+ * Get state vectors for a satellite.
6529
+ * @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
6530
+ * @param {*} [options] Override http request option.
6531
+ * @throws {RequiredError}
6532
+ */
6533
+ v1GetStateVectors(requestParameters: DefaultApiV1GetStateVectorsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1StateVector>> {
6534
+ return localVarFp.v1GetStateVectors(requestParameters.targetId, requestParameters.before, requestParameters.after, options).then((request) => request(axios, basePath));
6535
+ },
5824
6536
  /**
5825
6537
  * 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
6538
  * @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
@@ -5955,6 +6667,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5955
6667
  v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig): AxiosPromise<V2Search> {
5956
6668
  return localVarFp.v2GetSearch(requestParameters.searchId, options).then((request) => request(axios, basePath));
5957
6669
  },
6670
+ /**
6671
+ * Get a list of your organization\'s V2 searches by time range or status.
6672
+ * @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
6673
+ * @param {*} [options] Override http request option.
6674
+ * @throws {RequiredError}
6675
+ */
6676
+ v2GetSearches(requestParameters: DefaultApiV2GetSearchesRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V2Search>> {
6677
+ return localVarFp.v2GetSearches(requestParameters.after, requestParameters.status, options).then((request) => request(axios, basePath));
6678
+ },
5958
6679
  };
5959
6680
  };
5960
6681
 
@@ -5986,6 +6707,20 @@ export interface DefaultApiV1CreateBlackoutVolumeRequest {
5986
6707
  readonly v1BlackoutVolumeRequest: V1BlackoutVolumeRequest
5987
6708
  }
5988
6709
 
6710
+ /**
6711
+ * Request parameters for v1CreateDirectTaskInstruction operation in DefaultApi.
6712
+ * @export
6713
+ * @interface DefaultApiV1CreateDirectTaskInstructionRequest
6714
+ */
6715
+ export interface DefaultApiV1CreateDirectTaskInstructionRequest {
6716
+ /**
6717
+ *
6718
+ * @type {V1CreateDirectTaskInstructionRequest}
6719
+ * @memberof DefaultApiV1CreateDirectTaskInstruction
6720
+ */
6721
+ readonly v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest
6722
+ }
6723
+
5989
6724
  /**
5990
6725
  * Request parameters for v1CreateImageSet operation in DefaultApi.
5991
6726
  * @export
@@ -6112,6 +6847,20 @@ export interface DefaultApiV1DeleteBlackoutVolumeRequest {
6112
6847
  readonly id: string
6113
6848
  }
6114
6849
 
6850
+ /**
6851
+ * Request parameters for v1DeleteDirectTaskInstruction operation in DefaultApi.
6852
+ * @export
6853
+ * @interface DefaultApiV1DeleteDirectTaskInstructionRequest
6854
+ */
6855
+ export interface DefaultApiV1DeleteDirectTaskInstructionRequest {
6856
+ /**
6857
+ *
6858
+ * @type {string}
6859
+ * @memberof DefaultApiV1DeleteDirectTaskInstruction
6860
+ */
6861
+ readonly id: string
6862
+ }
6863
+
6115
6864
  /**
6116
6865
  * Request parameters for v1DeleteImageSet operation in DefaultApi.
6117
6866
  * @export
@@ -6266,6 +7015,34 @@ export interface DefaultApiV1GetNodePropertiesRequest {
6266
7015
  readonly nodeId: string
6267
7016
  }
6268
7017
 
7018
+ /**
7019
+ * Request parameters for v1GetNodeSatelliteCalibrations operation in DefaultApi.
7020
+ * @export
7021
+ * @interface DefaultApiV1GetNodeSatelliteCalibrationsRequest
7022
+ */
7023
+ export interface DefaultApiV1GetNodeSatelliteCalibrationsRequest {
7024
+ /**
7025
+ *
7026
+ * @type {string}
7027
+ * @memberof DefaultApiV1GetNodeSatelliteCalibrations
7028
+ */
7029
+ readonly nodeId: string
7030
+
7031
+ /**
7032
+ *
7033
+ * @type {number}
7034
+ * @memberof DefaultApiV1GetNodeSatelliteCalibrations
7035
+ */
7036
+ readonly limit?: number
7037
+
7038
+ /**
7039
+ *
7040
+ * @type {string}
7041
+ * @memberof DefaultApiV1GetNodeSatelliteCalibrations
7042
+ */
7043
+ readonly before?: string
7044
+ }
7045
+
6269
7046
  /**
6270
7047
  * Request parameters for v1GetObservationFeatures operation in DefaultApi.
6271
7048
  * @export
@@ -6356,6 +7133,13 @@ export interface DefaultApiV1GetObservationStatusesRequest {
6356
7133
  */
6357
7134
  readonly surveyInstructionId?: string
6358
7135
 
7136
+ /**
7137
+ *
7138
+ * @type {string}
7139
+ * @memberof DefaultApiV1GetObservationStatuses
7140
+ */
7141
+ readonly resolvedImageInstructionId?: string
7142
+
6359
7143
  /**
6360
7144
  *
6361
7145
  * @type {string}
@@ -6504,6 +7288,34 @@ export interface DefaultApiV1GetSearchInstructionsRequest {
6504
7288
  readonly before?: string
6505
7289
  }
6506
7290
 
7291
+ /**
7292
+ * Request parameters for v1GetStateVectors operation in DefaultApi.
7293
+ * @export
7294
+ * @interface DefaultApiV1GetStateVectorsRequest
7295
+ */
7296
+ export interface DefaultApiV1GetStateVectorsRequest {
7297
+ /**
7298
+ *
7299
+ * @type {string}
7300
+ * @memberof DefaultApiV1GetStateVectors
7301
+ */
7302
+ readonly targetId: string
7303
+
7304
+ /**
7305
+ *
7306
+ * @type {string}
7307
+ * @memberof DefaultApiV1GetStateVectors
7308
+ */
7309
+ readonly before?: string
7310
+
7311
+ /**
7312
+ *
7313
+ * @type {string}
7314
+ * @memberof DefaultApiV1GetStateVectors
7315
+ */
7316
+ readonly after?: string
7317
+ }
7318
+
6507
7319
  /**
6508
7320
  * Request parameters for v1GetSurveyInstructions operation in DefaultApi.
6509
7321
  * @export
@@ -6721,6 +7533,27 @@ export interface DefaultApiV2GetSearchRequest {
6721
7533
  readonly searchId: string
6722
7534
  }
6723
7535
 
7536
+ /**
7537
+ * Request parameters for v2GetSearches operation in DefaultApi.
7538
+ * @export
7539
+ * @interface DefaultApiV2GetSearchesRequest
7540
+ */
7541
+ export interface DefaultApiV2GetSearchesRequest {
7542
+ /**
7543
+ * The timestamp after which to return results. Defaults to one day prior to the current time.
7544
+ * @type {string}
7545
+ * @memberof DefaultApiV2GetSearches
7546
+ */
7547
+ readonly after?: string
7548
+
7549
+ /**
7550
+ * The status of the searches to return. Defaults to all statuses.
7551
+ * @type {'COMPLETED' | 'IN_PROGRESS' | 'FAILED'}
7552
+ * @memberof DefaultApiV2GetSearches
7553
+ */
7554
+ readonly status?: V2GetSearchesStatusEnum
7555
+ }
7556
+
6724
7557
  /**
6725
7558
  * DefaultApi - object-oriented interface
6726
7559
  * @export
@@ -6751,6 +7584,17 @@ export class DefaultApi extends BaseAPI {
6751
7584
  return DefaultApiFp(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
6752
7585
  }
6753
7586
 
7587
+ /**
7588
+ * Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
7589
+ * @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
7590
+ * @param {*} [options] Override http request option.
7591
+ * @throws {RequiredError}
7592
+ * @memberof DefaultApi
7593
+ */
7594
+ public v1CreateDirectTaskInstruction(requestParameters: DefaultApiV1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig) {
7595
+ return DefaultApiFp(this.configuration).v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(this.axios, this.basePath));
7596
+ }
7597
+
6754
7598
  /**
6755
7599
  * Create an image set.
6756
7600
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
@@ -6851,6 +7695,17 @@ export class DefaultApi extends BaseAPI {
6851
7695
  return DefaultApiFp(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
6852
7696
  }
6853
7697
 
7698
+ /**
7699
+ * Delete a direct task instruction.
7700
+ * @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
7701
+ * @param {*} [options] Override http request option.
7702
+ * @throws {RequiredError}
7703
+ * @memberof DefaultApi
7704
+ */
7705
+ public v1DeleteDirectTaskInstruction(requestParameters: DefaultApiV1DeleteDirectTaskInstructionRequest, options?: AxiosRequestConfig) {
7706
+ return DefaultApiFp(this.configuration).v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
7707
+ }
7708
+
6854
7709
  /**
6855
7710
  * Delete an image set.
6856
7711
  * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
@@ -6982,6 +7837,17 @@ export class DefaultApi extends BaseAPI {
6982
7837
  return DefaultApiFp(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
6983
7838
  }
6984
7839
 
7840
+ /**
7841
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
7842
+ * @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
7843
+ * @param {*} [options] Override http request option.
7844
+ * @throws {RequiredError}
7845
+ * @memberof DefaultApi
7846
+ */
7847
+ public v1GetNodeSatelliteCalibrations(requestParameters: DefaultApiV1GetNodeSatelliteCalibrationsRequest, options?: AxiosRequestConfig) {
7848
+ return DefaultApiFp(this.configuration).v1GetNodeSatelliteCalibrations(requestParameters.nodeId, requestParameters.limit, requestParameters.before, options).then((request) => request(this.axios, this.basePath));
7849
+ }
7850
+
6985
7851
  /**
6986
7852
  * Get observation features.
6987
7853
  * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
@@ -7023,7 +7889,7 @@ export class DefaultApi extends BaseAPI {
7023
7889
  * @memberof DefaultApi
7024
7890
  */
7025
7891
  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));
7892
+ 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
7893
  }
7028
7894
 
7029
7895
  /**
@@ -7102,6 +7968,17 @@ export class DefaultApi extends BaseAPI {
7102
7968
  return DefaultApiFp(this.configuration).v1GetSearchInstructions(requestParameters.before, options).then((request) => request(this.axios, this.basePath));
7103
7969
  }
7104
7970
 
7971
+ /**
7972
+ * Get state vectors for a satellite.
7973
+ * @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
7974
+ * @param {*} [options] Override http request option.
7975
+ * @throws {RequiredError}
7976
+ * @memberof DefaultApi
7977
+ */
7978
+ public v1GetStateVectors(requestParameters: DefaultApiV1GetStateVectorsRequest, options?: AxiosRequestConfig) {
7979
+ return DefaultApiFp(this.configuration).v1GetStateVectors(requestParameters.targetId, requestParameters.before, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
7980
+ }
7981
+
7105
7982
  /**
7106
7983
  * 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
7984
  * @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
@@ -7265,7 +8142,27 @@ export class DefaultApi extends BaseAPI {
7265
8142
  public v2GetSearch(requestParameters: DefaultApiV2GetSearchRequest, options?: AxiosRequestConfig) {
7266
8143
  return DefaultApiFp(this.configuration).v2GetSearch(requestParameters.searchId, options).then((request) => request(this.axios, this.basePath));
7267
8144
  }
8145
+
8146
+ /**
8147
+ * Get a list of your organization\'s V2 searches by time range or status.
8148
+ * @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
8149
+ * @param {*} [options] Override http request option.
8150
+ * @throws {RequiredError}
8151
+ * @memberof DefaultApi
8152
+ */
8153
+ public v2GetSearches(requestParameters: DefaultApiV2GetSearchesRequest = {}, options?: AxiosRequestConfig) {
8154
+ return DefaultApiFp(this.configuration).v2GetSearches(requestParameters.after, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
8155
+ }
7268
8156
  }
7269
8157
 
8158
+ /**
8159
+ * @export
8160
+ */
8161
+ export const V2GetSearchesStatusEnum = {
8162
+ COMPLETED: 'COMPLETED',
8163
+ IN_PROGRESS: 'IN_PROGRESS',
8164
+ FAILED: 'FAILED'
8165
+ } as const;
8166
+ export type V2GetSearchesStatusEnum = typeof V2GetSearchesStatusEnum[keyof typeof V2GetSearchesStatusEnum];
7270
8167
 
7271
8168