@ourskyai/sda-api 1.3.5447 → 1.3.5667

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.5447
1
+ ## @ourskyai/sda-api@1.3.5667
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.5447 --save
39
+ npm install @ourskyai/sda-api@1.3.5667 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -321,13 +321,13 @@ export interface ObservationResult {
321
321
  */
322
322
  'apparentMagnitude'?: number;
323
323
  /**
324
- * BETA: the solar phase angle in degrees at the time of observation
324
+ * BETA: the solar phase angle, defined as the angle between the target->observer and target->sun vectors, in degrees at the time of observation
325
325
  * @type {number}
326
326
  * @memberof ObservationResult
327
327
  */
328
328
  'solarPhaseAngle'?: number;
329
329
  /**
330
- * BETA: the solar equatorial phase angle in degrees at the time of observation
330
+ * BETA: the solar equatorial phase angle, defined as the solar phase angle in the equatorial plane, in degrees at the time of observation
331
331
  * @type {number}
332
332
  * @memberof ObservationResult
333
333
  */
@@ -1357,6 +1357,55 @@ export interface V1PredictedStreakLocation {
1357
1357
  */
1358
1358
  'endY'?: number;
1359
1359
  }
1360
+ /**
1361
+ * Upsert (create or update) a satellite target with new a new TLE. If creating a new target, do not enter a `satellite_target_id`. If updating an existing satellite target, the satellite target id must be one found in the OurSky database using the `/v1/satellite-targets` endpoint.
1362
+ * @export
1363
+ * @interface V1PutOrbitProviderTLERequest
1364
+ */
1365
+ export interface V1PutOrbitProviderTLERequest {
1366
+ /**
1367
+ * Existing target id of an OurSky target that you are providing a TLE for. Leave null if one does not exist in the database.
1368
+ * @type {string}
1369
+ * @memberof V1PutOrbitProviderTLERequest
1370
+ */
1371
+ 'satellite_target_id'?: string;
1372
+ /**
1373
+ *
1374
+ * @type {string}
1375
+ * @memberof V1PutOrbitProviderTLERequest
1376
+ */
1377
+ 'tle_line_1': string;
1378
+ /**
1379
+ *
1380
+ * @type {string}
1381
+ * @memberof V1PutOrbitProviderTLERequest
1382
+ */
1383
+ 'tle_line_2': string;
1384
+ /**
1385
+ *
1386
+ * @type {string}
1387
+ * @memberof V1PutOrbitProviderTLERequest
1388
+ */
1389
+ 'tle_name'?: string;
1390
+ /**
1391
+ * mass in kilograms
1392
+ * @type {number}
1393
+ * @memberof V1PutOrbitProviderTLERequest
1394
+ */
1395
+ 'mass'?: number;
1396
+ /**
1397
+ * The Cr value used to calculate acceleration due to solar radiation pressure
1398
+ * @type {number}
1399
+ * @memberof V1PutOrbitProviderTLERequest
1400
+ */
1401
+ 'coefficientOfReflection'?: number;
1402
+ /**
1403
+ * cross sectional area in meters^2
1404
+ * @type {number}
1405
+ * @memberof V1PutOrbitProviderTLERequest
1406
+ */
1407
+ 'crossSection'?: number;
1408
+ }
1360
1409
  /**
1361
1410
  * SatellitePotential
1362
1411
  * @export
@@ -1884,7 +1933,7 @@ export interface V1UpdateSatelliteTargetRequest {
1884
1933
  */
1885
1934
  'tleLine2': string;
1886
1935
  /**
1887
- * -| The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
1936
+ * The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
1888
1937
  * @type {string}
1889
1938
  * @memberof V1UpdateSatelliteTargetRequest
1890
1939
  */
@@ -3617,6 +3666,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3617
3666
  options: localVarRequestOptions,
3618
3667
  };
3619
3668
  },
3669
+ /**
3670
+ * Create or update an orbit for a target via a two-line element set (TLE)
3671
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
3672
+ * @param {*} [options] Override http request option.
3673
+ * @throws {RequiredError}
3674
+ */
3675
+ v1PutOrbitProviderTLEOrbit: async (v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3676
+ // verify required parameter 'v1PutOrbitProviderTLERequest' is not null or undefined
3677
+ assertParamExists('v1PutOrbitProviderTLEOrbit', 'v1PutOrbitProviderTLERequest', v1PutOrbitProviderTLERequest)
3678
+ const localVarPath = `/v1/orbit-provider/tle`;
3679
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3680
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3681
+ let baseOptions;
3682
+ if (configuration) {
3683
+ baseOptions = configuration.baseOptions;
3684
+ }
3685
+
3686
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
3687
+ const localVarHeaderParameter = {} as any;
3688
+ const localVarQueryParameter = {} as any;
3689
+
3690
+ // authentication Roles required
3691
+
3692
+ // authentication BearerToken required
3693
+ // http bearer authentication required
3694
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
3695
+
3696
+
3697
+
3698
+ localVarHeaderParameter['Content-Type'] = 'application/json';
3699
+
3700
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3701
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3702
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3703
+ localVarRequestOptions.data = serializeDataIfNeeded(v1PutOrbitProviderTLERequest, localVarRequestOptions, configuration)
3704
+
3705
+ return {
3706
+ url: toPathString(localVarUrlObj),
3707
+ options: localVarRequestOptions,
3708
+ };
3709
+ },
3620
3710
  /**
3621
3711
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
3622
3712
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -3700,7 +3790,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3700
3790
  };
3701
3791
  },
3702
3792
  /**
3703
- * Update satellite target.
3793
+ * Update a private satellite target.
3704
3794
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
3705
3795
  * @param {*} [options] Override http request option.
3706
3796
  * @throws {RequiredError}
@@ -4155,6 +4245,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
4155
4245
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetWebhookLogs(webhookId, limit, offset, options);
4156
4246
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4157
4247
  },
4248
+ /**
4249
+ * Create or update an orbit for a target via a two-line element set (TLE)
4250
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
4251
+ * @param {*} [options] Override http request option.
4252
+ * @throws {RequiredError}
4253
+ */
4254
+ async v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
4255
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest, options);
4256
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4257
+ },
4158
4258
  /**
4159
4259
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
4160
4260
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -4176,7 +4276,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
4176
4276
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4177
4277
  },
4178
4278
  /**
4179
- * Update satellite target.
4279
+ * Update a private satellite target.
4180
4280
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
4181
4281
  * @param {*} [options] Override http request option.
4182
4282
  * @throws {RequiredError}
@@ -4517,6 +4617,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
4517
4617
  v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookLog>> {
4518
4618
  return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
4519
4619
  },
4620
+ /**
4621
+ * Create or update an orbit for a target via a two-line element set (TLE)
4622
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
4623
+ * @param {*} [options] Override http request option.
4624
+ * @throws {RequiredError}
4625
+ */
4626
+ v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
4627
+ return localVarFp.v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(axios, basePath));
4628
+ },
4520
4629
  /**
4521
4630
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
4522
4631
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -4536,7 +4645,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
4536
4645
  return localVarFp.v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
4537
4646
  },
4538
4647
  /**
4539
- * Update satellite target.
4648
+ * Update a private satellite target.
4540
4649
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
4541
4650
  * @param {*} [options] Override http request option.
4542
4651
  * @throws {RequiredError}
@@ -5123,6 +5232,20 @@ export interface DefaultApiV1GetWebhookLogsRequest {
5123
5232
  readonly offset?: number
5124
5233
  }
5125
5234
 
5235
+ /**
5236
+ * Request parameters for v1PutOrbitProviderTLEOrbit operation in DefaultApi.
5237
+ * @export
5238
+ * @interface DefaultApiV1PutOrbitProviderTLEOrbitRequest
5239
+ */
5240
+ export interface DefaultApiV1PutOrbitProviderTLEOrbitRequest {
5241
+ /**
5242
+ *
5243
+ * @type {V1PutOrbitProviderTLERequest}
5244
+ * @memberof DefaultApiV1PutOrbitProviderTLEOrbit
5245
+ */
5246
+ readonly v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest
5247
+ }
5248
+
5126
5249
  /**
5127
5250
  * Request parameters for v1UpdateEmailConfiguration operation in DefaultApi.
5128
5251
  * @export
@@ -5568,6 +5691,17 @@ export class DefaultApi extends BaseAPI {
5568
5691
  return DefaultApiFp(this.configuration).v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
5569
5692
  }
5570
5693
 
5694
+ /**
5695
+ * Create or update an orbit for a target via a two-line element set (TLE)
5696
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
5697
+ * @param {*} [options] Override http request option.
5698
+ * @throws {RequiredError}
5699
+ * @memberof DefaultApi
5700
+ */
5701
+ public v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig) {
5702
+ return DefaultApiFp(this.configuration).v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(this.axios, this.basePath));
5703
+ }
5704
+
5571
5705
  /**
5572
5706
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
5573
5707
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -5591,7 +5725,7 @@ export class DefaultApi extends BaseAPI {
5591
5725
  }
5592
5726
 
5593
5727
  /**
5594
- * Update satellite target.
5728
+ * Update a private satellite target.
5595
5729
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
5596
5730
  * @param {*} [options] Override http request option.
5597
5731
  * @throws {RequiredError}
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -299,13 +299,13 @@ export interface ObservationResult {
299
299
  */
300
300
  'apparentMagnitude'?: number;
301
301
  /**
302
- * BETA: the solar phase angle in degrees at the time of observation
302
+ * BETA: the solar phase angle, defined as the angle between the target->observer and target->sun vectors, in degrees at the time of observation
303
303
  * @type {number}
304
304
  * @memberof ObservationResult
305
305
  */
306
306
  'solarPhaseAngle'?: number;
307
307
  /**
308
- * BETA: the solar equatorial phase angle in degrees at the time of observation
308
+ * BETA: the solar equatorial phase angle, defined as the solar phase angle in the equatorial plane, in degrees at the time of observation
309
309
  * @type {number}
310
310
  * @memberof ObservationResult
311
311
  */
@@ -1303,6 +1303,55 @@ export interface V1PredictedStreakLocation {
1303
1303
  */
1304
1304
  'endY'?: number;
1305
1305
  }
1306
+ /**
1307
+ * Upsert (create or update) a satellite target with new a new TLE. If creating a new target, do not enter a `satellite_target_id`. If updating an existing satellite target, the satellite target id must be one found in the OurSky database using the `/v1/satellite-targets` endpoint.
1308
+ * @export
1309
+ * @interface V1PutOrbitProviderTLERequest
1310
+ */
1311
+ export interface V1PutOrbitProviderTLERequest {
1312
+ /**
1313
+ * Existing target id of an OurSky target that you are providing a TLE for. Leave null if one does not exist in the database.
1314
+ * @type {string}
1315
+ * @memberof V1PutOrbitProviderTLERequest
1316
+ */
1317
+ 'satellite_target_id'?: string;
1318
+ /**
1319
+ *
1320
+ * @type {string}
1321
+ * @memberof V1PutOrbitProviderTLERequest
1322
+ */
1323
+ 'tle_line_1': string;
1324
+ /**
1325
+ *
1326
+ * @type {string}
1327
+ * @memberof V1PutOrbitProviderTLERequest
1328
+ */
1329
+ 'tle_line_2': string;
1330
+ /**
1331
+ *
1332
+ * @type {string}
1333
+ * @memberof V1PutOrbitProviderTLERequest
1334
+ */
1335
+ 'tle_name'?: string;
1336
+ /**
1337
+ * mass in kilograms
1338
+ * @type {number}
1339
+ * @memberof V1PutOrbitProviderTLERequest
1340
+ */
1341
+ 'mass'?: number;
1342
+ /**
1343
+ * The Cr value used to calculate acceleration due to solar radiation pressure
1344
+ * @type {number}
1345
+ * @memberof V1PutOrbitProviderTLERequest
1346
+ */
1347
+ 'coefficientOfReflection'?: number;
1348
+ /**
1349
+ * cross sectional area in meters^2
1350
+ * @type {number}
1351
+ * @memberof V1PutOrbitProviderTLERequest
1352
+ */
1353
+ 'crossSection'?: number;
1354
+ }
1306
1355
  /**
1307
1356
  * SatellitePotential
1308
1357
  * @export
@@ -1824,7 +1873,7 @@ export interface V1UpdateSatelliteTargetRequest {
1824
1873
  */
1825
1874
  'tleLine2': string;
1826
1875
  /**
1827
- * -| The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
1876
+ * The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
1828
1877
  * @type {string}
1829
1878
  * @memberof V1UpdateSatelliteTargetRequest
1830
1879
  */
@@ -2274,6 +2323,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2274
2323
  * @throws {RequiredError}
2275
2324
  */
2276
2325
  v1GetWebhookLogs: (webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2326
+ /**
2327
+ * Create or update an orbit for a target via a two-line element set (TLE)
2328
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
2329
+ * @param {*} [options] Override http request option.
2330
+ * @throws {RequiredError}
2331
+ */
2332
+ v1PutOrbitProviderTLEOrbit: (v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2277
2333
  /**
2278
2334
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2279
2335
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -2289,7 +2345,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2289
2345
  */
2290
2346
  v1UpdateOrganizationTarget: (v1UpdateOrganizationTargetRequest: V1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2291
2347
  /**
2292
- * Update satellite target.
2348
+ * Update a private satellite target.
2293
2349
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
2294
2350
  * @param {*} [options] Override http request option.
2295
2351
  * @throws {RequiredError}
@@ -2567,6 +2623,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2567
2623
  * @throws {RequiredError}
2568
2624
  */
2569
2625
  v1GetWebhookLogs(webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1WebhookLog>>>;
2626
+ /**
2627
+ * Create or update an orbit for a target via a two-line element set (TLE)
2628
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
2629
+ * @param {*} [options] Override http request option.
2630
+ * @throws {RequiredError}
2631
+ */
2632
+ v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2570
2633
  /**
2571
2634
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2572
2635
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -2582,7 +2645,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2582
2645
  */
2583
2646
  v1UpdateOrganizationTarget(v1UpdateOrganizationTargetRequest: V1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OrganizationTarget>>;
2584
2647
  /**
2585
- * Update satellite target.
2648
+ * Update a private satellite target.
2586
2649
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
2587
2650
  * @param {*} [options] Override http request option.
2588
2651
  * @throws {RequiredError}
@@ -2843,6 +2906,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2843
2906
  * @throws {RequiredError}
2844
2907
  */
2845
2908
  v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookLog>>;
2909
+ /**
2910
+ * Create or update an orbit for a target via a two-line element set (TLE)
2911
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
2912
+ * @param {*} [options] Override http request option.
2913
+ * @throws {RequiredError}
2914
+ */
2915
+ v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2846
2916
  /**
2847
2917
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2848
2918
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -2858,7 +2928,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2858
2928
  */
2859
2929
  v1UpdateOrganizationTarget(requestParameters: DefaultApiV1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1OrganizationTarget>;
2860
2930
  /**
2861
- * Update satellite target.
2931
+ * Update a private satellite target.
2862
2932
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
2863
2933
  * @param {*} [options] Override http request option.
2864
2934
  * @throws {RequiredError}
@@ -3390,6 +3460,19 @@ export interface DefaultApiV1GetWebhookLogsRequest {
3390
3460
  */
3391
3461
  readonly offset?: number;
3392
3462
  }
3463
+ /**
3464
+ * Request parameters for v1PutOrbitProviderTLEOrbit operation in DefaultApi.
3465
+ * @export
3466
+ * @interface DefaultApiV1PutOrbitProviderTLEOrbitRequest
3467
+ */
3468
+ export interface DefaultApiV1PutOrbitProviderTLEOrbitRequest {
3469
+ /**
3470
+ *
3471
+ * @type {V1PutOrbitProviderTLERequest}
3472
+ * @memberof DefaultApiV1PutOrbitProviderTLEOrbit
3473
+ */
3474
+ readonly v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest;
3475
+ }
3393
3476
  /**
3394
3477
  * Request parameters for v1UpdateEmailConfiguration operation in DefaultApi.
3395
3478
  * @export
@@ -3726,6 +3809,14 @@ export declare class DefaultApi extends BaseAPI {
3726
3809
  * @memberof DefaultApi
3727
3810
  */
3728
3811
  v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1WebhookLog[], any>>;
3812
+ /**
3813
+ * Create or update an orbit for a target via a two-line element set (TLE)
3814
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
3815
+ * @param {*} [options] Override http request option.
3816
+ * @throws {RequiredError}
3817
+ * @memberof DefaultApi
3818
+ */
3819
+ v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
3729
3820
  /**
3730
3821
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
3731
3822
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -3743,7 +3834,7 @@ export declare class DefaultApi extends BaseAPI {
3743
3834
  */
3744
3835
  v1UpdateOrganizationTarget(requestParameters: DefaultApiV1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OrganizationTarget, any>>;
3745
3836
  /**
3746
- * Update satellite target.
3837
+ * Update a private satellite target.
3747
3838
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
3748
3839
  * @param {*} [options] Override http request option.
3749
3840
  * @throws {RequiredError}
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1419,6 +1419,39 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1419
1419
  options: localVarRequestOptions,
1420
1420
  };
1421
1421
  }),
1422
+ /**
1423
+ * Create or update an orbit for a target via a two-line element set (TLE)
1424
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
1425
+ * @param {*} [options] Override http request option.
1426
+ * @throws {RequiredError}
1427
+ */
1428
+ v1PutOrbitProviderTLEOrbit: (v1PutOrbitProviderTLERequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
1429
+ // verify required parameter 'v1PutOrbitProviderTLERequest' is not null or undefined
1430
+ (0, common_1.assertParamExists)('v1PutOrbitProviderTLEOrbit', 'v1PutOrbitProviderTLERequest', v1PutOrbitProviderTLERequest);
1431
+ const localVarPath = `/v1/orbit-provider/tle`;
1432
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1433
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1434
+ let baseOptions;
1435
+ if (configuration) {
1436
+ baseOptions = configuration.baseOptions;
1437
+ }
1438
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
1439
+ const localVarHeaderParameter = {};
1440
+ const localVarQueryParameter = {};
1441
+ // authentication Roles required
1442
+ // authentication BearerToken required
1443
+ // http bearer authentication required
1444
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1445
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1446
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1447
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1448
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1449
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1PutOrbitProviderTLERequest, localVarRequestOptions, configuration);
1450
+ return {
1451
+ url: (0, common_1.toPathString)(localVarUrlObj),
1452
+ options: localVarRequestOptions,
1453
+ };
1454
+ }),
1422
1455
  /**
1423
1456
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
1424
1457
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -1486,7 +1519,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1486
1519
  };
1487
1520
  }),
1488
1521
  /**
1489
- * Update satellite target.
1522
+ * Update a private satellite target.
1490
1523
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
1491
1524
  * @param {*} [options] Override http request option.
1492
1525
  * @throws {RequiredError}
@@ -1995,6 +2028,18 @@ const DefaultApiFp = function (configuration) {
1995
2028
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1996
2029
  });
1997
2030
  },
2031
+ /**
2032
+ * Create or update an orbit for a target via a two-line element set (TLE)
2033
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
2034
+ * @param {*} [options] Override http request option.
2035
+ * @throws {RequiredError}
2036
+ */
2037
+ v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest, options) {
2038
+ return __awaiter(this, void 0, void 0, function* () {
2039
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest, options);
2040
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2041
+ });
2042
+ },
1998
2043
  /**
1999
2044
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2000
2045
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -2020,7 +2065,7 @@ const DefaultApiFp = function (configuration) {
2020
2065
  });
2021
2066
  },
2022
2067
  /**
2023
- * Update satellite target.
2068
+ * Update a private satellite target.
2024
2069
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
2025
2070
  * @param {*} [options] Override http request option.
2026
2071
  * @throws {RequiredError}
@@ -2365,6 +2410,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2365
2410
  v1GetWebhookLogs(requestParameters, options) {
2366
2411
  return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
2367
2412
  },
2413
+ /**
2414
+ * Create or update an orbit for a target via a two-line element set (TLE)
2415
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
2416
+ * @param {*} [options] Override http request option.
2417
+ * @throws {RequiredError}
2418
+ */
2419
+ v1PutOrbitProviderTLEOrbit(requestParameters, options) {
2420
+ return localVarFp.v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(axios, basePath));
2421
+ },
2368
2422
  /**
2369
2423
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2370
2424
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -2384,7 +2438,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2384
2438
  return localVarFp.v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
2385
2439
  },
2386
2440
  /**
2387
- * Update satellite target.
2441
+ * Update a private satellite target.
2388
2442
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
2389
2443
  * @param {*} [options] Override http request option.
2390
2444
  * @throws {RequiredError}
@@ -2758,6 +2812,16 @@ class DefaultApi extends base_1.BaseAPI {
2758
2812
  v1GetWebhookLogs(requestParameters, options) {
2759
2813
  return (0, exports.DefaultApiFp)(this.configuration).v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
2760
2814
  }
2815
+ /**
2816
+ * Create or update an orbit for a target via a two-line element set (TLE)
2817
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
2818
+ * @param {*} [options] Override http request option.
2819
+ * @throws {RequiredError}
2820
+ * @memberof DefaultApi
2821
+ */
2822
+ v1PutOrbitProviderTLEOrbit(requestParameters, options) {
2823
+ return (0, exports.DefaultApiFp)(this.configuration).v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(this.axios, this.basePath));
2824
+ }
2761
2825
  /**
2762
2826
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2763
2827
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -2779,7 +2843,7 @@ class DefaultApi extends base_1.BaseAPI {
2779
2843
  return (0, exports.DefaultApiFp)(this.configuration).v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(this.axios, this.basePath));
2780
2844
  }
2781
2845
  /**
2782
- * Update satellite target.
2846
+ * Update a private satellite target.
2783
2847
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
2784
2848
  * @param {*} [options] Override http request option.
2785
2849
  * @throws {RequiredError}
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
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
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
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
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -299,13 +299,13 @@ export interface ObservationResult {
299
299
  */
300
300
  'apparentMagnitude'?: number;
301
301
  /**
302
- * BETA: the solar phase angle in degrees at the time of observation
302
+ * BETA: the solar phase angle, defined as the angle between the target->observer and target->sun vectors, in degrees at the time of observation
303
303
  * @type {number}
304
304
  * @memberof ObservationResult
305
305
  */
306
306
  'solarPhaseAngle'?: number;
307
307
  /**
308
- * BETA: the solar equatorial phase angle in degrees at the time of observation
308
+ * BETA: the solar equatorial phase angle, defined as the solar phase angle in the equatorial plane, in degrees at the time of observation
309
309
  * @type {number}
310
310
  * @memberof ObservationResult
311
311
  */
@@ -1303,6 +1303,55 @@ export interface V1PredictedStreakLocation {
1303
1303
  */
1304
1304
  'endY'?: number;
1305
1305
  }
1306
+ /**
1307
+ * Upsert (create or update) a satellite target with new a new TLE. If creating a new target, do not enter a `satellite_target_id`. If updating an existing satellite target, the satellite target id must be one found in the OurSky database using the `/v1/satellite-targets` endpoint.
1308
+ * @export
1309
+ * @interface V1PutOrbitProviderTLERequest
1310
+ */
1311
+ export interface V1PutOrbitProviderTLERequest {
1312
+ /**
1313
+ * Existing target id of an OurSky target that you are providing a TLE for. Leave null if one does not exist in the database.
1314
+ * @type {string}
1315
+ * @memberof V1PutOrbitProviderTLERequest
1316
+ */
1317
+ 'satellite_target_id'?: string;
1318
+ /**
1319
+ *
1320
+ * @type {string}
1321
+ * @memberof V1PutOrbitProviderTLERequest
1322
+ */
1323
+ 'tle_line_1': string;
1324
+ /**
1325
+ *
1326
+ * @type {string}
1327
+ * @memberof V1PutOrbitProviderTLERequest
1328
+ */
1329
+ 'tle_line_2': string;
1330
+ /**
1331
+ *
1332
+ * @type {string}
1333
+ * @memberof V1PutOrbitProviderTLERequest
1334
+ */
1335
+ 'tle_name'?: string;
1336
+ /**
1337
+ * mass in kilograms
1338
+ * @type {number}
1339
+ * @memberof V1PutOrbitProviderTLERequest
1340
+ */
1341
+ 'mass'?: number;
1342
+ /**
1343
+ * The Cr value used to calculate acceleration due to solar radiation pressure
1344
+ * @type {number}
1345
+ * @memberof V1PutOrbitProviderTLERequest
1346
+ */
1347
+ 'coefficientOfReflection'?: number;
1348
+ /**
1349
+ * cross sectional area in meters^2
1350
+ * @type {number}
1351
+ * @memberof V1PutOrbitProviderTLERequest
1352
+ */
1353
+ 'crossSection'?: number;
1354
+ }
1306
1355
  /**
1307
1356
  * SatellitePotential
1308
1357
  * @export
@@ -1824,7 +1873,7 @@ export interface V1UpdateSatelliteTargetRequest {
1824
1873
  */
1825
1874
  'tleLine2': string;
1826
1875
  /**
1827
- * -| The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
1876
+ * The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
1828
1877
  * @type {string}
1829
1878
  * @memberof V1UpdateSatelliteTargetRequest
1830
1879
  */
@@ -2274,6 +2323,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2274
2323
  * @throws {RequiredError}
2275
2324
  */
2276
2325
  v1GetWebhookLogs: (webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2326
+ /**
2327
+ * Create or update an orbit for a target via a two-line element set (TLE)
2328
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
2329
+ * @param {*} [options] Override http request option.
2330
+ * @throws {RequiredError}
2331
+ */
2332
+ v1PutOrbitProviderTLEOrbit: (v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2277
2333
  /**
2278
2334
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2279
2335
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -2289,7 +2345,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2289
2345
  */
2290
2346
  v1UpdateOrganizationTarget: (v1UpdateOrganizationTargetRequest: V1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2291
2347
  /**
2292
- * Update satellite target.
2348
+ * Update a private satellite target.
2293
2349
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
2294
2350
  * @param {*} [options] Override http request option.
2295
2351
  * @throws {RequiredError}
@@ -2567,6 +2623,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2567
2623
  * @throws {RequiredError}
2568
2624
  */
2569
2625
  v1GetWebhookLogs(webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1WebhookLog>>>;
2626
+ /**
2627
+ * Create or update an orbit for a target via a two-line element set (TLE)
2628
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
2629
+ * @param {*} [options] Override http request option.
2630
+ * @throws {RequiredError}
2631
+ */
2632
+ v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2570
2633
  /**
2571
2634
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2572
2635
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -2582,7 +2645,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2582
2645
  */
2583
2646
  v1UpdateOrganizationTarget(v1UpdateOrganizationTargetRequest: V1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OrganizationTarget>>;
2584
2647
  /**
2585
- * Update satellite target.
2648
+ * Update a private satellite target.
2586
2649
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
2587
2650
  * @param {*} [options] Override http request option.
2588
2651
  * @throws {RequiredError}
@@ -2843,6 +2906,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2843
2906
  * @throws {RequiredError}
2844
2907
  */
2845
2908
  v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookLog>>;
2909
+ /**
2910
+ * Create or update an orbit for a target via a two-line element set (TLE)
2911
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
2912
+ * @param {*} [options] Override http request option.
2913
+ * @throws {RequiredError}
2914
+ */
2915
+ v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2846
2916
  /**
2847
2917
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2848
2918
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -2858,7 +2928,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2858
2928
  */
2859
2929
  v1UpdateOrganizationTarget(requestParameters: DefaultApiV1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1OrganizationTarget>;
2860
2930
  /**
2861
- * Update satellite target.
2931
+ * Update a private satellite target.
2862
2932
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
2863
2933
  * @param {*} [options] Override http request option.
2864
2934
  * @throws {RequiredError}
@@ -3390,6 +3460,19 @@ export interface DefaultApiV1GetWebhookLogsRequest {
3390
3460
  */
3391
3461
  readonly offset?: number;
3392
3462
  }
3463
+ /**
3464
+ * Request parameters for v1PutOrbitProviderTLEOrbit operation in DefaultApi.
3465
+ * @export
3466
+ * @interface DefaultApiV1PutOrbitProviderTLEOrbitRequest
3467
+ */
3468
+ export interface DefaultApiV1PutOrbitProviderTLEOrbitRequest {
3469
+ /**
3470
+ *
3471
+ * @type {V1PutOrbitProviderTLERequest}
3472
+ * @memberof DefaultApiV1PutOrbitProviderTLEOrbit
3473
+ */
3474
+ readonly v1PutOrbitProviderTLERequest: V1PutOrbitProviderTLERequest;
3475
+ }
3393
3476
  /**
3394
3477
  * Request parameters for v1UpdateEmailConfiguration operation in DefaultApi.
3395
3478
  * @export
@@ -3726,6 +3809,14 @@ export declare class DefaultApi extends BaseAPI {
3726
3809
  * @memberof DefaultApi
3727
3810
  */
3728
3811
  v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1WebhookLog[], any>>;
3812
+ /**
3813
+ * Create or update an orbit for a target via a two-line element set (TLE)
3814
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
3815
+ * @param {*} [options] Override http request option.
3816
+ * @throws {RequiredError}
3817
+ * @memberof DefaultApi
3818
+ */
3819
+ v1PutOrbitProviderTLEOrbit(requestParameters: DefaultApiV1PutOrbitProviderTLEOrbitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
3729
3820
  /**
3730
3821
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
3731
3822
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -3743,7 +3834,7 @@ export declare class DefaultApi extends BaseAPI {
3743
3834
  */
3744
3835
  v1UpdateOrganizationTarget(requestParameters: DefaultApiV1UpdateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OrganizationTarget, any>>;
3745
3836
  /**
3746
- * Update satellite target.
3837
+ * Update a private satellite target.
3747
3838
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
3748
3839
  * @param {*} [options] Override http request option.
3749
3840
  * @throws {RequiredError}
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1416,6 +1416,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1416
1416
  options: localVarRequestOptions,
1417
1417
  };
1418
1418
  }),
1419
+ /**
1420
+ * Create or update an orbit for a target via a two-line element set (TLE)
1421
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
1422
+ * @param {*} [options] Override http request option.
1423
+ * @throws {RequiredError}
1424
+ */
1425
+ v1PutOrbitProviderTLEOrbit: (v1PutOrbitProviderTLERequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
1426
+ // verify required parameter 'v1PutOrbitProviderTLERequest' is not null or undefined
1427
+ assertParamExists('v1PutOrbitProviderTLEOrbit', 'v1PutOrbitProviderTLERequest', v1PutOrbitProviderTLERequest);
1428
+ const localVarPath = `/v1/orbit-provider/tle`;
1429
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1430
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1431
+ let baseOptions;
1432
+ if (configuration) {
1433
+ baseOptions = configuration.baseOptions;
1434
+ }
1435
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
1436
+ const localVarHeaderParameter = {};
1437
+ const localVarQueryParameter = {};
1438
+ // authentication Roles required
1439
+ // authentication BearerToken required
1440
+ // http bearer authentication required
1441
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1442
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1443
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1444
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1445
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1446
+ localVarRequestOptions.data = serializeDataIfNeeded(v1PutOrbitProviderTLERequest, localVarRequestOptions, configuration);
1447
+ return {
1448
+ url: toPathString(localVarUrlObj),
1449
+ options: localVarRequestOptions,
1450
+ };
1451
+ }),
1419
1452
  /**
1420
1453
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
1421
1454
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -1483,7 +1516,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1483
1516
  };
1484
1517
  }),
1485
1518
  /**
1486
- * Update satellite target.
1519
+ * Update a private satellite target.
1487
1520
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
1488
1521
  * @param {*} [options] Override http request option.
1489
1522
  * @throws {RequiredError}
@@ -1991,6 +2024,18 @@ export const DefaultApiFp = function (configuration) {
1991
2024
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1992
2025
  });
1993
2026
  },
2027
+ /**
2028
+ * Create or update an orbit for a target via a two-line element set (TLE)
2029
+ * @param {V1PutOrbitProviderTLERequest} v1PutOrbitProviderTLERequest
2030
+ * @param {*} [options] Override http request option.
2031
+ * @throws {RequiredError}
2032
+ */
2033
+ v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest, options) {
2034
+ return __awaiter(this, void 0, void 0, function* () {
2035
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1PutOrbitProviderTLEOrbit(v1PutOrbitProviderTLERequest, options);
2036
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2037
+ });
2038
+ },
1994
2039
  /**
1995
2040
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
1996
2041
  * @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
@@ -2016,7 +2061,7 @@ export const DefaultApiFp = function (configuration) {
2016
2061
  });
2017
2062
  },
2018
2063
  /**
2019
- * Update satellite target.
2064
+ * Update a private satellite target.
2020
2065
  * @param {V1UpdateSatelliteTargetRequest} v1UpdateSatelliteTargetRequest
2021
2066
  * @param {*} [options] Override http request option.
2022
2067
  * @throws {RequiredError}
@@ -2360,6 +2405,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2360
2405
  v1GetWebhookLogs(requestParameters, options) {
2361
2406
  return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
2362
2407
  },
2408
+ /**
2409
+ * Create or update an orbit for a target via a two-line element set (TLE)
2410
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
2411
+ * @param {*} [options] Override http request option.
2412
+ * @throws {RequiredError}
2413
+ */
2414
+ v1PutOrbitProviderTLEOrbit(requestParameters, options) {
2415
+ return localVarFp.v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(axios, basePath));
2416
+ },
2363
2417
  /**
2364
2418
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2365
2419
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -2379,7 +2433,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2379
2433
  return localVarFp.v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
2380
2434
  },
2381
2435
  /**
2382
- * Update satellite target.
2436
+ * Update a private satellite target.
2383
2437
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
2384
2438
  * @param {*} [options] Override http request option.
2385
2439
  * @throws {RequiredError}
@@ -2752,6 +2806,16 @@ export class DefaultApi extends BaseAPI {
2752
2806
  v1GetWebhookLogs(requestParameters, options) {
2753
2807
  return DefaultApiFp(this.configuration).v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
2754
2808
  }
2809
+ /**
2810
+ * Create or update an orbit for a target via a two-line element set (TLE)
2811
+ * @param {DefaultApiV1PutOrbitProviderTLEOrbitRequest} requestParameters Request parameters.
2812
+ * @param {*} [options] Override http request option.
2813
+ * @throws {RequiredError}
2814
+ * @memberof DefaultApi
2815
+ */
2816
+ v1PutOrbitProviderTLEOrbit(requestParameters, options) {
2817
+ return DefaultApiFp(this.configuration).v1PutOrbitProviderTLEOrbit(requestParameters.v1PutOrbitProviderTLERequest, options).then((request) => request(this.axios, this.basePath));
2818
+ }
2755
2819
  /**
2756
2820
  * Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
2757
2821
  * @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
@@ -2773,7 +2837,7 @@ export class DefaultApi extends BaseAPI {
2773
2837
  return DefaultApiFp(this.configuration).v1UpdateOrganizationTarget(requestParameters.v1UpdateOrganizationTargetRequest, options).then((request) => request(this.axios, this.basePath));
2774
2838
  }
2775
2839
  /**
2776
- * Update satellite target.
2840
+ * Update a private satellite target.
2777
2841
  * @param {DefaultApiV1UpdateSatelliteTargetRequest} requestParameters Request parameters.
2778
2842
  * @param {*} [options] Override http request option.
2779
2843
  * @throws {RequiredError}
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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.5447",
3
+ "version": "1.3.5667",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {