@ourskyai/sda-api 1.3.1741 → 1.3.1767
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/esm/api.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
*
|
|
5
|
+
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.1767
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -52,7 +52,7 @@ export const FilterType = {
|
|
|
52
52
|
PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
|
|
53
53
|
};
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
*
|
|
56
56
|
* @export
|
|
57
57
|
* @enum {string}
|
|
58
58
|
*/
|
|
@@ -67,7 +67,7 @@ export const OrbitType = {
|
|
|
67
67
|
MOLNIYA: 'MOLNIYA'
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
70
|
+
*
|
|
71
71
|
* @export
|
|
72
72
|
* @enum {string}
|
|
73
73
|
*/
|
|
@@ -76,7 +76,7 @@ export const TrackingType = {
|
|
|
76
76
|
TARGET_RATE: 'TARGET_RATE'
|
|
77
77
|
};
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
*
|
|
80
80
|
* @export
|
|
81
81
|
* @enum {string}
|
|
82
82
|
*/
|
|
@@ -93,14 +93,14 @@ export const WebhookEvent = {
|
|
|
93
93
|
export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
97
|
-
* @param {
|
|
96
|
+
* Create an image set.
|
|
97
|
+
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
98
98
|
* @param {*} [options] Override http request option.
|
|
99
99
|
* @throws {RequiredError}
|
|
100
100
|
*/
|
|
101
|
-
v1CreateImageSet: (
|
|
102
|
-
// verify required parameter '
|
|
103
|
-
assertParamExists('v1CreateImageSet', '
|
|
101
|
+
v1CreateImageSet: (v1CreateImageSetRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
102
|
+
// verify required parameter 'v1CreateImageSetRequest' is not null or undefined
|
|
103
|
+
assertParamExists('v1CreateImageSet', 'v1CreateImageSetRequest', v1CreateImageSetRequest);
|
|
104
104
|
const localVarPath = `/v1/image-set`;
|
|
105
105
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
106
106
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -119,21 +119,21 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
119
119
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
120
120
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
121
121
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
122
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
122
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateImageSetRequest, localVarRequestOptions, configuration);
|
|
123
123
|
return {
|
|
124
124
|
url: toPathString(localVarUrlObj),
|
|
125
125
|
options: localVarRequestOptions,
|
|
126
126
|
};
|
|
127
127
|
}),
|
|
128
128
|
/**
|
|
129
|
-
*
|
|
130
|
-
* @param {
|
|
129
|
+
* Create an image set image.
|
|
130
|
+
* @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
|
|
131
131
|
* @param {*} [options] Override http request option.
|
|
132
132
|
* @throws {RequiredError}
|
|
133
133
|
*/
|
|
134
|
-
v1CreateImageSetImage: (
|
|
135
|
-
// verify required parameter '
|
|
136
|
-
assertParamExists('v1CreateImageSetImage', '
|
|
134
|
+
v1CreateImageSetImage: (v1CreateImageSetImageRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
135
|
+
// verify required parameter 'v1CreateImageSetImageRequest' is not null or undefined
|
|
136
|
+
assertParamExists('v1CreateImageSetImage', 'v1CreateImageSetImageRequest', v1CreateImageSetImageRequest);
|
|
137
137
|
const localVarPath = `/v1/image-set-image`;
|
|
138
138
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
139
139
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -152,21 +152,21 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
152
152
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
153
153
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
154
154
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
155
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
155
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateImageSetImageRequest, localVarRequestOptions, configuration);
|
|
156
156
|
return {
|
|
157
157
|
url: toPathString(localVarUrlObj),
|
|
158
158
|
options: localVarRequestOptions,
|
|
159
159
|
};
|
|
160
160
|
}),
|
|
161
161
|
/**
|
|
162
|
-
* 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](#
|
|
163
|
-
* @param {
|
|
162
|
+
* 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.
|
|
163
|
+
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
164
164
|
* @param {*} [options] Override http request option.
|
|
165
165
|
* @throws {RequiredError}
|
|
166
166
|
*/
|
|
167
|
-
v1CreateOrganizationTarget: (
|
|
168
|
-
// verify required parameter '
|
|
169
|
-
assertParamExists('v1CreateOrganizationTarget', '
|
|
167
|
+
v1CreateOrganizationTarget: (v1CreateOrganizationTargetRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
168
|
+
// verify required parameter 'v1CreateOrganizationTargetRequest' is not null or undefined
|
|
169
|
+
assertParamExists('v1CreateOrganizationTarget', 'v1CreateOrganizationTargetRequest', v1CreateOrganizationTargetRequest);
|
|
170
170
|
const localVarPath = `/v1/organization-target`;
|
|
171
171
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
172
172
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -185,7 +185,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
185
185
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
186
186
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
187
187
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
188
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
188
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateOrganizationTargetRequest, localVarRequestOptions, configuration);
|
|
189
189
|
return {
|
|
190
190
|
url: toPathString(localVarUrlObj),
|
|
191
191
|
options: localVarRequestOptions,
|
|
@@ -193,13 +193,13 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
193
193
|
}),
|
|
194
194
|
/**
|
|
195
195
|
* 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.
|
|
196
|
-
* @param {
|
|
196
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
197
197
|
* @param {*} [options] Override http request option.
|
|
198
198
|
* @throws {RequiredError}
|
|
199
199
|
*/
|
|
200
|
-
v1CreateWebhookConfiguration: (
|
|
201
|
-
// verify required parameter '
|
|
202
|
-
assertParamExists('v1CreateWebhookConfiguration', '
|
|
200
|
+
v1CreateWebhookConfiguration: (v1UpdateWebhookConfigurationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
201
|
+
// verify required parameter 'v1UpdateWebhookConfigurationRequest' is not null or undefined
|
|
202
|
+
assertParamExists('v1CreateWebhookConfiguration', 'v1UpdateWebhookConfigurationRequest', v1UpdateWebhookConfigurationRequest);
|
|
203
203
|
const localVarPath = `/v1/communications/webhook`;
|
|
204
204
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
205
205
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -218,14 +218,14 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
218
218
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
219
219
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
220
220
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
221
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
221
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration);
|
|
222
222
|
return {
|
|
223
223
|
url: toPathString(localVarUrlObj),
|
|
224
224
|
options: localVarRequestOptions,
|
|
225
225
|
};
|
|
226
226
|
}),
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* Delete an organization target.
|
|
229
229
|
* @param {string} satelliteTargetId
|
|
230
230
|
* @param {*} [options] Override http request option.
|
|
231
231
|
* @throws {RequiredError}
|
|
@@ -259,8 +259,8 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
259
259
|
};
|
|
260
260
|
}),
|
|
261
261
|
/**
|
|
262
|
-
* Delete
|
|
263
|
-
* @param {string} id
|
|
262
|
+
* Delete a webhook configuration.
|
|
263
|
+
* @param {string} id
|
|
264
264
|
* @param {*} [options] Override http request option.
|
|
265
265
|
* @throws {RequiredError}
|
|
266
266
|
*/
|
|
@@ -293,7 +293,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
293
293
|
};
|
|
294
294
|
}),
|
|
295
295
|
/**
|
|
296
|
-
*
|
|
296
|
+
* Get an image set.
|
|
297
297
|
* @param {string} id
|
|
298
298
|
* @param {*} [options] Override http request option.
|
|
299
299
|
* @throws {RequiredError}
|
|
@@ -327,7 +327,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
327
327
|
};
|
|
328
328
|
}),
|
|
329
329
|
/**
|
|
330
|
-
*
|
|
330
|
+
* Get an image.
|
|
331
331
|
* @param {string} imageId
|
|
332
332
|
* @param {*} [options] Override http request option.
|
|
333
333
|
* @throws {RequiredError}
|
|
@@ -361,7 +361,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
361
361
|
};
|
|
362
362
|
}),
|
|
363
363
|
/**
|
|
364
|
-
*
|
|
364
|
+
* Get image set images.
|
|
365
365
|
* @param {Array<string>} imageSets
|
|
366
366
|
* @param {*} [options] Override http request option.
|
|
367
367
|
* @throws {RequiredError}
|
|
@@ -395,7 +395,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
395
395
|
};
|
|
396
396
|
}),
|
|
397
397
|
/**
|
|
398
|
-
*
|
|
398
|
+
* Get image sets.
|
|
399
399
|
* @param {*} [options] Override http request option.
|
|
400
400
|
* @throws {RequiredError}
|
|
401
401
|
*/
|
|
@@ -461,7 +461,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
461
461
|
};
|
|
462
462
|
}),
|
|
463
463
|
/**
|
|
464
|
-
*
|
|
464
|
+
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
465
465
|
* @param {*} [options] Override http request option.
|
|
466
466
|
* @throws {RequiredError}
|
|
467
467
|
*/
|
|
@@ -490,8 +490,8 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
490
490
|
}),
|
|
491
491
|
/**
|
|
492
492
|
* The available satellite objects that the OurSky platform can currently track.
|
|
493
|
-
* @param {OrbitType} [orbitType]
|
|
494
|
-
* @param {string} [noradId]
|
|
493
|
+
* @param {OrbitType} [orbitType]
|
|
494
|
+
* @param {string} [noradId]
|
|
495
495
|
* @param {*} [options] Override http request option.
|
|
496
496
|
* @throws {RequiredError}
|
|
497
497
|
*/
|
|
@@ -525,7 +525,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
525
525
|
};
|
|
526
526
|
}),
|
|
527
527
|
/**
|
|
528
|
-
*
|
|
528
|
+
* Get a TDM.
|
|
529
529
|
* @param {string} tdmId
|
|
530
530
|
* @param {*} [options] Override http request option.
|
|
531
531
|
* @throws {RequiredError}
|
|
@@ -597,7 +597,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
597
597
|
};
|
|
598
598
|
}),
|
|
599
599
|
/**
|
|
600
|
-
* Get
|
|
600
|
+
* Get webhook configurations.
|
|
601
601
|
* @param {*} [options] Override http request option.
|
|
602
602
|
* @throws {RequiredError}
|
|
603
603
|
*/
|
|
@@ -626,13 +626,13 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
626
626
|
}),
|
|
627
627
|
/**
|
|
628
628
|
* 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.
|
|
629
|
-
* @param {
|
|
629
|
+
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
630
630
|
* @param {*} [options] Override http request option.
|
|
631
631
|
* @throws {RequiredError}
|
|
632
632
|
*/
|
|
633
|
-
v1UpdateEmailConfiguration: (
|
|
634
|
-
// verify required parameter '
|
|
635
|
-
assertParamExists('v1UpdateEmailConfiguration', '
|
|
633
|
+
v1UpdateEmailConfiguration: (v1UpdateEmailConfigurationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
634
|
+
// verify required parameter 'v1UpdateEmailConfigurationRequest' is not null or undefined
|
|
635
|
+
assertParamExists('v1UpdateEmailConfiguration', 'v1UpdateEmailConfigurationRequest', v1UpdateEmailConfigurationRequest);
|
|
636
636
|
const localVarPath = `/v1/communications/email`;
|
|
637
637
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
638
638
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -651,7 +651,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
651
651
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
652
652
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
653
653
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
654
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
654
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateEmailConfigurationRequest, localVarRequestOptions, configuration);
|
|
655
655
|
return {
|
|
656
656
|
url: toPathString(localVarUrlObj),
|
|
657
657
|
options: localVarRequestOptions,
|
|
@@ -667,55 +667,55 @@ export const DefaultApiFp = function (configuration) {
|
|
|
667
667
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration);
|
|
668
668
|
return {
|
|
669
669
|
/**
|
|
670
|
-
*
|
|
671
|
-
* @param {
|
|
670
|
+
* Create an image set.
|
|
671
|
+
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
672
672
|
* @param {*} [options] Override http request option.
|
|
673
673
|
* @throws {RequiredError}
|
|
674
674
|
*/
|
|
675
|
-
v1CreateImageSet(
|
|
675
|
+
v1CreateImageSet(v1CreateImageSetRequest, options) {
|
|
676
676
|
return __awaiter(this, void 0, void 0, function* () {
|
|
677
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSet(
|
|
677
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSet(v1CreateImageSetRequest, options);
|
|
678
678
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
679
679
|
});
|
|
680
680
|
},
|
|
681
681
|
/**
|
|
682
|
-
*
|
|
683
|
-
* @param {
|
|
682
|
+
* Create an image set image.
|
|
683
|
+
* @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
|
|
684
684
|
* @param {*} [options] Override http request option.
|
|
685
685
|
* @throws {RequiredError}
|
|
686
686
|
*/
|
|
687
|
-
v1CreateImageSetImage(
|
|
687
|
+
v1CreateImageSetImage(v1CreateImageSetImageRequest, options) {
|
|
688
688
|
return __awaiter(this, void 0, void 0, function* () {
|
|
689
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSetImage(
|
|
689
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateImageSetImage(v1CreateImageSetImageRequest, options);
|
|
690
690
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
691
691
|
});
|
|
692
692
|
},
|
|
693
693
|
/**
|
|
694
|
-
* 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](#
|
|
695
|
-
* @param {
|
|
694
|
+
* 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.
|
|
695
|
+
* @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
|
|
696
696
|
* @param {*} [options] Override http request option.
|
|
697
697
|
* @throws {RequiredError}
|
|
698
698
|
*/
|
|
699
|
-
v1CreateOrganizationTarget(
|
|
699
|
+
v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest, options) {
|
|
700
700
|
return __awaiter(this, void 0, void 0, function* () {
|
|
701
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateOrganizationTarget(
|
|
701
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest, options);
|
|
702
702
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
703
703
|
});
|
|
704
704
|
},
|
|
705
705
|
/**
|
|
706
706
|
* 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.
|
|
707
|
-
* @param {
|
|
707
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
708
708
|
* @param {*} [options] Override http request option.
|
|
709
709
|
* @throws {RequiredError}
|
|
710
710
|
*/
|
|
711
|
-
v1CreateWebhookConfiguration(
|
|
711
|
+
v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options) {
|
|
712
712
|
return __awaiter(this, void 0, void 0, function* () {
|
|
713
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateWebhookConfiguration(
|
|
713
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options);
|
|
714
714
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
715
715
|
});
|
|
716
716
|
},
|
|
717
717
|
/**
|
|
718
|
-
*
|
|
718
|
+
* Delete an organization target.
|
|
719
719
|
* @param {string} satelliteTargetId
|
|
720
720
|
* @param {*} [options] Override http request option.
|
|
721
721
|
* @throws {RequiredError}
|
|
@@ -727,8 +727,8 @@ export const DefaultApiFp = function (configuration) {
|
|
|
727
727
|
});
|
|
728
728
|
},
|
|
729
729
|
/**
|
|
730
|
-
* Delete
|
|
731
|
-
* @param {string} id
|
|
730
|
+
* Delete a webhook configuration.
|
|
731
|
+
* @param {string} id
|
|
732
732
|
* @param {*} [options] Override http request option.
|
|
733
733
|
* @throws {RequiredError}
|
|
734
734
|
*/
|
|
@@ -739,7 +739,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
739
739
|
});
|
|
740
740
|
},
|
|
741
741
|
/**
|
|
742
|
-
*
|
|
742
|
+
* Get an image set.
|
|
743
743
|
* @param {string} id
|
|
744
744
|
* @param {*} [options] Override http request option.
|
|
745
745
|
* @throws {RequiredError}
|
|
@@ -751,7 +751,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
751
751
|
});
|
|
752
752
|
},
|
|
753
753
|
/**
|
|
754
|
-
*
|
|
754
|
+
* Get an image.
|
|
755
755
|
* @param {string} imageId
|
|
756
756
|
* @param {*} [options] Override http request option.
|
|
757
757
|
* @throws {RequiredError}
|
|
@@ -763,7 +763,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
763
763
|
});
|
|
764
764
|
},
|
|
765
765
|
/**
|
|
766
|
-
*
|
|
766
|
+
* Get image set images.
|
|
767
767
|
* @param {Array<string>} imageSets
|
|
768
768
|
* @param {*} [options] Override http request option.
|
|
769
769
|
* @throws {RequiredError}
|
|
@@ -775,7 +775,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
775
775
|
});
|
|
776
776
|
},
|
|
777
777
|
/**
|
|
778
|
-
*
|
|
778
|
+
* Get image sets.
|
|
779
779
|
* @param {*} [options] Override http request option.
|
|
780
780
|
* @throws {RequiredError}
|
|
781
781
|
*/
|
|
@@ -799,7 +799,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
799
799
|
});
|
|
800
800
|
},
|
|
801
801
|
/**
|
|
802
|
-
*
|
|
802
|
+
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
803
803
|
* @param {*} [options] Override http request option.
|
|
804
804
|
* @throws {RequiredError}
|
|
805
805
|
*/
|
|
@@ -811,8 +811,8 @@ export const DefaultApiFp = function (configuration) {
|
|
|
811
811
|
},
|
|
812
812
|
/**
|
|
813
813
|
* The available satellite objects that the OurSky platform can currently track.
|
|
814
|
-
* @param {OrbitType} [orbitType]
|
|
815
|
-
* @param {string} [noradId]
|
|
814
|
+
* @param {OrbitType} [orbitType]
|
|
815
|
+
* @param {string} [noradId]
|
|
816
816
|
* @param {*} [options] Override http request option.
|
|
817
817
|
* @throws {RequiredError}
|
|
818
818
|
*/
|
|
@@ -823,7 +823,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
823
823
|
});
|
|
824
824
|
},
|
|
825
825
|
/**
|
|
826
|
-
*
|
|
826
|
+
* Get a TDM.
|
|
827
827
|
* @param {string} tdmId
|
|
828
828
|
* @param {*} [options] Override http request option.
|
|
829
829
|
* @throws {RequiredError}
|
|
@@ -848,7 +848,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
848
848
|
});
|
|
849
849
|
},
|
|
850
850
|
/**
|
|
851
|
-
* Get
|
|
851
|
+
* Get webhook configurations.
|
|
852
852
|
* @param {*} [options] Override http request option.
|
|
853
853
|
* @throws {RequiredError}
|
|
854
854
|
*/
|
|
@@ -860,13 +860,13 @@ export const DefaultApiFp = function (configuration) {
|
|
|
860
860
|
},
|
|
861
861
|
/**
|
|
862
862
|
* 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.
|
|
863
|
-
* @param {
|
|
863
|
+
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
864
864
|
* @param {*} [options] Override http request option.
|
|
865
865
|
* @throws {RequiredError}
|
|
866
866
|
*/
|
|
867
|
-
v1UpdateEmailConfiguration(
|
|
867
|
+
v1UpdateEmailConfiguration(v1UpdateEmailConfigurationRequest, options) {
|
|
868
868
|
return __awaiter(this, void 0, void 0, function* () {
|
|
869
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1UpdateEmailConfiguration(
|
|
869
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1UpdateEmailConfiguration(v1UpdateEmailConfigurationRequest, options);
|
|
870
870
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
871
871
|
});
|
|
872
872
|
},
|
|
@@ -880,31 +880,31 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
880
880
|
const localVarFp = DefaultApiFp(configuration);
|
|
881
881
|
return {
|
|
882
882
|
/**
|
|
883
|
-
*
|
|
883
|
+
* Create an image set.
|
|
884
884
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
885
885
|
* @param {*} [options] Override http request option.
|
|
886
886
|
* @throws {RequiredError}
|
|
887
887
|
*/
|
|
888
888
|
v1CreateImageSet(requestParameters, options) {
|
|
889
|
-
return localVarFp.v1CreateImageSet(requestParameters.
|
|
889
|
+
return localVarFp.v1CreateImageSet(requestParameters.v1CreateImageSetRequest, options).then((request) => request(axios, basePath));
|
|
890
890
|
},
|
|
891
891
|
/**
|
|
892
|
-
*
|
|
892
|
+
* Create an image set image.
|
|
893
893
|
* @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
|
|
894
894
|
* @param {*} [options] Override http request option.
|
|
895
895
|
* @throws {RequiredError}
|
|
896
896
|
*/
|
|
897
897
|
v1CreateImageSetImage(requestParameters, options) {
|
|
898
|
-
return localVarFp.v1CreateImageSetImage(requestParameters.
|
|
898
|
+
return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(axios, basePath));
|
|
899
899
|
},
|
|
900
900
|
/**
|
|
901
|
-
* 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](#
|
|
901
|
+
* 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.
|
|
902
902
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
903
903
|
* @param {*} [options] Override http request option.
|
|
904
904
|
* @throws {RequiredError}
|
|
905
905
|
*/
|
|
906
906
|
v1CreateOrganizationTarget(requestParameters, options) {
|
|
907
|
-
return localVarFp.v1CreateOrganizationTarget(requestParameters.
|
|
907
|
+
return localVarFp.v1CreateOrganizationTarget(requestParameters.v1CreateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
|
|
908
908
|
},
|
|
909
909
|
/**
|
|
910
910
|
* 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.
|
|
@@ -913,10 +913,10 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
913
913
|
* @throws {RequiredError}
|
|
914
914
|
*/
|
|
915
915
|
v1CreateWebhookConfiguration(requestParameters, options) {
|
|
916
|
-
return localVarFp.v1CreateWebhookConfiguration(requestParameters.
|
|
916
|
+
return localVarFp.v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
917
917
|
},
|
|
918
918
|
/**
|
|
919
|
-
*
|
|
919
|
+
* Delete an organization target.
|
|
920
920
|
* @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
|
|
921
921
|
* @param {*} [options] Override http request option.
|
|
922
922
|
* @throws {RequiredError}
|
|
@@ -925,7 +925,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
925
925
|
return localVarFp.v1DeleteOrganizationTarget(requestParameters.satelliteTargetId, options).then((request) => request(axios, basePath));
|
|
926
926
|
},
|
|
927
927
|
/**
|
|
928
|
-
* Delete
|
|
928
|
+
* Delete a webhook configuration.
|
|
929
929
|
* @param {DefaultApiV1DeleteWebhookConfigurationRequest} requestParameters Request parameters.
|
|
930
930
|
* @param {*} [options] Override http request option.
|
|
931
931
|
* @throws {RequiredError}
|
|
@@ -934,7 +934,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
934
934
|
return localVarFp.v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
935
935
|
},
|
|
936
936
|
/**
|
|
937
|
-
*
|
|
937
|
+
* Get an image set.
|
|
938
938
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
939
939
|
* @param {*} [options] Override http request option.
|
|
940
940
|
* @throws {RequiredError}
|
|
@@ -943,7 +943,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
943
943
|
return localVarFp.v1GetImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
944
944
|
},
|
|
945
945
|
/**
|
|
946
|
-
*
|
|
946
|
+
* Get an image.
|
|
947
947
|
* @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
|
|
948
948
|
* @param {*} [options] Override http request option.
|
|
949
949
|
* @throws {RequiredError}
|
|
@@ -952,7 +952,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
952
952
|
return localVarFp.v1GetImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
953
953
|
},
|
|
954
954
|
/**
|
|
955
|
-
*
|
|
955
|
+
* Get image set images.
|
|
956
956
|
* @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
|
|
957
957
|
* @param {*} [options] Override http request option.
|
|
958
958
|
* @throws {RequiredError}
|
|
@@ -961,7 +961,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
961
961
|
return localVarFp.v1GetImageSetImages(requestParameters.imageSets, options).then((request) => request(axios, basePath));
|
|
962
962
|
},
|
|
963
963
|
/**
|
|
964
|
-
*
|
|
964
|
+
* Get image sets.
|
|
965
965
|
* @param {*} [options] Override http request option.
|
|
966
966
|
* @throws {RequiredError}
|
|
967
967
|
*/
|
|
@@ -978,7 +978,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
978
978
|
return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
|
|
979
979
|
},
|
|
980
980
|
/**
|
|
981
|
-
*
|
|
981
|
+
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
982
982
|
* @param {*} [options] Override http request option.
|
|
983
983
|
* @throws {RequiredError}
|
|
984
984
|
*/
|
|
@@ -995,7 +995,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
995
995
|
return localVarFp.v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
|
|
996
996
|
},
|
|
997
997
|
/**
|
|
998
|
-
*
|
|
998
|
+
* Get a TDM.
|
|
999
999
|
* @param {DefaultApiV1GetTdmRequest} requestParameters Request parameters.
|
|
1000
1000
|
* @param {*} [options] Override http request option.
|
|
1001
1001
|
* @throws {RequiredError}
|
|
@@ -1013,7 +1013,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1013
1013
|
return localVarFp.v1GetTdms(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
|
|
1014
1014
|
},
|
|
1015
1015
|
/**
|
|
1016
|
-
* Get
|
|
1016
|
+
* Get webhook configurations.
|
|
1017
1017
|
* @param {*} [options] Override http request option.
|
|
1018
1018
|
* @throws {RequiredError}
|
|
1019
1019
|
*/
|
|
@@ -1027,7 +1027,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1027
1027
|
* @throws {RequiredError}
|
|
1028
1028
|
*/
|
|
1029
1029
|
v1UpdateEmailConfiguration(requestParameters, options) {
|
|
1030
|
-
return localVarFp.v1UpdateEmailConfiguration(requestParameters.
|
|
1030
|
+
return localVarFp.v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
1031
1031
|
},
|
|
1032
1032
|
};
|
|
1033
1033
|
};
|
|
@@ -1039,34 +1039,34 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1039
1039
|
*/
|
|
1040
1040
|
export class DefaultApi extends BaseAPI {
|
|
1041
1041
|
/**
|
|
1042
|
-
*
|
|
1042
|
+
* Create an image set.
|
|
1043
1043
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
1044
1044
|
* @param {*} [options] Override http request option.
|
|
1045
1045
|
* @throws {RequiredError}
|
|
1046
1046
|
* @memberof DefaultApi
|
|
1047
1047
|
*/
|
|
1048
1048
|
v1CreateImageSet(requestParameters, options) {
|
|
1049
|
-
return DefaultApiFp(this.configuration).v1CreateImageSet(requestParameters.
|
|
1049
|
+
return DefaultApiFp(this.configuration).v1CreateImageSet(requestParameters.v1CreateImageSetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1050
1050
|
}
|
|
1051
1051
|
/**
|
|
1052
|
-
*
|
|
1052
|
+
* Create an image set image.
|
|
1053
1053
|
* @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
|
|
1054
1054
|
* @param {*} [options] Override http request option.
|
|
1055
1055
|
* @throws {RequiredError}
|
|
1056
1056
|
* @memberof DefaultApi
|
|
1057
1057
|
*/
|
|
1058
1058
|
v1CreateImageSetImage(requestParameters, options) {
|
|
1059
|
-
return DefaultApiFp(this.configuration).v1CreateImageSetImage(requestParameters.
|
|
1059
|
+
return DefaultApiFp(this.configuration).v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1060
1060
|
}
|
|
1061
1061
|
/**
|
|
1062
|
-
* 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](#
|
|
1062
|
+
* 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.
|
|
1063
1063
|
* @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
|
|
1064
1064
|
* @param {*} [options] Override http request option.
|
|
1065
1065
|
* @throws {RequiredError}
|
|
1066
1066
|
* @memberof DefaultApi
|
|
1067
1067
|
*/
|
|
1068
1068
|
v1CreateOrganizationTarget(requestParameters, options) {
|
|
1069
|
-
return DefaultApiFp(this.configuration).v1CreateOrganizationTarget(requestParameters.
|
|
1069
|
+
return DefaultApiFp(this.configuration).v1CreateOrganizationTarget(requestParameters.v1CreateOrganizationTargetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1070
1070
|
}
|
|
1071
1071
|
/**
|
|
1072
1072
|
* 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.
|
|
@@ -1076,10 +1076,10 @@ export class DefaultApi extends BaseAPI {
|
|
|
1076
1076
|
* @memberof DefaultApi
|
|
1077
1077
|
*/
|
|
1078
1078
|
v1CreateWebhookConfiguration(requestParameters, options) {
|
|
1079
|
-
return DefaultApiFp(this.configuration).v1CreateWebhookConfiguration(requestParameters.
|
|
1079
|
+
return DefaultApiFp(this.configuration).v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1080
1080
|
}
|
|
1081
1081
|
/**
|
|
1082
|
-
*
|
|
1082
|
+
* Delete an organization target.
|
|
1083
1083
|
* @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
|
|
1084
1084
|
* @param {*} [options] Override http request option.
|
|
1085
1085
|
* @throws {RequiredError}
|
|
@@ -1089,7 +1089,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1089
1089
|
return DefaultApiFp(this.configuration).v1DeleteOrganizationTarget(requestParameters.satelliteTargetId, options).then((request) => request(this.axios, this.basePath));
|
|
1090
1090
|
}
|
|
1091
1091
|
/**
|
|
1092
|
-
* Delete
|
|
1092
|
+
* Delete a webhook configuration.
|
|
1093
1093
|
* @param {DefaultApiV1DeleteWebhookConfigurationRequest} requestParameters Request parameters.
|
|
1094
1094
|
* @param {*} [options] Override http request option.
|
|
1095
1095
|
* @throws {RequiredError}
|
|
@@ -1099,7 +1099,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1099
1099
|
return DefaultApiFp(this.configuration).v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
1100
1100
|
}
|
|
1101
1101
|
/**
|
|
1102
|
-
*
|
|
1102
|
+
* Get an image set.
|
|
1103
1103
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
1104
1104
|
* @param {*} [options] Override http request option.
|
|
1105
1105
|
* @throws {RequiredError}
|
|
@@ -1109,7 +1109,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1109
1109
|
return DefaultApiFp(this.configuration).v1GetImageSet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
1110
1110
|
}
|
|
1111
1111
|
/**
|
|
1112
|
-
*
|
|
1112
|
+
* Get an image.
|
|
1113
1113
|
* @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
|
|
1114
1114
|
* @param {*} [options] Override http request option.
|
|
1115
1115
|
* @throws {RequiredError}
|
|
@@ -1119,7 +1119,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1119
1119
|
return DefaultApiFp(this.configuration).v1GetImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
1120
1120
|
}
|
|
1121
1121
|
/**
|
|
1122
|
-
*
|
|
1122
|
+
* Get image set images.
|
|
1123
1123
|
* @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
|
|
1124
1124
|
* @param {*} [options] Override http request option.
|
|
1125
1125
|
* @throws {RequiredError}
|
|
@@ -1129,7 +1129,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1129
1129
|
return DefaultApiFp(this.configuration).v1GetImageSetImages(requestParameters.imageSets, options).then((request) => request(this.axios, this.basePath));
|
|
1130
1130
|
}
|
|
1131
1131
|
/**
|
|
1132
|
-
*
|
|
1132
|
+
* Get image sets.
|
|
1133
1133
|
* @param {*} [options] Override http request option.
|
|
1134
1134
|
* @throws {RequiredError}
|
|
1135
1135
|
* @memberof DefaultApi
|
|
@@ -1148,7 +1148,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1148
1148
|
return DefaultApiFp(this.configuration).v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
1149
1149
|
}
|
|
1150
1150
|
/**
|
|
1151
|
-
*
|
|
1151
|
+
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
1152
1152
|
* @param {*} [options] Override http request option.
|
|
1153
1153
|
* @throws {RequiredError}
|
|
1154
1154
|
* @memberof DefaultApi
|
|
@@ -1167,7 +1167,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1167
1167
|
return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
|
|
1168
1168
|
}
|
|
1169
1169
|
/**
|
|
1170
|
-
*
|
|
1170
|
+
* Get a TDM.
|
|
1171
1171
|
* @param {DefaultApiV1GetTdmRequest} requestParameters Request parameters.
|
|
1172
1172
|
* @param {*} [options] Override http request option.
|
|
1173
1173
|
* @throws {RequiredError}
|
|
@@ -1187,7 +1187,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1187
1187
|
return DefaultApiFp(this.configuration).v1GetTdms(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
1188
1188
|
}
|
|
1189
1189
|
/**
|
|
1190
|
-
* Get
|
|
1190
|
+
* Get webhook configurations.
|
|
1191
1191
|
* @param {*} [options] Override http request option.
|
|
1192
1192
|
* @throws {RequiredError}
|
|
1193
1193
|
* @memberof DefaultApi
|
|
@@ -1203,6 +1203,6 @@ export class DefaultApi extends BaseAPI {
|
|
|
1203
1203
|
* @memberof DefaultApi
|
|
1204
1204
|
*/
|
|
1205
1205
|
v1UpdateEmailConfiguration(requestParameters, options) {
|
|
1206
|
-
return DefaultApiFp(this.configuration).v1UpdateEmailConfiguration(requestParameters.
|
|
1206
|
+
return DefaultApiFp(this.configuration).v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1207
1207
|
}
|
|
1208
1208
|
}
|