@ourskyai/sda-api 1.3.3810 → 1.3.3826

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.3810
1
+ ## @ourskyai/sda-api@1.3.3826
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.3810 --save
39
+ npm install @ourskyai/sda-api@1.3.3826 --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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2823,10 +2823,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
2823
2823
  * @param {number} [limit]
2824
2824
  * @param {OrbitType} [orbitType]
2825
2825
  * @param {string} [noradId]
2826
+ * @param {boolean} [publicTargets]
2827
+ * @param {boolean} [privateTargets]
2826
2828
  * @param {*} [options] Override http request option.
2827
2829
  * @throws {RequiredError}
2828
2830
  */
2829
- v1GetSatelliteTargets: async (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
2831
+ v1GetSatelliteTargets: async (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, publicTargets?: boolean, privateTargets?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
2830
2832
  const localVarPath = `/v1/satellite-targets`;
2831
2833
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2832
2834
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -2861,6 +2863,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
2861
2863
  localVarQueryParameter['noradId'] = noradId;
2862
2864
  }
2863
2865
 
2866
+ if (publicTargets !== undefined) {
2867
+ localVarQueryParameter['publicTargets'] = publicTargets;
2868
+ }
2869
+
2870
+ if (privateTargets !== undefined) {
2871
+ localVarQueryParameter['privateTargets'] = privateTargets;
2872
+ }
2873
+
2864
2874
 
2865
2875
 
2866
2876
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3485,11 +3495,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
3485
3495
  * @param {number} [limit]
3486
3496
  * @param {OrbitType} [orbitType]
3487
3497
  * @param {string} [noradId]
3498
+ * @param {boolean} [publicTargets]
3499
+ * @param {boolean} [privateTargets]
3488
3500
  * @param {*} [options] Override http request option.
3489
3501
  * @throws {RequiredError}
3490
3502
  */
3491
- async v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>> {
3492
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, options);
3503
+ async v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, publicTargets?: boolean, privateTargets?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>> {
3504
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, publicTargets, privateTargets, options);
3493
3505
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3494
3506
  },
3495
3507
  /**
@@ -3814,7 +3826,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
3814
3826
  * @throws {RequiredError}
3815
3827
  */
3816
3828
  v1GetSatelliteTargets(requestParameters: DefaultApiV1GetSatelliteTargetsRequest = {}, options?: AxiosRequestConfig): AxiosPromise<V1GetSatelliteTargetsResponse> {
3817
- return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
3829
+ return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, requestParameters.publicTargets, requestParameters.privateTargets, options).then((request) => request(axios, basePath));
3818
3830
  },
3819
3831
  /**
3820
3832
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
@@ -4294,6 +4306,20 @@ export interface DefaultApiV1GetSatelliteTargetsRequest {
4294
4306
  * @memberof DefaultApiV1GetSatelliteTargets
4295
4307
  */
4296
4308
  readonly noradId?: string
4309
+
4310
+ /**
4311
+ *
4312
+ * @type {boolean}
4313
+ * @memberof DefaultApiV1GetSatelliteTargets
4314
+ */
4315
+ readonly publicTargets?: boolean
4316
+
4317
+ /**
4318
+ *
4319
+ * @type {boolean}
4320
+ * @memberof DefaultApiV1GetSatelliteTargets
4321
+ */
4322
+ readonly privateTargets?: boolean
4297
4323
  }
4298
4324
 
4299
4325
  /**
@@ -4703,7 +4729,7 @@ export class DefaultApi extends BaseAPI {
4703
4729
  * @memberof DefaultApi
4704
4730
  */
4705
4731
  public v1GetSatelliteTargets(requestParameters: DefaultApiV1GetSatelliteTargetsRequest = {}, options?: AxiosRequestConfig) {
4706
- return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
4732
+ return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, requestParameters.publicTargets, requestParameters.privateTargets, options).then((request) => request(this.axios, this.basePath));
4707
4733
  }
4708
4734
 
4709
4735
  /**
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1863,10 +1863,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1863
1863
  * @param {number} [limit]
1864
1864
  * @param {OrbitType} [orbitType]
1865
1865
  * @param {string} [noradId]
1866
+ * @param {boolean} [publicTargets]
1867
+ * @param {boolean} [privateTargets]
1866
1868
  * @param {*} [options] Override http request option.
1867
1869
  * @throws {RequiredError}
1868
1870
  */
