@ourskyai/sda-api 1.3.2078 → 1.3.2229
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 +281 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +187 -1
- package/dist/api.js +142 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +187 -1
- package/dist/esm/api.js +141 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky SDA
|
|
6
6
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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.TrackingType = exports.OrbitType = exports.FilterType = void 0;
|
|
25
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.TrackingType = exports.SatelliteTargetTrackingStatus = exports.OrbitType = 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
|
|
@@ -69,6 +69,16 @@ exports.OrbitType = {
|
|
|
69
69
|
TUNDRA: 'TUNDRA',
|
|
70
70
|
MOLNIYA: 'MOLNIYA'
|
|
71
71
|
};
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @export
|
|
75
|
+
* @enum {string}
|
|
76
|
+
*/
|
|
77
|
+
exports.SatelliteTargetTrackingStatus = {
|
|
78
|
+
ACTIVE: 'ACTIVE',
|
|
79
|
+
INACTIVE: 'INACTIVE',
|
|
80
|
+
DEORBITED: 'DEORBITED'
|
|
81
|
+
};
|
|
72
82
|
/**
|
|
73
83
|
*
|
|
74
84
|
* @export
|
|
@@ -227,6 +237,74 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
227
237
|
options: localVarRequestOptions,
|
|
228
238
|
};
|
|
229
239
|
}),
|
|
240
|
+
/**
|
|
241
|
+
* Delete an image set.
|
|
242
|
+
* @param {string} id
|
|
243
|
+
* @param {*} [options] Override http request option.
|
|
244
|
+
* @throws {RequiredError}
|
|
245
|
+
*/
|
|
246
|
+
v1DeleteImageSet: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
247
|
+
// verify required parameter 'id' is not null or undefined
|
|
248
|
+
(0, common_1.assertParamExists)('v1DeleteImageSet', 'id', id);
|
|
249
|
+
const localVarPath = `/v1/image-set`;
|
|
250
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
251
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
252
|
+
let baseOptions;
|
|
253
|
+
if (configuration) {
|
|
254
|
+
baseOptions = configuration.baseOptions;
|
|
255
|
+
}
|
|
256
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
257
|
+
const localVarHeaderParameter = {};
|
|
258
|
+
const localVarQueryParameter = {};
|
|
259
|
+
// authentication Roles required
|
|
260
|
+
// authentication BearerToken required
|
|
261
|
+
// http bearer authentication required
|
|
262
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
263
|
+
if (id !== undefined) {
|
|
264
|
+
localVarQueryParameter['id'] = id;
|
|
265
|
+
}
|
|
266
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
267
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
268
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
269
|
+
return {
|
|
270
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
271
|
+
options: localVarRequestOptions,
|
|
272
|
+
};
|
|
273
|
+
}),
|
|
274
|
+
/**
|
|
275
|
+
* Delete an image.
|
|
276
|
+
* @param {string} imageId
|
|
277
|
+
* @param {*} [options] Override http request option.
|
|
278
|
+
* @throws {RequiredError}
|
|
279
|
+
*/
|
|
280
|
+
v1DeleteImageSetImage: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
281
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
282
|
+
(0, common_1.assertParamExists)('v1DeleteImageSetImage', 'imageId', imageId);
|
|
283
|
+
const localVarPath = `/v1/image-set-image`;
|
|
284
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
285
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
286
|
+
let baseOptions;
|
|
287
|
+
if (configuration) {
|
|
288
|
+
baseOptions = configuration.baseOptions;
|
|
289
|
+
}
|
|
290
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
291
|
+
const localVarHeaderParameter = {};
|
|
292
|
+
const localVarQueryParameter = {};
|
|
293
|
+
// authentication Roles required
|
|
294
|
+
// authentication BearerToken required
|
|
295
|
+
// http bearer authentication required
|
|
296
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
297
|
+
if (imageId !== undefined) {
|
|
298
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
299
|
+
}
|
|
300
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
301
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
302
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
303
|
+
return {
|
|
304
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
305
|
+
options: localVarRequestOptions,
|
|
306
|
+
};
|
|
307
|
+
}),
|
|
230
308
|
/**
|
|
231
309
|
* Delete an organization target.
|
|
232
310
|
* @param {string} satelliteTargetId
|
|
@@ -760,6 +838,30 @@ const DefaultApiFp = function (configuration) {
|
|
|
760
838
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
761
839
|
});
|
|
762
840
|
},
|
|
841
|
+
/**
|
|
842
|
+
* Delete an image set.
|
|
843
|
+
* @param {string} id
|
|
844
|
+
* @param {*} [options] Override http request option.
|
|
845
|
+
* @throws {RequiredError}
|
|
846
|
+
*/
|
|
847
|
+
v1DeleteImageSet(id, options) {
|
|
848
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
849
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteImageSet(id, options);
|
|
850
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
851
|
+
});
|
|
852
|
+
},
|
|
853
|
+
/**
|
|
854
|
+
* Delete an image.
|
|
855
|
+
* @param {string} imageId
|
|
856
|
+
* @param {*} [options] Override http request option.
|
|
857
|
+
* @throws {RequiredError}
|
|
858
|
+
*/
|
|
859
|
+
v1DeleteImageSetImage(imageId, options) {
|
|
860
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
861
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteImageSetImage(imageId, options);
|
|
862
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
863
|
+
});
|
|
864
|
+
},
|
|
763
865
|
/**
|
|
764
866
|
* Delete an organization target.
|
|
765
867
|
* @param {string} satelliteTargetId
|
|
@@ -975,6 +1077,24 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
975
1077
|
v1CreateWebhookConfiguration(requestParameters, options) {
|
|
976
1078
|
return localVarFp.v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
977
1079
|
},
|
|
1080
|
+
/**
|
|
1081
|
+
* Delete an image set.
|
|
1082
|
+
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
1083
|
+
* @param {*} [options] Override http request option.
|
|
1084
|
+
* @throws {RequiredError}
|
|
1085
|
+
*/
|
|
1086
|
+
v1DeleteImageSet(requestParameters, options) {
|
|
1087
|
+
return localVarFp.v1DeleteImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
1088
|
+
},
|
|
1089
|
+
/**
|
|
1090
|
+
* Delete an image.
|
|
1091
|
+
* @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
|
|
1092
|
+
* @param {*} [options] Override http request option.
|
|
1093
|
+
* @throws {RequiredError}
|
|
1094
|
+
*/
|
|
1095
|
+
v1DeleteImageSetImage(requestParameters, options) {
|
|
1096
|
+
return localVarFp.v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
1097
|
+
},
|
|
978
1098
|
/**
|
|
979
1099
|
* Delete an organization target.
|
|
980
1100
|
* @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
|
|
@@ -1148,6 +1268,26 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1148
1268
|
v1CreateWebhookConfiguration(requestParameters, options) {
|
|
1149
1269
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1150
1270
|
}
|
|
1271
|
+
/**
|
|
1272
|
+
* Delete an image set.
|
|
1273
|
+
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
1274
|
+
* @param {*} [options] Override http request option.
|
|
1275
|
+
* @throws {RequiredError}
|
|
1276
|
+
* @memberof DefaultApi
|
|
1277
|
+
*/
|
|
1278
|
+
v1DeleteImageSet(requestParameters, options) {
|
|
1279
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteImageSet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
1280
|
+
}
|
|
1281
|
+
/**
|
|
1282
|
+
* Delete an image.
|
|
1283
|
+
* @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
|
|
1284
|
+
* @param {*} [options] Override http request option.
|
|
1285
|
+
* @throws {RequiredError}
|
|
1286
|
+
* @memberof DefaultApi
|
|
1287
|
+
*/
|
|
1288
|
+
v1DeleteImageSetImage(requestParameters, options) {
|
|
1289
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
1290
|
+
}
|
|
1151
1291
|
/**
|
|
1152
1292
|
* Delete an organization target.
|
|
1153
1293
|
* @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky SDA
|
|
6
6
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky SDA
|
|
6
6
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky SDA
|
|
6
6
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -95,6 +95,37 @@ export declare const FilterType: {
|
|
|
95
95
|
readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
|
|
96
96
|
};
|
|
97
97
|
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @export
|
|
101
|
+
* @interface ObservationBoundingBox
|
|
102
|
+
*/
|
|
103
|
+
export interface ObservationBoundingBox {
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {number}
|
|
107
|
+
* @memberof ObservationBoundingBox
|
|
108
|
+
*/
|
|
109
|
+
'startX': number;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof ObservationBoundingBox
|
|
114
|
+
*/
|
|
115
|
+
'startY': number;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {number}
|
|
119
|
+
* @memberof ObservationBoundingBox
|
|
120
|
+
*/
|
|
121
|
+
'endX': number;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @memberof ObservationBoundingBox
|
|
126
|
+
*/
|
|
127
|
+
'endY': number;
|
|
128
|
+
}
|
|
98
129
|
/**
|
|
99
130
|
* A single observation result. This is a 1:1 mapping with a single image
|
|
100
131
|
* @export
|
|
@@ -119,6 +150,12 @@ export interface ObservationResult {
|
|
|
119
150
|
* @memberof ObservationResult
|
|
120
151
|
*/
|
|
121
152
|
'imageUrl'?: string;
|
|
153
|
+
/**
|
|
154
|
+
*
|
|
155
|
+
* @type {string}
|
|
156
|
+
* @memberof ObservationResult
|
|
157
|
+
*/
|
|
158
|
+
'jpgUrl'?: string;
|
|
122
159
|
/**
|
|
123
160
|
*
|
|
124
161
|
* @type {number}
|
|
@@ -131,6 +168,12 @@ export interface ObservationResult {
|
|
|
131
168
|
* @memberof ObservationResult
|
|
132
169
|
*/
|
|
133
170
|
'dec': number;
|
|
171
|
+
/**
|
|
172
|
+
*
|
|
173
|
+
* @type {ObservationBoundingBox}
|
|
174
|
+
* @memberof ObservationResult
|
|
175
|
+
*/
|
|
176
|
+
'boundingBox'?: ObservationBoundingBox;
|
|
134
177
|
/**
|
|
135
178
|
*
|
|
136
179
|
* @type {string}
|
|
@@ -160,6 +203,17 @@ export declare const OrbitType: {
|
|
|
160
203
|
readonly MOLNIYA: "MOLNIYA";
|
|
161
204
|
};
|
|
162
205
|
export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
|
|
206
|
+
/**
|
|
207
|
+
*
|
|
208
|
+
* @export
|
|
209
|
+
* @enum {string}
|
|
210
|
+
*/
|
|
211
|
+
export declare const SatelliteTargetTrackingStatus: {
|
|
212
|
+
readonly ACTIVE: "ACTIVE";
|
|
213
|
+
readonly INACTIVE: "INACTIVE";
|
|
214
|
+
readonly DEORBITED: "DEORBITED";
|
|
215
|
+
};
|
|
216
|
+
export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
|
|
163
217
|
/**
|
|
164
218
|
*
|
|
165
219
|
* @export
|
|
@@ -375,6 +429,12 @@ export interface V1ImageSetImage {
|
|
|
375
429
|
* @memberof V1ImageSetImage
|
|
376
430
|
*/
|
|
377
431
|
'imageUrl': string;
|
|
432
|
+
/**
|
|
433
|
+
*
|
|
434
|
+
* @type {string}
|
|
435
|
+
* @memberof V1ImageSetImage
|
|
436
|
+
*/
|
|
437
|
+
'fullJpgUrl'?: string;
|
|
378
438
|
/**
|
|
379
439
|
*
|
|
380
440
|
* @type {string}
|
|
@@ -619,6 +679,24 @@ export interface V1SatellitePotential {
|
|
|
619
679
|
* @memberof V1SatellitePotential
|
|
620
680
|
*/
|
|
621
681
|
'lastObservableTime': string;
|
|
682
|
+
/**
|
|
683
|
+
*
|
|
684
|
+
* @type {string}
|
|
685
|
+
* @memberof V1SatellitePotential
|
|
686
|
+
*/
|
|
687
|
+
'satelliteTargetId'?: string;
|
|
688
|
+
/**
|
|
689
|
+
*
|
|
690
|
+
* @type {string}
|
|
691
|
+
* @memberof V1SatellitePotential
|
|
692
|
+
*/
|
|
693
|
+
'noradId'?: string;
|
|
694
|
+
/**
|
|
695
|
+
*
|
|
696
|
+
* @type {OrbitType}
|
|
697
|
+
* @memberof V1SatellitePotential
|
|
698
|
+
*/
|
|
699
|
+
'orbitType'?: OrbitType;
|
|
622
700
|
}
|
|
623
701
|
/**
|
|
624
702
|
* Satellite Target
|
|
@@ -650,6 +728,30 @@ export interface V1SatelliteTarget {
|
|
|
650
728
|
* @memberof V1SatelliteTarget
|
|
651
729
|
*/
|
|
652
730
|
'orbitType': OrbitType;
|
|
731
|
+
/**
|
|
732
|
+
*
|
|
733
|
+
* @type {string}
|
|
734
|
+
* @memberof V1SatelliteTarget
|
|
735
|
+
*/
|
|
736
|
+
'tleEpoch'?: string;
|
|
737
|
+
/**
|
|
738
|
+
*
|
|
739
|
+
* @type {string}
|
|
740
|
+
* @memberof V1SatelliteTarget
|
|
741
|
+
*/
|
|
742
|
+
'tleLine1'?: string;
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @type {string}
|
|
746
|
+
* @memberof V1SatelliteTarget
|
|
747
|
+
*/
|
|
748
|
+
'tleLine2'?: string;
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @type {SatelliteTargetTrackingStatus}
|
|
752
|
+
* @memberof V1SatelliteTarget
|
|
753
|
+
*/
|
|
754
|
+
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
653
755
|
}
|
|
654
756
|
/**
|
|
655
757
|
* TDM
|
|
@@ -826,6 +928,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
826
928
|
* @throws {RequiredError}
|
|
827
929
|
*/
|
|
828
930
|
v1CreateWebhookConfiguration: (v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
931
|
+
/**
|
|
932
|
+
* Delete an image set.
|
|
933
|
+
* @param {string} id
|
|
934
|
+
* @param {*} [options] Override http request option.
|
|
935
|
+
* @throws {RequiredError}
|
|
936
|
+
*/
|
|
937
|
+
v1DeleteImageSet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
938
|
+
/**
|
|
939
|
+
* Delete an image.
|
|
940
|
+
* @param {string} imageId
|
|
941
|
+
* @param {*} [options] Override http request option.
|
|
942
|
+
* @throws {RequiredError}
|
|
943
|
+
*/
|
|
944
|
+
v1DeleteImageSetImage: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
829
945
|
/**
|
|
830
946
|
* Delete an organization target.
|
|
831
947
|
* @param {string} satelliteTargetId
|
|
@@ -959,6 +1075,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
959
1075
|
* @throws {RequiredError}
|
|
960
1076
|
*/
|
|
961
1077
|
v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1078
|
+
/**
|
|
1079
|
+
* Delete an image set.
|
|
1080
|
+
* @param {string} id
|
|
1081
|
+
* @param {*} [options] Override http request option.
|
|
1082
|
+
* @throws {RequiredError}
|
|
1083
|
+
*/
|
|
1084
|
+
v1DeleteImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
1085
|
+
/**
|
|
1086
|
+
* Delete an image.
|
|
1087
|
+
* @param {string} imageId
|
|
1088
|
+
* @param {*} [options] Override http request option.
|
|
1089
|
+
* @throws {RequiredError}
|
|
1090
|
+
*/
|
|
1091
|
+
v1DeleteImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
962
1092
|
/**
|
|
963
1093
|
* Delete an organization target.
|
|
964
1094
|
* @param {string} satelliteTargetId
|
|
@@ -1092,6 +1222,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1092
1222
|
* @throws {RequiredError}
|
|
1093
1223
|
*/
|
|
1094
1224
|
v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
1225
|
+
/**
|
|
1226
|
+
* Delete an image set.
|
|
1227
|
+
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
1228
|
+
* @param {*} [options] Override http request option.
|
|
1229
|
+
* @throws {RequiredError}
|
|
1230
|
+
*/
|
|
1231
|
+
v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
1232
|
+
/**
|
|
1233
|
+
* Delete an image.
|
|
1234
|
+
* @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
|
|
1235
|
+
* @param {*} [options] Override http request option.
|
|
1236
|
+
* @throws {RequiredError}
|
|
1237
|
+
*/
|
|
1238
|
+
v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
1095
1239
|
/**
|
|
1096
1240
|
* Delete an organization target.
|
|
1097
1241
|
* @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
|
|
@@ -1240,6 +1384,32 @@ export interface DefaultApiV1CreateWebhookConfigurationRequest {
|
|
|
1240
1384
|
*/
|
|
1241
1385
|
readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest;
|
|
1242
1386
|
}
|
|
1387
|
+
/**
|
|
1388
|
+
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
1389
|
+
* @export
|
|
1390
|
+
* @interface DefaultApiV1DeleteImageSetRequest
|
|
1391
|
+
*/
|
|
1392
|
+
export interface DefaultApiV1DeleteImageSetRequest {
|
|
1393
|
+
/**
|
|
1394
|
+
*
|
|
1395
|
+
* @type {string}
|
|
1396
|
+
* @memberof DefaultApiV1DeleteImageSet
|
|
1397
|
+
*/
|
|
1398
|
+
readonly id: string;
|
|
1399
|
+
}
|
|
1400
|
+
/**
|
|
1401
|
+
* Request parameters for v1DeleteImageSetImage operation in DefaultApi.
|
|
1402
|
+
* @export
|
|
1403
|
+
* @interface DefaultApiV1DeleteImageSetImageRequest
|
|
1404
|
+
*/
|
|
1405
|
+
export interface DefaultApiV1DeleteImageSetImageRequest {
|
|
1406
|
+
/**
|
|
1407
|
+
*
|
|
1408
|
+
* @type {string}
|
|
1409
|
+
* @memberof DefaultApiV1DeleteImageSetImage
|
|
1410
|
+
*/
|
|
1411
|
+
readonly imageId: string;
|
|
1412
|
+
}
|
|
1243
1413
|
/**
|
|
1244
1414
|
* Request parameters for v1DeleteOrganizationTarget operation in DefaultApi.
|
|
1245
1415
|
* @export
|
|
@@ -1446,6 +1616,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
1446
1616
|
* @memberof DefaultApi
|
|
1447
1617
|
*/
|
|
1448
1618
|
v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
1619
|
+
/**
|
|
1620
|
+
* Delete an image set.
|
|
1621
|
+
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
1622
|
+
* @param {*} [options] Override http request option.
|
|
1623
|
+
* @throws {RequiredError}
|
|
1624
|
+
* @memberof DefaultApi
|
|
1625
|
+
*/
|
|
1626
|
+
v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
1627
|
+
/**
|
|
1628
|
+
* Delete an image.
|
|
1629
|
+
* @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
|
|
1630
|
+
* @param {*} [options] Override http request option.
|
|
1631
|
+
* @throws {RequiredError}
|
|
1632
|
+
* @memberof DefaultApi
|
|
1633
|
+
*/
|
|
1634
|
+
v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
1449
1635
|
/**
|
|
1450
1636
|
* Delete an organization target.
|
|
1451
1637
|
* @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
|