@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/api.ts CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
5
- * Once your organization has been signed up for the platform you will be able to log in and use the APIs under the \"Default\" section. Login by navigating to `https://api.<dev|prod>.oursky.ai/v1/auth/login` and use your email that ends in your organization domain. After entering your email you will receive a one time use email with a code, use that code to complete the login flow. After completing the login flow the browser will re-direct you to a page that displays a json object with your API token as the value of the `jwt` key. This is the only time your token will be displayed to you so please save it. To use this documentation site please select the \"Authorize\" button at the top right of the page and enter your token and select the correct environment (dev or prod) in the \"Servers\" dropdown. If you are using making api calls directly please ensure you include the header `Authorization: Bearer <your token>`. The basic api flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#default/v1GetSatelliteTargets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#default/v1CreateOrganizationTarget) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#default/v1CreateWebhookConfiguration) endpoint to receive TDMs automatically (preferred) or use the [tdms](#default/v1GetTdms) endpoint to poll for TDMs.
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.1741
7
+ * The version of the OpenAPI document: 1.3.1783
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -67,7 +67,7 @@ export interface AstrometricOffsets {
67
67
  'fwhmAverage': number;
68
68
  }
69
69
  /**
70
- * successful action
70
+ *
71
71
  * @export
72
72
  * @interface EmptySuccess
73
73
  */
@@ -159,7 +159,7 @@ export interface ObservationResult {
159
159
  'apparentMagnitude'?: number;
160
160
  }
161
161
  /**
162
- * orbit type
162
+ *
163
163
  * @export
164
164
  * @enum {string}
165
165
  */
@@ -179,7 +179,7 @@ export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
179
179
 
180
180
 
181
181
  /**
182
- * successful create
182
+ *
183
183
  * @export
184
184
  * @interface SuccessfulCreate
185
185
  */
@@ -192,7 +192,7 @@ export interface SuccessfulCreate {
192
192
  'id': string;
193
193
  }
194
194
  /**
195
- * target tracking type
195
+ *
196
196
  * @export
197
197
  * @enum {string}
198
198
  */
@@ -206,66 +206,20 @@ export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
206
206
 
207
207
 
208
208
  /**
209
- * create image set
210
- * @export
211
- * @interface V1CreateImageSet
212
- */
213
- export interface V1CreateImageSet {
214
- /**
215
- *
216
- * @type {string}
217
- * @memberof V1CreateImageSet
218
- */
219
- 'targetId': string;
220
- /**
221
- *
222
- * @type {string}
223
- * @memberof V1CreateImageSet
224
- */
225
- 'nodeId': string;
226
- /**
227
- *
228
- * @type {string}
229
- * @memberof V1CreateImageSet
230
- */
231
- 'observationId'?: string;
232
- /**
233
- *
234
- * @type {string}
235
- * @memberof V1CreateImageSet
236
- * @deprecated
237
- */
238
- 'ourskyPluginVersion'?: string;
239
- /**
240
- *
241
- * @type {TrackingType}
242
- * @memberof V1CreateImageSet
243
- */
244
- 'trackingType'?: TrackingType;
245
- /**
246
- *
247
- * @type {FilterType}
248
- * @memberof V1CreateImageSet
249
- */
250
- 'filterType'?: FilterType;
251
- }
252
-
253
-
254
- /**
255
- * create image set image
209
+ *
256
210
  * @export
257
- * @interface V1CreateImageSetImage
211
+ * @interface V1CreateImageSetImageRequest
258
212
  */
259
- export interface V1CreateImageSetImage {
213
+ export interface V1CreateImageSetImageRequest {
260
214
  /**
261
215
  *
262
216
  * @type {string}
263
- * @memberof V1CreateImageSetImage
217
+ * @memberof V1CreateImageSetImageRequest
264
218
  */
265
219
  'imageSetId': string;
266
220
  }
267
221
  /**
268
- * successful create of image set image
222
+ *
269
223
  * @export
270
224
  * @interface V1CreateImageSetImageResponse
271
225
  */
@@ -286,49 +240,70 @@ export interface V1CreateImageSetImageResponse {
286
240
  /**
287
241
  *
288
242
  * @export
289
- * @interface V1GetOrganizationTarget
243
+ * @interface V1CreateImageSetRequest
290
244
  */
291
- export interface V1GetOrganizationTarget {
245
+ export interface V1CreateImageSetRequest {
292
246
  /**
293
247
  *
294
248
  * @type {string}
295
- * @memberof V1GetOrganizationTarget
249
+ * @memberof V1CreateImageSetRequest
296
250
  */
297
- 'id': string;
251
+ 'targetId': string;
298
252
  /**
299
253
  *
300
- * @type {V1SatelliteTarget}
301
- * @memberof V1GetOrganizationTarget
254
+ * @type {string}
255
+ * @memberof V1CreateImageSetRequest
302
256
  */
303
- 'satelliteTarget': V1SatelliteTarget;
257
+ 'nodeId': string;
304
258
  /**
305
259
  *
306
260
  * @type {string}
307
- * @memberof V1GetOrganizationTarget
261
+ * @memberof V1CreateImageSetRequest
308
262
  */
309
- 'createdBy': string;
263
+ 'observationId'?: string;
264
+ /**
265
+ *
266
+ * @type {TrackingType}
267
+ * @memberof V1CreateImageSetRequest
268
+ */
269
+ 'trackingType'?: TrackingType;
270
+ /**
271
+ *
272
+ * @type {FilterType}
273
+ * @memberof V1CreateImageSetRequest
274
+ */
275
+ 'filterType'?: FilterType;
276
+ }
277
+
278
+
279
+ /**
280
+ *
281
+ * @export
282
+ * @interface V1CreateOrganizationTargetRequest
283
+ */
284
+ export interface V1CreateOrganizationTargetRequest {
310
285
  /**
311
286
  *
312
287
  * @type {string}
313
- * @memberof V1GetOrganizationTarget
288
+ * @memberof V1CreateOrganizationTargetRequest
314
289
  */
315
- 'createdAt': string;
290
+ 'satelliteTargetId': string;
316
291
  }
317
292
  /**
318
- * v1GetSatelliteTargets
293
+ *
319
294
  * @export
320
- * @interface V1GetSatelliteTargets
295
+ * @interface V1GetSatelliteTargetsResponse
321
296
  */
322
- export interface V1GetSatelliteTargets {
297
+ export interface V1GetSatelliteTargetsResponse {
323
298
  /**
324
299
  *
325
300
  * @type {Array<V1SatelliteTarget>}
326
- * @memberof V1GetSatelliteTargets
301
+ * @memberof V1GetSatelliteTargetsResponse
327
302
  */
328
303
  'targets': Array<V1SatelliteTarget>;
329
304
  }
330
305
  /**
331
- * v1GetImageSet
306
+ * An image set represents a contiguous set of observations of the same target captured by the same node.
332
307
  * @export
333
308
  * @interface V1ImageSet
334
309
  */
@@ -403,7 +378,7 @@ export interface V1ImageSet {
403
378
 
404
379
 
405
380
  /**
406
- * v1GetImageSetImage
381
+ * Image Set Image
407
382
  * @export
408
383
  * @interface V1ImageSetImage
409
384
  */
@@ -548,7 +523,7 @@ export interface V1ImageSetImage {
548
523
  'exposureLength': number;
549
524
  }
550
525
  /**
551
- * v1ObservationSequenceResult
526
+ * Observation Sequence Result
552
527
  * @export
553
528
  * @interface V1ObservationSequenceResult
554
529
  */
@@ -566,13 +541,13 @@ export interface V1ObservationSequenceResult {
566
541
  */
567
542
  'targetId': string;
568
543
  /**
569
- * The NORAD ID of the target, if available
544
+ *
570
545
  * @type {string}
571
546
  * @memberof V1ObservationSequenceResult
572
547
  */
573
548
  'noradId'?: string;
574
549
  /**
575
- * An array of image sets. Each image set represents a contiguous set of observations of the same target captured by the same node
550
+ *
576
551
  * @type {Array<V1ObservationSequenceResultImageSetsInner>}
577
552
  * @memberof V1ObservationSequenceResult
578
553
  */
@@ -622,7 +597,7 @@ export interface V1ObservationSequenceResultImageSetsInner {
622
597
  'observationResults': Array<ObservationResult>;
623
598
  }
624
599
  /**
625
- * create an organization target
600
+ *
626
601
  * @export
627
602
  * @interface V1OrganizationTarget
628
603
  */
@@ -632,10 +607,28 @@ export interface V1OrganizationTarget {
632
607
  * @type {string}
633
608
  * @memberof V1OrganizationTarget
634
609
  */
635
- 'satelliteTargetId': string;
610
+ 'id': string;
611
+ /**
612
+ *
613
+ * @type {V1SatelliteTarget}
614
+ * @memberof V1OrganizationTarget
615
+ */
616
+ 'satelliteTarget': V1SatelliteTarget;
617
+ /**
618
+ *
619
+ * @type {string}
620
+ * @memberof V1OrganizationTarget
621
+ */
622
+ 'createdBy': string;
623
+ /**
624
+ *
625
+ * @type {string}
626
+ * @memberof V1OrganizationTarget
627
+ */
628
+ 'createdAt': string;
636
629
  }
637
630
  /**
638
- * v1SatelliteTarget
631
+ * Satellite Target
639
632
  * @export
640
633
  * @interface V1SatelliteTarget
641
634
  */
@@ -668,7 +661,7 @@ export interface V1SatelliteTarget {
668
661
 
669
662
 
670
663
  /**
671
- * v1Tdm
664
+ * TDM
672
665
  * @export
673
666
  * @interface V1Tdm
674
667
  */
@@ -723,45 +716,45 @@ export interface V1Tdm {
723
716
  'createdBy': string;
724
717
  }
725
718
  /**
726
- * update email configuration
719
+ *
727
720
  * @export
728
- * @interface V1UpdateEmailConfiguration
721
+ * @interface V1UpdateEmailConfigurationRequest
729
722
  */
730
- export interface V1UpdateEmailConfiguration {
723
+ export interface V1UpdateEmailConfigurationRequest {
731
724
  /**
732
725
  *
733
726
  * @type {Array<string>}
734
- * @memberof V1UpdateEmailConfiguration
727
+ * @memberof V1UpdateEmailConfigurationRequest
735
728
  */
736
729
  'emails': Array<string>;
737
730
  }
738
731
  /**
739
- * update webhook configuration body
732
+ *
740
733
  * @export
741
- * @interface V1UpdateWebhookConfiguration
734
+ * @interface V1UpdateWebhookConfigurationRequest
742
735
  */
743
- export interface V1UpdateWebhookConfiguration {
736
+ export interface V1UpdateWebhookConfigurationRequest {
744
737
  /**
745
738
  *
746
739
  * @type {string}
747
- * @memberof V1UpdateWebhookConfiguration
740
+ * @memberof V1UpdateWebhookConfigurationRequest
748
741
  */
749
742
  'url': string;
750
743
  /**
751
744
  *
752
745
  * @type {string}
753
- * @memberof V1UpdateWebhookConfiguration
746
+ * @memberof V1UpdateWebhookConfigurationRequest
754
747
  */
755
748
  'secret': string;
756
749
  /**
757
750
  *
758
751
  * @type {Array<WebhookEvent>}
759
- * @memberof V1UpdateWebhookConfiguration
752
+ * @memberof V1UpdateWebhookConfigurationRequest
760
753
  */
761
754
  'events': Array<WebhookEvent>;
762
755
  }
763
756
  /**
764
- * webhook configuration
757
+ *
765
758
  * @export
766
759
  * @interface V1WebhookConfiguration
767
760
  */
@@ -798,7 +791,7 @@ export interface V1WebhookConfiguration {
798
791
  'createdAt': string;
799
792
  }
800
793
  /**
801
- * webhook event types
794
+ *
802
795
  * @export
803
796
  * @enum {string}
804
797
  */
@@ -821,14 +814,14 @@ export type WebhookEvent = typeof WebhookEvent[keyof typeof WebhookEvent];
821
814
  export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) {
822
815
  return {
823
816
  /**
824
- * create an image set
825
- * @param {V1CreateImageSet} v1CreateImageSet request to create the Image Set
817
+ * Create an image set.
818
+ * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
826
819
  * @param {*} [options] Override http request option.
827
820
  * @throws {RequiredError}
828
821
  */
829
- v1CreateImageSet: async (v1CreateImageSet: V1CreateImageSet, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
830
- // verify required parameter 'v1CreateImageSet' is not null or undefined
831
- assertParamExists('v1CreateImageSet', 'v1CreateImageSet', v1CreateImageSet)
822
+ v1CreateImageSet: async (v1CreateImageSetRequest: V1CreateImageSetRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
823
+ // verify required parameter 'v1CreateImageSetRequest' is not null or undefined
824
+ assertParamExists('v1CreateImageSet', 'v1CreateImageSetRequest', v1CreateImageSetRequest)
832
825
  const localVarPath = `/v1/image-set`;
833
826
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
834
827
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -854,7 +847,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
854
847
  setSearchParams(localVarUrlObj, localVarQueryParameter);
855
848
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
856
849
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
857
- localVarRequestOptions.data = serializeDataIfNeeded(v1CreateImageSet, localVarRequestOptions, configuration)
850
+ localVarRequestOptions.data = serializeDataIfNeeded(v1CreateImageSetRequest, localVarRequestOptions, configuration)
858
851
 
859
852
  return {
860
853
  url: toPathString(localVarUrlObj),
@@ -862,14 +855,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
862
855
  };
863
856
  },
864
857
  /**
865
- * create an image set image
866
- * @param {V1CreateImageSetImage} v1CreateImageSetImage request to create an image set image
858
+ * Create an image set image.
859
+ * @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
867
860
  * @param {*} [options] Override http request option.
868
861
  * @throws {RequiredError}
869
862
  */
870
- v1CreateImageSetImage: async (v1CreateImageSetImage: V1CreateImageSetImage, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
871
- // verify required parameter 'v1CreateImageSetImage' is not null or undefined
872
- assertParamExists('v1CreateImageSetImage', 'v1CreateImageSetImage', v1CreateImageSetImage)
863
+ v1CreateImageSetImage: async (v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
864
+ // verify required parameter 'v1CreateImageSetImageRequest' is not null or undefined
865
+ assertParamExists('v1CreateImageSetImage', 'v1CreateImageSetImageRequest', v1CreateImageSetImageRequest)
873
866
  const localVarPath = `/v1/image-set-image`;
874
867
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
875
868
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -895,7 +888,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
895
888
  setSearchParams(localVarUrlObj, localVarQueryParameter);
896
889
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
897
890
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
898
- localVarRequestOptions.data = serializeDataIfNeeded(v1CreateImageSetImage, localVarRequestOptions, configuration)
891
+ localVarRequestOptions.data = serializeDataIfNeeded(v1CreateImageSetImageRequest, localVarRequestOptions, configuration)
899
892
 
900
893
  return {
901
894
  url: toPathString(localVarUrlObj),
@@ -903,14 +896,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
903
896
  };
904
897
  },
905
898
  /**
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](#default/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
- * @param {V1OrganizationTarget} v1OrganizationTarget create organization target
899
+ * 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.
900
+ * @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
908
901
  * @param {*} [options] Override http request option.
909
902
  * @throws {RequiredError}
910
903
  */
911
- v1CreateOrganizationTarget: async (v1OrganizationTarget: V1OrganizationTarget, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
912
- // verify required parameter 'v1OrganizationTarget' is not null or undefined
913
- assertParamExists('v1CreateOrganizationTarget', 'v1OrganizationTarget', v1OrganizationTarget)
904
+ v1CreateOrganizationTarget: async (v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
905
+ // verify required parameter 'v1CreateOrganizationTargetRequest' is not null or undefined
906
+ assertParamExists('v1CreateOrganizationTarget', 'v1CreateOrganizationTargetRequest', v1CreateOrganizationTargetRequest)
914
907
  const localVarPath = `/v1/organization-target`;
915
908
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
916
909
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -936,7 +929,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
936
929
  setSearchParams(localVarUrlObj, localVarQueryParameter);
937
930
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
938
931
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
939
- localVarRequestOptions.data = serializeDataIfNeeded(v1OrganizationTarget, localVarRequestOptions, configuration)
932
+ localVarRequestOptions.data = serializeDataIfNeeded(v1CreateOrganizationTargetRequest, localVarRequestOptions, configuration)
940
933
 
941
934
  return {
942
935
  url: toPathString(localVarUrlObj),
@@ -945,13 +938,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
945
938
  },
946
939
  /**
947
940
  * 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.
948
- * @param {V1UpdateWebhookConfiguration} v1UpdateWebhookConfiguration request to create an organization webhook
941
+ * @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
949
942
  * @param {*} [options] Override http request option.
950
943
  * @throws {RequiredError}
951
944
  */
952
- v1CreateWebhookConfiguration: async (v1UpdateWebhookConfiguration: V1UpdateWebhookConfiguration, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
953
- // verify required parameter 'v1UpdateWebhookConfiguration' is not null or undefined
954
- assertParamExists('v1CreateWebhookConfiguration', 'v1UpdateWebhookConfiguration', v1UpdateWebhookConfiguration)
945
+ v1CreateWebhookConfiguration: async (v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
946
+ // verify required parameter 'v1UpdateWebhookConfigurationRequest' is not null or undefined
947
+ assertParamExists('v1CreateWebhookConfiguration', 'v1UpdateWebhookConfigurationRequest', v1UpdateWebhookConfigurationRequest)
955
948
  const localVarPath = `/v1/communications/webhook`;
956
949
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
957
950
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -977,7 +970,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
977
970
  setSearchParams(localVarUrlObj, localVarQueryParameter);
978
971
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
979
972
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
980
- localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfiguration, localVarRequestOptions, configuration)
973
+ localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration)
981
974
 
982
975
  return {
983
976
  url: toPathString(localVarUrlObj),
@@ -985,7 +978,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
985
978
  };
986
979
  },
987
980
  /**
988
- * delete an organization target
981
+ * Delete an organization target.
989
982
  * @param {string} satelliteTargetId
990
983
  * @param {*} [options] Override http request option.
991
984
  * @throws {RequiredError}
@@ -1027,8 +1020,8 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1027
1020
  };
1028
1021
  },
1029
1022
  /**
1030
- * Delete an existing webhook configuration
1031
- * @param {string} id webhook id
1023
+ * Delete a webhook configuration.
1024
+ * @param {string} id
1032
1025
  * @param {*} [options] Override http request option.
1033
1026
  * @throws {RequiredError}
1034
1027
  */
@@ -1069,7 +1062,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1069
1062
  };
1070
1063
  },
1071
1064
  /**
1072
- * get an image set
1065
+ * Get an image set.
1073
1066
  * @param {string} id
1074
1067
  * @param {*} [options] Override http request option.
1075
1068
  * @throws {RequiredError}
@@ -1111,7 +1104,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1111
1104
  };
1112
1105
  },
1113
1106
  /**
1114
- * get an image
1107
+ * Get an image.
1115
1108
  * @param {string} imageId
1116
1109
  * @param {*} [options] Override http request option.
1117
1110
  * @throws {RequiredError}
@@ -1153,7 +1146,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1153
1146
  };
1154
1147
  },
1155
1148
  /**
1156
- * get image set images
1149
+ * Get image set images.
1157
1150
  * @param {Array<string>} imageSets
1158
1151
  * @param {*} [options] Override http request option.
1159
1152
  * @throws {RequiredError}
@@ -1195,7 +1188,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1195
1188
  };
1196
1189
  },
1197
1190
  /**
1198
- * get image sets for targets observed for your organization
1191
+ * Get image sets.
1199
1192
  * @param {*} [options] Override http request option.
1200
1193
  * @throws {RequiredError}
1201
1194
  */
@@ -1277,7 +1270,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1277
1270
  };
1278
1271
  },
1279
1272
  /**
1280
- * get organization targets see the [create](#default/v1CreateOrganizationTarget) endpoint for more details
1273
+ * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1281
1274
  * @param {*} [options] Override http request option.
1282
1275
  * @throws {RequiredError}
1283
1276
  */
@@ -1313,8 +1306,8 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1313
1306
  },
1314
1307
  /**
1315
1308
  * The available satellite objects that the OurSky platform can currently track.
1316
- * @param {OrbitType} [orbitType] orbit type
1317
- * @param {string} [noradId] norad id
1309
+ * @param {OrbitType} [orbitType]
1310
+ * @param {string} [noradId]
1318
1311
  * @param {*} [options] Override http request option.
1319
1312
  * @throws {RequiredError}
1320
1313
  */
@@ -1357,7 +1350,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1357
1350
  };
1358
1351
  },
1359
1352
  /**
1360
- * get tdm
1353
+ * Get a TDM.
1361
1354
  * @param {string} tdmId
1362
1355
  * @param {*} [options] Override http request option.
1363
1356
  * @throws {RequiredError}
@@ -1446,7 +1439,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1446
1439
  };
1447
1440
  },
1448
1441
  /**
1449
- * Get the currently configured webhooks
1442
+ * Get webhook configurations.
1450
1443
  * @param {*} [options] Override http request option.
1451
1444
  * @throws {RequiredError}
1452
1445
  */
@@ -1482,13 +1475,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1482
1475
  },
1483
1476
  /**
1484
1477
  * 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.
1485
- * @param {V1UpdateEmailConfiguration} v1UpdateEmailConfiguration request to update an organization email preference
1478
+ * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
1486
1479
  * @param {*} [options] Override http request option.
1487
1480
  * @throws {RequiredError}
1488
1481
  */
1489
- v1UpdateEmailConfiguration: async (v1UpdateEmailConfiguration: V1UpdateEmailConfiguration, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1490
- // verify required parameter 'v1UpdateEmailConfiguration' is not null or undefined
1491
- assertParamExists('v1UpdateEmailConfiguration', 'v1UpdateEmailConfiguration', v1UpdateEmailConfiguration)
1482
+ v1UpdateEmailConfiguration: async (v1UpdateEmailConfigurationRequest: V1UpdateEmailConfigurationRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1483
+ // verify required parameter 'v1UpdateEmailConfigurationRequest' is not null or undefined
1484
+ assertParamExists('v1UpdateEmailConfiguration', 'v1UpdateEmailConfigurationRequest', v1UpdateEmailConfigurationRequest)
1492
1485
  const localVarPath = `/v1/communications/email`;
1493
1486
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1494
1487
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1514,7 +1507,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1514
1507
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1515
1508
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1516
1509
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1517
- localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateEmailConfiguration, localVarRequestOptions, configuration)
1510
+ localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateEmailConfigurationRequest, localVarRequestOptions, configuration)
1518
1511
 
1519
1512
  return {
1520
1513
  url: toPathString(localVarUrlObj),
@@ -1532,47 +1525,47 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1532
1525
  const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
1533
1526
  return {
1534
1527
  /**
1535
- * create an image set
1536
- * @param {V1CreateImageSet} v1CreateImageSet request to create the Image Set
1528
+ * Create an image set.
1529
+ * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
1537
1530
  * @param {*} [options] Override http request option.
1538
1531
  * @throws {RequiredError}
1539
1532
  */
1540
- async v1CreateImageSet(v1CreateImageSet: V1CreateImageSet, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
1541
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateImageSet(v1CreateImageSet, options);
1533
+ async v1CreateImageSet(v1CreateImageSetRequest: V1CreateImageSetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
1534
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateImageSet(v1CreateImageSetRequest, options);
1542
1535
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1543
1536
  },
1544
1537
  /**
1545
- * create an image set image
1546
- * @param {V1CreateImageSetImage} v1CreateImageSetImage request to create an image set image
1538
+ * Create an image set image.
1539
+ * @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
1547
1540
  * @param {*} [options] Override http request option.
1548
1541
  * @throws {RequiredError}
1549
1542
  */
1550
- async v1CreateImageSetImage(v1CreateImageSetImage: V1CreateImageSetImage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>> {
1551
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateImageSetImage(v1CreateImageSetImage, options);
1543
+ async v1CreateImageSetImage(v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>> {
1544
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateImageSetImage(v1CreateImageSetImageRequest, options);
1552
1545
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1553
1546
  },
1554
1547
  /**
1555
- * 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](#default/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.
1556
- * @param {V1OrganizationTarget} v1OrganizationTarget create organization target
1548
+ * 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.
1549
+ * @param {V1CreateOrganizationTargetRequest} v1CreateOrganizationTargetRequest
1557
1550
  * @param {*} [options] Override http request option.
1558
1551
  * @throws {RequiredError}
1559
1552
  */
1560
- async v1CreateOrganizationTarget(v1OrganizationTarget: V1OrganizationTarget, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
1561
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateOrganizationTarget(v1OrganizationTarget, options);
1553
+ async v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
1554
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest, options);
1562
1555
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1563
1556
  },
1564
1557
  /**
1565
1558
  * 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.
1566
- * @param {V1UpdateWebhookConfiguration} v1UpdateWebhookConfiguration request to create an organization webhook
1559
+ * @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
1567
1560
  * @param {*} [options] Override http request option.
1568
1561
  * @throws {RequiredError}
1569
1562
  */
1570
- async v1CreateWebhookConfiguration(v1UpdateWebhookConfiguration: V1UpdateWebhookConfiguration, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
1571
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateWebhookConfiguration(v1UpdateWebhookConfiguration, options);
1563
+ async v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
1564
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options);
1572
1565
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1573
1566
  },
1574
1567
  /**
1575
- * delete an organization target
1568
+ * Delete an organization target.
1576
1569
  * @param {string} satelliteTargetId
1577
1570
  * @param {*} [options] Override http request option.
1578
1571
  * @throws {RequiredError}
@@ -1582,8 +1575,8 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1582
1575
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1583
1576
  },
1584
1577
  /**
1585
- * Delete an existing webhook configuration
1586
- * @param {string} id webhook id
1578
+ * Delete a webhook configuration.
1579
+ * @param {string} id
1587
1580
  * @param {*} [options] Override http request option.
1588
1581
  * @throws {RequiredError}
1589
1582
  */
@@ -1592,7 +1585,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1592
1585
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1593
1586
  },
1594
1587
  /**
1595
- * get an image set
1588
+ * Get an image set.
1596
1589
  * @param {string} id
1597
1590
  * @param {*} [options] Override http request option.
1598
1591
  * @throws {RequiredError}
@@ -1602,7 +1595,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1602
1595
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1603
1596
  },
1604
1597
  /**
1605
- * get an image
1598
+ * Get an image.
1606
1599
  * @param {string} imageId
1607
1600
  * @param {*} [options] Override http request option.
1608
1601
  * @throws {RequiredError}
@@ -1612,7 +1605,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1612
1605
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1613
1606
  },
1614
1607
  /**
1615
- * get image set images
1608
+ * Get image set images.
1616
1609
  * @param {Array<string>} imageSets
1617
1610
  * @param {*} [options] Override http request option.
1618
1611
  * @throws {RequiredError}
@@ -1622,7 +1615,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1622
1615
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1623
1616
  },
1624
1617
  /**
1625
- * get image sets for targets observed for your organization
1618
+ * Get image sets.
1626
1619
  * @param {*} [options] Override http request option.
1627
1620
  * @throws {RequiredError}
1628
1621
  */
@@ -1642,27 +1635,27 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1642
1635
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1643
1636
  },
1644
1637
  /**
1645
- * get organization targets see the [create](#default/v1CreateOrganizationTarget) endpoint for more details
1638
+ * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1646
1639
  * @param {*} [options] Override http request option.
1647
1640
  * @throws {RequiredError}
1648
1641
  */
1649
- async v1GetOrganizationTargets(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1GetOrganizationTarget>>> {
1642
+ async v1GetOrganizationTargets(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1OrganizationTarget>>> {
1650
1643
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetOrganizationTargets(options);
1651
1644
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1652
1645
  },
1653
1646
  /**
1654
1647
  * The available satellite objects that the OurSky platform can currently track.
1655
- * @param {OrbitType} [orbitType] orbit type
1656
- * @param {string} [noradId] norad id
1648
+ * @param {OrbitType} [orbitType]
1649
+ * @param {string} [noradId]
1657
1650
  * @param {*} [options] Override http request option.
1658
1651
  * @throws {RequiredError}
1659
1652
  */
1660
- async v1GetSatelliteTargets(orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargets>> {
1653
+ async v1GetSatelliteTargets(orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>> {
1661
1654
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetSatelliteTargets(orbitType, noradId, options);
1662
1655
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1663
1656
  },
1664
1657
  /**
1665
- * get tdm
1658
+ * Get a TDM.
1666
1659
  * @param {string} tdmId
1667
1660
  * @param {*} [options] Override http request option.
1668
1661
  * @throws {RequiredError}
@@ -1683,7 +1676,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1683
1676
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1684
1677
  },
1685
1678
  /**
1686
- * Get the currently configured webhooks
1679
+ * Get webhook configurations.
1687
1680
  * @param {*} [options] Override http request option.
1688
1681
  * @throws {RequiredError}
1689
1682
  */
@@ -1693,12 +1686,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1693
1686
  },
1694
1687
  /**
1695
1688
  * 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.
1696
- * @param {V1UpdateEmailConfiguration} v1UpdateEmailConfiguration request to update an organization email preference
1689
+ * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
1697
1690
  * @param {*} [options] Override http request option.
1698
1691
  * @throws {RequiredError}
1699
1692
  */
1700
- async v1UpdateEmailConfiguration(v1UpdateEmailConfiguration: V1UpdateEmailConfiguration, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
1701
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1UpdateEmailConfiguration(v1UpdateEmailConfiguration, options);
1693
+ async v1UpdateEmailConfiguration(v1UpdateEmailConfigurationRequest: V1UpdateEmailConfigurationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
1694
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1UpdateEmailConfiguration(v1UpdateEmailConfigurationRequest, options);
1702
1695
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1703
1696
  },
1704
1697
  }
@@ -1712,31 +1705,31 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1712
1705
  const localVarFp = DefaultApiFp(configuration)
1713
1706
  return {
1714
1707
  /**
1715
- * create an image set
1708
+ * Create an image set.
1716
1709
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
1717
1710
  * @param {*} [options] Override http request option.
1718
1711
  * @throws {RequiredError}
1719
1712
  */
1720
1713
  v1CreateImageSet(requestParameters: DefaultApiV1CreateImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
1721
- return localVarFp.v1CreateImageSet(requestParameters.v1CreateImageSet, options).then((request) => request(axios, basePath));
1714
+ return localVarFp.v1CreateImageSet(requestParameters.v1CreateImageSetRequest, options).then((request) => request(axios, basePath));
1722
1715
  },
1723
1716
  /**
1724
- * create an image set image
1717
+ * Create an image set image.
1725
1718
  * @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
1726
1719
  * @param {*} [options] Override http request option.
1727
1720
  * @throws {RequiredError}
1728
1721
  */
1729
1722
  v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse> {
1730
- return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImage, options).then((request) => request(axios, basePath));
1723
+ return localVarFp.v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(axios, basePath));
1731
1724
  },
1732
1725
  /**
1733
- * 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](#default/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.
1726
+ * 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.
1734
1727
  * @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
1735
1728
  * @param {*} [options] Override http request option.
1736
1729
  * @throws {RequiredError}
1737
1730
  */
1738
1731
  v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
1739
- return localVarFp.v1CreateOrganizationTarget(requestParameters.v1OrganizationTarget, options).then((request) => request(axios, basePath));
1732
+ return localVarFp.v1CreateOrganizationTarget(requestParameters.v1CreateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
1740
1733
  },
1741
1734
  /**
1742
1735
  * 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.
@@ -1745,10 +1738,10 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1745
1738
  * @throws {RequiredError}
1746
1739
  */
1747
1740
  v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
1748
- return localVarFp.v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfiguration, options).then((request) => request(axios, basePath));
1741
+ return localVarFp.v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
1749
1742
  },
1750
1743
  /**
1751
- * delete an organization target
1744
+ * Delete an organization target.
1752
1745
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
1753
1746
  * @param {*} [options] Override http request option.
1754
1747
  * @throws {RequiredError}
@@ -1757,7 +1750,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1757
1750
  return localVarFp.v1DeleteOrganizationTarget(requestParameters.satelliteTargetId, options).then((request) => request(axios, basePath));
1758
1751
  },
1759
1752
  /**
1760
- * Delete an existing webhook configuration
1753
+ * Delete a webhook configuration.
1761
1754
  * @param {DefaultApiV1DeleteWebhookConfigurationRequest} requestParameters Request parameters.
1762
1755
  * @param {*} [options] Override http request option.
1763
1756
  * @throws {RequiredError}
@@ -1766,7 +1759,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1766
1759
  return localVarFp.v1DeleteWebhookConfiguration(requestParameters.id, options).then((request) => request(axios, basePath));
1767
1760
  },
1768
1761
  /**
1769
- * get an image set
1762
+ * Get an image set.
1770
1763
  * @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
1771
1764
  * @param {*} [options] Override http request option.
1772
1765
  * @throws {RequiredError}
@@ -1775,7 +1768,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1775
1768
  return localVarFp.v1GetImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
1776
1769
  },
1777
1770
  /**
1778
- * get an image
1771
+ * Get an image.
1779
1772
  * @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
1780
1773
  * @param {*} [options] Override http request option.
1781
1774
  * @throws {RequiredError}
@@ -1784,7 +1777,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1784
1777
  return localVarFp.v1GetImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
1785
1778
  },
1786
1779
  /**
1787
- * get image set images
1780
+ * Get image set images.
1788
1781
  * @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
1789
1782
  * @param {*} [options] Override http request option.
1790
1783
  * @throws {RequiredError}
@@ -1793,7 +1786,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1793
1786
  return localVarFp.v1GetImageSetImages(requestParameters.imageSets, options).then((request) => request(axios, basePath));
1794
1787
  },
1795
1788
  /**
1796
- * get image sets for targets observed for your organization
1789
+ * Get image sets.
1797
1790
  * @param {*} [options] Override http request option.
1798
1791
  * @throws {RequiredError}
1799
1792
  */
@@ -1810,11 +1803,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1810
1803
  return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
1811
1804
  },
1812
1805
  /**
1813
- * get organization targets see the [create](#default/v1CreateOrganizationTarget) endpoint for more details
1806
+ * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1814
1807
  * @param {*} [options] Override http request option.
1815
1808
  * @throws {RequiredError}
1816
1809
  */
1817
- v1GetOrganizationTargets(options?: AxiosRequestConfig): AxiosPromise<Array<V1GetOrganizationTarget>> {
1810
+ v1GetOrganizationTargets(options?: AxiosRequestConfig): AxiosPromise<Array<V1OrganizationTarget>> {
1818
1811
  return localVarFp.v1GetOrganizationTargets(options).then((request) => request(axios, basePath));
1819
1812
  },
1820
1813
  /**
@@ -1823,11 +1816,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1823
1816
  * @param {*} [options] Override http request option.
1824
1817
  * @throws {RequiredError}
1825
1818
  */
1826
- v1GetSatelliteTargets(requestParameters: DefaultApiV1GetSatelliteTargetsRequest = {}, options?: AxiosRequestConfig): AxiosPromise<V1GetSatelliteTargets> {
1819
+ v1GetSatelliteTargets(requestParameters: DefaultApiV1GetSatelliteTargetsRequest = {}, options?: AxiosRequestConfig): AxiosPromise<V1GetSatelliteTargetsResponse> {
1827
1820
  return localVarFp.v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
1828
1821
  },
1829
1822
  /**
1830
- * get tdm
1823
+ * Get a TDM.
1831
1824
  * @param {DefaultApiV1GetTdmRequest} requestParameters Request parameters.
1832
1825
  * @param {*} [options] Override http request option.
1833
1826
  * @throws {RequiredError}
@@ -1845,7 +1838,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1845
1838
  return localVarFp.v1GetTdms(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
1846
1839
  },
1847
1840
  /**
1848
- * Get the currently configured webhooks
1841
+ * Get webhook configurations.
1849
1842
  * @param {*} [options] Override http request option.
1850
1843
  * @throws {RequiredError}
1851
1844
  */
@@ -1859,7 +1852,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1859
1852
  * @throws {RequiredError}
1860
1853
  */
1861
1854
  v1UpdateEmailConfiguration(requestParameters: DefaultApiV1UpdateEmailConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
1862
- return localVarFp.v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfiguration, options).then((request) => request(axios, basePath));
1855
+ return localVarFp.v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfigurationRequest, options).then((request) => request(axios, basePath));
1863
1856
  },
1864
1857
  };
1865
1858
  };
@@ -1871,11 +1864,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1871
1864
  */
1872
1865
  export interface DefaultApiV1CreateImageSetRequest {
1873
1866
  /**
1874
- * request to create the Image Set
1875
- * @type {V1CreateImageSet}
1867
+ *
1868
+ * @type {V1CreateImageSetRequest}
1876
1869
  * @memberof DefaultApiV1CreateImageSet
1877
1870
  */
1878
- readonly v1CreateImageSet: V1CreateImageSet
1871
+ readonly v1CreateImageSetRequest: V1CreateImageSetRequest
1879
1872
  }
1880
1873
 
1881
1874
  /**
@@ -1885,11 +1878,11 @@ export interface DefaultApiV1CreateImageSetRequest {
1885
1878
  */
1886
1879
  export interface DefaultApiV1CreateImageSetImageRequest {
1887
1880
  /**
1888
- * request to create an image set image
1889
- * @type {V1CreateImageSetImage}
1881
+ *
1882
+ * @type {V1CreateImageSetImageRequest}
1890
1883
  * @memberof DefaultApiV1CreateImageSetImage
1891
1884
  */
1892
- readonly v1CreateImageSetImage: V1CreateImageSetImage
1885
+ readonly v1CreateImageSetImageRequest: V1CreateImageSetImageRequest
1893
1886
  }
1894
1887
 
1895
1888
  /**
@@ -1899,11 +1892,11 @@ export interface DefaultApiV1CreateImageSetImageRequest {
1899
1892
  */
1900
1893
  export interface DefaultApiV1CreateOrganizationTargetRequest {
1901
1894
  /**
1902
- * create organization target
1903
- * @type {V1OrganizationTarget}
1895
+ *
1896
+ * @type {V1CreateOrganizationTargetRequest}
1904
1897
  * @memberof DefaultApiV1CreateOrganizationTarget
1905
1898
  */
1906
- readonly v1OrganizationTarget: V1OrganizationTarget
1899
+ readonly v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest
1907
1900
  }
1908
1901
 
1909
1902
  /**
@@ -1913,11 +1906,11 @@ export interface DefaultApiV1CreateOrganizationTargetRequest {
1913
1906
  */
1914
1907
  export interface DefaultApiV1CreateWebhookConfigurationRequest {
1915
1908
  /**
1916
- * request to create an organization webhook
1917
- * @type {V1UpdateWebhookConfiguration}
1909
+ *
1910
+ * @type {V1UpdateWebhookConfigurationRequest}
1918
1911
  * @memberof DefaultApiV1CreateWebhookConfiguration
1919
1912
  */
1920
- readonly v1UpdateWebhookConfiguration: V1UpdateWebhookConfiguration
1913
+ readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest
1921
1914
  }
1922
1915
 
1923
1916
  /**
@@ -1941,7 +1934,7 @@ export interface DefaultApiV1DeleteOrganizationTargetRequest {
1941
1934
  */
1942
1935
  export interface DefaultApiV1DeleteWebhookConfigurationRequest {
1943
1936
  /**
1944
- * webhook id
1937
+ *
1945
1938
  * @type {string}
1946
1939
  * @memberof DefaultApiV1DeleteWebhookConfiguration
1947
1940
  */
@@ -2018,14 +2011,14 @@ export interface DefaultApiV1GetObservationSequenceResultsRequest {
2018
2011
  */
2019
2012
  export interface DefaultApiV1GetSatelliteTargetsRequest {
2020
2013
  /**
2021
- * orbit type
2014
+ *
2022
2015
  * @type {OrbitType}
2023
2016
  * @memberof DefaultApiV1GetSatelliteTargets
2024
2017
  */
2025
2018
  readonly orbitType?: OrbitType
2026
2019
 
2027
2020
  /**
2028
- * norad id
2021
+ *
2029
2022
  * @type {string}
2030
2023
  * @memberof DefaultApiV1GetSatelliteTargets
2031
2024
  */
@@ -2074,11 +2067,11 @@ export interface DefaultApiV1GetTdmsRequest {
2074
2067
  */
2075
2068
  export interface DefaultApiV1UpdateEmailConfigurationRequest {
2076
2069
  /**
2077
- * request to update an organization email preference
2078
- * @type {V1UpdateEmailConfiguration}
2070
+ *
2071
+ * @type {V1UpdateEmailConfigurationRequest}
2079
2072
  * @memberof DefaultApiV1UpdateEmailConfiguration
2080
2073
  */
2081
- readonly v1UpdateEmailConfiguration: V1UpdateEmailConfiguration
2074
+ readonly v1UpdateEmailConfigurationRequest: V1UpdateEmailConfigurationRequest
2082
2075
  }
2083
2076
 
2084
2077
  /**
@@ -2089,36 +2082,36 @@ export interface DefaultApiV1UpdateEmailConfigurationRequest {
2089
2082
  */
2090
2083
  export class DefaultApi extends BaseAPI {
2091
2084
  /**
2092
- * create an image set
2085
+ * Create an image set.
2093
2086
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
2094
2087
  * @param {*} [options] Override http request option.
2095
2088
  * @throws {RequiredError}
2096
2089
  * @memberof DefaultApi
2097
2090
  */
2098
2091
  public v1CreateImageSet(requestParameters: DefaultApiV1CreateImageSetRequest, options?: AxiosRequestConfig) {
2099
- return DefaultApiFp(this.configuration).v1CreateImageSet(requestParameters.v1CreateImageSet, options).then((request) => request(this.axios, this.basePath));
2092
+ return DefaultApiFp(this.configuration).v1CreateImageSet(requestParameters.v1CreateImageSetRequest, options).then((request) => request(this.axios, this.basePath));
2100
2093
  }
2101
2094
 
2102
2095
  /**
2103
- * create an image set image
2096
+ * Create an image set image.
2104
2097
  * @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
2105
2098
  * @param {*} [options] Override http request option.
2106
2099
  * @throws {RequiredError}
2107
2100
  * @memberof DefaultApi
2108
2101
  */
2109
2102
  public v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig) {
2110
- return DefaultApiFp(this.configuration).v1CreateImageSetImage(requestParameters.v1CreateImageSetImage, options).then((request) => request(this.axios, this.basePath));
2103
+ return DefaultApiFp(this.configuration).v1CreateImageSetImage(requestParameters.v1CreateImageSetImageRequest, options).then((request) => request(this.axios, this.basePath));
2111
2104
  }
2112
2105
 
2113
2106
  /**
2114
- * 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](#default/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.
2107
+ * 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.
2115
2108
  * @param {DefaultApiV1CreateOrganizationTargetRequest} requestParameters Request parameters.
2116
2109
  * @param {*} [options] Override http request option.
2117
2110
  * @throws {RequiredError}
2118
2111
  * @memberof DefaultApi
2119
2112
  */
2120
2113
  public v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig) {
2121
- return DefaultApiFp(this.configuration).v1CreateOrganizationTarget(requestParameters.v1OrganizationTarget, options).then((request) => request(this.axios, this.basePath));
2114
+ return DefaultApiFp(this.configuration).v1CreateOrganizationTarget(requestParameters.v1CreateOrganizationTargetRequest, options).then((request) => request(this.axios, this.basePath));
2122
2115
  }
2123
2116
 
2124
2117
  /**
@@ -2129,11 +2122,11 @@ export class DefaultApi extends BaseAPI {
2129
2122
  * @memberof DefaultApi
2130
2123
  */
2131
2124
  public v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig) {
2132
- return DefaultApiFp(this.configuration).v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfiguration, options).then((request) => request(this.axios, this.basePath));
2125
+ return DefaultApiFp(this.configuration).v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
2133
2126
  }
2134
2127
 
2135
2128
  /**
2136
- * delete an organization target
2129
+ * Delete an organization target.
2137
2130
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
2138
2131
  * @param {*} [options] Override http request option.
2139
2132
  * @throws {RequiredError}
@@ -2144,7 +2137,7 @@ export class DefaultApi extends BaseAPI {
2144
2137
  }
2145
2138
 
2146
2139
  /**
2147
- * Delete an existing webhook configuration
2140
+ * Delete a webhook configuration.
2148
2141
  * @param {DefaultApiV1DeleteWebhookConfigurationRequest} requestParameters Request parameters.
2149
2142
  * @param {*} [options] Override http request option.
2150
2143
  * @throws {RequiredError}
@@ -2155,7 +2148,7 @@ export class DefaultApi extends BaseAPI {
2155
2148
  }
2156
2149
 
2157
2150
  /**
2158
- * get an image set
2151
+ * Get an image set.
2159
2152
  * @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
2160
2153
  * @param {*} [options] Override http request option.
2161
2154
  * @throws {RequiredError}
@@ -2166,7 +2159,7 @@ export class DefaultApi extends BaseAPI {
2166
2159
  }
2167
2160
 
2168
2161
  /**
2169
- * get an image
2162
+ * Get an image.
2170
2163
  * @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
2171
2164
  * @param {*} [options] Override http request option.
2172
2165
  * @throws {RequiredError}
@@ -2177,7 +2170,7 @@ export class DefaultApi extends BaseAPI {
2177
2170
  }
2178
2171
 
2179
2172
  /**
2180
- * get image set images
2173
+ * Get image set images.
2181
2174
  * @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
2182
2175
  * @param {*} [options] Override http request option.
2183
2176
  * @throws {RequiredError}
@@ -2188,7 +2181,7 @@ export class DefaultApi extends BaseAPI {
2188
2181
  }
2189
2182
 
2190
2183
  /**
2191
- * get image sets for targets observed for your organization
2184
+ * Get image sets.
2192
2185
  * @param {*} [options] Override http request option.
2193
2186
  * @throws {RequiredError}
2194
2187
  * @memberof DefaultApi
@@ -2209,7 +2202,7 @@ export class DefaultApi extends BaseAPI {
2209
2202
  }
2210
2203
 
2211
2204
  /**
2212
- * get organization targets see the [create](#default/v1CreateOrganizationTarget) endpoint for more details
2205
+ * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
2213
2206
  * @param {*} [options] Override http request option.
2214
2207
  * @throws {RequiredError}
2215
2208
  * @memberof DefaultApi
@@ -2230,7 +2223,7 @@ export class DefaultApi extends BaseAPI {
2230
2223
  }
2231
2224
 
2232
2225
  /**
2233
- * get tdm
2226
+ * Get a TDM.
2234
2227
  * @param {DefaultApiV1GetTdmRequest} requestParameters Request parameters.
2235
2228
  * @param {*} [options] Override http request option.
2236
2229
  * @throws {RequiredError}
@@ -2252,7 +2245,7 @@ export class DefaultApi extends BaseAPI {
2252
2245
  }
2253
2246
 
2254
2247
  /**
2255
- * Get the currently configured webhooks
2248
+ * Get webhook configurations.
2256
2249
  * @param {*} [options] Override http request option.
2257
2250
  * @throws {RequiredError}
2258
2251
  * @memberof DefaultApi
@@ -2269,7 +2262,7 @@ export class DefaultApi extends BaseAPI {
2269
2262
  * @memberof DefaultApi
2270
2263
  */
2271
2264
  public v1UpdateEmailConfiguration(requestParameters: DefaultApiV1UpdateEmailConfigurationRequest, options?: AxiosRequestConfig) {
2272
- return DefaultApiFp(this.configuration).v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfiguration, options).then((request) => request(this.axios, this.basePath));
2265
+ return DefaultApiFp(this.configuration).v1UpdateEmailConfiguration(requestParameters.v1UpdateEmailConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
2273
2266
  }
2274
2267
  }
2275
2268