1869
- v1GetSatelliteTargets: (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1871
+ v1GetSatelliteTargets: (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, publicTargets?: boolean, privateTargets?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1870
1872
  /**
1871
1873
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
1872
1874
  * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
@@ -2117,10 +2119,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2117
2119
  * @param {number} [limit]
2118
2120
  * @param {OrbitType} [orbitType]
2119
2121
  * @param {string} [noradId]
2122
+ * @param {boolean} [publicTargets]
2123
+ * @param {boolean} [privateTargets]
2120
2124
  * @param {*} [options] Override http request option.
2121
2125
  * @throws {RequiredError}
2122
2126
  */
2123
- v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
2127
+ v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, publicTargets?: boolean, privateTargets?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
2124
2128
  /**
2125
2129
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
2126
2130
  * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
@@ -2792,6 +2796,18 @@ export interface DefaultApiV1GetSatelliteTargetsRequest {
2792
2796
  * @memberof DefaultApiV1GetSatelliteTargets
2793
2797
  */
2794
2798
  readonly noradId?: string;
2799
+ /**
2800
+ *
2801
+ * @type {boolean}
2802
+ * @memberof DefaultApiV1GetSatelliteTargets
2803
+ */
2804
+ readonly publicTargets?: boolean;
2805
+ /**
2806
+ *
2807
+ * @type {boolean}
2808
+ * @memberof DefaultApiV1GetSatelliteTargets
2809
+ */
2810
+ readonly privateTargets?: boolean;
2795
2811
  }
2796
2812
  /**
2797
2813
  * Request parameters for v1GetSearchInstructions operation in DefaultApi.
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](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3810
8
+ * The version of the OpenAPI document: 1.3.3826
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1042,10 +1042,12 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1042
1042
  * @param {number} [limit]
1043
1043
  * @param {OrbitType} [orbitType]
1044
1044
  * @param {string} [noradId]
1045
+ * @param {boolean} [publicTargets]
1046
+ * @param {boolean} [privateTargets]
1045
1047
  * @param {*} [options] Override http request option.
1046
1048
  * @throws {RequiredError}
1047
1049
  */
1048
- v1GetSatelliteTargets: (offset, limit, orbitType, noradId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1050
+ v1GetSatelliteTargets: (offset, limit, orbitType, noradId, publicTargets, privateTargets, options = {}) => __awaiter(this, void 0, void 0, function* () {
1049
1051
  const localVarPath = `/v1/satellite-targets`;
1050
1052
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1051
1053
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1072,6 +1074,12 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1072
1074
  if (noradId !== undefined) {
1073
1075
  localVarQueryParameter['noradId'] = noradId;
1074
1076
  }
1077
+ if (publicTargets !== undefined) {
1078
+ localVarQueryParameter['publicTargets'] = publicTargets;
1079
+ }
1080
+ if (privateTargets !== undefined) {
1081
+ localVarQueryParameter['privateTargets'] = privateTargets;
1082
+ }
1075
1083
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1076
1084
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1077
1085
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -1677,12 +1685,14 @@ const DefaultApiFp = function (configuration) {
1677
1685
  * @param {number} [limit]
1678
1686
  * @param {OrbitType} [orbitType]
1679
1687
  * @param {string} [noradId]
1688
+ * @param {boolean} [publicTargets]
1689
+ * @param {boolean} [privateTargets]
1680
1690
  * @param {*} [options] Override http request option.
1681
1691
  * @throws {RequiredError}
1682
1692
  */
1683
- v1GetSatelliteTargets(offset, limit, orbitType, noradId, options) {
1693
+ v1GetSatelliteTargets(offset, limit, orbitType, noradId, publicTargets, privateTargets, options) {
1684
1694
  return __awaiter(this, void 0, void 0, function* () {
1685
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, options);
1695
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, publicTargets, privateTargets, options);
1686
1696
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1687
1697
  });
1688
1698
  },
@@ -2024,7 +2034,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2024
2034
  * @throws {RequiredError}
2025
2035
  */
2026
2036
  v1GetSatelliteTargets(requestParameters = {}, options) {
2027
- return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
2037
+ return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, requestParameters.publicTargets, requestParameters.privateTargets, options).then((request) => request(axios, basePath));
2028
2038
  },
2029
2039
  /**
2030
2040
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
@@ -2363,7 +2373,7 @@ class DefaultApi extends base_1.BaseAPI {
2363
2373
  * @memberof DefaultApi
2364
2374
  */
2365
2375
  v1GetSatelliteTargets(requestParameters = {}, options) {
2366
- return (0, exports.DefaultApiFp)(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
2376
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, requestParameters.publicTargets, requestParameters.privateTargets, options).then((request) => request(this.axios, this.basePath));
2367
2377
  }
2368
2378
  /**
2369
2379
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
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](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3810
8
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
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](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3810
8
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
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](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3810
8
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1863,10 +1863,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1863
1863
  * @param {number} [limit]
1864
1864
  * @param {OrbitType} [orbitType]
1865
1865
  * @param {string} [noradId]
1866
+ * @param {boolean} [publicTargets]
1867
+ * @param {boolean} [privateTargets]
1866
1868
  * @param {*} [options] Override http request option.
1867
1869
  * @throws {RequiredError}
1868
1870
  */
1869
- v1GetSatelliteTargets: (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1871
+ v1GetSatelliteTargets: (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, publicTargets?: boolean, privateTargets?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1870
1872
  /**
1871
1873
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
1872
1874
  * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
@@ -2117,10 +2119,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2117
2119
  * @param {number} [limit]
2118
2120
  * @param {OrbitType} [orbitType]
2119
2121
  * @param {string} [noradId]
2122
+ * @param {boolean} [publicTargets]
2123
+ * @param {boolean} [privateTargets]
2120
2124
  * @param {*} [options] Override http request option.
2121
2125
  * @throws {RequiredError}
2122
2126
  */
2123
- v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
2127
+ v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, publicTargets?: boolean, privateTargets?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
2124
2128
  /**
2125
2129
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
2126
2130
  * @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
@@ -2792,6 +2796,18 @@ export interface DefaultApiV1GetSatelliteTargetsRequest {
2792
2796
  * @memberof DefaultApiV1GetSatelliteTargets
2793
2797
  */
2794
2798
  readonly noradId?: string;
2799
+ /**
2800
+ *
2801
+ * @type {boolean}
2802
+ * @memberof DefaultApiV1GetSatelliteTargets
2803
+ */
2804
+ readonly publicTargets?: boolean;
2805
+ /**
2806
+ *
2807
+ * @type {boolean}
2808
+ * @memberof DefaultApiV1GetSatelliteTargets
2809
+ */
2810
+ readonly privateTargets?: boolean;
2795
2811
  }
2796
2812
  /**
2797
2813
  * Request parameters for v1GetSearchInstructions operation in DefaultApi.
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1039,10 +1039,12 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1039
1039
  * @param {number} [limit]
1040
1040
  * @param {OrbitType} [orbitType]
1041
1041
  * @param {string} [noradId]
1042
+ * @param {boolean} [publicTargets]
1043
+ * @param {boolean} [privateTargets]
1042
1044
  * @param {*} [options] Override http request option.
1043
1045
  * @throws {RequiredError}
1044
1046
  */
1045
- v1GetSatelliteTargets: (offset, limit, orbitType, noradId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1047
+ v1GetSatelliteTargets: (offset, limit, orbitType, noradId, publicTargets, privateTargets, options = {}) => __awaiter(this, void 0, void 0, function* () {
1046
1048
  const localVarPath = `/v1/satellite-targets`;
1047
1049
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1048
1050
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1069,6 +1071,12 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1069
1071
  if (noradId !== undefined) {
1070
1072
  localVarQueryParameter['noradId'] = noradId;
1071
1073
  }
1074
+ if (publicTargets !== undefined) {
1075
+ localVarQueryParameter['publicTargets'] = publicTargets;
1076
+ }
1077
+ if (privateTargets !== undefined) {
1078
+ localVarQueryParameter['privateTargets'] = privateTargets;
1079
+ }
1072
1080
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1073
1081
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1074
1082
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -1673,12 +1681,14 @@ export const DefaultApiFp = function (configuration) {
1673
1681
  * @param {number} [limit]
1674
1682
  * @param {OrbitType} [orbitType]
1675
1683
  * @param {string} [noradId]
1684
+ * @param {boolean} [publicTargets]
1685
+ * @param {boolean} [privateTargets]
1676
1686
  * @param {*} [options] Override http request option.
1677
1687
  * @throws {RequiredError}
1678
1688
  */
1679
- v1GetSatelliteTargets(offset, limit, orbitType, noradId, options) {
1689
+ v1GetSatelliteTargets(offset, limit, orbitType, noradId, publicTargets, privateTargets, options) {
1680
1690
  return __awaiter(this, void 0, void 0, function* () {
1681
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, options);
1691
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, publicTargets, privateTargets, options);
1682
1692
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1683
1693
  });
1684
1694
  },
@@ -2019,7 +2029,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2019
2029
  * @throws {RequiredError}
2020
2030
  */
2021
2031
  v1GetSatelliteTargets(requestParameters = {}, options) {
2022
- return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
2032
+ return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, requestParameters.publicTargets, requestParameters.privateTargets, options).then((request) => request(axios, basePath));
2023
2033
  },
2024
2034
  /**
2025
2035
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
@@ -2357,7 +2367,7 @@ export class DefaultApi extends BaseAPI {
2357
2367
  * @memberof DefaultApi
2358
2368
  */
2359
2369
  v1GetSatelliteTargets(requestParameters = {}, options) {
2360
- return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
2370
+ return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, requestParameters.publicTargets, requestParameters.privateTargets, options).then((request) => request(this.axios, this.basePath));
2361
2371
  }
2362
2372
  /**
2363
2373
  * Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
@@ -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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
3
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3810
5
+ * The version of the OpenAPI document: 1.3.3826
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](#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
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3810
8
+ * The version of the OpenAPI document: 1.3.3826
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](#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.
5
+ * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3810
7
+ * The version of the OpenAPI document: 1.3.3826
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.3810",
3
+ "version": "1.3.3826",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {