@ourskyai/sda-api 1.3.1945 → 1.3.2151

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @ourskyai/sda-api@1.3.1945
1
+ ## @ourskyai/sda-api@1.3.2151
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @ourskyai/sda-api@1.3.1945 --save
39
+ npm install @ourskyai/sda-api@1.3.2151 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -996,6 +996,90 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
996
996
  options: localVarRequestOptions,
997
997
  };
998
998
  },
999
+ /**
1000
+ * Delete an image set.
1001
+ * @param {string} id
1002
+ * @param {*} [options] Override http request option.
1003
+ * @throws {RequiredError}
1004
+ */
1005
+ v1DeleteImageSet: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1006
+ // verify required parameter 'id' is not null or undefined
1007
+ assertParamExists('v1DeleteImageSet', 'id', id)
1008
+ const localVarPath = `/v1/image-set`;
1009
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1010
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1011
+ let baseOptions;
1012
+ if (configuration) {
1013
+ baseOptions = configuration.baseOptions;
1014
+ }
1015
+
1016
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
1017
+ const localVarHeaderParameter = {} as any;
1018
+ const localVarQueryParameter = {} as any;
1019
+
1020
+ // authentication Roles required
1021
+
1022
+ // authentication BearerToken required
1023
+ // http bearer authentication required
1024
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
1025
+
1026
+ if (id !== undefined) {
1027
+ localVarQueryParameter['id'] = id;
1028
+ }
1029
+
1030
+
1031
+
1032
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1033
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1034
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1035
+
1036
+ return {
1037
+ url: toPathString(localVarUrlObj),
1038
+ options: localVarRequestOptions,
1039
+ };
1040
+ },
1041
+ /**
1042
+ * Delete an image.
1043
+ * @param {string} imageId
1044
+ * @param {*} [options] Override http request option.
1045
+ * @throws {RequiredError}
1046
+ */
1047
+ v1DeleteImageSetImage: async (imageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1048
+ // verify required parameter 'imageId' is not null or undefined
1049
+ assertParamExists('v1DeleteImageSetImage', 'imageId', imageId)
1050
+ const localVarPath = `/v1/image-set-image`;
1051
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1052
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1053
+ let baseOptions;
1054
+ if (configuration) {
1055
+ baseOptions = configuration.baseOptions;
1056
+ }
1057
+
1058
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
1059
+ const localVarHeaderParameter = {} as any;
1060
+ const localVarQueryParameter = {} as any;
1061
+
1062
+ // authentication Roles required
1063
+
1064
+ // authentication BearerToken required
1065
+ // http bearer authentication required
1066
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
1067
+
1068
+ if (imageId !== undefined) {
1069
+ localVarQueryParameter['imageId'] = imageId;
1070
+ }
1071
+
1072
+
1073
+
1074
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1075
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1076
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1077
+
1078
+ return {
1079
+ url: toPathString(localVarUrlObj),
1080
+ options: localVarRequestOptions,
1081
+ };
1082
+ },
999
1083
  /**
1000
1084
  * Delete an organization target.
1001
1085
  * @param {string} satelliteTargetId
@@ -1634,6 +1718,26 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1634
1718
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options);
1635
1719
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1636
1720
  },
1721
+ /**
1722
+ * Delete an image set.
1723
+ * @param {string} id
1724
+ * @param {*} [options] Override http request option.
1725
+ * @throws {RequiredError}
1726
+ */
1727
+ async v1DeleteImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
1728
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteImageSet(id, options);
1729
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1730
+ },
1731
+ /**
1732
+ * Delete an image.
1733
+ * @param {string} imageId
1734
+ * @param {*} [options] Override http request option.
1735
+ * @throws {RequiredError}
1736
+ */
1737
+ async v1DeleteImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
1738
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteImageSetImage(imageId, options);
1739
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1740
+ },
1637
1741
  /**
1638
1742
  * Delete an organization target.
1639
1743
  * @param {string} satelliteTargetId
@@ -1821,6 +1925,24 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1821
1925
  v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
1822
1926
  return localVarFp.v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
1823
1927
  },
1928
+ /**
1929
+ * Delete an image set.
1930
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1931
+ * @param {*} [options] Override http request option.
1932
+ * @throws {RequiredError}
1933
+ */
1934
+ v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
1935
+ return localVarFp.v1DeleteImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
1936
+ },
1937
+ /**
1938
+ * Delete an image.
1939
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1940
+ * @param {*} [options] Override http request option.
1941
+ * @throws {RequiredError}
1942
+ */
1943
+ v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
1944
+ return localVarFp.v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
1945
+ },
1824
1946
  /**
1825
1947
  * Delete an organization target.
1826
1948
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
@@ -2003,6 +2125,34 @@ export interface DefaultApiV1CreateWebhookConfigurationRequest {
2003
2125
  readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest
2004
2126
  }
2005
2127
 
2128
+ /**
2129
+ * Request parameters for v1DeleteImageSet operation in DefaultApi.
2130
+ * @export
2131
+ * @interface DefaultApiV1DeleteImageSetRequest
2132
+ */
2133
+ export interface DefaultApiV1DeleteImageSetRequest {
2134
+ /**
2135
+ *
2136
+ * @type {string}
2137
+ * @memberof DefaultApiV1DeleteImageSet
2138
+ */
2139
+ readonly id: string
2140
+ }
2141
+
2142
+ /**
2143
+ * Request parameters for v1DeleteImageSetImage operation in DefaultApi.
2144
+ * @export
2145
+ * @interface DefaultApiV1DeleteImageSetImageRequest
2146
+ */
2147
+ export interface DefaultApiV1DeleteImageSetImageRequest {
2148
+ /**
2149
+ *
2150
+ * @type {string}
2151
+ * @memberof DefaultApiV1DeleteImageSetImage
2152
+ */
2153
+ readonly imageId: string
2154
+ }
2155
+
2006
2156
  /**
2007
2157
  * Request parameters for v1DeleteOrganizationTarget operation in DefaultApi.
2008
2158
  * @export
@@ -2236,6 +2386,28 @@ export class DefaultApi extends BaseAPI {
2236
2386
  return DefaultApiFp(this.configuration).v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
2237
2387
  }
2238
2388
 
2389
+ /**
2390
+ * Delete an image set.
2391
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
2392
+ * @param {*} [options] Override http request option.
2393
+ * @throws {RequiredError}
2394
+ * @memberof DefaultApi
2395
+ */
2396
+ public v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig) {
2397
+ return DefaultApiFp(this.configuration).v1DeleteImageSet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
2398
+ }
2399
+
2400
+ /**
2401
+ * Delete an image.
2402
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
2403
+ * @param {*} [options] Override http request option.
2404
+ * @throws {RequiredError}
2405
+ * @memberof DefaultApi
2406
+ */
2407
+ public v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig) {
2408
+ return DefaultApiFp(this.configuration).v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
2409
+ }
2410
+
2239
2411
  /**
2240
2412
  * Delete an organization target.
2241
2413
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
package/base.ts CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -826,6 +826,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
826
826
  * @throws {RequiredError}
827
827
  */
828
828
  v1CreateWebhookConfiguration: (v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
829
+ /**
830
+ * Delete an image set.
831
+ * @param {string} id
832
+ * @param {*} [options] Override http request option.
833
+ * @throws {RequiredError}
834
+ */
835
+ v1DeleteImageSet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
836
+ /**
837
+ * Delete an image.
838
+ * @param {string} imageId
839
+ * @param {*} [options] Override http request option.
840
+ * @throws {RequiredError}
841
+ */
842
+ v1DeleteImageSetImage: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
829
843
  /**
830
844
  * Delete an organization target.
831
845
  * @param {string} satelliteTargetId
@@ -959,6 +973,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
959
973
  * @throws {RequiredError}
960
974
  */
961
975
  v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
976
+ /**
977
+ * Delete an image set.
978
+ * @param {string} id
979
+ * @param {*} [options] Override http request option.
980
+ * @throws {RequiredError}
981
+ */
982
+ v1DeleteImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
983
+ /**
984
+ * Delete an image.
985
+ * @param {string} imageId
986
+ * @param {*} [options] Override http request option.
987
+ * @throws {RequiredError}
988
+ */
989
+ v1DeleteImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
962
990
  /**
963
991
  * Delete an organization target.
964
992
  * @param {string} satelliteTargetId
@@ -1092,6 +1120,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
1092
1120
  * @throws {RequiredError}
1093
1121
  */
1094
1122
  v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
1123
+ /**
1124
+ * Delete an image set.
1125
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1126
+ * @param {*} [options] Override http request option.
1127
+ * @throws {RequiredError}
1128
+ */
1129
+ v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
1130
+ /**
1131
+ * Delete an image.
1132
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1133
+ * @param {*} [options] Override http request option.
1134
+ * @throws {RequiredError}
1135
+ */
1136
+ v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
1095
1137
  /**
1096
1138
  * Delete an organization target.
1097
1139
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
@@ -1240,6 +1282,32 @@ export interface DefaultApiV1CreateWebhookConfigurationRequest {
1240
1282
  */
1241
1283
  readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest;
1242
1284
  }
1285
+ /**
1286
+ * Request parameters for v1DeleteImageSet operation in DefaultApi.
1287
+ * @export
1288
+ * @interface DefaultApiV1DeleteImageSetRequest
1289
+ */
1290
+ export interface DefaultApiV1DeleteImageSetRequest {
1291
+ /**
1292
+ *
1293
+ * @type {string}
1294
+ * @memberof DefaultApiV1DeleteImageSet
1295
+ */
1296
+ readonly id: string;
1297
+ }
1298
+ /**
1299
+ * Request parameters for v1DeleteImageSetImage operation in DefaultApi.
1300
+ * @export
1301
+ * @interface DefaultApiV1DeleteImageSetImageRequest
1302
+ */
1303
+ export interface DefaultApiV1DeleteImageSetImageRequest {
1304
+ /**
1305
+ *
1306
+ * @type {string}
1307
+ * @memberof DefaultApiV1DeleteImageSetImage
1308
+ */
1309
+ readonly imageId: string;
1310
+ }
1243
1311
  /**
1244
1312
  * Request parameters for v1DeleteOrganizationTarget operation in DefaultApi.
1245
1313
  * @export
@@ -1446,6 +1514,22 @@ export declare class DefaultApi extends BaseAPI {
1446
1514
  * @memberof DefaultApi
1447
1515
  */
1448
1516
  v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
1517
+ /**
1518
+ * Delete an image set.
1519
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1520
+ * @param {*} [options] Override http request option.
1521
+ * @throws {RequiredError}
1522
+ * @memberof DefaultApi
1523
+ */
1524
+ v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
1525
+ /**
1526
+ * Delete an image.
1527
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1528
+ * @param {*} [options] Override http request option.
1529
+ * @throws {RequiredError}
1530
+ * @memberof DefaultApi
1531
+ */
1532
+ v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
1449
1533
  /**
1450
1534
  * Delete an organization target.
1451
1535
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
package/dist/api.js CHANGED
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * OurSky SDA
6
- * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.1945
8
+ * The version of the OpenAPI document: 1.3.2151
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -227,6 +227,74 @@ const DefaultApiAxiosParamCreator = function (configuration) {
227
227
  options: localVarRequestOptions,
228
228
  };
229
229
  }),
230
+ /**
231
+ * Delete an image set.
232
+ * @param {string} id
233
+ * @param {*} [options] Override http request option.
234
+ * @throws {RequiredError}
235
+ */
236
+ v1DeleteImageSet: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
237
+ // verify required parameter 'id' is not null or undefined
238
+ (0, common_1.assertParamExists)('v1DeleteImageSet', 'id', id);
239
+ const localVarPath = `/v1/image-set`;
240
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
241
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
242
+ let baseOptions;
243
+ if (configuration) {
244
+ baseOptions = configuration.baseOptions;
245
+ }
246
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
247
+ const localVarHeaderParameter = {};
248
+ const localVarQueryParameter = {};
249
+ // authentication Roles required
250
+ // authentication BearerToken required
251
+ // http bearer authentication required
252
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
253
+ if (id !== undefined) {
254
+ localVarQueryParameter['id'] = id;
255
+ }
256
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
257
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
258
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
259
+ return {
260
+ url: (0, common_1.toPathString)(localVarUrlObj),
261
+ options: localVarRequestOptions,
262
+ };
263
+ }),
264
+ /**
265
+ * Delete an image.
266
+ * @param {string} imageId
267
+ * @param {*} [options] Override http request option.
268
+ * @throws {RequiredError}
269
+ */
270
+ v1DeleteImageSetImage: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
271
+ // verify required parameter 'imageId' is not null or undefined
272
+ (0, common_1.assertParamExists)('v1DeleteImageSetImage', 'imageId', imageId);
273
+ const localVarPath = `/v1/image-set-image`;
274
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
275
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
276
+ let baseOptions;
277
+ if (configuration) {
278
+ baseOptions = configuration.baseOptions;
279
+ }
280
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
281
+ const localVarHeaderParameter = {};
282
+ const localVarQueryParameter = {};
283
+ // authentication Roles required
284
+ // authentication BearerToken required
285
+ // http bearer authentication required
286
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
287
+ if (imageId !== undefined) {
288
+ localVarQueryParameter['imageId'] = imageId;
289
+ }
290
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
291
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
292
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
293
+ return {
294
+ url: (0, common_1.toPathString)(localVarUrlObj),
295
+ options: localVarRequestOptions,
296
+ };
297
+ }),
230
298
  /**
231
299
  * Delete an organization target.
232
300
  * @param {string} satelliteTargetId
@@ -760,6 +828,30 @@ const DefaultApiFp = function (configuration) {
760
828
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
761
829
  });
762
830
  },
831
+ /**
832
+ * Delete an image set.
833
+ * @param {string} id
834
+ * @param {*} [options] Override http request option.
835
+ * @throws {RequiredError}
836
+ */
837
+ v1DeleteImageSet(id, options) {
838
+ return __awaiter(this, void 0, void 0, function* () {
839
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteImageSet(id, options);
840
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
841
+ });
842
+ },
843
+ /**
844
+ * Delete an image.
845
+ * @param {string} imageId
846
+ * @param {*} [options] Override http request option.
847
+ * @throws {RequiredError}
848
+ */
849
+ v1DeleteImageSetImage(imageId, options) {
850
+ return __awaiter(this, void 0, void 0, function* () {
851
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteImageSetImage(imageId, options);
852
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
853
+ });
854
+ },
763
855
  /**
764
856
  * Delete an organization target.
765
857
  * @param {string} satelliteTargetId
@@ -975,6 +1067,24 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
975
1067
  v1CreateWebhookConfiguration(requestParameters, options) {
976
1068
  return localVarFp.v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
977
1069
  },
1070
+ /**
1071
+ * Delete an image set.
1072
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1073
+ * @param {*} [options] Override http request option.
1074
+ * @throws {RequiredError}
1075
+ */
1076
+ v1DeleteImageSet(requestParameters, options) {
1077
+ return localVarFp.v1DeleteImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
1078
+ },
1079
+ /**
1080
+ * Delete an image.
1081
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1082
+ * @param {*} [options] Override http request option.
1083
+ * @throws {RequiredError}
1084
+ */
1085
+ v1DeleteImageSetImage(requestParameters, options) {
1086
+ return localVarFp.v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
1087
+ },
978
1088
  /**
979
1089
  * Delete an organization target.
980
1090
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
@@ -1148,6 +1258,26 @@ class DefaultApi extends base_1.BaseAPI {
1148
1258
  v1CreateWebhookConfiguration(requestParameters, options) {
1149
1259
  return (0, exports.DefaultApiFp)(this.configuration).v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
1150
1260
  }
1261
+ /**
1262
+ * Delete an image set.
1263
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1264
+ * @param {*} [options] Override http request option.
1265
+ * @throws {RequiredError}
1266
+ * @memberof DefaultApi
1267
+ */
1268
+ v1DeleteImageSet(requestParameters, options) {
1269
+ return (0, exports.DefaultApiFp)(this.configuration).v1DeleteImageSet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
1270
+ }
1271
+ /**
1272
+ * Delete an image.
1273
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1274
+ * @param {*} [options] Override http request option.
1275
+ * @throws {RequiredError}
1276
+ * @memberof DefaultApi
1277
+ */
1278
+ v1DeleteImageSetImage(requestParameters, options) {
1279
+ return (0, exports.DefaultApiFp)(this.configuration).v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
1280
+ }
1151
1281
  /**
1152
1282
  * Delete an organization target.
1153
1283
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
package/dist/base.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * OurSky SDA
6
- * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.1945
8
+ * The version of the OpenAPI document: 1.3.2151
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * OurSky SDA
6
- * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.1945
8
+ * The version of the OpenAPI document: 1.3.2151
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * OurSky SDA
6
- * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.1945
8
+ * The version of the OpenAPI document: 1.3.2151
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -826,6 +826,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
826
826
  * @throws {RequiredError}
827
827
  */
828
828
  v1CreateWebhookConfiguration: (v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
829
+ /**
830
+ * Delete an image set.
831
+ * @param {string} id
832
+ * @param {*} [options] Override http request option.
833
+ * @throws {RequiredError}
834
+ */
835
+ v1DeleteImageSet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
836
+ /**
837
+ * Delete an image.
838
+ * @param {string} imageId
839
+ * @param {*} [options] Override http request option.
840
+ * @throws {RequiredError}
841
+ */
842
+ v1DeleteImageSetImage: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
829
843
  /**
830
844
  * Delete an organization target.
831
845
  * @param {string} satelliteTargetId
@@ -959,6 +973,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
959
973
  * @throws {RequiredError}
960
974
  */
961
975
  v1CreateWebhookConfiguration(v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
976
+ /**
977
+ * Delete an image set.
978
+ * @param {string} id
979
+ * @param {*} [options] Override http request option.
980
+ * @throws {RequiredError}
981
+ */
982
+ v1DeleteImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
983
+ /**
984
+ * Delete an image.
985
+ * @param {string} imageId
986
+ * @param {*} [options] Override http request option.
987
+ * @throws {RequiredError}
988
+ */
989
+ v1DeleteImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
962
990
  /**
963
991
  * Delete an organization target.
964
992
  * @param {string} satelliteTargetId
@@ -1092,6 +1120,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
1092
1120
  * @throws {RequiredError}
1093
1121
  */
1094
1122
  v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
1123
+ /**
1124
+ * Delete an image set.
1125
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1126
+ * @param {*} [options] Override http request option.
1127
+ * @throws {RequiredError}
1128
+ */
1129
+ v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
1130
+ /**
1131
+ * Delete an image.
1132
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1133
+ * @param {*} [options] Override http request option.
1134
+ * @throws {RequiredError}
1135
+ */
1136
+ v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
1095
1137
  /**
1096
1138
  * Delete an organization target.
1097
1139
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
@@ -1240,6 +1282,32 @@ export interface DefaultApiV1CreateWebhookConfigurationRequest {
1240
1282
  */
1241
1283
  readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest;
1242
1284
  }
1285
+ /**
1286
+ * Request parameters for v1DeleteImageSet operation in DefaultApi.
1287
+ * @export
1288
+ * @interface DefaultApiV1DeleteImageSetRequest
1289
+ */
1290
+ export interface DefaultApiV1DeleteImageSetRequest {
1291
+ /**
1292
+ *
1293
+ * @type {string}
1294
+ * @memberof DefaultApiV1DeleteImageSet
1295
+ */
1296
+ readonly id: string;
1297
+ }
1298
+ /**
1299
+ * Request parameters for v1DeleteImageSetImage operation in DefaultApi.
1300
+ * @export
1301
+ * @interface DefaultApiV1DeleteImageSetImageRequest
1302
+ */
1303
+ export interface DefaultApiV1DeleteImageSetImageRequest {
1304
+ /**
1305
+ *
1306
+ * @type {string}
1307
+ * @memberof DefaultApiV1DeleteImageSetImage
1308
+ */
1309
+ readonly imageId: string;
1310
+ }
1243
1311
  /**
1244
1312
  * Request parameters for v1DeleteOrganizationTarget operation in DefaultApi.
1245
1313
  * @export
@@ -1446,6 +1514,22 @@ export declare class DefaultApi extends BaseAPI {
1446
1514
  * @memberof DefaultApi
1447
1515
  */
1448
1516
  v1CreateWebhookConfiguration(requestParameters: DefaultApiV1CreateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
1517
+ /**
1518
+ * Delete an image set.
1519
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1520
+ * @param {*} [options] Override http request option.
1521
+ * @throws {RequiredError}
1522
+ * @memberof DefaultApi
1523
+ */
1524
+ v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
1525
+ /**
1526
+ * Delete an image.
1527
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1528
+ * @param {*} [options] Override http request option.
1529
+ * @throws {RequiredError}
1530
+ * @memberof DefaultApi
1531
+ */
1532
+ v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
1449
1533
  /**
1450
1534
  * Delete an organization target.
1451
1535
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
package/dist/esm/api.js CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -224,6 +224,74 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
224
224
  options: localVarRequestOptions,
225
225
  };
226
226
  }),
227
+ /**
228
+ * Delete an image set.
229
+ * @param {string} id
230
+ * @param {*} [options] Override http request option.
231
+ * @throws {RequiredError}
232
+ */
233
+ v1DeleteImageSet: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
234
+ // verify required parameter 'id' is not null or undefined
235
+ assertParamExists('v1DeleteImageSet', 'id', id);
236
+ const localVarPath = `/v1/image-set`;
237
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
238
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
239
+ let baseOptions;
240
+ if (configuration) {
241
+ baseOptions = configuration.baseOptions;
242
+ }
243
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
244
+ const localVarHeaderParameter = {};
245
+ const localVarQueryParameter = {};
246
+ // authentication Roles required
247
+ // authentication BearerToken required
248
+ // http bearer authentication required
249
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
250
+ if (id !== undefined) {
251
+ localVarQueryParameter['id'] = id;
252
+ }
253
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
254
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
255
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
256
+ return {
257
+ url: toPathString(localVarUrlObj),
258
+ options: localVarRequestOptions,
259
+ };
260
+ }),
261
+ /**
262
+ * Delete an image.
263
+ * @param {string} imageId
264
+ * @param {*} [options] Override http request option.
265
+ * @throws {RequiredError}
266
+ */
267
+ v1DeleteImageSetImage: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
268
+ // verify required parameter 'imageId' is not null or undefined
269
+ assertParamExists('v1DeleteImageSetImage', 'imageId', imageId);
270
+ const localVarPath = `/v1/image-set-image`;
271
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
272
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
273
+ let baseOptions;
274
+ if (configuration) {
275
+ baseOptions = configuration.baseOptions;
276
+ }
277
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
278
+ const localVarHeaderParameter = {};
279
+ const localVarQueryParameter = {};
280
+ // authentication Roles required
281
+ // authentication BearerToken required
282
+ // http bearer authentication required
283
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
284
+ if (imageId !== undefined) {
285
+ localVarQueryParameter['imageId'] = imageId;
286
+ }
287
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
288
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
289
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
290
+ return {
291
+ url: toPathString(localVarUrlObj),
292
+ options: localVarRequestOptions,
293
+ };
294
+ }),
227
295
  /**
228
296
  * Delete an organization target.
229
297
  * @param {string} satelliteTargetId
@@ -756,6 +824,30 @@ export const DefaultApiFp = function (configuration) {
756
824
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
757
825
  });
758
826
  },
827
+ /**
828
+ * Delete an image set.
829
+ * @param {string} id
830
+ * @param {*} [options] Override http request option.
831
+ * @throws {RequiredError}
832
+ */
833
+ v1DeleteImageSet(id, options) {
834
+ return __awaiter(this, void 0, void 0, function* () {
835
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteImageSet(id, options);
836
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
837
+ });
838
+ },
839
+ /**
840
+ * Delete an image.
841
+ * @param {string} imageId
842
+ * @param {*} [options] Override http request option.
843
+ * @throws {RequiredError}
844
+ */
845
+ v1DeleteImageSetImage(imageId, options) {
846
+ return __awaiter(this, void 0, void 0, function* () {
847
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteImageSetImage(imageId, options);
848
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
849
+ });
850
+ },
759
851
  /**
760
852
  * Delete an organization target.
761
853
  * @param {string} satelliteTargetId
@@ -970,6 +1062,24 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
970
1062
  v1CreateWebhookConfiguration(requestParameters, options) {
971
1063
  return localVarFp.v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
972
1064
  },
1065
+ /**
1066
+ * Delete an image set.
1067
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1068
+ * @param {*} [options] Override http request option.
1069
+ * @throws {RequiredError}
1070
+ */
1071
+ v1DeleteImageSet(requestParameters, options) {
1072
+ return localVarFp.v1DeleteImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
1073
+ },
1074
+ /**
1075
+ * Delete an image.
1076
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1077
+ * @param {*} [options] Override http request option.
1078
+ * @throws {RequiredError}
1079
+ */
1080
+ v1DeleteImageSetImage(requestParameters, options) {
1081
+ return localVarFp.v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
1082
+ },
973
1083
  /**
974
1084
  * Delete an organization target.
975
1085
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
@@ -1142,6 +1252,26 @@ export class DefaultApi extends BaseAPI {
1142
1252
  v1CreateWebhookConfiguration(requestParameters, options) {
1143
1253
  return DefaultApiFp(this.configuration).v1CreateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
1144
1254
  }
1255
+ /**
1256
+ * Delete an image set.
1257
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
1258
+ * @param {*} [options] Override http request option.
1259
+ * @throws {RequiredError}
1260
+ * @memberof DefaultApi
1261
+ */
1262
+ v1DeleteImageSet(requestParameters, options) {
1263
+ return DefaultApiFp(this.configuration).v1DeleteImageSet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
1264
+ }
1265
+ /**
1266
+ * Delete an image.
1267
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
1268
+ * @param {*} [options] Override http request option.
1269
+ * @throws {RequiredError}
1270
+ * @memberof DefaultApi
1271
+ */
1272
+ v1DeleteImageSetImage(requestParameters, options) {
1273
+ return DefaultApiFp(this.configuration).v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
1274
+ }
1145
1275
  /**
1146
1276
  * Delete an organization target.
1147
1277
  * @param {DefaultApiV1DeleteOrganizationTargetRequest} requestParameters Request parameters.
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * OurSky SDA
3
- * 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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1945
5
+ * The version of the OpenAPI document: 1.3.2151
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * OurSky SDA
6
- * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.1945
8
+ * The version of the OpenAPI document: 1.3.2151
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * OurSky SDA
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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.1945
7
+ * The version of the OpenAPI document: 1.3.2151
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourskyai/sda-api",
3
- "version": "1.3.1945",
3
+ "version": "1.3.2151",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {