@ourskyai/sda-api 1.3.5667 → 1.3.8106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +2359 -140
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +1764 -136
- package/dist/api.js +949 -56
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +1764 -136
- package/dist/esm/api.js +948 -55
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/base.js +2 -2
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +2 -2
- package/dist/esm/configuration.d.ts +2 -2
- package/dist/esm/configuration.js +2 -2
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/index.ts +2 -2
- package/package.json +1 -1
package/dist/esm/api.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](
|
|
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.
|
|
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
|
*
|
|
@@ -57,6 +66,10 @@ export const FilterType = {
|
|
|
57
66
|
* @enum {string}
|
|
58
67
|
*/
|
|
59
68
|
export const ImageSetType = {
|
|
69
|
+
ASTRONOMICAL: 'ASTRONOMICAL',
|
|
70
|
+
EARTH_ORBITAL: 'EARTH_ORBITAL',
|
|
71
|
+
GNSS_CALIBRATION: 'GNSS_CALIBRATION',
|
|
72
|
+
SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
|
|
60
73
|
ALL_SKY: 'ALL_SKY'
|
|
61
74
|
};
|
|
62
75
|
/**
|
|
@@ -115,6 +128,17 @@ export const SatelliteTargetTrackingStatus = {
|
|
|
115
128
|
INACTIVE: 'INACTIVE',
|
|
116
129
|
DEORBITED: 'DEORBITED'
|
|
117
130
|
};
|
|
131
|
+
/**
|
|
132
|
+
* The reason a search was completed.
|
|
133
|
+
* @export
|
|
134
|
+
* @enum {string}
|
|
135
|
+
*/
|
|
136
|
+
export const SearchCompletedReason = {
|
|
137
|
+
ALL_HYPOTHESES_TESTED: 'ALL_HYPOTHESES_TESTED',
|
|
138
|
+
FOUND_TARGET: 'FOUND_TARGET',
|
|
139
|
+
CANCELLED: 'CANCELLED',
|
|
140
|
+
FAILED: 'FAILED'
|
|
141
|
+
};
|
|
118
142
|
/**
|
|
119
143
|
*
|
|
120
144
|
* @export
|
|
@@ -134,6 +158,43 @@ export const TrackingType = {
|
|
|
134
158
|
TARGET_RATE: 'TARGET_RATE',
|
|
135
159
|
NONE: 'NONE'
|
|
136
160
|
};
|
|
161
|
+
export const V1BlackoutVolumeRequestReferenceFrameEnum = {
|
|
162
|
+
ECI_J2000: 'ECI_J2000',
|
|
163
|
+
ECEF: 'ECEF'
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* @export
|
|
168
|
+
* @enum {string}
|
|
169
|
+
*/
|
|
170
|
+
export const V1ImageFileType = {
|
|
171
|
+
FITS: 'FITS',
|
|
172
|
+
JPG: 'JPG'
|
|
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
|
+
};
|
|
137
198
|
/**
|
|
138
199
|
*
|
|
139
200
|
* @export
|
|
@@ -174,7 +235,10 @@ export const WebhookEvent = {
|
|
|
174
235
|
V1_OBSERVATION_STATUS_UPDATED: 'V1_OBSERVATION_STATUS_UPDATED',
|
|
175
236
|
V1_EO_CALIBRATION_OBSERVATION_CREATED: 'V1_EO_CALIBRATION_OBSERVATION_CREATED',
|
|
176
237
|
V1_NODE_CALIBRATION_DATA_CREATED: 'V1_NODE_CALIBRATION_DATA_CREATED',
|
|
177
|
-
V1_NODE_UPDATED: 'V1_NODE_UPDATED'
|
|
238
|
+
V1_NODE_UPDATED: 'V1_NODE_UPDATED',
|
|
239
|
+
V1_EO_SKY_IMAGERY_CREATED: 'V1_EO_SKY_IMAGERY_CREATED',
|
|
240
|
+
V2_SEARCH_COMPLETED: 'V2_SEARCH_COMPLETED',
|
|
241
|
+
V1_UCT_CREATED: 'V1_UCT_CREATED'
|
|
178
242
|
};
|
|
179
243
|
/**
|
|
180
244
|
* DefaultApi - axios parameter creator
|
|
@@ -182,6 +246,74 @@ export const WebhookEvent = {
|
|
|
182
246
|
*/
|
|
183
247
|
export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
184
248
|
return {
|
|
249
|
+
/**
|
|
250
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
251
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
252
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
253
|
+
* @param {*} [options] Override http request option.
|
|
254
|
+
* @throws {RequiredError}
|
|
255
|
+
*/
|
|
256
|
+
getUncorrelatedTracks: (after, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
257
|
+
const localVarPath = `/v1/uncorrelated-tracks`;
|
|
258
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
259
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
260
|
+
let baseOptions;
|
|
261
|
+
if (configuration) {
|
|
262
|
+
baseOptions = configuration.baseOptions;
|
|
263
|
+
}
|
|
264
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
265
|
+
const localVarHeaderParameter = {};
|
|
266
|
+
const localVarQueryParameter = {};
|
|
267
|
+
// authentication Roles required
|
|
268
|
+
// authentication BearerToken required
|
|
269
|
+
// http bearer authentication required
|
|
270
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
271
|
+
if (after !== undefined) {
|
|
272
|
+
localVarQueryParameter['after'] = (after instanceof Date) ?
|
|
273
|
+
after.toISOString() :
|
|
274
|
+
after;
|
|
275
|
+
}
|
|
276
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
277
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
278
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
279
|
+
return {
|
|
280
|
+
url: toPathString(localVarUrlObj),
|
|
281
|
+
options: localVarRequestOptions,
|
|
282
|
+
};
|
|
283
|
+
}),
|
|
284
|
+
/**
|
|
285
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
286
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
287
|
+
* @param {*} [options] Override http request option.
|
|
288
|
+
* @throws {RequiredError}
|
|
289
|
+
*/
|
|
290
|
+
v1CreateBlackoutVolume: (v1BlackoutVolumeRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
291
|
+
// verify required parameter 'v1BlackoutVolumeRequest' is not null or undefined
|
|
292
|
+
assertParamExists('v1CreateBlackoutVolume', 'v1BlackoutVolumeRequest', v1BlackoutVolumeRequest);
|
|
293
|
+
const localVarPath = `/v2/search/blackout-volume`;
|
|
294
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
295
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
296
|
+
let baseOptions;
|
|
297
|
+
if (configuration) {
|
|
298
|
+
baseOptions = configuration.baseOptions;
|
|
299
|
+
}
|
|
300
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
301
|
+
const localVarHeaderParameter = {};
|
|
302
|
+
const localVarQueryParameter = {};
|
|
303
|
+
// authentication Roles required
|
|
304
|
+
// authentication BearerToken required
|
|
305
|
+
// http bearer authentication required
|
|
306
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
307
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
308
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
309
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
310
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
311
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1BlackoutVolumeRequest, localVarRequestOptions, configuration);
|
|
312
|
+
return {
|
|
313
|
+
url: toPathString(localVarUrlObj),
|
|
314
|
+
options: localVarRequestOptions,
|
|
315
|
+
};
|
|
316
|
+
}),
|
|
185
317
|
/**
|
|
186
318
|
* Create an image set.
|
|
187
319
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -249,7 +381,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
249
381
|
};
|
|
250
382
|
}),
|
|
251
383
|
/**
|
|
252
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
384
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
253
385
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
254
386
|
* @param {*} [options] Override http request option.
|
|
255
387
|
* @throws {RequiredError}
|
|
@@ -315,9 +447,10 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
315
447
|
};
|
|
316
448
|
}),
|
|
317
449
|
/**
|
|
318
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
450
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
319
451
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
320
452
|
* @param {*} [options] Override http request option.
|
|
453
|
+
* @deprecated
|
|
321
454
|
* @throws {RequiredError}
|
|
322
455
|
*/
|
|
323
456
|
v1CreateSearchInstruction: (v1CreateSearchInstructionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
@@ -446,6 +579,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
446
579
|
options: localVarRequestOptions,
|
|
447
580
|
};
|
|
448
581
|
}),
|
|
582
|
+
/**
|
|
583
|
+
* Delete a blackout volume.
|
|
584
|
+
* @param {string} id
|
|
585
|
+
* @param {*} [options] Override http request option.
|
|
586
|
+
* @throws {RequiredError}
|
|
587
|
+
*/
|
|
588
|
+
v1DeleteBlackoutVolume: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
589
|
+
// verify required parameter 'id' is not null or undefined
|
|
590
|
+
assertParamExists('v1DeleteBlackoutVolume', 'id', id);
|
|
591
|
+
const localVarPath = `/v2/search/blackout-volume`;
|
|
592
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
593
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
594
|
+
let baseOptions;
|
|
595
|
+
if (configuration) {
|
|
596
|
+
baseOptions = configuration.baseOptions;
|
|
597
|
+
}
|
|
598
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
599
|
+
const localVarHeaderParameter = {};
|
|
600
|
+
const localVarQueryParameter = {};
|
|
601
|
+
// authentication Roles required
|
|
602
|
+
// authentication BearerToken required
|
|
603
|
+
// http bearer authentication required
|
|
604
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
605
|
+
if (id !== undefined) {
|
|
606
|
+
localVarQueryParameter['id'] = id;
|
|
607
|
+
}
|
|
608
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
609
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
610
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
611
|
+
return {
|
|
612
|
+
url: toPathString(localVarUrlObj),
|
|
613
|
+
options: localVarRequestOptions,
|
|
614
|
+
};
|
|
615
|
+
}),
|
|
449
616
|
/**
|
|
450
617
|
* Delete an image set.
|
|
451
618
|
* @param {string} id
|
|
@@ -650,6 +817,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
650
817
|
options: localVarRequestOptions,
|
|
651
818
|
};
|
|
652
819
|
}),
|
|
820
|
+
/**
|
|
821
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
822
|
+
* @param {string} imageId
|
|
823
|
+
* @param {*} [options] Override http request option.
|
|
824
|
+
* @throws {RequiredError}
|
|
825
|
+
*/
|
|
826
|
+
v1GetImageMetadata: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
827
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
828
|
+
assertParamExists('v1GetImageMetadata', 'imageId', imageId);
|
|
829
|
+
const localVarPath = `/v1/image-metadata`;
|
|
830
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
831
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
832
|
+
let baseOptions;
|
|
833
|
+
if (configuration) {
|
|
834
|
+
baseOptions = configuration.baseOptions;
|
|
835
|
+
}
|
|
836
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
837
|
+
const localVarHeaderParameter = {};
|
|
838
|
+
const localVarQueryParameter = {};
|
|
839
|
+
// authentication Roles required
|
|
840
|
+
// authentication BearerToken required
|
|
841
|
+
// http bearer authentication required
|
|
842
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
843
|
+
if (imageId !== undefined) {
|
|
844
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
845
|
+
}
|
|
846
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
847
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
848
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
849
|
+
return {
|
|
850
|
+
url: toPathString(localVarUrlObj),
|
|
851
|
+
options: localVarRequestOptions,
|
|
852
|
+
};
|
|
853
|
+
}),
|
|
653
854
|
/**
|
|
654
855
|
* Get an image set.
|
|
655
856
|
* @param {string} id
|
|
@@ -814,6 +1015,50 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
814
1015
|
options: localVarRequestOptions,
|
|
815
1016
|
};
|
|
816
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
|
+
}),
|
|
817
1062
|
/**
|
|
818
1063
|
* Get observation features.
|
|
819
1064
|
* @param {string} imageId
|
|
@@ -928,11 +1173,12 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
928
1173
|
* @param {string} [before]
|
|
929
1174
|
* @param {string} [searchInstructionId]
|
|
930
1175
|
* @param {string} [surveyInstructionId]
|
|
1176
|
+
* @param {string} [resolvedImageInstructionId]
|
|
931
1177
|
* @param {string} [imageId]
|
|
932
1178
|
* @param {*} [options] Override http request option.
|
|
933
1179
|
* @throws {RequiredError}
|
|
934
1180
|
*/
|
|
935
|
-
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* () {
|
|
936
1182
|
const localVarPath = `/v1/observation-statuses`;
|
|
937
1183
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
938
1184
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -961,6 +1207,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
961
1207
|
if (surveyInstructionId !== undefined) {
|
|
962
1208
|
localVarQueryParameter['surveyInstructionId'] = surveyInstructionId;
|
|
963
1209
|
}
|
|
1210
|
+
if (resolvedImageInstructionId !== undefined) {
|
|
1211
|
+
localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
|
|
1212
|
+
}
|
|
964
1213
|
if (imageId !== undefined) {
|
|
965
1214
|
localVarQueryParameter['imageId'] = imageId;
|
|
966
1215
|
}
|
|
@@ -1047,7 +1296,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1047
1296
|
};
|
|
1048
1297
|
}),
|
|
1049
1298
|
/**
|
|
1050
|
-
* Get organization targets see the [create](#
|
|
1299
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
1051
1300
|
* @param {*} [options] Override http request option.
|
|
1052
1301
|
* @throws {RequiredError}
|
|
1053
1302
|
*/
|
|
@@ -1240,6 +1489,52 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1240
1489
|
options: localVarRequestOptions,
|
|
1241
1490
|
};
|
|
1242
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
|
+
}),
|
|
1243
1538
|
/**
|
|
1244
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.
|
|
1245
1540
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -1581,42 +1876,273 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1581
1876
|
options: localVarRequestOptions,
|
|
1582
1877
|
};
|
|
1583
1878
|
}),
|
|
1584
|
-
};
|
|
1585
|
-
};
|
|
1586
|
-
/**
|
|
1587
|
-
* DefaultApi - functional programming interface
|
|
1588
|
-
* @export
|
|
1589
|
-
*/
|
|
1590
|
-
export const DefaultApiFp = function (configuration) {
|
|
1591
|
-
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration);
|
|
1592
|
-
return {
|
|
1593
|
-
/**
|
|
1594
|
-
* Create an image set.
|
|
1595
|
-
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
1596
|
-
* @param {*} [options] Override http request option.
|
|
1597
|
-
* @throws {RequiredError}
|
|
1598
|
-
*/
|
|
1599
|
-
v1CreateImageSet(v1CreateImageSetRequest, options) {
|
|
1600
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1601
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSet(v1CreateImageSetRequest, options);
|
|
1602
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1603
|
-
});
|
|
1604
|
-
},
|
|
1605
|
-
/**
|
|
1606
|
-
* Create an image set image.
|
|
1607
|
-
* @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
|
|
1608
|
-
* @param {*} [options] Override http request option.
|
|
1609
|
-
* @throws {RequiredError}
|
|
1610
|
-
*/
|
|
1611
|
-
v1CreateImageSetImage(v1CreateImageSetImageRequest, options) {
|
|
1612
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1613
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSetImage(v1CreateImageSetImageRequest, options);
|
|
1614
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1615
|
-
});
|
|
1616
|
-
},
|
|
1617
1879
|
/**
|
|
1618
|
-
*
|
|
1619
|
-
* @param {
|
|
1880
|
+
* Create a plane scan to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1881
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
1882
|
+
* @param {*} [options] Override http request option.
|
|
1883
|
+
* @throws {RequiredError}
|
|
1884
|
+
*/
|
|
1885
|
+
v2CreatePlaneScan: (v1PlaneScanRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1886
|
+
// verify required parameter 'v1PlaneScanRequest' is not null or undefined
|
|
1887
|
+
assertParamExists('v2CreatePlaneScan', 'v1PlaneScanRequest', v1PlaneScanRequest);
|
|
1888
|
+
const localVarPath = `/v2/search/plane-scan`;
|
|
1889
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1890
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1891
|
+
let baseOptions;
|
|
1892
|
+
if (configuration) {
|
|
1893
|
+
baseOptions = configuration.baseOptions;
|
|
1894
|
+
}
|
|
1895
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1896
|
+
const localVarHeaderParameter = {};
|
|
1897
|
+
const localVarQueryParameter = {};
|
|
1898
|
+
// authentication Roles required
|
|
1899
|
+
// authentication BearerToken required
|
|
1900
|
+
// http bearer authentication required
|
|
1901
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1902
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1903
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1904
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1905
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1906
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1PlaneScanRequest, localVarRequestOptions, configuration);
|
|
1907
|
+
return {
|
|
1908
|
+
url: toPathString(localVarUrlObj),
|
|
1909
|
+
options: localVarRequestOptions,
|
|
1910
|
+
};
|
|
1911
|
+
}),
|
|
1912
|
+
/**
|
|
1913
|
+
* Create a RIC volume search to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1914
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
1915
|
+
* @param {*} [options] Override http request option.
|
|
1916
|
+
* @throws {RequiredError}
|
|
1917
|
+
*/
|
|
1918
|
+
v2CreateRicVolumeSearch: (v1RicVolumeSearchRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1919
|
+
// verify required parameter 'v1RicVolumeSearchRequest' is not null or undefined
|
|
1920
|
+
assertParamExists('v2CreateRicVolumeSearch', 'v1RicVolumeSearchRequest', v1RicVolumeSearchRequest);
|
|
1921
|
+
const localVarPath = `/v2/search/ric-volumetric`;
|
|
1922
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1923
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1924
|
+
let baseOptions;
|
|
1925
|
+
if (configuration) {
|
|
1926
|
+
baseOptions = configuration.baseOptions;
|
|
1927
|
+
}
|
|
1928
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1929
|
+
const localVarHeaderParameter = {};
|
|
1930
|
+
const localVarQueryParameter = {};
|
|
1931
|
+
// authentication Roles required
|
|
1932
|
+
// authentication BearerToken required
|
|
1933
|
+
// http bearer authentication required
|
|
1934
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1935
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1936
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1937
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1938
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1939
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1RicVolumeSearchRequest, localVarRequestOptions, configuration);
|
|
1940
|
+
return {
|
|
1941
|
+
url: toPathString(localVarUrlObj),
|
|
1942
|
+
options: localVarRequestOptions,
|
|
1943
|
+
};
|
|
1944
|
+
}),
|
|
1945
|
+
/**
|
|
1946
|
+
* Delete a plane scan.
|
|
1947
|
+
* @param {string} id
|
|
1948
|
+
* @param {*} [options] Override http request option.
|
|
1949
|
+
* @throws {RequiredError}
|
|
1950
|
+
*/
|
|
1951
|
+
v2DeletePlaneScan: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1952
|
+
// verify required parameter 'id' is not null or undefined
|
|
1953
|
+
assertParamExists('v2DeletePlaneScan', 'id', id);
|
|
1954
|
+
const localVarPath = `/v2/search/plane-scan`;
|
|
1955
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1956
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1957
|
+
let baseOptions;
|
|
1958
|
+
if (configuration) {
|
|
1959
|
+
baseOptions = configuration.baseOptions;
|
|
1960
|
+
}
|
|
1961
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
1962
|
+
const localVarHeaderParameter = {};
|
|
1963
|
+
const localVarQueryParameter = {};
|
|
1964
|
+
// authentication Roles required
|
|
1965
|
+
// authentication BearerToken required
|
|
1966
|
+
// http bearer authentication required
|
|
1967
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1968
|
+
if (id !== undefined) {
|
|
1969
|
+
localVarQueryParameter['id'] = id;
|
|
1970
|
+
}
|
|
1971
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1972
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1973
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1974
|
+
return {
|
|
1975
|
+
url: toPathString(localVarUrlObj),
|
|
1976
|
+
options: localVarRequestOptions,
|
|
1977
|
+
};
|
|
1978
|
+
}),
|
|
1979
|
+
/**
|
|
1980
|
+
* Delete a RIC volume search.
|
|
1981
|
+
* @param {string} id
|
|
1982
|
+
* @param {*} [options] Override http request option.
|
|
1983
|
+
* @throws {RequiredError}
|
|
1984
|
+
*/
|
|
1985
|
+
v2DeleteRicVolumeSearch: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1986
|
+
// verify required parameter 'id' is not null or undefined
|
|
1987
|
+
assertParamExists('v2DeleteRicVolumeSearch', 'id', id);
|
|
1988
|
+
const localVarPath = `/v2/search/ric-volumetric`;
|
|
1989
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1990
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1991
|
+
let baseOptions;
|
|
1992
|
+
if (configuration) {
|
|
1993
|
+
baseOptions = configuration.baseOptions;
|
|
1994
|
+
}
|
|
1995
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
1996
|
+
const localVarHeaderParameter = {};
|
|
1997
|
+
const localVarQueryParameter = {};
|
|
1998
|
+
// authentication Roles required
|
|
1999
|
+
// authentication BearerToken required
|
|
2000
|
+
// http bearer authentication required
|
|
2001
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2002
|
+
if (id !== undefined) {
|
|
2003
|
+
localVarQueryParameter['id'] = id;
|
|
2004
|
+
}
|
|
2005
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2006
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2007
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2008
|
+
return {
|
|
2009
|
+
url: toPathString(localVarUrlObj),
|
|
2010
|
+
options: localVarRequestOptions,
|
|
2011
|
+
};
|
|
2012
|
+
}),
|
|
2013
|
+
/**
|
|
2014
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
2015
|
+
* @param {string} searchId
|
|
2016
|
+
* @param {*} [options] Override http request option.
|
|
2017
|
+
* @throws {RequiredError}
|
|
2018
|
+
*/
|
|
2019
|
+
v2GetSearch: (searchId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2020
|
+
// verify required parameter 'searchId' is not null or undefined
|
|
2021
|
+
assertParamExists('v2GetSearch', 'searchId', searchId);
|
|
2022
|
+
const localVarPath = `/v2/search`;
|
|
2023
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2024
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2025
|
+
let baseOptions;
|
|
2026
|
+
if (configuration) {
|
|
2027
|
+
baseOptions = configuration.baseOptions;
|
|
2028
|
+
}
|
|
2029
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
2030
|
+
const localVarHeaderParameter = {};
|
|
2031
|
+
const localVarQueryParameter = {};
|
|
2032
|
+
// authentication Roles required
|
|
2033
|
+
// authentication BearerToken required
|
|
2034
|
+
// http bearer authentication required
|
|
2035
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2036
|
+
if (searchId !== undefined) {
|
|
2037
|
+
localVarQueryParameter['searchId'] = searchId;
|
|
2038
|
+
}
|
|
2039
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2040
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2041
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2042
|
+
return {
|
|
2043
|
+
url: toPathString(localVarUrlObj),
|
|
2044
|
+
options: localVarRequestOptions,
|
|
2045
|
+
};
|
|
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
|
+
}),
|
|
2085
|
+
};
|
|
2086
|
+
};
|
|
2087
|
+
/**
|
|
2088
|
+
* DefaultApi - functional programming interface
|
|
2089
|
+
* @export
|
|
2090
|
+
*/
|
|
2091
|
+
export const DefaultApiFp = function (configuration) {
|
|
2092
|
+
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration);
|
|
2093
|
+
return {
|
|
2094
|
+
/**
|
|
2095
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
2096
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
2097
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
2098
|
+
* @param {*} [options] Override http request option.
|
|
2099
|
+
* @throws {RequiredError}
|
|
2100
|
+
*/
|
|
2101
|
+
getUncorrelatedTracks(after, options) {
|
|
2102
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2103
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getUncorrelatedTracks(after, options);
|
|
2104
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2105
|
+
});
|
|
2106
|
+
},
|
|
2107
|
+
/**
|
|
2108
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
2109
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
2110
|
+
* @param {*} [options] Override http request option.
|
|
2111
|
+
* @throws {RequiredError}
|
|
2112
|
+
*/
|
|
2113
|
+
v1CreateBlackoutVolume(v1BlackoutVolumeRequest, options) {
|
|
2114
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2115
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateBlackoutVolume(v1BlackoutVolumeRequest, options);
|
|
2116
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2117
|
+
});
|
|
2118
|
+
},
|
|
2119
|
+
/**
|
|
2120
|
+
* Create an image set.
|
|
2121
|
+
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
2122
|
+
* @param {*} [options] Override http request option.
|
|
2123
|
+
* @throws {RequiredError}
|
|
2124
|
+
*/
|
|
2125
|
+
v1CreateImageSet(v1CreateImageSetRequest, options) {
|
|
2126
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2127
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSet(v1CreateImageSetRequest, options);
|
|
2128
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2129
|
+
});
|
|
2130
|
+
},
|
|
2131
|
+
/**
|
|
2132
|
+
* Create an image set image.
|
|
2133
|
+
* @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
|
|
2134
|
+
* @param {*} [options] Override http request option.
|
|
2135
|
+
* @throws {RequiredError}
|
|
2136
|
+
*/
|
|
2137
|
+
v1CreateImageSetImage(v1CreateImageSetImageRequest, options) {
|
|
2138
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2139
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSetImage(v1CreateImageSetImageRequest, options);
|
|
2140
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2141
|
+
});
|
|
2142
|
+
},
|
|
2143
|
+
/**
|
|
2144
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
2145
|
+
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
1620
2146
|
* @param {*} [options] Override http request option.
|
|
1621
2147
|
* @throws {RequiredError}
|
|
1622
2148
|
*/
|
|
@@ -1639,9 +2165,10 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1639
2165
|
});
|
|
1640
2166
|
},
|
|
1641
2167
|
/**
|
|
1642
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2168
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1643
2169
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1644
2170
|
* @param {*} [options] Override http request option.
|
|
2171
|
+
* @deprecated
|
|
1645
2172
|
* @throws {RequiredError}
|
|
1646
2173
|
*/
|
|
1647
2174
|
v1CreateSearchInstruction(v1CreateSearchInstructionRequest, options) {
|
|
@@ -1686,6 +2213,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1686
2213
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1687
2214
|
});
|
|
1688
2215
|
},
|
|
2216
|
+
/**
|
|
2217
|
+
* Delete a blackout volume.
|
|
2218
|
+
* @param {string} id
|
|
2219
|
+
* @param {*} [options] Override http request option.
|
|
2220
|
+
* @throws {RequiredError}
|
|
2221
|
+
*/
|
|
2222
|
+
v1DeleteBlackoutVolume(id, options) {
|
|
2223
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2224
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteBlackoutVolume(id, options);
|
|
2225
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2226
|
+
});
|
|
2227
|
+
},
|
|
1689
2228
|
/**
|
|
1690
2229
|
* Delete an image set.
|
|
1691
2230
|
* @param {string} id
|
|
@@ -1758,6 +2297,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1758
2297
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1759
2298
|
});
|
|
1760
2299
|
},
|
|
2300
|
+
/**
|
|
2301
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
2302
|
+
* @param {string} imageId
|
|
2303
|
+
* @param {*} [options] Override http request option.
|
|
2304
|
+
* @throws {RequiredError}
|
|
2305
|
+
*/
|
|
2306
|
+
v1GetImageMetadata(imageId, options) {
|
|
2307
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2308
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetImageMetadata(imageId, options);
|
|
2309
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2310
|
+
});
|
|
2311
|
+
},
|
|
1761
2312
|
/**
|
|
1762
2313
|
* Get an image set.
|
|
1763
2314
|
* @param {string} id
|
|
@@ -1817,6 +2368,20 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1817
2368
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1818
2369
|
});
|
|
1819
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
|
+
},
|
|
1820
2385
|
/**
|
|
1821
2386
|
* Get observation features.
|
|
1822
2387
|
* @param {string} imageId
|
|
@@ -1861,13 +2426,14 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1861
2426
|
* @param {string} [before]
|
|
1862
2427
|
* @param {string} [searchInstructionId]
|
|
1863
2428
|
* @param {string} [surveyInstructionId]
|
|
2429
|
+
* @param {string} [resolvedImageInstructionId]
|
|
1864
2430
|
* @param {string} [imageId]
|
|
1865
2431
|
* @param {*} [options] Override http request option.
|
|
1866
2432
|
* @throws {RequiredError}
|
|
1867
2433
|
*/
|
|
1868
|
-
v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, imageId, options) {
|
|
2434
|
+
v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options) {
|
|
1869
2435
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1870
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, imageId, options);
|
|
2436
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options);
|
|
1871
2437
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1872
2438
|
});
|
|
1873
2439
|
},
|
|
@@ -1897,7 +2463,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1897
2463
|
});
|
|
1898
2464
|
},
|
|
1899
2465
|
/**
|
|
1900
|
-
* Get organization targets see the [create](#
|
|
2466
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
1901
2467
|
* @param {*} [options] Override http request option.
|
|
1902
2468
|
* @throws {RequiredError}
|
|
1903
2469
|
*/
|
|
@@ -1962,6 +2528,20 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1962
2528
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1963
2529
|
});
|
|
1964
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
|
+
},
|
|
1965
2545
|
/**
|
|
1966
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.
|
|
1967
2547
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -2084,6 +2664,79 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2084
2664
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2085
2665
|
});
|
|
2086
2666
|
},
|
|
2667
|
+
/**
|
|
2668
|
+
* Create a plane scan to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2669
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
2670
|
+
* @param {*} [options] Override http request option.
|
|
2671
|
+
* @throws {RequiredError}
|
|
2672
|
+
*/
|
|
2673
|
+
v2CreatePlaneScan(v1PlaneScanRequest, options) {
|
|
2674
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2675
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2CreatePlaneScan(v1PlaneScanRequest, options);
|
|
2676
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2677
|
+
});
|
|
2678
|
+
},
|
|
2679
|
+
/**
|
|
2680
|
+
* Create a RIC volume search to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2681
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
2682
|
+
* @param {*} [options] Override http request option.
|
|
2683
|
+
* @throws {RequiredError}
|
|
2684
|
+
*/
|
|
2685
|
+
v2CreateRicVolumeSearch(v1RicVolumeSearchRequest, options) {
|
|
2686
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2687
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2CreateRicVolumeSearch(v1RicVolumeSearchRequest, options);
|
|
2688
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2689
|
+
});
|
|
2690
|
+
},
|
|
2691
|
+
/**
|
|
2692
|
+
* Delete a plane scan.
|
|
2693
|
+
* @param {string} id
|
|
2694
|
+
* @param {*} [options] Override http request option.
|
|
2695
|
+
* @throws {RequiredError}
|
|
2696
|
+
*/
|
|
2697
|
+
v2DeletePlaneScan(id, options) {
|
|
2698
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2699
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2DeletePlaneScan(id, options);
|
|
2700
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2701
|
+
});
|
|
2702
|
+
},
|
|
2703
|
+
/**
|
|
2704
|
+
* Delete a RIC volume search.
|
|
2705
|
+
* @param {string} id
|
|
2706
|
+
* @param {*} [options] Override http request option.
|
|
2707
|
+
* @throws {RequiredError}
|
|
2708
|
+
*/
|
|
2709
|
+
v2DeleteRicVolumeSearch(id, options) {
|
|
2710
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2711
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2DeleteRicVolumeSearch(id, options);
|
|
2712
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2713
|
+
});
|
|
2714
|
+
},
|
|
2715
|
+
/**
|
|
2716
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
2717
|
+
* @param {string} searchId
|
|
2718
|
+
* @param {*} [options] Override http request option.
|
|
2719
|
+
* @throws {RequiredError}
|
|
2720
|
+
*/
|
|
2721
|
+
v2GetSearch(searchId, options) {
|
|
2722
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2723
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2GetSearch(searchId, options);
|
|
2724
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2725
|
+
});
|
|
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
|
+
},
|
|
2087
2740
|
};
|
|
2088
2741
|
};
|
|
2089
2742
|
/**
|
|
@@ -2093,6 +2746,25 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2093
2746
|
export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
2094
2747
|
const localVarFp = DefaultApiFp(configuration);
|
|
2095
2748
|
return {
|
|
2749
|
+
/**
|
|
2750
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
2751
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
2752
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
2753
|
+
* @param {*} [options] Override http request option.
|
|
2754
|
+
* @throws {RequiredError}
|
|
2755
|
+
*/
|
|
2756
|
+
getUncorrelatedTracks(requestParameters = {}, options) {
|
|
2757
|
+
return localVarFp.getUncorrelatedTracks(requestParameters.after, options).then((request) => request(axios, basePath));
|
|
2758
|
+
},
|
|
2759
|
+
/**
|
|
2760
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
2761
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
2762
|
+
* @param {*} [options] Override http request option.
|
|
2763
|
+
* @throws {RequiredError}
|
|
2764
|
+
*/
|
|
2765
|
+
v1CreateBlackoutVolume(requestParameters, options) {
|
|
2766
|
+
return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
|
|
2767
|
+
},
|
|
2096
2768
|
/**
|
|
2097
2769
|
* Create an image set.
|
|
2098
2770
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2112,7 +2784,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2112
2784
|
return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(axios, basePath));
|
|
2113
2785
|
},
|
|
2114
2786
|
/**
|
|
2115
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
2787
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
2116
2788
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
2117
2789
|
* @param {*} [options] Override http request option.
|
|
2118
2790
|
* @throws {RequiredError}
|
|
@@ -2130,9 +2802,10 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2130
2802
|
return localVarFp.v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
2131
2803
|
},
|
|
2132
2804
|
/**
|
|
2133
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2805
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2134
2806
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2135
2807
|
* @param {*} [options] Override http request option.
|
|
2808
|
+
* @deprecated
|
|
2136
2809
|
* @throws {RequiredError}
|
|
2137
2810
|
*/
|
|
2138
2811
|
v1CreateSearchInstruction(requestParameters, options) {
|
|
@@ -2165,6 +2838,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2165
2838
|
v1CreateWebhookTest(requestParameters, options) {
|
|
2166
2839
|
return localVarFp.v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(axios, basePath));
|
|
2167
2840
|
},
|
|
2841
|
+
/**
|
|
2842
|
+
* Delete a blackout volume.
|
|
2843
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
2844
|
+
* @param {*} [options] Override http request option.
|
|
2845
|
+
* @throws {RequiredError}
|
|
2846
|
+
*/
|
|
2847
|
+
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
2848
|
+
return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2849
|
+
},
|
|
2168
2850
|
/**
|
|
2169
2851
|
* Delete an image set.
|
|
2170
2852
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -2219,6 +2901,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2219
2901
|
v1DeleteWebhookConfiguration(requestParameters, options) {
|
|
2220
2902
|
return localVarFp.v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2221
2903
|
},
|
|
2904
|
+
/**
|
|
2905
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
2906
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
2907
|
+
* @param {*} [options] Override http request option.
|
|
2908
|
+
* @throws {RequiredError}
|
|
2909
|
+
*/
|
|
2910
|
+
v1GetImageMetadata(requestParameters, options) {
|
|
2911
|
+
return localVarFp.v1GetImageMetadata(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
2912
|
+
},
|
|
2222
2913
|
/**
|
|
2223
2914
|
* Get an image set.
|
|
2224
2915
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -2263,6 +2954,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2263
2954
|
v1GetNodeProperties(requestParameters, options) {
|
|
2264
2955
|
return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
|
|
2265
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
|
+
},
|
|
2266
2966
|
/**
|
|
2267
2967
|
* Get observation features.
|
|
2268
2968
|
* @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
|
|
@@ -2297,7 +2997,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2297
2997
|
* @throws {RequiredError}
|
|
2298
2998
|
*/
|
|
2299
2999
|
v1GetObservationStatuses(requestParameters = {}, options) {
|
|
2300
|
-
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));
|
|
2301
3001
|
},
|
|
2302
3002
|
/**
|
|
2303
3003
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
@@ -2318,7 +3018,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2318
3018
|
return localVarFp.v1GetOrganizationTarget(requestParameters.organizationTargetId, options).then((request) => request(axios, basePath));
|
|
2319
3019
|
},
|
|
2320
3020
|
/**
|
|
2321
|
-
* Get organization targets see the [create](#
|
|
3021
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
2322
3022
|
* @param {*} [options] Override http request option.
|
|
2323
3023
|
* @throws {RequiredError}
|
|
2324
3024
|
*/
|
|
@@ -2361,6 +3061,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2361
3061
|
v1GetSearchInstructions(requestParameters = {}, options) {
|
|
2362
3062
|
return localVarFp.v1GetSearchInstructions(requestParameters.before, options).then((request) => request(axios, basePath));
|
|
2363
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
|
+
},
|
|
2364
3073
|
/**
|
|
2365
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.
|
|
2366
3075
|
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
@@ -2450,6 +3159,60 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2450
3159
|
v1UpdateWebhookConfiguration(requestParameters, options) {
|
|
2451
3160
|
return localVarFp.v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
2452
3161
|
},
|
|
3162
|
+
/**
|
|
3163
|
+
* Create a plane scan to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3164
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
3165
|
+
* @param {*} [options] Override http request option.
|
|
3166
|
+
* @throws {RequiredError}
|
|
3167
|
+
*/
|
|
3168
|
+
v2CreatePlaneScan(requestParameters, options) {
|
|
3169
|
+
return localVarFp.v2CreatePlaneScan(requestParameters.v1PlaneScanRequest, options).then((request) => request(axios, basePath));
|
|
3170
|
+
},
|
|
3171
|
+
/**
|
|
3172
|
+
* Create a RIC volume search to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3173
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
3174
|
+
* @param {*} [options] Override http request option.
|
|
3175
|
+
* @throws {RequiredError}
|
|
3176
|
+
*/
|
|
3177
|
+
v2CreateRicVolumeSearch(requestParameters, options) {
|
|
3178
|
+
return localVarFp.v2CreateRicVolumeSearch(requestParameters.v1RicVolumeSearchRequest, options).then((request) => request(axios, basePath));
|
|
3179
|
+
},
|
|
3180
|
+
/**
|
|
3181
|
+
* Delete a plane scan.
|
|
3182
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
3183
|
+
* @param {*} [options] Override http request option.
|
|
3184
|
+
* @throws {RequiredError}
|
|
3185
|
+
*/
|
|
3186
|
+
v2DeletePlaneScan(requestParameters, options) {
|
|
3187
|
+
return localVarFp.v2DeletePlaneScan(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
3188
|
+
},
|
|
3189
|
+
/**
|
|
3190
|
+
* Delete a RIC volume search.
|
|
3191
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
3192
|
+
* @param {*} [options] Override http request option.
|
|
3193
|
+
* @throws {RequiredError}
|
|
3194
|
+
*/
|
|
3195
|
+
v2DeleteRicVolumeSearch(requestParameters, options) {
|
|
3196
|
+
return localVarFp.v2DeleteRicVolumeSearch(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
3197
|
+
},
|
|
3198
|
+
/**
|
|
3199
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
3200
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
3201
|
+
* @param {*} [options] Override http request option.
|
|
3202
|
+
* @throws {RequiredError}
|
|
3203
|
+
*/
|
|
3204
|
+
v2GetSearch(requestParameters, options) {
|
|
3205
|
+
return localVarFp.v2GetSearch(requestParameters.searchId, options).then((request) => request(axios, basePath));
|
|
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
|
+
},
|
|
2453
3216
|
};
|
|
2454
3217
|
};
|
|
2455
3218
|
/**
|
|
@@ -2459,6 +3222,27 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2459
3222
|
* @extends {BaseAPI}
|
|
2460
3223
|
*/
|
|
2461
3224
|
export class DefaultApi extends BaseAPI {
|
|
3225
|
+
/**
|
|
3226
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
3227
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
3228
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
3229
|
+
* @param {*} [options] Override http request option.
|
|
3230
|
+
* @throws {RequiredError}
|
|
3231
|
+
* @memberof DefaultApi
|
|
3232
|
+
*/
|
|
3233
|
+
getUncorrelatedTracks(requestParameters = {}, options) {
|
|
3234
|
+
return DefaultApiFp(this.configuration).getUncorrelatedTracks(requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
3235
|
+
}
|
|
3236
|
+
/**
|
|
3237
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
3238
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
3239
|
+
* @param {*} [options] Override http request option.
|
|
3240
|
+
* @throws {RequiredError}
|
|
3241
|
+
* @memberof DefaultApi
|
|
3242
|
+
*/
|
|
3243
|
+
v1CreateBlackoutVolume(requestParameters, options) {
|
|
3244
|
+
return DefaultApiFp(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3245
|
+
}
|
|
2462
3246
|
/**
|
|
2463
3247
|
* Create an image set.
|
|
2464
3248
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2480,7 +3264,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
2480
3264
|
return DefaultApiFp(this.configuration).v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2481
3265
|
}
|
|
2482
3266
|
/**
|
|
2483
|
-
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#
|
|
3267
|
+
* Request observations for a satellite target. By creating an organization target you are requesting for a specific target to be observed. The target will be observed best effort by the OurSky network. At the current time OurSky only supports observing satellite targets that are already registered with the platform. To see all possible satellite targets see the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Organization targets also control which events are sent to your organization via webhooks. Webhooks are only sent for targets that you have an active \"organization target\" for.
|
|
2484
3268
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
2485
3269
|
* @param {*} [options] Override http request option.
|
|
2486
3270
|
* @throws {RequiredError}
|
|
@@ -2500,9 +3284,10 @@ export class DefaultApi extends BaseAPI {
|
|
|
2500
3284
|
return DefaultApiFp(this.configuration).v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2501
3285
|
}
|
|
2502
3286
|
/**
|
|
2503
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3287
|
+
* This endpoint is deprecated but will continue to work until 05/31/2025, please see [/v2/search/plane-scan](#tag/plane-scans/POST/v2/search/plane-scan) and [/v2/search/ric-volumetric](#tag/ric-volumetrics/POST/v2/search/ric-volumetric). Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2504
3288
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2505
3289
|
* @param {*} [options] Override http request option.
|
|
3290
|
+
* @deprecated
|
|
2506
3291
|
* @throws {RequiredError}
|
|
2507
3292
|
* @memberof DefaultApi
|
|
2508
3293
|
*/
|
|
@@ -2539,6 +3324,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2539
3324
|
v1CreateWebhookTest(requestParameters, options) {
|
|
2540
3325
|
return DefaultApiFp(this.configuration).v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2541
3326
|
}
|
|
3327
|
+
/**
|
|
3328
|
+
* Delete a blackout volume.
|
|
3329
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
3330
|
+
* @param {*} [options] Override http request option.
|
|
3331
|
+
* @throws {RequiredError}
|
|
3332
|
+
* @memberof DefaultApi
|
|
3333
|
+
*/
|
|
3334
|
+
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
3335
|
+
return DefaultApiFp(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3336
|
+
}
|
|
2542
3337
|
/**
|
|
2543
3338
|
* Delete an image set.
|
|
2544
3339
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -2599,6 +3394,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2599
3394
|
v1DeleteWebhookConfiguration(requestParameters, options) {
|
|
2600
3395
|
return DefaultApiFp(this.configuration).v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2601
3396
|
}
|
|
3397
|
+
/**
|
|
3398
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
3399
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
3400
|
+
* @param {*} [options] Override http request option.
|
|
3401
|
+
* @throws {RequiredError}
|
|
3402
|
+
* @memberof DefaultApi
|
|
3403
|
+
*/
|
|
3404
|
+
v1GetImageMetadata(requestParameters, options) {
|
|
3405
|
+
return DefaultApiFp(this.configuration).v1GetImageMetadata(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
3406
|
+
}
|
|
2602
3407
|
/**
|
|
2603
3408
|
* Get an image set.
|
|
2604
3409
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -2648,6 +3453,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2648
3453
|
v1GetNodeProperties(requestParameters, options) {
|
|
2649
3454
|
return DefaultApiFp(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
|
|
2650
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
|
+
}
|
|
2651
3466
|
/**
|
|
2652
3467
|
* Get observation features.
|
|
2653
3468
|
* @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
|
|
@@ -2686,7 +3501,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
2686
3501
|
* @memberof DefaultApi
|
|
2687
3502
|
*/
|
|
2688
3503
|
v1GetObservationStatuses(requestParameters = {}, options) {
|
|
2689
|
-
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));
|
|
2690
3505
|
}
|
|
2691
3506
|
/**
|
|
2692
3507
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
@@ -2709,7 +3524,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
2709
3524
|
return DefaultApiFp(this.configuration).v1GetOrganizationTarget(requestParameters.organizationTargetId, options).then((request) => request(this.axios, this.basePath));
|
|
2710
3525
|
}
|
|
2711
3526
|
/**
|
|
2712
|
-
* Get organization targets see the [create](#
|
|
3527
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
2713
3528
|
* @param {*} [options] Override http request option.
|
|
2714
3529
|
* @throws {RequiredError}
|
|
2715
3530
|
* @memberof DefaultApi
|
|
@@ -2757,6 +3572,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2757
3572
|
v1GetSearchInstructions(requestParameters = {}, options) {
|
|
2758
3573
|
return DefaultApiFp(this.configuration).v1GetSearchInstructions(requestParameters.before, options).then((request) => request(this.axios, this.basePath));
|
|
2759
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
|
+
}
|
|
2760
3585
|
/**
|
|
2761
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.
|
|
2762
3587
|
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
@@ -2856,4 +3681,72 @@ export class DefaultApi extends BaseAPI {
|
|
|
2856
3681
|
v1UpdateWebhookConfiguration(requestParameters, options) {
|
|
2857
3682
|
return DefaultApiFp(this.configuration).v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2858
3683
|
}
|
|
3684
|
+
/**
|
|
3685
|
+
* Create a plane scan to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3686
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
3687
|
+
* @param {*} [options] Override http request option.
|
|
3688
|
+
* @throws {RequiredError}
|
|
3689
|
+
* @memberof DefaultApi
|
|
3690
|
+
*/
|
|
3691
|
+
v2CreatePlaneScan(requestParameters, options) {
|
|
3692
|
+
return DefaultApiFp(this.configuration).v2CreatePlaneScan(requestParameters.v1PlaneScanRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3693
|
+
}
|
|
3694
|
+
/**
|
|
3695
|
+
* Create a RIC volume search to search for a target. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3696
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
3697
|
+
* @param {*} [options] Override http request option.
|
|
3698
|
+
* @throws {RequiredError}
|
|
3699
|
+
* @memberof DefaultApi
|
|
3700
|
+
*/
|
|
3701
|
+
v2CreateRicVolumeSearch(requestParameters, options) {
|
|
3702
|
+
return DefaultApiFp(this.configuration).v2CreateRicVolumeSearch(requestParameters.v1RicVolumeSearchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3703
|
+
}
|
|
3704
|
+
/**
|
|
3705
|
+
* Delete a plane scan.
|
|
3706
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
3707
|
+
* @param {*} [options] Override http request option.
|
|
3708
|
+
* @throws {RequiredError}
|
|
3709
|
+
* @memberof DefaultApi
|
|
3710
|
+
*/
|
|
3711
|
+
v2DeletePlaneScan(requestParameters, options) {
|
|
3712
|
+
return DefaultApiFp(this.configuration).v2DeletePlaneScan(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3713
|
+
}
|
|
3714
|
+
/**
|
|
3715
|
+
* Delete a RIC volume search.
|
|
3716
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
3717
|
+
* @param {*} [options] Override http request option.
|
|
3718
|
+
* @throws {RequiredError}
|
|
3719
|
+
* @memberof DefaultApi
|
|
3720
|
+
*/
|
|
3721
|
+
v2DeleteRicVolumeSearch(requestParameters, options) {
|
|
3722
|
+
return DefaultApiFp(this.configuration).v2DeleteRicVolumeSearch(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3723
|
+
}
|
|
3724
|
+
/**
|
|
3725
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
3726
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
3727
|
+
* @param {*} [options] Override http request option.
|
|
3728
|
+
* @throws {RequiredError}
|
|
3729
|
+
* @memberof DefaultApi
|
|
3730
|
+
*/
|
|
3731
|
+
v2GetSearch(requestParameters, options) {
|
|
3732
|
+
return DefaultApiFp(this.configuration).v2GetSearch(requestParameters.searchId, options).then((request) => request(this.axios, this.basePath));
|
|
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
|
+
}
|
|
2859
3744
|
}
|
|
3745
|
+
/**
|
|
3746
|
+
* @export
|
|
3747
|
+
*/
|
|
3748
|
+
export const V2GetSearchesStatusEnum = {
|
|
3749
|
+
COMPLETED: 'COMPLETED',
|
|
3750
|
+
IN_PROGRESS: 'IN_PROGRESS',
|
|
3751
|
+
FAILED: 'FAILED'
|
|
3752
|
+
};
|