@ourskyai/sda-api 1.3.1741 → 1.3.1783
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 +212 -219
- package/base.ts +3 -3
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +182 -189
- package/dist/api.js +109 -109
- package/dist/base.d.ts +2 -2
- package/dist/base.js +3 -3
- 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 +182 -189
- package/dist/esm/api.js +109 -109
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/base.js +3 -3
- 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
|
-
*
|
|
6
|
+
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#operation/v1GetSatelliteTargets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#operation/v1CreateOrganizationTarget) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#operation/v1CreateWebhookConfiguration) endpoint to receive TDMs automatically (preferred) or use the [tdms](#operation/v1GetTdms) 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.1783
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -55,7 +55,7 @@ exports.FilterType = {
|
|
|
55
55
|
PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
|
|
56
56
|
};
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
*
|
|
59
59
|
* @export
|
|
60
60
|
* @enum {string}
|
|
61
61
|
*/
|
|
@@ -70,7 +70,7 @@ exports.OrbitType = {
|
|
|
70
70
|
MOLNIYA: 'MOLNIYA'
|
|
71
71
|
};
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
*
|
|
74
74
|
* @export
|
|
75
75
|
* @enum {string}
|
|
76
76
|
*/
|
|
@@ -79,7 +79,7 @@ exports.TrackingType = {
|
|
|
79
79
|
TARGET_RATE: 'TARGET_RATE'
|
|
80
80
|
};
|
|
81
81
|
/**
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* @export
|
|
84
84
|
* @enum {string}
|
|
85
85
|
*/
|
|
@@ -96,14 +96,14 @@ exports.WebhookEvent = {
|
|
|
96
96
|
const DefaultApiAxiosParamCreator = function (configuration) {
|
|
97
97
|
return {
|
|
98
98
|
/**
|
|
99
|
-
*
|
|
100
|
-
* @param {
|
|
99
|
+
* Create an image set.
|
|
100
|
+
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
101
101
|
* @param {*} [options] Override http request option.
|
|
102
102
|
* @throws {RequiredError}
|
|
103
103
|
*/
|
|
104
|
-
v1CreateImageSet: (
|
|
105
|
-
// verify required parameter '
|
|
106
|
-
(0, common_1.assertParamExists)('v1CreateImageSet', '
|
|
104
|
+
v1CreateImageSet: (v1CreateImageSetRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
105
|
+
// verify required parameter 'v1CreateImageSetRequest' is not null or undefined
|
|
106
|
+
(0, common_1.assertParamExists)('v1CreateImageSet', 'v1CreateImageSetRequest', v1CreateImageSetRequest);
|
|
107
107
|
const localVarPath = `/v1/image-set`;
|
|
108
108
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
109
109
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -122,21 +122,21 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
122
122
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
123
123
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
124
124
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
125
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(
|
|
125
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateImageSetRequest, localVarRequestOptions, configuration);
|
|
126
126
|
return {
|
|
127
127
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
128
128
|
options: localVarRequestOptions,
|
|
129
129
|
};
|
|
130
130
|
}),
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
133
|
-
* @param {
|
|
132
|
+
* Create an image set image.
|
|
133
|
+
* @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
|
|
134
134
|
* @param {*} [options] Override http request option.
|
|
135
135
|
* @throws {RequiredError}
|
|
136
136
|
*/
|
|
137
|
-
v1CreateImageSetImage: (
|
|
138
|
-
// verify required parameter '
|
|
139
|
-
(0, common_1.assertParamExists)('v1CreateImageSetImage', '
|
|
137
|
+
v1CreateImageSetImage: (v1CreateImageSetImageRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
138
|
+
// verify required parameter 'v1CreateImageSetImageRequest' is not null or undefined
|
|
139
|
+
(0, common_1.assertParamExists)('v1CreateImageSetImage', 'v1CreateImageSetImageRequest', v1CreateImageSetImageRequest);
|
|
140
140
|
const localVarPath = `/v1/image-set-image`;
|
|
141
141
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
142
142
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -155,21 +155,21 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
155
155
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
156
156
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
157
157
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
158
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(
|
|
158
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateImageSetImageRequest, localVarRequestOptions, configuration);
|
|
159
159
|
return {
|
|
160
160
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
161
161
|
options: localVarRequestOptions,
|
|
162
162
|
};
|
|
163
163
|
}),
|
|
164
164
|
/**
|
|
165
|
-
* 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](#
|
|
166
|
-
* @param {
|
|
165
|
+
* 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](#operation/v1GetSatelliteTargets) 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.
|
|
166
|
+
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
167
167
|
* @param {*} [options] Override http request option.
|
|
168
168
|
* @throws {RequiredError}
|
|
169
169
|
*/
|
|
170
|
-
v1CreateOrganizationTarget: (
|
|
171
|
-
// verify required parameter '
|
|
172
|
-
(0, common_1.assertParamExists)('v1CreateOrganizationTarget', '
|
|
170
|
+
v1CreateOrganizationTarget: (v1CreateOrganizationTargetRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
171
|
+
// verify required parameter 'v1CreateOrganizationTargetRequest' is not null or undefined
|
|
172
|
+
(0, common_1.assertParamExists)('v1CreateOrganizationTarget', 'v1CreateOrganizationTargetRequest', v1CreateOrganizationTargetRequest);
|
|
173
173
|
const localVarPath = `/v1/organization-target`;
|
|
174
174
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
175
175
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -188,7 +188,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
188
188
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
189
189
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
190
190
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
191
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(
|
|
191
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateOrganizationTargetRequest, localVarRequestOptions, configuration);
|
|
192
192
|
return {
|
|
193
193
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
194
194
|
options: localVarRequestOptions,
|
|
@@ -196,13 +196,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
196
196
|
}),
|
|
197
197
|
/**
|
|
198
198
|
* Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> GET /v1/tdm?id={id} The payload sent to the webhook endpoint will include a header field \"X-OurSky-Signature\" which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded.
|
|
199
|
-
* @param {
|
|
199
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
200
200
|
* @param {*} [options] Override http request option.
|
|
201
201
|
* @throws {RequiredError}
|
|
202
202
|
*/
|
|
203
|
-
v1CreateWebhookConfiguration: (
|
|
204
|
-
// verify required parameter '
|
|
205
|
-
(0, common_1.assertParamExists)('v1CreateWebhookConfiguration', '
|
|
203
|
+
v1CreateWebhookConfiguration: (v1UpdateWebhookConfigurationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
204
|
+
// verify required parameter 'v1UpdateWebhookConfigurationRequest' is not null or undefined
|
|
205
|
+
(0, common_1.assertParamExists)('v1CreateWebhookConfiguration', 'v1UpdateWebhookConfigurationRequest', v1UpdateWebhookConfigurationRequest);
|
|
206
206
|
const localVarPath = `/v1/communications/webhook`;
|
|
207
207
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
208
208
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -221,14 +221,14 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
221
221
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
222
222
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
223
223
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
224
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(
|
|
224
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration);
|
|
225
225
|
return {
|
|
226
226
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
227
227
|
options: localVarRequestOptions,
|
|
228
228
|
};
|
|
229
229
|
}),
|
|
230
230
|
/**
|
|
231
|
-
*
|
|
231
|
+
* Delete an organization target.
|
|
232
232
|
* @param {string} satelliteTargetId
|
|
233
233
|
* @param {*} [options] Override http request option.
|
|
234
234
|
* @throws {RequiredError}
|
|
@@ -262,8 +262,8 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
262
262
|
};
|
|
263
263
|
}),
|
|
264
264
|
/**
|
|
265
|
-
* Delete
|
|
266
|
-
* @param {string} id
|
|
265
|
+
* Delete a webhook configuration.
|
|
266
|
+
* @param {string} id
|
|
267
267
|
* @param {*} [options] Override http request option.
|
|
268
268
|
* @throws {RequiredError}
|
|
269
269
|
*/
|
|
@@ -296,7 +296,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
296
296
|
};
|
|
297
297
|
}),
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Get an image set.
|
|
300
300
|
* @param {string} id
|
|
301
301
|
* @param {*} [options] Override http request option.
|
|
302
302
|
* @throws {RequiredError}
|
|
@@ -330,7 +330,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
330
330
|
};
|
|
331
331
|
}),
|
|
332
332
|
/**
|
|
333
|
-
*
|
|
333
|
+
* Get an image.
|
|
334
334
|
* @param {string} imageId
|
|
335
335
|
* @param {*} [options] Override http request option.
|
|
336
336
|
* @throws {RequiredError}
|
|
@@ -364,7 +364,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
364
364
|
};
|
|
365
365
|
}),
|
|
366
366
|
/**
|
|
367
|
-
*
|
|
367
|
+
* Get image set images.
|
|
368
368
|
* @param {Array<string>} imageSets
|
|
369
369
|
* @param {*} [options] Override http request option.
|
|
370
370
|
* @throws {RequiredError}
|
|
@@ -398,7 +398,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
398
398
|
};
|
|
399
399
|
}),
|
|
400
400
|
/**
|
|
401
|
-
*
|
|
401
|
+
* Get image sets.
|
|
402
402
|
* @param {*} [options] Override http request option.
|
|
403
403
|
* @throws {RequiredError}
|
|
404
404
|
*/
|
|
@@ -464,7 +464,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
464
464
|
};
|
|
465
465
|
}),
|
|
466
466
|
/**
|
|
467
|
-
*
|
|
467
|
+
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
468
468
|
* @param {*} [options] Override http request option.
|
|
469
469
|
* @throws {RequiredError}
|
|
470
470
|
*/
|
|
@@ -493,8 +493,8 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
493
493
|
}),
|
|
494
494
|
/**
|
|
495
495
|
* The available satellite objects that the OurSky platform can currently track.
|
|
496
|
-
* @param {OrbitType} [orbitType]
|
|
497
|
-
* @param {string} [noradId]
|
|
496
|
+
* @param {OrbitType} [orbitType]
|
|
497
|
+
* @param {string} [noradId]
|
|
498
498
|
* @param {*} [options] Override http request option.
|
|
499
499
|
* @throws {RequiredError}
|
|
500
500
|
*/
|
|
@@ -528,7 +528,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
528
528
|
};
|
|
529
529
|
}),
|
|
530
530
|
/**
|
|
531
|
-
*
|
|
531
|
+
* Get a TDM.
|
|
532
532
|
* @param {string} tdmId
|
|
533
533
|
* @param {*} [options] Override http request option.
|
|
534
534
|
* @throws {RequiredError}
|
|
@@ -600,7 +600,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
600
600
|
};
|
|
601
601
|
}),
|
|
602
602
|
/**
|
|
603
|
-
* Get
|
|
603
|
+
* Get webhook configurations.
|
|
604
604
|
* @param {*} [options] Override http request option.
|
|
605
605
|
* @throws {RequiredError}
|
|
606
606
|
*/
|
|
@@ -629,13 +629,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
629
629
|
}),
|
|
630
630
|
/**
|
|
631
631
|
* 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.
|
|
632
|
-
* @param {
|
|
632
|
+
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
633
633
|
* @param {*} [options] Override http request option.
|
|
634
634
|
* @throws {RequiredError}
|
|
635
635
|
*/
|
|
636
|
-
v1UpdateEmailConfiguration: (
|
|
637
|
-
// verify required parameter '
|
|
638
|
-
(0, common_1.assertParamExists)('v1UpdateEmailConfiguration', '
|
|
636
|
+
v1UpdateEmailConfiguration: (v1UpdateEmailConfigurationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
637
|
+
// verify required parameter 'v1UpdateEmailConfigurationRequest' is not null or undefined
|
|
638
|
+
(0, common_1.assertParamExists)('v1UpdateEmailConfiguration', 'v1UpdateEmailConfigurationRequest', v1UpdateEmailConfigurationRequest);
|
|
639
639
|
const localVarPath = `/v1/communications/email`;
|
|
640
640
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
641
641
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -654,7 +654,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
654
654
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
655
655
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
656
656
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
657
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(
|
|
657
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1UpdateEmailConfigurationRequest, localVarRequestOptions, configuration);
|
|
658
658
|
return {
|
|
659
659
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
660
660
|
options: localVarRequestOptions,
|
|
@@ -671,55 +671,55 @@ const DefaultApiFp = function (configuration) {
|
|
|
671
671
|
const localVarAxiosParamCreator = (0, exports.DefaultApiAxiosParamCreator)(configuration);
|
|
672
672
|
return {
|
|
673
673
|
/**
|
|
674
|
-
*
|
|
675
|
-
* @param {
|
|
674
|
+
* Create an image set.
|
|
675
|
+
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
676
676
|
* @param {*} [options] Override http request option.
|
|
677
677
|
* @throws {RequiredError}
|
|
678
678
|
*/
|
|
679
|
-
v1CreateImageSet(
|
|
679
|
+
v1CreateImageSet(v1CreateImageSetRequest, options) {
|
|
680
680
|
return __awaiter(this, void 0, void 0, function* () {
|
|
681
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSet(
|
|
681
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSet(v1CreateImageSetRequest, options);
|
|
682
682
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
683
683
|
});
|
|
684
684
|
},
|
|
685
685
|
/**
|
|
686
|
-
*
|
|
687
|
-
* @param {
|
|
686
|
+
* Create an image set image.
|
|
687
|
+
* @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
|
|
688
688
|
* @param {*} [options] Override http request option.
|
|
689
689
|
* @throws {RequiredError}
|
|
690
690
|
*/
|
|
691
|
-
v1CreateImageSetImage(
|
|
691
|
+
v1CreateImageSetImage(v1CreateImageSetImageRequest, options) {
|
|
692
692
|
return __awaiter(this, void 0, void 0, function* () {
|
|
693
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSetImage(
|
|
693
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSetImage(v1CreateImageSetImageRequest, options);
|
|
694
694
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
695
695
|
});
|
|
696
696
|
},
|
|
697
697
|
/**
|
|
698
|
-
* 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](#
|
|
699
|
-
* @param {
|
|
698
|
+
* 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](#operation/v1GetSatelliteTargets) 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.
|
|
699
|
+
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
700
700
|
* @param {*} [options] Override http request option.
|
|
701
701
|
* @throws {RequiredError}
|
|
702
702
|
*/
|
|
703
|
-
v1CreateOrganizationTarget(
|
|
703
|
+
v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest, options) {
|
|
704
704
|
return __awaiter(this, void 0, void 0, function* () {
|
|
705
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateOrganizationTarget(
|
|
705
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest, options);
|
|
706
706
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
707
707
|
});
|
|
708
708
|
},
|
|
709
709
|
/**
|
|
710
710
|
* Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> GET /v1/tdm?id={id} The payload sent to the webhook endpoint will include a header field \"X-OurSky-Signature\" which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded.
|
|
711
|
-
* @param {
|
|
711
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
712
712
|
* @param {*} [options] Override http request option.
|
|
713
713
|
* @throws {RequiredError}
|
|
714
714
|
*/
|
|
715
|
-
v1CreateWebhookConfiguration(
|
|
715
|
+
v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options) {
|
|
716
716
|
return __awaiter(this, void 0, void 0, function* () {
|
|
717
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateWebhookConfiguration(
|
|
717
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options);
|
|
718
718
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
719
719
|
});
|
|
720
720
|
},
|
|
721
721
|
/**
|
|
722
|
-
*
|
|
722
|
+
* Delete an organization target.
|
|
723
723
|
* @param {string} satelliteTargetId
|
|
724
724
|
* @param {*} [options] Override http request option.
|
|
725
725
|
* @throws {RequiredError}
|
|
@@ -731,8 +731,8 @@ const DefaultApiFp = function (configuration) {
|
|
|
731
731
|
});
|
|
732
732
|
},
|
|
733
733
|
/**
|
|
734
|
-
* Delete
|
|
735
|
-
* @param {string} id
|
|
734
|
+
* Delete a webhook configuration.
|
|
735
|
+
* @param {string} id
|
|
736
736
|
* @param {*} [options] Override http request option.
|
|
737
737
|
* @throws {RequiredError}
|
|
738
738
|
*/
|
|
@@ -743,7 +743,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
743
743
|
});
|
|
744
744
|
},
|
|
745
745
|
/**
|
|
746
|
-
*
|
|
746
|
+
* Get an image set.
|
|
747
747
|
* @param {string} id
|
|
748
748
|
* @param {*} [options] Override http request option.
|
|
749
749
|
* @throws {RequiredError}
|
|
@@ -755,7 +755,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
755
755
|
});
|
|
756
756
|
},
|
|
757
757
|
/**
|
|
758
|
-
*
|
|
758
|
+
* Get an image.
|
|
759
759
|
* @param {string} imageId
|
|
760
760
|
* @param {*} [options] Override http request option.
|
|
761
761
|
* @throws {RequiredError}
|
|
@@ -767,7 +767,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
767
767
|
});
|
|
768
768
|
},
|
|
769
769
|
/**
|
|
770
|
-
*
|
|
770
|
+
* Get image set images.
|
|
771
771
|
* @param {Array<string>} imageSets
|
|
772
772
|
* @param {*} [options] Override http request option.
|
|
773
773
|
* @throws {RequiredError}
|
|
@@ -779,7 +779,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
779
779
|
});
|
|
780
780
|
},
|
|
781
781
|
/**
|
|
782
|
-
*
|
|
782
|
+
* Get image sets.
|
|
783
783
|
* @param {*} [options] Override http request option.
|
|
784
784
|
* @throws {RequiredError}
|
|
785
785
|
*/
|
|
@@ -803,7 +803,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
803
803
|
});
|
|
804
804
|
},
|
|
805
805
|
/**
|
|
806
|
-
*
|
|
806
|
+
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
807
807
|
* @param {*} [options] Override http request option.
|
|
808
808
|
* @throws {RequiredError}
|
|
809
809
|
*/
|
|
@@ -815,8 +815,8 @@ const DefaultApiFp = function (configuration) {
|
|
|
815
815
|
},
|
|
816
816
|
/**
|
|
817
817
|
* The available satellite objects that the OurSky platform can currently track.
|
|
818
|
-
* @param {OrbitType} [orbitType]
|
|
819
|
-
* @param {string} [noradId]
|
|
818
|
+
* @param {OrbitType} [orbitType]
|
|
819
|
+
* @param {string} [noradId]
|
|
820
820
|
* @param {*} [options] Override http request option.
|
|
821
821
|
* @throws {RequiredError}
|
|
822
822
|
*/
|
|
@@ -827,7 +827,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
827
827
|
});
|
|
828
828
|
},
|
|
829
829
|
/**
|
|
830
|
-
*
|
|
830
|
+
* Get a TDM.
|
|
831
831
|
* @param {string} tdmId
|
|
832
832
|
* @param {*} [options] Override http request option.
|
|
833
833
|
* @throws {RequiredError}
|
|
@@ -852,7 +852,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
852
852
|
});
|
|
853
853
|
},
|
|
854
854
|
/**
|
|
855
|
-
* Get
|
|
855
|
+
* Get webhook configurations.
|
|
856
856
|
* @param {*} [options] Override http request option.
|
|
857
857
|
* @throws {RequiredError}
|
|
858
858
|
*/
|
|
@@ -864,13 +864,13 @@ const DefaultApiFp = function (configuration) {
|
|
|
864
864
|
},
|
|
865
865
|
/**
|
|
866
866
|
* 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.
|
|
867
|
-
* @param {
|
|
867
|
+
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
868
868
|
* @param {*} [options] Override http request option.
|
|
869
869
|
* @throws {RequiredError}
|
|
870
870
|
*/
|
|
871
|
-
v1UpdateEmailConfiguration(
|
|
871
|
+
v1UpdateEmailConfiguration(v1UpdateEmailConfigurationRequest, options) {
|
|
872
872
|
return __awaiter(this, void 0, void 0, function* () {
|
|
873
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1UpdateEmailConfiguration(
|
|
873
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1UpdateEmailConfiguration(v1UpdateEmailConfigurationRequest, options);
|
|
874
874
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
875
875
|
});
|
|
876
876
|
},
|
|
@@ -885,31 +885,31 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
885
885
|
const localVarFp = (0, exports.DefaultApiFp)(configuration);
|
|
886
886
|
return {
|
|
887
887
|
/**
|
|
888
|
-
*
|
|
888
|
+
* Create an image set.
|
|
889
889
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
890
890
|
* @param {*} [options] Override http request option.
|
|
891
891
|
* @throws {RequiredError}
|
|
892
892
|
*/
|
|
893
893
|
v1CreateImageSet(requestParameters, options) {
|
|
894
|
-
return localVarFp.v1CreateImageSet(requestParameters.
|
|
894
|
+
return localVarFp.v1CreateImageSet(requestParameters.v1CreateImageSetRequest, options).then((request) => request(axios, basePath));
|
|
895
895
|
},
|
|
896
896
|
/**
|
|
897
|
-
*
|
|
897
|
+
* Create an image set image.
|
|
898
898
|
* @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
|
|
899
899
|
* @param {*} [options] Override http request option.
|
|
900
900
|
* @throws {RequiredError}
|
|
901
901
|
*/
|
|
902
902
|
v1CreateImageSetImage(requestParameters, options) {
|
|
903
|
-
return localVarFp.v1CreateImageSetImage(requestParameters.
|
|
903
|
+
return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(axios, basePath));
|
|
904
904
|
},
|
|
905
905
|
/**
|
|
906
|
-
* 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](#
|
|
906
|
+
* 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](#operation/v1GetSatelliteTargets) 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.
|
|
907
907
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
908
908
|
* @param {*} [options] Override http request option.
|
|
909
909
|
* @throws {RequiredError}
|
|
910
910
|
*/
|
|
911
911
|
v1CreateOrganizationTarget(requestParameters, options) {
|
|
912
|
-
return localVarFp.v1CreateOrganizationTarget(requestParameters.
|
|
912
|
+
return localVarFp.v1CreateOrganizationTarget(requestParameters.v1CreateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
|
|
913
913
|
},
|
|
914
914
|
/**
|
|
915
915
|
* Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> GET /v1/tdm?id={id} The payload sent to the webhook endpoint will include a header field \"X-OurSky-Signature\" which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded.
|
|
@@ -918,10 +918,10 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
918
918
|
* @throws {RequiredError}
|
|
919
919
|
*/
|
|
920
920
|
v1CreateWebhookConfiguration(requestParameters, options) {
|
|
921
|
-
return localVarFp.v1CreateWebhookConfiguration(requestParameters.
|
|
921
|
+
return localVarFp.v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
922
922
|
},
|
|
923
923
|
/**
|
|
924
|
-
*
|
|
924
|
+
* Delete an organization target.
|
|
925
925
|
* @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
|
|
926
926
|
* @param {*} [options] Override http request option.
|
|
927
927
|
* @throws {RequiredError}
|
|
@@ -930,7 +930,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
930
930
|
return localVarFp.v1DeleteOrganizationTarget(requestParameters.satelliteTargetId, options).then((request) => request(axios, basePath));
|
|
931
931
|
},
|
|
932
932
|
/**
|
|
933
|
-
* Delete
|
|
933
|
+
* Delete a webhook configuration.
|
|
934
934
|
* @param {DefaultApiV1DeleteWebhookConfigurationRequest} requestParameters Request parameters.
|
|
935
935
|
* @param {*} [options] Override http request option.
|
|
936
936
|
* @throws {RequiredError}
|
|
@@ -939,7 +939,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
939
939
|
return localVarFp.v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
940
940
|
},
|
|
941
941
|
/**
|
|
942
|
-
*
|
|
942
|
+
* Get an image set.
|
|
943
943
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
944
944
|
* @param {*} [options] Override http request option.
|
|
945
945
|
* @throws {RequiredError}
|
|
@@ -948,7 +948,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
948
948
|
return localVarFp.v1GetImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
949
949
|
},
|
|
950
950
|
/**
|
|
951
|
-
*
|
|
951
|
+
* Get an image.
|
|
952
952
|
* @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
|
|
953
953
|
* @param {*} [options] Override http request option.
|
|
954
954
|
* @throws {RequiredError}
|
|
@@ -957,7 +957,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
957
957
|
return localVarFp.v1GetImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
958
958
|
},
|
|
959
959
|
/**
|
|
960
|
-
*
|
|
960
|
+
* Get image set images.
|
|
961
961
|
* @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
|
|
962
962
|
* @param {*} [options] Override http request option.
|
|
963
963
|
* @throws {RequiredError}
|
|
@@ -966,7 +966,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
966
966
|
return localVarFp.v1GetImageSetImages(requestParameters.imageSets, options).then((request) => request(axios, basePath));
|
|
967
967
|
},
|
|
968
968
|
/**
|
|
969
|
-
*
|
|
969
|
+
* Get image sets.
|
|
970
970
|
* @param {*} [options] Override http request option.
|
|
971
971
|
* @throws {RequiredError}
|
|
972
972
|
*/
|
|
@@ -983,7 +983,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
983
983
|
return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
|
|
984
984
|
},
|
|
985
985
|
/**
|
|
986
|
-
*
|
|
986
|
+
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
987
987
|
* @param {*} [options] Override http request option.
|
|
988
988
|
* @throws {RequiredError}
|
|
989
989
|
*/
|
|
@@ -1000,7 +1000,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1000
1000
|
return localVarFp.v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
|
|
1001
1001
|
},
|
|
1002
1002
|
/**
|
|
1003
|
-
*
|
|
1003
|
+
* Get a TDM.
|
|
1004
1004
|
* @param {DefaultApiV1GetTdmRequest} requestParameters Request parameters.
|
|
1005
1005
|
* @param {*} [options] Override http request option.
|
|
1006
1006
|
* @throws {RequiredError}
|
|
@@ -1018,7 +1018,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1018
1018
|
return localVarFp.v1GetTdms(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
|
|
1019
1019
|
},
|
|
1020
1020
|
/**
|
|
1021
|
-
* Get
|
|
1021
|
+
* Get webhook configurations.
|
|
1022
1022
|
* @param {*} [options] Override http request option.
|
|
1023
1023
|
* @throws {RequiredError}
|
|
1024
1024
|
*/
|
|
@@ -1032,7 +1032,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1032
1032
|
* @throws {RequiredError}
|
|
1033
1033
|
*/
|
|
1034
1034
|
v1UpdateEmailConfiguration(requestParameters, options) {
|
|
1035
|
-
return localVarFp.v1UpdateEmailConfiguration(requestParameters.
|
|
1035
|
+
return localVarFp.v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
1036
1036
|
},
|
|
1037
1037
|
};
|
|
1038
1038
|
};
|
|
@@ -1045,34 +1045,34 @@ exports.DefaultApiFactory = DefaultApiFactory;
|
|
|
1045
1045
|
*/
|
|
1046
1046
|
class DefaultApi extends base_1.BaseAPI {
|
|
1047
1047
|
/**
|
|
1048
|
-
*
|
|
1048
|
+
* Create an image set.
|
|
1049
1049
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
1050
1050
|
* @param {*} [options] Override http request option.
|
|
1051
1051
|
* @throws {RequiredError}
|
|
1052
1052
|
* @memberof DefaultApi
|
|
1053
1053
|
*/
|
|
1054
1054
|
v1CreateImageSet(requestParameters, options) {
|
|
1055
|
-
return (0, exports.DefaultApiFp)(this.configuration).v1CreateImageSet(requestParameters.
|
|
1055
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1CreateImageSet(requestParameters.v1CreateImageSetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1056
1056
|
}
|
|
1057
1057
|
/**
|
|
1058
|
-
*
|
|
1058
|
+
* Create an image set image.
|
|
1059
1059
|
* @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
|
|
1060
1060
|
* @param {*} [options] Override http request option.
|
|
1061
1061
|
* @throws {RequiredError}
|
|
1062
1062
|
* @memberof DefaultApi
|
|
1063
1063
|
*/
|
|
1064
1064
|
v1CreateImageSetImage(requestParameters, options) {
|
|
1065
|
-
return (0, exports.DefaultApiFp)(this.configuration).v1CreateImageSetImage(requestParameters.
|
|
1065
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1066
1066
|
}
|
|
1067
1067
|
/**
|
|
1068
|
-
* 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](#
|
|
1068
|
+
* 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](#operation/v1GetSatelliteTargets) 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.
|
|
1069
1069
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
1070
1070
|
* @param {*} [options] Override http request option.
|
|
1071
1071
|
* @throws {RequiredError}
|
|
1072
1072
|
* @memberof DefaultApi
|
|
1073
1073
|
*/
|
|
1074
1074
|
v1CreateOrganizationTarget(requestParameters, options) {
|
|
1075
|
-
return (0, exports.DefaultApiFp)(this.configuration).v1CreateOrganizationTarget(requestParameters.
|
|
1075
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1CreateOrganizationTarget(requestParameters.v1CreateOrganizationTargetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1076
1076
|
}
|
|
1077
1077
|
/**
|
|
1078
1078
|
* Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> GET /v1/tdm?id={id} The payload sent to the webhook endpoint will include a header field \"X-OurSky-Signature\" which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded.
|
|
@@ -1082,10 +1082,10 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1082
1082
|
* @memberof DefaultApi
|
|
1083
1083
|
*/
|
|
1084
1084
|
v1CreateWebhookConfiguration(requestParameters, options) {
|
|
1085
|
-
return (0, exports.DefaultApiFp)(this.configuration).v1CreateWebhookConfiguration(requestParameters.
|
|
1085
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1086
1086
|
}
|
|
1087
1087
|
/**
|
|
1088
|
-
*
|
|
1088
|
+
* Delete an organization target.
|
|
1089
1089
|
* @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
|
|
1090
1090
|
* @param {*} [options] Override http request option.
|
|
1091
1091
|
* @throws {RequiredError}
|
|
@@ -1095,7 +1095,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1095
1095
|
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteOrganizationTarget(requestParameters.satelliteTargetId, options).then((request) => request(this.axios, this.basePath));
|
|
1096
1096
|
}
|
|
1097
1097
|
/**
|
|
1098
|
-
* Delete
|
|
1098
|
+
* Delete a webhook configuration.
|
|
1099
1099
|
* @param {DefaultApiV1DeleteWebhookConfigurationRequest} requestParameters Request parameters.
|
|
1100
1100
|
* @param {*} [options] Override http request option.
|
|
1101
1101
|
* @throws {RequiredError}
|
|
@@ -1105,7 +1105,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1105
1105
|
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
1106
1106
|
}
|
|
1107
1107
|
/**
|
|
1108
|
-
*
|
|
1108
|
+
* Get an image set.
|
|
1109
1109
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
1110
1110
|
* @param {*} [options] Override http request option.
|
|
1111
1111
|
* @throws {RequiredError}
|
|
@@ -1115,7 +1115,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1115
1115
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetImageSet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
1116
1116
|
}
|
|
1117
1117
|
/**
|
|
1118
|
-
*
|
|
1118
|
+
* Get an image.
|
|
1119
1119
|
* @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
|
|
1120
1120
|
* @param {*} [options] Override http request option.
|
|
1121
1121
|
* @throws {RequiredError}
|
|
@@ -1125,7 +1125,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1125
1125
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
1126
1126
|
}
|
|
1127
1127
|
/**
|
|
1128
|
-
*
|
|
1128
|
+
* Get image set images.
|
|
1129
1129
|
* @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
|
|
1130
1130
|
* @param {*} [options] Override http request option.
|
|
1131
1131
|
* @throws {RequiredError}
|
|
@@ -1135,7 +1135,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1135
1135
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetImageSetImages(requestParameters.imageSets, options).then((request) => request(this.axios, this.basePath));
|
|
1136
1136
|
}
|
|
1137
1137
|
/**
|
|
1138
|
-
*
|
|
1138
|
+
* Get image sets.
|
|
1139
1139
|
* @param {*} [options] Override http request option.
|
|
1140
1140
|
* @throws {RequiredError}
|
|
1141
1141
|
* @memberof DefaultApi
|
|
@@ -1154,7 +1154,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1154
1154
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
1155
1155
|
}
|
|
1156
1156
|
/**
|
|
1157
|
-
*
|
|
1157
|
+
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
1158
1158
|
* @param {*} [options] Override http request option.
|
|
1159
1159
|
* @throws {RequiredError}
|
|
1160
1160
|
* @memberof DefaultApi
|
|
@@ -1173,7 +1173,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1173
1173
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
|
|
1174
1174
|
}
|
|
1175
1175
|
/**
|
|
1176
|
-
*
|
|
1176
|
+
* Get a TDM.
|
|
1177
1177
|
* @param {DefaultApiV1GetTdmRequest} requestParameters Request parameters.
|
|
1178
1178
|
* @param {*} [options] Override http request option.
|
|
1179
1179
|
* @throws {RequiredError}
|
|
@@ -1193,7 +1193,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1193
1193
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetTdms(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
1194
1194
|
}
|
|
1195
1195
|
/**
|
|
1196
|
-
* Get
|
|
1196
|
+
* Get webhook configurations.
|
|
1197
1197
|
* @param {*} [options] Override http request option.
|
|
1198
1198
|
* @throws {RequiredError}
|
|
1199
1199
|
* @memberof DefaultApi
|
|
@@ -1209,7 +1209,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1209
1209
|
* @memberof DefaultApi
|
|
1210
1210
|
*/
|
|
1211
1211
|
v1UpdateEmailConfiguration(requestParameters, options) {
|
|
1212
|
-
return (0, exports.DefaultApiFp)(this.configuration).v1UpdateEmailConfiguration(requestParameters.
|
|
1212
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1213
1213
|
}
|
|
1214
1214
|
}
|
|
1215
1215
|
exports.DefaultApi = DefaultApi;
|