@ourskyai/sda-api 1.3.5602 → 1.3.6669
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 +1845 -191
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +1229 -26
- package/dist/api.js +705 -20
- 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 +1229 -26
- package/dist/esm/api.js +704 -19
- 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/api.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* OurSky SDA
|
|
6
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.WebhookAuthType = exports.WeatherCondition = exports.TrackingType = exports.ShutterType = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.ObservationState = exports.MountType = exports.ImageSetType = exports.FilterType = void 0;
|
|
25
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.WebhookAuthType = exports.WeatherCondition = exports.V1ImageFileType = exports.V1BlackoutVolumeRequestReferenceFrameEnum = exports.TrackingType = exports.ShutterType = exports.SearchCompletedReason = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.ObservationState = exports.MountType = exports.ImageSetType = exports.FilterType = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -60,6 +60,10 @@ exports.FilterType = {
|
|
|
60
60
|
* @enum {string}
|
|
61
61
|
*/
|
|
62
62
|
exports.ImageSetType = {
|
|
63
|
+
ASTRONOMICAL: 'ASTRONOMICAL',
|
|
64
|
+
EARTH_ORBITAL: 'EARTH_ORBITAL',
|
|
65
|
+
GNSS_CALIBRATION: 'GNSS_CALIBRATION',
|
|
66
|
+
SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
|
|
63
67
|
ALL_SKY: 'ALL_SKY'
|
|
64
68
|
};
|
|
65
69
|
/**
|
|
@@ -118,6 +122,17 @@ exports.SatelliteTargetTrackingStatus = {
|
|
|
118
122
|
INACTIVE: 'INACTIVE',
|
|
119
123
|
DEORBITED: 'DEORBITED'
|
|
120
124
|
};
|
|
125
|
+
/**
|
|
126
|
+
* The reason a search was completed.
|
|
127
|
+
* @export
|
|
128
|
+
* @enum {string}
|
|
129
|
+
*/
|
|
130
|
+
exports.SearchCompletedReason = {
|
|
131
|
+
ALL_HYPOTHESES_TESTED: 'ALL_HYPOTHESES_TESTED',
|
|
132
|
+
FOUND_TARGET: 'FOUND_TARGET',
|
|
133
|
+
CANCELLED: 'CANCELLED',
|
|
134
|
+
FAILED: 'FAILED'
|
|
135
|
+
};
|
|
121
136
|
/**
|
|
122
137
|
*
|
|
123
138
|
* @export
|
|
@@ -137,6 +152,19 @@ exports.TrackingType = {
|
|
|
137
152
|
TARGET_RATE: 'TARGET_RATE',
|
|
138
153
|
NONE: 'NONE'
|
|
139
154
|
};
|
|
155
|
+
exports.V1BlackoutVolumeRequestReferenceFrameEnum = {
|
|
156
|
+
ECI_J2000: 'ECI_J2000',
|
|
157
|
+
ECEF: 'ECEF'
|
|
158
|
+
};
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @export
|
|
162
|
+
* @enum {string}
|
|
163
|
+
*/
|
|
164
|
+
exports.V1ImageFileType = {
|
|
165
|
+
FITS: 'FITS',
|
|
166
|
+
JPG: 'JPG'
|
|
167
|
+
};
|
|
140
168
|
/**
|
|
141
169
|
*
|
|
142
170
|
* @export
|
|
@@ -177,7 +205,10 @@ exports.WebhookEvent = {
|
|
|
177
205
|
V1_OBSERVATION_STATUS_UPDATED: 'V1_OBSERVATION_STATUS_UPDATED',
|
|
178
206
|
V1_EO_CALIBRATION_OBSERVATION_CREATED: 'V1_EO_CALIBRATION_OBSERVATION_CREATED',
|
|
179
207
|
V1_NODE_CALIBRATION_DATA_CREATED: 'V1_NODE_CALIBRATION_DATA_CREATED',
|
|
180
|
-
V1_NODE_UPDATED: 'V1_NODE_UPDATED'
|
|
208
|
+
V1_NODE_UPDATED: 'V1_NODE_UPDATED',
|
|
209
|
+
V1_EO_SKY_IMAGERY_CREATED: 'V1_EO_SKY_IMAGERY_CREATED',
|
|
210
|
+
V2_SEARCH_COMPLETED: 'V2_SEARCH_COMPLETED',
|
|
211
|
+
V1_UCT_CREATED: 'V1_UCT_CREATED'
|
|
181
212
|
};
|
|
182
213
|
/**
|
|
183
214
|
* DefaultApi - axios parameter creator
|
|
@@ -185,6 +216,74 @@ exports.WebhookEvent = {
|
|
|
185
216
|
*/
|
|
186
217
|
const DefaultApiAxiosParamCreator = function (configuration) {
|
|
187
218
|
return {
|
|
219
|
+
/**
|
|
220
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
221
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
222
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
223
|
+
* @param {*} [options] Override http request option.
|
|
224
|
+
* @throws {RequiredError}
|
|
225
|
+
*/
|
|
226
|
+
getUncorrelatedTracks: (after, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
227
|
+
const localVarPath = `/v1/uncorrelated-tracks`;
|
|
228
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
229
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
230
|
+
let baseOptions;
|
|
231
|
+
if (configuration) {
|
|
232
|
+
baseOptions = configuration.baseOptions;
|
|
233
|
+
}
|
|
234
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
235
|
+
const localVarHeaderParameter = {};
|
|
236
|
+
const localVarQueryParameter = {};
|
|
237
|
+
// authentication Roles required
|
|
238
|
+
// authentication BearerToken required
|
|
239
|
+
// http bearer authentication required
|
|
240
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
241
|
+
if (after !== undefined) {
|
|
242
|
+
localVarQueryParameter['after'] = (after instanceof Date) ?
|
|
243
|
+
after.toISOString() :
|
|
244
|
+
after;
|
|
245
|
+
}
|
|
246
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
247
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
248
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
249
|
+
return {
|
|
250
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
251
|
+
options: localVarRequestOptions,
|
|
252
|
+
};
|
|
253
|
+
}),
|
|
254
|
+
/**
|
|
255
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
256
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
257
|
+
* @param {*} [options] Override http request option.
|
|
258
|
+
* @throws {RequiredError}
|
|
259
|
+
*/
|
|
260
|
+
v1CreateBlackoutVolume: (v1BlackoutVolumeRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
261
|
+
// verify required parameter 'v1BlackoutVolumeRequest' is not null or undefined
|
|
262
|
+
(0, common_1.assertParamExists)('v1CreateBlackoutVolume', 'v1BlackoutVolumeRequest', v1BlackoutVolumeRequest);
|
|
263
|
+
const localVarPath = `/v2/search/blackout-volume`;
|
|
264
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
265
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
266
|
+
let baseOptions;
|
|
267
|
+
if (configuration) {
|
|
268
|
+
baseOptions = configuration.baseOptions;
|
|
269
|
+
}
|
|
270
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
271
|
+
const localVarHeaderParameter = {};
|
|
272
|
+
const localVarQueryParameter = {};
|
|
273
|
+
// authentication Roles required
|
|
274
|
+
// authentication BearerToken required
|
|
275
|
+
// http bearer authentication required
|
|
276
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
277
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
278
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
279
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
280
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
281
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1BlackoutVolumeRequest, localVarRequestOptions, configuration);
|
|
282
|
+
return {
|
|
283
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
284
|
+
options: localVarRequestOptions,
|
|
285
|
+
};
|
|
286
|
+
}),
|
|
188
287
|
/**
|
|
189
288
|
* Create an image set.
|
|
190
289
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -252,7 +351,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
252
351
|
};
|
|
253
352
|
}),
|
|
254
353
|
/**
|
|
255
|
-
* 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](#
|
|
354
|
+
* 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.
|
|
256
355
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
257
356
|
* @param {*} [options] Override http request option.
|
|
258
357
|
* @throws {RequiredError}
|
|
@@ -318,9 +417,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
318
417
|
};
|
|
319
418
|
}),
|
|
320
419
|
/**
|
|
321
|
-
* 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.
|
|
420
|
+
* 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.
|
|
322
421
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
323
422
|
* @param {*} [options] Override http request option.
|
|
423
|
+
* @deprecated
|
|
324
424
|
* @throws {RequiredError}
|
|
325
425
|
*/
|
|
326
426
|
v1CreateSearchInstruction: (v1CreateSearchInstructionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
@@ -449,6 +549,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
449
549
|
options: localVarRequestOptions,
|
|
450
550
|
};
|
|
451
551
|
}),
|
|
552
|
+
/**
|
|
553
|
+
* Delete a blackout volume.
|
|
554
|
+
* @param {string} id
|
|
555
|
+
* @param {*} [options] Override http request option.
|
|
556
|
+
* @throws {RequiredError}
|
|
557
|
+
*/
|
|
558
|
+
v1DeleteBlackoutVolume: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
559
|
+
// verify required parameter 'id' is not null or undefined
|
|
560
|
+
(0, common_1.assertParamExists)('v1DeleteBlackoutVolume', 'id', id);
|
|
561
|
+
const localVarPath = `/v2/search/blackout-volume`;
|
|
562
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
563
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
564
|
+
let baseOptions;
|
|
565
|
+
if (configuration) {
|
|
566
|
+
baseOptions = configuration.baseOptions;
|
|
567
|
+
}
|
|
568
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
569
|
+
const localVarHeaderParameter = {};
|
|
570
|
+
const localVarQueryParameter = {};
|
|
571
|
+
// authentication Roles required
|
|
572
|
+
// authentication BearerToken required
|
|
573
|
+
// http bearer authentication required
|
|
574
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
575
|
+
if (id !== undefined) {
|
|
576
|
+
localVarQueryParameter['id'] = id;
|
|
577
|
+
}
|
|
578
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
579
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
580
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
581
|
+
return {
|
|
582
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
583
|
+
options: localVarRequestOptions,
|
|
584
|
+
};
|
|
585
|
+
}),
|
|
452
586
|
/**
|
|
453
587
|
* Delete an image set.
|
|
454
588
|
* @param {string} id
|
|
@@ -653,6 +787,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
653
787
|
options: localVarRequestOptions,
|
|
654
788
|
};
|
|
655
789
|
}),
|
|
790
|
+
/**
|
|
791
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
792
|
+
* @param {string} imageId
|
|
793
|
+
* @param {*} [options] Override http request option.
|
|
794
|
+
* @throws {RequiredError}
|
|
795
|
+
*/
|
|
796
|
+
v1GetImageMetadata: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
797
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
798
|
+
(0, common_1.assertParamExists)('v1GetImageMetadata', 'imageId', imageId);
|
|
799
|
+
const localVarPath = `/v1/image-metadata`;
|
|
800
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
801
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
802
|
+
let baseOptions;
|
|
803
|
+
if (configuration) {
|
|
804
|
+
baseOptions = configuration.baseOptions;
|
|
805
|
+
}
|
|
806
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
807
|
+
const localVarHeaderParameter = {};
|
|
808
|
+
const localVarQueryParameter = {};
|
|
809
|
+
// authentication Roles required
|
|
810
|
+
// authentication BearerToken required
|
|
811
|
+
// http bearer authentication required
|
|
812
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
813
|
+
if (imageId !== undefined) {
|
|
814
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
815
|
+
}
|
|
816
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
817
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
818
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
819
|
+
return {
|
|
820
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
821
|
+
options: localVarRequestOptions,
|
|
822
|
+
};
|
|
823
|
+
}),
|
|
656
824
|
/**
|
|
657
825
|
* Get an image set.
|
|
658
826
|
* @param {string} id
|
|
@@ -1050,7 +1218,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1050
1218
|
};
|
|
1051
1219
|
}),
|
|
1052
1220
|
/**
|
|
1053
|
-
* Get organization targets see the [create](#
|
|
1221
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
1054
1222
|
* @param {*} [options] Override http request option.
|
|
1055
1223
|
* @throws {RequiredError}
|
|
1056
1224
|
*/
|
|
@@ -1419,6 +1587,39 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1419
1587
|
options: localVarRequestOptions,
|
|
1420
1588
|
};
|
|
1421
1589
|
}),
|
|
1590
|
+
/**
|
|
1591
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
1592
|
+
* @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
|
|
1593
|
+
* @param {*} [options] Override http request option.
|
|
1594
|
+
* @throws {RequiredError}
|
|
1595
|
+
*/
|
|
1596
|
+
v1PutOrbitProviderTLEOrbit: (v1PutOrbitProviderTLERequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1597
|
+
// verify required parameter 'v1PutOrbitProviderTLERequest' is not null or undefined
|
|
1598
|
+
(0, common_1.assertParamExists)('v1PutOrbitProviderTLEOrbit', 'v1PutOrbitProviderTLERequest', v1PutOrbitProviderTLERequest);
|
|
1599
|
+
const localVarPath = `/v1/orbit-provider/tle`;
|
|
1600
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1601
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1602
|
+
let baseOptions;
|
|
1603
|
+
if (configuration) {
|
|
1604
|
+
baseOptions = configuration.baseOptions;
|
|
1605
|
+
}
|
|
1606
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1607
|
+
const localVarHeaderParameter = {};
|
|
1608
|
+
const localVarQueryParameter = {};
|
|
1609
|
+
// authentication Roles required
|
|
1610
|
+
// authentication BearerToken required
|
|
1611
|
+
// http bearer authentication required
|
|
1612
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1613
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1614
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1615
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1616
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1617
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1PutOrbitProviderTLERequest, localVarRequestOptions, configuration);
|
|
1618
|
+
return {
|
|
1619
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1620
|
+
options: localVarRequestOptions,
|
|
1621
|
+
};
|
|
1622
|
+
}),
|
|
1422
1623
|
/**
|
|
1423
1624
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
1424
1625
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -1486,7 +1687,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1486
1687
|
};
|
|
1487
1688
|
}),
|
|
1488
1689
|
/**
|
|
1489
|
-
* Update satellite target.
|
|
1690
|
+
* Update a private satellite target.
|
|
1490
1691
|
* @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
|
|
1491
1692
|
* @param {*} [options] Override http request option.
|
|
1492
1693
|
* @throws {RequiredError}
|
|
@@ -1551,6 +1752,174 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1551
1752
|
options: localVarRequestOptions,
|
|
1552
1753
|
};
|
|
1553
1754
|
}),
|
|
1755
|
+
/**
|
|
1756
|
+
* 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.
|
|
1757
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
1758
|
+
* @param {*} [options] Override http request option.
|
|
1759
|
+
* @throws {RequiredError}
|
|
1760
|
+
*/
|
|
1761
|
+
v2CreatePlaneScan: (v1PlaneScanRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1762
|
+
// verify required parameter 'v1PlaneScanRequest' is not null or undefined
|
|
1763
|
+
(0, common_1.assertParamExists)('v2CreatePlaneScan', 'v1PlaneScanRequest', v1PlaneScanRequest);
|
|
1764
|
+
const localVarPath = `/v2/search/plane-scan`;
|
|
1765
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1766
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1767
|
+
let baseOptions;
|
|
1768
|
+
if (configuration) {
|
|
1769
|
+
baseOptions = configuration.baseOptions;
|
|
1770
|
+
}
|
|
1771
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1772
|
+
const localVarHeaderParameter = {};
|
|
1773
|
+
const localVarQueryParameter = {};
|
|
1774
|
+
// authentication Roles required
|
|
1775
|
+
// authentication BearerToken required
|
|
1776
|
+
// http bearer authentication required
|
|
1777
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1778
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1779
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1780
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1781
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1782
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1PlaneScanRequest, localVarRequestOptions, configuration);
|
|
1783
|
+
return {
|
|
1784
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1785
|
+
options: localVarRequestOptions,
|
|
1786
|
+
};
|
|
1787
|
+
}),
|
|
1788
|
+
/**
|
|
1789
|
+
* 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.
|
|
1790
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
1791
|
+
* @param {*} [options] Override http request option.
|
|
1792
|
+
* @throws {RequiredError}
|
|
1793
|
+
*/
|
|
1794
|
+
v2CreateRicVolumeSearch: (v1RicVolumeSearchRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1795
|
+
// verify required parameter 'v1RicVolumeSearchRequest' is not null or undefined
|
|
1796
|
+
(0, common_1.assertParamExists)('v2CreateRicVolumeSearch', 'v1RicVolumeSearchRequest', v1RicVolumeSearchRequest);
|
|
1797
|
+
const localVarPath = `/v2/search/ric-volumetric`;
|
|
1798
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1799
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1800
|
+
let baseOptions;
|
|
1801
|
+
if (configuration) {
|
|
1802
|
+
baseOptions = configuration.baseOptions;
|
|
1803
|
+
}
|
|
1804
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1805
|
+
const localVarHeaderParameter = {};
|
|
1806
|
+
const localVarQueryParameter = {};
|
|
1807
|
+
// authentication Roles required
|
|
1808
|
+
// authentication BearerToken required
|
|
1809
|
+
// http bearer authentication required
|
|
1810
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1811
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1812
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1813
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1814
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1815
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1RicVolumeSearchRequest, localVarRequestOptions, configuration);
|
|
1816
|
+
return {
|
|
1817
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1818
|
+
options: localVarRequestOptions,
|
|
1819
|
+
};
|
|
1820
|
+
}),
|
|
1821
|
+
/**
|
|
1822
|
+
* Delete a plane scan.
|
|
1823
|
+
* @param {string} id
|
|
1824
|
+
* @param {*} [options] Override http request option.
|
|
1825
|
+
* @throws {RequiredError}
|
|
1826
|
+
*/
|
|
1827
|
+
v2DeletePlaneScan: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1828
|
+
// verify required parameter 'id' is not null or undefined
|
|
1829
|
+
(0, common_1.assertParamExists)('v2DeletePlaneScan', 'id', id);
|
|
1830
|
+
const localVarPath = `/v2/search/plane-scan`;
|
|
1831
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1832
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1833
|
+
let baseOptions;
|
|
1834
|
+
if (configuration) {
|
|
1835
|
+
baseOptions = configuration.baseOptions;
|
|
1836
|
+
}
|
|
1837
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
1838
|
+
const localVarHeaderParameter = {};
|
|
1839
|
+
const localVarQueryParameter = {};
|
|
1840
|
+
// authentication Roles required
|
|
1841
|
+
// authentication BearerToken required
|
|
1842
|
+
// http bearer authentication required
|
|
1843
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1844
|
+
if (id !== undefined) {
|
|
1845
|
+
localVarQueryParameter['id'] = id;
|
|
1846
|
+
}
|
|
1847
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1848
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1849
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1850
|
+
return {
|
|
1851
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1852
|
+
options: localVarRequestOptions,
|
|
1853
|
+
};
|
|
1854
|
+
}),
|
|
1855
|
+
/**
|
|
1856
|
+
* Delete a RIC volume search.
|
|
1857
|
+
* @param {string} id
|
|
1858
|
+
* @param {*} [options] Override http request option.
|
|
1859
|
+
* @throws {RequiredError}
|
|
1860
|
+
*/
|
|
1861
|
+
v2DeleteRicVolumeSearch: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1862
|
+
// verify required parameter 'id' is not null or undefined
|
|
1863
|
+
(0, common_1.assertParamExists)('v2DeleteRicVolumeSearch', 'id', id);
|
|
1864
|
+
const localVarPath = `/v2/search/ric-volumetric`;
|
|
1865
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1866
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1867
|
+
let baseOptions;
|
|
1868
|
+
if (configuration) {
|
|
1869
|
+
baseOptions = configuration.baseOptions;
|
|
1870
|
+
}
|
|
1871
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
1872
|
+
const localVarHeaderParameter = {};
|
|
1873
|
+
const localVarQueryParameter = {};
|
|
1874
|
+
// authentication Roles required
|
|
1875
|
+
// authentication BearerToken required
|
|
1876
|
+
// http bearer authentication required
|
|
1877
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1878
|
+
if (id !== undefined) {
|
|
1879
|
+
localVarQueryParameter['id'] = id;
|
|
1880
|
+
}
|
|
1881
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1882
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1883
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1884
|
+
return {
|
|
1885
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1886
|
+
options: localVarRequestOptions,
|
|
1887
|
+
};
|
|
1888
|
+
}),
|
|
1889
|
+
/**
|
|
1890
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
1891
|
+
* @param {string} searchId
|
|
1892
|
+
* @param {*} [options] Override http request option.
|
|
1893
|
+
* @throws {RequiredError}
|
|
1894
|
+
*/
|
|
1895
|
+
v2GetSearch: (searchId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1896
|
+
// verify required parameter 'searchId' is not null or undefined
|
|
1897
|
+
(0, common_1.assertParamExists)('v2GetSearch', 'searchId', searchId);
|
|
1898
|
+
const localVarPath = `/v2/search`;
|
|
1899
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1900
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1901
|
+
let baseOptions;
|
|
1902
|
+
if (configuration) {
|
|
1903
|
+
baseOptions = configuration.baseOptions;
|
|
1904
|
+
}
|
|
1905
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1906
|
+
const localVarHeaderParameter = {};
|
|
1907
|
+
const localVarQueryParameter = {};
|
|
1908
|
+
// authentication Roles required
|
|
1909
|
+
// authentication BearerToken required
|
|
1910
|
+
// http bearer authentication required
|
|
1911
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1912
|
+
if (searchId !== undefined) {
|
|
1913
|
+
localVarQueryParameter['searchId'] = searchId;
|
|
1914
|
+
}
|
|
1915
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1916
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1917
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1918
|
+
return {
|
|
1919
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1920
|
+
options: localVarRequestOptions,
|
|
1921
|
+
};
|
|
1922
|
+
}),
|
|
1554
1923
|
};
|
|
1555
1924
|
};
|
|
1556
1925
|
exports.DefaultApiAxiosParamCreator = DefaultApiAxiosParamCreator;
|
|
@@ -1561,6 +1930,31 @@ exports.DefaultApiAxiosParamCreator = DefaultApiAxiosParamCreator;
|
|
|
1561
1930
|
const DefaultApiFp = function (configuration) {
|
|
1562
1931
|
const localVarAxiosParamCreator = (0, exports.DefaultApiAxiosParamCreator)(configuration);
|
|
1563
1932
|
return {
|
|
1933
|
+
/**
|
|
1934
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
1935
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
1936
|
+
* @param {string} [after] The timestamp to get the next page of results. Defaults to the 1 day prior to the current UTC time.
|
|
1937
|
+
* @param {*} [options] Override http request option.
|
|
1938
|
+
* @throws {RequiredError}
|
|
1939
|
+
*/
|
|
1940
|
+
getUncorrelatedTracks(after, options) {
|
|
1941
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1942
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getUncorrelatedTracks(after, options);
|
|
1943
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1944
|
+
});
|
|
1945
|
+
},
|
|
1946
|
+
/**
|
|
1947
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
1948
|
+
* @param {V1BlackoutVolumeRequest} v1BlackoutVolumeRequest
|
|
1949
|
+
* @param {*} [options] Override http request option.
|
|
1950
|
+
* @throws {RequiredError}
|
|
1951
|
+
*/
|
|
1952
|
+
v1CreateBlackoutVolume(v1BlackoutVolumeRequest, options) {
|
|
1953
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1954
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateBlackoutVolume(v1BlackoutVolumeRequest, options);
|
|
1955
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1956
|
+
});
|
|
1957
|
+
},
|
|
1564
1958
|
/**
|
|
1565
1959
|
* Create an image set.
|
|
1566
1960
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -1586,7 +1980,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
1586
1980
|
});
|
|
1587
1981
|
},
|
|
1588
1982
|
/**
|
|
1589
|
-
* 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](#
|
|
1983
|
+
* 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.
|
|
1590
1984
|
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
1591
1985
|
* @param {*} [options] Override http request option.
|
|
1592
1986
|
* @throws {RequiredError}
|
|
@@ -1610,9 +2004,10 @@ const DefaultApiFp = function (configuration) {
|
|
|
1610
2004
|
});
|
|
1611
2005
|
},
|
|
1612
2006
|
/**
|
|
1613
|
-
* 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.
|
|
2007
|
+
* 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.
|
|
1614
2008
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1615
2009
|
* @param {*} [options] Override http request option.
|
|
2010
|
+
* @deprecated
|
|
1616
2011
|
* @throws {RequiredError}
|
|
1617
2012
|
*/
|
|
1618
2013
|
v1CreateSearchInstruction(v1CreateSearchInstructionRequest, options) {
|
|
@@ -1657,6 +2052,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
1657
2052
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1658
2053
|
});
|
|
1659
2054
|
},
|
|
2055
|
+
/**
|
|
2056
|
+
* Delete a blackout volume.
|
|
2057
|
+
* @param {string} id
|
|
2058
|
+
* @param {*} [options] Override http request option.
|
|
2059
|
+
* @throws {RequiredError}
|
|
2060
|
+
*/
|
|
2061
|
+
v1DeleteBlackoutVolume(id, options) {
|
|
2062
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2063
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteBlackoutVolume(id, options);
|
|
2064
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2065
|
+
});
|
|
2066
|
+
},
|
|
1660
2067
|
/**
|
|
1661
2068
|
* Delete an image set.
|
|
1662
2069
|
* @param {string} id
|
|
@@ -1729,6 +2136,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
1729
2136
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1730
2137
|
});
|
|
1731
2138
|
},
|
|
2139
|
+
/**
|
|
2140
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
2141
|
+
* @param {string} imageId
|
|
2142
|
+
* @param {*} [options] Override http request option.
|
|
2143
|
+
* @throws {RequiredError}
|
|
2144
|
+
*/
|
|
2145
|
+
v1GetImageMetadata(imageId, options) {
|
|
2146
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2147
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetImageMetadata(imageId, options);
|
|
2148
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2149
|
+
});
|
|
2150
|
+
},
|
|
1732
2151
|
/**
|
|
1733
2152
|
* Get an image set.
|
|
1734
2153
|
* @param {string} id
|
|
@@ -1868,7 +2287,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
1868
2287
|
});
|
|
1869
2288
|
},
|
|
1870
2289
|
/**
|
|
1871
|
-
* Get organization targets see the [create](#
|
|
2290
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
1872
2291
|
* @param {*} [options] Override http request option.
|
|
1873
2292
|
* @throws {RequiredError}
|
|
1874
2293
|
*/
|
|
@@ -1995,6 +2414,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
1995
2414
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1996
2415
|
});
|
|
1997
2416
|
},
|
|
2417
|
+
/**
|
|
2418
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
2419
|
+
* @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
|
|
2420
|
+
* @param {*} [options] Override http request option.
|
|
2421
|
+
* @throws {RequiredError}
|
|
2422
|
+
*/
|
|
2423
|
+
v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest, options) {
|
|
2424
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2425
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest, options);
|
|
2426
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2427
|
+
});
|
|
2428
|
+
},
|
|
1998
2429
|
/**
|
|
1999
2430
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2000
2431
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -2020,7 +2451,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
2020
2451
|
});
|
|
2021
2452
|
},
|
|
2022
2453
|
/**
|
|
2023
|
-
* Update satellite target.
|
|
2454
|
+
* Update a private satellite target.
|
|
2024
2455
|
* @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
|
|
2025
2456
|
* @param {*} [options] Override http request option.
|
|
2026
2457
|
* @throws {RequiredError}
|
|
@@ -2043,6 +2474,66 @@ const DefaultApiFp = function (configuration) {
|
|
|
2043
2474
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2044
2475
|
});
|
|
2045
2476
|
},
|
|
2477
|
+
/**
|
|
2478
|
+
* 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.
|
|
2479
|
+
* @param {V1PlaneScanRequest} v1PlaneScanRequest
|
|
2480
|
+
* @param {*} [options] Override http request option.
|
|
2481
|
+
* @throws {RequiredError}
|
|
2482
|
+
*/
|
|
2483
|
+
v2CreatePlaneScan(v1PlaneScanRequest, options) {
|
|
2484
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2485
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2CreatePlaneScan(v1PlaneScanRequest, options);
|
|
2486
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2487
|
+
});
|
|
2488
|
+
},
|
|
2489
|
+
/**
|
|
2490
|
+
* 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.
|
|
2491
|
+
* @param {V1RicVolumeSearchRequest} v1RicVolumeSearchRequest
|
|
2492
|
+
* @param {*} [options] Override http request option.
|
|
2493
|
+
* @throws {RequiredError}
|
|
2494
|
+
*/
|
|
2495
|
+
v2CreateRicVolumeSearch(v1RicVolumeSearchRequest, options) {
|
|
2496
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2497
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2CreateRicVolumeSearch(v1RicVolumeSearchRequest, options);
|
|
2498
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2499
|
+
});
|
|
2500
|
+
},
|
|
2501
|
+
/**
|
|
2502
|
+
* Delete a plane scan.
|
|
2503
|
+
* @param {string} id
|
|
2504
|
+
* @param {*} [options] Override http request option.
|
|
2505
|
+
* @throws {RequiredError}
|
|
2506
|
+
*/
|
|
2507
|
+
v2DeletePlaneScan(id, options) {
|
|
2508
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2509
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2DeletePlaneScan(id, options);
|
|
2510
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2511
|
+
});
|
|
2512
|
+
},
|
|
2513
|
+
/**
|
|
2514
|
+
* Delete a RIC volume search.
|
|
2515
|
+
* @param {string} id
|
|
2516
|
+
* @param {*} [options] Override http request option.
|
|
2517
|
+
* @throws {RequiredError}
|
|
2518
|
+
*/
|
|
2519
|
+
v2DeleteRicVolumeSearch(id, options) {
|
|
2520
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2521
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2DeleteRicVolumeSearch(id, options);
|
|
2522
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2523
|
+
});
|
|
2524
|
+
},
|
|
2525
|
+
/**
|
|
2526
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
2527
|
+
* @param {string} searchId
|
|
2528
|
+
* @param {*} [options] Override http request option.
|
|
2529
|
+
* @throws {RequiredError}
|
|
2530
|
+
*/
|
|
2531
|
+
v2GetSearch(searchId, options) {
|
|
2532
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2533
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2GetSearch(searchId, options);
|
|
2534
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2535
|
+
});
|
|
2536
|
+
},
|
|
2046
2537
|
};
|
|
2047
2538
|
};
|
|
2048
2539
|
exports.DefaultApiFp = DefaultApiFp;
|
|
@@ -2053,6 +2544,25 @@ exports.DefaultApiFp = DefaultApiFp;
|
|
|
2053
2544
|
const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
2054
2545
|
const localVarFp = (0, exports.DefaultApiFp)(configuration);
|
|
2055
2546
|
return {
|
|
2547
|
+
/**
|
|
2548
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
2549
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
2550
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
2551
|
+
* @param {*} [options] Override http request option.
|
|
2552
|
+
* @throws {RequiredError}
|
|
2553
|
+
*/
|
|
2554
|
+
getUncorrelatedTracks(requestParameters = {}, options) {
|
|
2555
|
+
return localVarFp.getUncorrelatedTracks(requestParameters.after, options).then((request) => request(axios, basePath));
|
|
2556
|
+
},
|
|
2557
|
+
/**
|
|
2558
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
2559
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
2560
|
+
* @param {*} [options] Override http request option.
|
|
2561
|
+
* @throws {RequiredError}
|
|
2562
|
+
*/
|
|
2563
|
+
v1CreateBlackoutVolume(requestParameters, options) {
|
|
2564
|
+
return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
|
|
2565
|
+
},
|
|
2056
2566
|
/**
|
|
2057
2567
|
* Create an image set.
|
|
2058
2568
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2072,7 +2582,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2072
2582
|
return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(axios, basePath));
|
|
2073
2583
|
},
|
|
2074
2584
|
/**
|
|
2075
|
-
* 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](#
|
|
2585
|
+
* 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.
|
|
2076
2586
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
2077
2587
|
* @param {*} [options] Override http request option.
|
|
2078
2588
|
* @throws {RequiredError}
|
|
@@ -2090,9 +2600,10 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2090
2600
|
return localVarFp.v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
2091
2601
|
},
|
|
2092
2602
|
/**
|
|
2093
|
-
* 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.
|
|
2603
|
+
* 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.
|
|
2094
2604
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2095
2605
|
* @param {*} [options] Override http request option.
|
|
2606
|
+
* @deprecated
|
|
2096
2607
|
* @throws {RequiredError}
|
|
2097
2608
|
*/
|
|
2098
2609
|
v1CreateSearchInstruction(requestParameters, options) {
|
|
@@ -2125,6 +2636,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2125
2636
|
v1CreateWebhookTest(requestParameters, options) {
|
|
2126
2637
|
return localVarFp.v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(axios, basePath));
|
|
2127
2638
|
},
|
|
2639
|
+
/**
|
|
2640
|
+
* Delete a blackout volume.
|
|
2641
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
2642
|
+
* @param {*} [options] Override http request option.
|
|
2643
|
+
* @throws {RequiredError}
|
|
2644
|
+
*/
|
|
2645
|
+
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
2646
|
+
return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2647
|
+
},
|
|
2128
2648
|
/**
|
|
2129
2649
|
* Delete an image set.
|
|
2130
2650
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -2179,6 +2699,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2179
2699
|
v1DeleteWebhookConfiguration(requestParameters, options) {
|
|
2180
2700
|
return localVarFp.v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2181
2701
|
},
|
|
2702
|
+
/**
|
|
2703
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
2704
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
2705
|
+
* @param {*} [options] Override http request option.
|
|
2706
|
+
* @throws {RequiredError}
|
|
2707
|
+
*/
|
|
2708
|
+
v1GetImageMetadata(requestParameters, options) {
|
|
2709
|
+
return localVarFp.v1GetImageMetadata(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
2710
|
+
},
|
|
2182
2711
|
/**
|
|
2183
2712
|
* Get an image set.
|
|
2184
2713
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -2278,7 +2807,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2278
2807
|
return localVarFp.v1GetOrganizationTarget(requestParameters.organizationTargetId, options).then((request) => request(axios, basePath));
|
|
2279
2808
|
},
|
|
2280
2809
|
/**
|
|
2281
|
-
* Get organization targets see the [create](#
|
|
2810
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
2282
2811
|
* @param {*} [options] Override http request option.
|
|
2283
2812
|
* @throws {RequiredError}
|
|
2284
2813
|
*/
|
|
@@ -2365,6 +2894,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2365
2894
|
v1GetWebhookLogs(requestParameters, options) {
|
|
2366
2895
|
return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
|
|
2367
2896
|
},
|
|
2897
|
+
/**
|
|
2898
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
2899
|
+
* @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
|
|
2900
|
+
* @param {*} [options] Override http request option.
|
|
2901
|
+
* @throws {RequiredError}
|
|
2902
|
+
*/
|
|
2903
|
+
v1PutOrbitProviderTLEOrbit(requestParameters, options) {
|
|
2904
|
+
return localVarFp.v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(axios, basePath));
|
|
2905
|
+
},
|
|
2368
2906
|
/**
|
|
2369
2907
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2370
2908
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -2384,7 +2922,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2384
2922
|
return localVarFp.v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
|
|
2385
2923
|
},
|
|
2386
2924
|
/**
|
|
2387
|
-
* Update satellite target.
|
|
2925
|
+
* Update a private satellite target.
|
|
2388
2926
|
* @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
|
|
2389
2927
|
* @param {*} [options] Override http request option.
|
|
2390
2928
|
* @throws {RequiredError}
|
|
@@ -2401,6 +2939,51 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2401
2939
|
v1UpdateWebhookConfiguration(requestParameters, options) {
|
|
2402
2940
|
return localVarFp.v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
2403
2941
|
},
|
|
2942
|
+
/**
|
|
2943
|
+
* 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.
|
|
2944
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
2945
|
+
* @param {*} [options] Override http request option.
|
|
2946
|
+
* @throws {RequiredError}
|
|
2947
|
+
*/
|
|
2948
|
+
v2CreatePlaneScan(requestParameters, options) {
|
|
2949
|
+
return localVarFp.v2CreatePlaneScan(requestParameters.v1PlaneScanRequest, options).then((request) => request(axios, basePath));
|
|
2950
|
+
},
|
|
2951
|
+
/**
|
|
2952
|
+
* 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.
|
|
2953
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
2954
|
+
* @param {*} [options] Override http request option.
|
|
2955
|
+
* @throws {RequiredError}
|
|
2956
|
+
*/
|
|
2957
|
+
v2CreateRicVolumeSearch(requestParameters, options) {
|
|
2958
|
+
return localVarFp.v2CreateRicVolumeSearch(requestParameters.v1RicVolumeSearchRequest, options).then((request) => request(axios, basePath));
|
|
2959
|
+
},
|
|
2960
|
+
/**
|
|
2961
|
+
* Delete a plane scan.
|
|
2962
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
2963
|
+
* @param {*} [options] Override http request option.
|
|
2964
|
+
* @throws {RequiredError}
|
|
2965
|
+
*/
|
|
2966
|
+
v2DeletePlaneScan(requestParameters, options) {
|
|
2967
|
+
return localVarFp.v2DeletePlaneScan(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2968
|
+
},
|
|
2969
|
+
/**
|
|
2970
|
+
* Delete a RIC volume search.
|
|
2971
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
2972
|
+
* @param {*} [options] Override http request option.
|
|
2973
|
+
* @throws {RequiredError}
|
|
2974
|
+
*/
|
|
2975
|
+
v2DeleteRicVolumeSearch(requestParameters, options) {
|
|
2976
|
+
return localVarFp.v2DeleteRicVolumeSearch(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2977
|
+
},
|
|
2978
|
+
/**
|
|
2979
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
2980
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
2981
|
+
* @param {*} [options] Override http request option.
|
|
2982
|
+
* @throws {RequiredError}
|
|
2983
|
+
*/
|
|
2984
|
+
v2GetSearch(requestParameters, options) {
|
|
2985
|
+
return localVarFp.v2GetSearch(requestParameters.searchId, options).then((request) => request(axios, basePath));
|
|
2986
|
+
},
|
|
2404
2987
|
};
|
|
2405
2988
|
};
|
|
2406
2989
|
exports.DefaultApiFactory = DefaultApiFactory;
|
|
@@ -2411,6 +2994,27 @@ exports.DefaultApiFactory = DefaultApiFactory;
|
|
|
2411
2994
|
* @extends {BaseAPI}
|
|
2412
2995
|
*/
|
|
2413
2996
|
class DefaultApi extends base_1.BaseAPI {
|
|
2997
|
+
/**
|
|
2998
|
+
* This endpoint returns a list of uncorrelated tracks collected by the network.
|
|
2999
|
+
* @summary Get uncorrelated tracks collected by the network.
|
|
3000
|
+
* @param {DefaultApiGetUncorrelatedTracksRequest} requestParameters Request parameters.
|
|
3001
|
+
* @param {*} [options] Override http request option.
|
|
3002
|
+
* @throws {RequiredError}
|
|
3003
|
+
* @memberof DefaultApi
|
|
3004
|
+
*/
|
|
3005
|
+
getUncorrelatedTracks(requestParameters = {}, options) {
|
|
3006
|
+
return (0, exports.DefaultApiFp)(this.configuration).getUncorrelatedTracks(requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
3007
|
+
}
|
|
3008
|
+
/**
|
|
3009
|
+
* Create a blackout volume to avoid observing a region of space when scheduling searches.
|
|
3010
|
+
* @param {DefaultApiV1CreateBlackoutVolumeRequest} requestParameters Request parameters.
|
|
3011
|
+
* @param {*} [options] Override http request option.
|
|
3012
|
+
* @throws {RequiredError}
|
|
3013
|
+
* @memberof DefaultApi
|
|
3014
|
+
*/
|
|
3015
|
+
v1CreateBlackoutVolume(requestParameters, options) {
|
|
3016
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3017
|
+
}
|
|
2414
3018
|
/**
|
|
2415
3019
|
* Create an image set.
|
|
2416
3020
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2432,7 +3036,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2432
3036
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2433
3037
|
}
|
|
2434
3038
|
/**
|
|
2435
|
-
* 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](#
|
|
3039
|
+
* 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.
|
|
2436
3040
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
2437
3041
|
* @param {*} [options] Override http request option.
|
|
2438
3042
|
* @throws {RequiredError}
|
|
@@ -2452,9 +3056,10 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2452
3056
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2453
3057
|
}
|
|
2454
3058
|
/**
|
|
2455
|
-
* 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.
|
|
3059
|
+
* 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.
|
|
2456
3060
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2457
3061
|
* @param {*} [options] Override http request option.
|
|
3062
|
+
* @deprecated
|
|
2458
3063
|
* @throws {RequiredError}
|
|
2459
3064
|
* @memberof DefaultApi
|
|
2460
3065
|
*/
|
|
@@ -2491,6 +3096,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2491
3096
|
v1CreateWebhookTest(requestParameters, options) {
|
|
2492
3097
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateWebhookTest(requestParameters.v1CreateWebhookTestRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2493
3098
|
}
|
|
3099
|
+
/**
|
|
3100
|
+
* Delete a blackout volume.
|
|
3101
|
+
* @param {DefaultApiV1DeleteBlackoutVolumeRequest} requestParameters Request parameters.
|
|
3102
|
+
* @param {*} [options] Override http request option.
|
|
3103
|
+
* @throws {RequiredError}
|
|
3104
|
+
* @memberof DefaultApi
|
|
3105
|
+
*/
|
|
3106
|
+
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
3107
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3108
|
+
}
|
|
2494
3109
|
/**
|
|
2495
3110
|
* Delete an image set.
|
|
2496
3111
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -2551,6 +3166,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2551
3166
|
v1DeleteWebhookConfiguration(requestParameters, options) {
|
|
2552
3167
|
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2553
3168
|
}
|
|
3169
|
+
/**
|
|
3170
|
+
* Get metadata about an image by image id. This includes plate solve results
|
|
3171
|
+
* @param {DefaultApiV1GetImageMetadataRequest} requestParameters Request parameters.
|
|
3172
|
+
* @param {*} [options] Override http request option.
|
|
3173
|
+
* @throws {RequiredError}
|
|
3174
|
+
* @memberof DefaultApi
|
|
3175
|
+
*/
|
|
3176
|
+
v1GetImageMetadata(requestParameters, options) {
|
|
3177
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetImageMetadata(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
3178
|
+
}
|
|
2554
3179
|
/**
|
|
2555
3180
|
* Get an image set.
|
|
2556
3181
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -2661,7 +3286,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2661
3286
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetOrganizationTarget(requestParameters.organizationTargetId, options).then((request) => request(this.axios, this.basePath));
|
|
2662
3287
|
}
|
|
2663
3288
|
/**
|
|
2664
|
-
* Get organization targets see the [create](#
|
|
3289
|
+
* Get organization targets see the [create](#tag/organization-targets/POST/v1/organization-target) endpoint for more details.
|
|
2665
3290
|
* @param {*} [options] Override http request option.
|
|
2666
3291
|
* @throws {RequiredError}
|
|
2667
3292
|
* @memberof DefaultApi
|
|
@@ -2758,6 +3383,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2758
3383
|
v1GetWebhookLogs(requestParameters, options) {
|
|
2759
3384
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
|
|
2760
3385
|
}
|
|
3386
|
+
/**
|
|
3387
|
+
* Create or update an orbit for a target via a two-line element set (TLE)
|
|
3388
|
+
* @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
|
|
3389
|
+
* @param {*} [options] Override http request option.
|
|
3390
|
+
* @throws {RequiredError}
|
|
3391
|
+
* @memberof DefaultApi
|
|
3392
|
+
*/
|
|
3393
|
+
v1PutOrbitProviderTLEOrbit(requestParameters, options) {
|
|
3394
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(this.axios, this.basePath));
|
|
3395
|
+
}
|
|
2761
3396
|
/**
|
|
2762
3397
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2763
3398
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -2779,7 +3414,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2779
3414
|
return (0, exports.DefaultApiFp)(this.configuration).v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2780
3415
|
}
|
|
2781
3416
|
/**
|
|
2782
|
-
* Update satellite target.
|
|
3417
|
+
* Update a private satellite target.
|
|
2783
3418
|
* @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
|
|
2784
3419
|
* @param {*} [options] Override http request option.
|
|
2785
3420
|
* @throws {RequiredError}
|
|
@@ -2798,5 +3433,55 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2798
3433
|
v1UpdateWebhookConfiguration(requestParameters, options) {
|
|
2799
3434
|
return (0, exports.DefaultApiFp)(this.configuration).v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2800
3435
|
}
|
|
3436
|
+
/**
|
|
3437
|
+
* 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.
|
|
3438
|
+
* @param {DefaultApiV2CreatePlaneScanRequest} requestParameters Request parameters.
|
|
3439
|
+
* @param {*} [options] Override http request option.
|
|
3440
|
+
* @throws {RequiredError}
|
|
3441
|
+
* @memberof DefaultApi
|
|
3442
|
+
*/
|
|
3443
|
+
v2CreatePlaneScan(requestParameters, options) {
|
|
3444
|
+
return (0, exports.DefaultApiFp)(this.configuration).v2CreatePlaneScan(requestParameters.v1PlaneScanRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3445
|
+
}
|
|
3446
|
+
/**
|
|
3447
|
+
* 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.
|
|
3448
|
+
* @param {DefaultApiV2CreateRicVolumeSearchRequest} requestParameters Request parameters.
|
|
3449
|
+
* @param {*} [options] Override http request option.
|
|
3450
|
+
* @throws {RequiredError}
|
|
3451
|
+
* @memberof DefaultApi
|
|
3452
|
+
*/
|
|
3453
|
+
v2CreateRicVolumeSearch(requestParameters, options) {
|
|
3454
|
+
return (0, exports.DefaultApiFp)(this.configuration).v2CreateRicVolumeSearch(requestParameters.v1RicVolumeSearchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3455
|
+
}
|
|
3456
|
+
/**
|
|
3457
|
+
* Delete a plane scan.
|
|
3458
|
+
* @param {DefaultApiV2DeletePlaneScanRequest} requestParameters Request parameters.
|
|
3459
|
+
* @param {*} [options] Override http request option.
|
|
3460
|
+
* @throws {RequiredError}
|
|
3461
|
+
* @memberof DefaultApi
|
|
3462
|
+
*/
|
|
3463
|
+
v2DeletePlaneScan(requestParameters, options) {
|
|
3464
|
+
return (0, exports.DefaultApiFp)(this.configuration).v2DeletePlaneScan(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3465
|
+
}
|
|
3466
|
+
/**
|
|
3467
|
+
* Delete a RIC volume search.
|
|
3468
|
+
* @param {DefaultApiV2DeleteRicVolumeSearchRequest} requestParameters Request parameters.
|
|
3469
|
+
* @param {*} [options] Override http request option.
|
|
3470
|
+
* @throws {RequiredError}
|
|
3471
|
+
* @memberof DefaultApi
|
|
3472
|
+
*/
|
|
3473
|
+
v2DeleteRicVolumeSearch(requestParameters, options) {
|
|
3474
|
+
return (0, exports.DefaultApiFp)(this.configuration).v2DeleteRicVolumeSearch(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3475
|
+
}
|
|
3476
|
+
/**
|
|
3477
|
+
* Get a V2 search (created by RIC volumetric search or plane scan endpoints) by ID.
|
|
3478
|
+
* @param {DefaultApiV2GetSearchRequest} requestParameters Request parameters.
|
|
3479
|
+
* @param {*} [options] Override http request option.
|
|
3480
|
+
* @throws {RequiredError}
|
|
3481
|
+
* @memberof DefaultApi
|
|
3482
|
+
*/
|
|
3483
|
+
v2GetSearch(requestParameters, options) {
|
|
3484
|
+
return (0, exports.DefaultApiFp)(this.configuration).v2GetSearch(requestParameters.searchId, options).then((request) => request(this.axios, this.basePath));
|
|
3485
|
+
}
|
|
2801
3486
|
}
|
|
2802
3487
|
exports.DefaultApi = DefaultApi;
|