@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/dist/esm/api.js 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).
@@ -49,7 +49,16 @@ export const FilterType = {
49
49
  PHOTO_JOHNSON_B: 'PHOTO_JOHNSON_B',
50
50
  PHOTO_JOHNSON_V: 'PHOTO_JOHNSON_V',
51
51
  PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
52
- PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
52
+ PHOTO_COUSINS_I: 'PHOTO_COUSINS_I',
53
+ PHOTO_SLOAN_U: 'PHOTO_SLOAN_U',
54
+ PHOTO_SLOAN_G: 'PHOTO_SLOAN_G',
55
+ PHOTO_SLOAN_R: 'PHOTO_SLOAN_R',
56
+ PHOTO_SLOAN_I: 'PHOTO_SLOAN_I',
57
+ PHOTO_SLOAN_Z: 'PHOTO_SLOAN_Z',
58
+ TRIPLE_BAND: 'TRIPLE_BAND',
59
+ QUAD_BAND: 'QUAD_BAND',
60
+ DARK: 'DARK',
61
+ OTHER: 'OTHER'
53
62
  };
54
63
  /**
55
64
  *
@@ -162,6 +171,30 @@ export const V1ImageFileType = {
162
171
  FITS: 'FITS',
163
172
  JPG: 'JPG'
164
173
  };
174
+ /**
175
+ *
176
+ * @export
177
+ * @enum {string}
178
+ */
179
+ export const V1PlateSolveStatus = {
180
+ MATCH_FOUND: 'MATCH_FOUND',
181
+ NO_MATCH_FOUND: 'NO_MATCH_FOUND',
182
+ CANCELLED: 'CANCELLED'
183
+ };
184
+ /**
185
+ *
186
+ * @export
187
+ * @enum {string}
188
+ */
189
+ export const V1SatelliteCalibrationFamily = {
190
+ GPS: 'GPS',
191
+ ILRS: 'ILRS',
192
+ SWARM: 'SWARM'
193
+ };
194
+ export const V1StateVectorReferenceFrameEnum = {
195
+ ECI_J2000: 'ECI_J2000',
196
+ ECEF: 'ECEF'
197
+ };
165
198
  /**
166
199
  *
167
200
  * @export
@@ -982,6 +1015,50 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
982
1015
  options: localVarRequestOptions,
983
1016
  };
984
1017
  }),
1018
+ /**
1019
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
1020
+ * @param {string} nodeId
1021
+ * @param {number} [limit]
1022
+ * @param {string} [before]
1023
+ * @param {*} [options] Override http request option.
1024
+ * @throws {RequiredError}
1025
+ */
1026
+ v1GetNodeSatelliteCalibrations: (nodeId, limit, before, options = {}) => __awaiter(this, void 0, void 0, function* () {
1027
+ // verify required parameter 'nodeId' is not null or undefined
1028
+ assertParamExists('v1GetNodeSatelliteCalibrations', 'nodeId', nodeId);
1029
+ const localVarPath = `/v1/satellite-calibrations`;
1030
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1031
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1032
+ let baseOptions;
1033
+ if (configuration) {
1034
+ baseOptions = configuration.baseOptions;
1035
+ }
1036
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1037
+ const localVarHeaderParameter = {};
1038
+ const localVarQueryParameter = {};
1039
+ // authentication Roles required
1040
+ // authentication BearerToken required
1041
+ // http bearer authentication required
1042
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1043
+ if (nodeId !== undefined) {
1044
+ localVarQueryParameter['nodeId'] = nodeId;
1045
+ }
1046
+ if (limit !== undefined) {
1047
+ localVarQueryParameter['limit'] = limit;
1048
+ }
1049
+ if (before !== undefined) {
1050
+ localVarQueryParameter['before'] = (before instanceof Date) ?
1051
+ before.toISOString() :
1052
+ before;
1053
+ }
1054
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1055
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1056
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1057
+ return {
1058
+ url: toPathString(localVarUrlObj),
1059
+ options: localVarRequestOptions,
1060
+ };
1061
+ }),
985
1062
  /**
986
1063
  * Get observation features.
987
1064
  * @param {string} imageId
@@ -1096,11 +1173,12 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1096
1173
  * @param {string} [before]
1097
1174
  * @param {string} [searchInstructionId]
1098
1175
  * @param {string} [surveyInstructionId]
1176
+ * @param {string} [resolvedImageInstructionId]
1099
1177
  * @param {string} [imageId]
1100
1178
  * @param {*} [options] Override http request option.
1101
1179
  * @throws {RequiredError}
1102
1180
  */
1103
- v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1181
+ v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1104
1182
  const localVarPath = `/v1/observation-statuses`;
1105
1183
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1106
1184
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1129,6 +1207,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1129
1207
  if (surveyInstructionId !== undefined) {
1130
1208
  localVarQueryParameter['surveyInstructionId'] = surveyInstructionId;
1131
1209
  }
1210
+ if (resolvedImageInstructionId !== undefined) {
1211
+ localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
1212
+ }
1132
1213
  if (imageId !== undefined) {
1133
1214
  localVarQueryParameter['imageId'] = imageId;
1134
1215
  }
@@ -1408,6 +1489,52 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1408
1489
  options: localVarRequestOptions,
1409
1490
  };
1410
1491
  }),
1492
+ /**
1493
+ * Get state vectors for a satellite.
1494
+ * @param {string} targetId
1495
+ * @param {string} [before]
1496
+ * @param {string} [after]
1497
+ * @param {*} [options] Override http request option.
1498
+ * @throws {RequiredError}
1499
+ */
1500
+ v1GetStateVectors: (targetId, before, after, options = {}) => __awaiter(this, void 0, void 0, function* () {
1501
+ // verify required parameter 'targetId' is not null or undefined
1502
+ assertParamExists('v1GetStateVectors', 'targetId', targetId);
1503
+ const localVarPath = `/v1/state-vectors`;
1504
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1505
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1506
+ let baseOptions;
1507
+ if (configuration) {
1508
+ baseOptions = configuration.baseOptions;
1509
+ }
1510
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1511
+ const localVarHeaderParameter = {};
1512
+ const localVarQueryParameter = {};
1513
+ // authentication Roles required
1514
+ // authentication BearerToken required
1515
+ // http bearer authentication required
1516
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1517
+ if (targetId !== undefined) {
1518
+ localVarQueryParameter['targetId'] = targetId;
1519
+ }
1520
+ if (before !== undefined) {
1521
+ localVarQueryParameter['before'] = (before instanceof Date) ?
1522
+ before.toISOString() :
1523
+ before;
1524
+ }
1525
+ if (after !== undefined) {
1526
+ localVarQueryParameter['after'] = (after instanceof Date) ?
1527
+ after.toISOString() :
1528
+ after;
1529
+ }
1530
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1531
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1532
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1533
+ return {
1534
+ url: toPathString(localVarUrlObj),
1535
+ options: localVarRequestOptions,
1536
+ };
1537
+ }),
1411
1538
  /**
1412
1539
  * 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.
1413
1540
  * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
@@ -1917,6 +2044,44 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1917
2044
  options: localVarRequestOptions,
1918
2045
  };
1919
2046
  }),
2047
+ /**
2048
+ * Get a list of your organization\'s V2 searches by time range or status.
2049
+ * @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
2050
+ * @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
2051
+ * @param {*} [options] Override http request option.
2052
+ * @throws {RequiredError}
2053
+ */
2054
+ v2GetSearches: (after, status, options = {}) => __awaiter(this, void 0, void 0, function* () {
2055
+ const localVarPath = `/v2/searches`;
2056
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2057
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2058
+ let baseOptions;
2059
+ if (configuration) {
2060
+ baseOptions = configuration.baseOptions;
2061
+ }
2062
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
2063
+ const localVarHeaderParameter = {};
2064
+ const localVarQueryParameter = {};
2065
+ // authentication Roles required
2066
+ // authentication BearerToken required
2067
+ // http bearer authentication required
2068
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
2069
+ if (after !== undefined) {
2070
+ localVarQueryParameter['after'] = (after instanceof Date) ?
2071
+ after.toISOString() :
2072
+ after;
2073
+ }
2074
+ if (status !== undefined) {
2075
+ localVarQueryParameter['status'] = status;
2076
+ }
2077
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2078
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2079
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2080
+ return {
2081
+ url: toPathString(localVarUrlObj),
2082
+ options: localVarRequestOptions,
2083
+ };
2084
+ }),
1920
2085
  };
1921
2086
  };
1922
2087
  /**
@@ -2203,6 +2368,20 @@ export const DefaultApiFp = function (configuration) {
2203
2368
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2204
2369
  });
2205
2370
  },
2371
+ /**
2372
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
2373
+ * @param {string} nodeId
2374
+ * @param {number} [limit]
2375
+ * @param {string} [before]
2376
+ * @param {*} [options] Override http request option.
2377
+ * @throws {RequiredError}
2378
+ */
2379
+ v1GetNodeSatelliteCalibrations(nodeId, limit, before, options) {
2380
+ return __awaiter(this, void 0, void 0, function* () {
2381
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeSatelliteCalibrations(nodeId, limit, before, options);
2382
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2383
+ });
2384
+ },
2206
2385
  /**
2207
2386
  * Get observation features.
2208
2387
  * @param {string} imageId
@@ -2247,13 +2426,14 @@ export const DefaultApiFp = function (configuration) {
2247
2426
  * @param {string} [before]
2248
2427
  * @param {string} [searchInstructionId]
2249
2428
  * @param {string} [surveyInstructionId]
2429
+ * @param {string} [resolvedImageInstructionId]
2250
2430
  * @param {string} [imageId]
2251
2431
  * @param {*} [options] Override http request option.
2252
2432
  * @throws {RequiredError}
2253
2433
  */
2254
- v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, imageId, options) {
2434
+ v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options) {
2255
2435
  return __awaiter(this, void 0, void 0, function* () {
2256
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, imageId, options);
2436
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options);
2257
2437
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2258
2438
  });
2259
2439
  },
@@ -2348,6 +2528,20 @@ export const DefaultApiFp = function (configuration) {
2348
2528
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2349
2529
  });
2350
2530
  },
2531
+ /**
2532
+ * Get state vectors for a satellite.
2533
+ * @param {string} targetId
2534
+ * @param {string} [before]
2535
+ * @param {string} [after]
2536
+ * @param {*} [options] Override http request option.
2537
+ * @throws {RequiredError}
2538
+ */
2539
+ v1GetStateVectors(targetId, before, after, options) {
2540
+ return __awaiter(this, void 0, void 0, function* () {
2541
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetStateVectors(targetId, before, after, options);
2542
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2543
+ });
2544
+ },
2351
2545
  /**
2352
2546
  * 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.
2353
2547
  * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
@@ -2530,6 +2724,19 @@ export const DefaultApiFp = function (configuration) {
2530
2724
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2531
2725
  });
2532
2726
  },
2727
+ /**
2728
+ * Get a list of your organization\'s V2 searches by time range or status.
2729
+ * @param {string} [after] The timestamp after which to return results. Defaults to one day prior to the current time.
2730
+ * @param {V2GetSearchesStatusEnum} [status] The status of the searches to return. Defaults to all statuses.
2731
+ * @param {*} [options] Override http request option.
2732
+ * @throws {RequiredError}
2733
+ */
2734
+ v2GetSearches(after, status, options) {
2735
+ return __awaiter(this, void 0, void 0, function* () {
2736
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v2GetSearches(after, status, options);
2737
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2738
+ });
2739
+ },
2533
2740
  };
2534
2741
  };
2535
2742
  /**
@@ -2747,6 +2954,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2747
2954
  v1GetNodeProperties(requestParameters, options) {
2748
2955
  return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
2749
2956
  },
2957
+ /**
2958
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
2959
+ * @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
2960
+ * @param {*} [options] Override http request option.
2961
+ * @throws {RequiredError}
2962
+ */
2963
+ v1GetNodeSatelliteCalibrations(requestParameters, options) {
2964
+ return localVarFp.v1GetNodeSatelliteCalibrations(requestParameters.nodeId, requestParameters.limit, requestParameters.before, options).then((request) => request(axios, basePath));
2965
+ },
2750
2966
  /**
2751
2967
  * Get observation features.
2752
2968
  * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
@@ -2781,7 +2997,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2781
2997
  * @throws {RequiredError}
2782
2998
  */
2783
2999
  v1GetObservationStatuses(requestParameters = {}, options) {
2784
- return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
3000
+ return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
2785
3001
  },
2786
3002
  /**
2787
3003
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
@@ -2845,6 +3061,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2845
3061
  v1GetSearchInstructions(requestParameters = {}, options) {
2846
3062
  return localVarFp.v1GetSearchInstructions(requestParameters.before, options).then((request) => request(axios, basePath));
2847
3063
  },
3064
+ /**
3065
+ * Get state vectors for a satellite.
3066
+ * @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
3067
+ * @param {*} [options] Override http request option.
3068
+ * @throws {RequiredError}
3069
+ */
3070
+ v1GetStateVectors(requestParameters, options) {
3071
+ return localVarFp.v1GetStateVectors(requestParameters.targetId, requestParameters.before, requestParameters.after, options).then((request) => request(axios, basePath));
3072
+ },
2848
3073
  /**
2849
3074
  * 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.
2850
3075
  * @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
@@ -2979,6 +3204,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2979
3204
  v2GetSearch(requestParameters, options) {
2980
3205
  return localVarFp.v2GetSearch(requestParameters.searchId, options).then((request) => request(axios, basePath));
2981
3206
  },
3207
+ /**
3208
+ * Get a list of your organization\'s V2 searches by time range or status.
3209
+ * @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
3210
+ * @param {*} [options] Override http request option.
3211
+ * @throws {RequiredError}
3212
+ */
3213
+ v2GetSearches(requestParameters = {}, options) {
3214
+ return localVarFp.v2GetSearches(requestParameters.after, requestParameters.status, options).then((request) => request(axios, basePath));
3215
+ },
2982
3216
  };
2983
3217
  };
2984
3218
  /**
@@ -3219,6 +3453,16 @@ export class DefaultApi extends BaseAPI {
3219
3453
  v1GetNodeProperties(requestParameters, options) {
3220
3454
  return DefaultApiFp(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
3221
3455
  }
3456
+ /**
3457
+ * Get recent satellite calibrations by node. Paginate using `before` and `limit` to retrieve previous calibrations
3458
+ * @param {DefaultApiV1GetNodeSatelliteCalibrationsRequest} requestParameters Request parameters.
3459
+ * @param {*} [options] Override http request option.
3460
+ * @throws {RequiredError}
3461
+ * @memberof DefaultApi
3462
+ */
3463
+ v1GetNodeSatelliteCalibrations(requestParameters, options) {
3464
+ return DefaultApiFp(this.configuration).v1GetNodeSatelliteCalibrations(requestParameters.nodeId, requestParameters.limit, requestParameters.before, options).then((request) => request(this.axios, this.basePath));
3465
+ }
3222
3466
  /**
3223
3467
  * Get observation features.
3224
3468
  * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
@@ -3257,7 +3501,7 @@ export class DefaultApi extends BaseAPI {
3257
3501
  * @memberof DefaultApi
3258
3502
  */
3259
3503
  v1GetObservationStatuses(requestParameters = {}, options) {
3260
- return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
3504
+ 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));
3261
3505
  }
3262
3506
  /**
3263
3507
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
@@ -3328,6 +3572,16 @@ export class DefaultApi extends BaseAPI {
3328
3572
  v1GetSearchInstructions(requestParameters = {}, options) {
3329
3573
  return DefaultApiFp(this.configuration).v1GetSearchInstructions(requestParameters.before, options).then((request) => request(this.axios, this.basePath));
3330
3574
  }
3575
+ /**
3576
+ * Get state vectors for a satellite.
3577
+ * @param {DefaultApiV1GetStateVectorsRequest} requestParameters Request parameters.
3578
+ * @param {*} [options] Override http request option.
3579
+ * @throws {RequiredError}
3580
+ * @memberof DefaultApi
3581
+ */
3582
+ v1GetStateVectors(requestParameters, options) {
3583
+ return DefaultApiFp(this.configuration).v1GetStateVectors(requestParameters.targetId, requestParameters.before, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
3584
+ }
3331
3585
  /**
3332
3586
  * 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.
3333
3587
  * @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
@@ -3477,4 +3731,22 @@ export class DefaultApi extends BaseAPI {
3477
3731
  v2GetSearch(requestParameters, options) {
3478
3732
  return DefaultApiFp(this.configuration).v2GetSearch(requestParameters.searchId, options).then((request) => request(this.axios, this.basePath));
3479
3733
  }
3734
+ /**
3735
+ * Get a list of your organization\'s V2 searches by time range or status.
3736
+ * @param {DefaultApiV2GetSearchesRequest} requestParameters Request parameters.
3737
+ * @param {*} [options] Override http request option.
3738
+ * @throws {RequiredError}
3739
+ * @memberof DefaultApi
3740
+ */
3741
+ v2GetSearches(requestParameters = {}, options) {
3742
+ return DefaultApiFp(this.configuration).v2GetSearches(requestParameters.after, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
3743
+ }
3480
3744
  }
3745
+ /**
3746
+ * @export
3747
+ */
3748
+ export const V2GetSearchesStatusEnum = {
3749
+ COMPLETED: 'COMPLETED',
3750
+ IN_PROGRESS: 'IN_PROGRESS',
3751
+ FAILED: 'FAILED'
3752
+ };
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.6669
5
+ * The version of the OpenAPI document: 1.3.8106
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js 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).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.6669
5
+ * The version of the OpenAPI document: 1.3.8106
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.6669
5
+ * The version of the OpenAPI document: 1.3.8106
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.6669
5
+ * The version of the OpenAPI document: 1.3.8106
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js 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).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.6669
5
+ * The version of the OpenAPI document: 1.3.8106
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * 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.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.6669
8
+ * The version of the OpenAPI document: 1.3.8106
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourskyai/sda-api",
3
- "version": "1.3.6669",
3
+ "version": "1.3.8106",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {