@ourskyai/sda-api 1.3.3830 → 1.3.3836
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +138 -5
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +140 -7
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +140 -7
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/sda-api@1.3.
|
|
1
|
+
## @ourskyai/sda-api@1.3.3836
|
|
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.
|
|
39
|
+
npm install @ourskyai/sda-api@1.3.3836 --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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -408,6 +408,19 @@ export interface SuccessfulCreate {
|
|
|
408
408
|
*/
|
|
409
409
|
'id': string;
|
|
410
410
|
}
|
|
411
|
+
/**
|
|
412
|
+
*
|
|
413
|
+
* @export
|
|
414
|
+
* @interface SuccessfulDelete
|
|
415
|
+
*/
|
|
416
|
+
export interface SuccessfulDelete {
|
|
417
|
+
/**
|
|
418
|
+
*
|
|
419
|
+
* @type {string}
|
|
420
|
+
* @memberof SuccessfulDelete
|
|
421
|
+
*/
|
|
422
|
+
'id': string;
|
|
423
|
+
}
|
|
411
424
|
/**
|
|
412
425
|
*
|
|
413
426
|
* @export
|
|
@@ -1279,6 +1292,126 @@ export interface V1SatelliteTarget {
|
|
|
1279
1292
|
* @memberof V1SatelliteTarget
|
|
1280
1293
|
*/
|
|
1281
1294
|
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
1295
|
+
/**
|
|
1296
|
+
*
|
|
1297
|
+
* @type {string}
|
|
1298
|
+
* @memberof V1SatelliteTarget
|
|
1299
|
+
*/
|
|
1300
|
+
'classification'?: string;
|
|
1301
|
+
/**
|
|
1302
|
+
*
|
|
1303
|
+
* @type {number}
|
|
1304
|
+
* @memberof V1SatelliteTarget
|
|
1305
|
+
*/
|
|
1306
|
+
'launchYear'?: number;
|
|
1307
|
+
/**
|
|
1308
|
+
*
|
|
1309
|
+
* @type {number}
|
|
1310
|
+
* @memberof V1SatelliteTarget
|
|
1311
|
+
*/
|
|
1312
|
+
'epochYear'?: number;
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @type {number}
|
|
1316
|
+
* @memberof V1SatelliteTarget
|
|
1317
|
+
*/
|
|
1318
|
+
'epochDay'?: number;
|
|
1319
|
+
/**
|
|
1320
|
+
*
|
|
1321
|
+
* @type {number}
|
|
1322
|
+
* @memberof V1SatelliteTarget
|
|
1323
|
+
*/
|
|
1324
|
+
'meanMotionFirstDerivative'?: number;
|
|
1325
|
+
/**
|
|
1326
|
+
*
|
|
1327
|
+
* @type {number}
|
|
1328
|
+
* @memberof V1SatelliteTarget
|
|
1329
|
+
*/
|
|
1330
|
+
'meanMotionSecondDerivative'?: number;
|
|
1331
|
+
/**
|
|
1332
|
+
*
|
|
1333
|
+
* @type {number}
|
|
1334
|
+
* @memberof V1SatelliteTarget
|
|
1335
|
+
*/
|
|
1336
|
+
'bstar'?: number;
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {number}
|
|
1340
|
+
* @memberof V1SatelliteTarget
|
|
1341
|
+
*/
|
|
1342
|
+
'ephemerisType'?: number;
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @type {number}
|
|
1346
|
+
* @memberof V1SatelliteTarget
|
|
1347
|
+
*/
|
|
1348
|
+
'elementNumber'?: number;
|
|
1349
|
+
/**
|
|
1350
|
+
*
|
|
1351
|
+
* @type {number}
|
|
1352
|
+
* @memberof V1SatelliteTarget
|
|
1353
|
+
*/
|
|
1354
|
+
'inclination'?: number;
|
|
1355
|
+
/**
|
|
1356
|
+
*
|
|
1357
|
+
* @type {number}
|
|
1358
|
+
* @memberof V1SatelliteTarget
|
|
1359
|
+
*/
|
|
1360
|
+
'raan'?: number;
|
|
1361
|
+
/**
|
|
1362
|
+
*
|
|
1363
|
+
* @type {number}
|
|
1364
|
+
* @memberof V1SatelliteTarget
|
|
1365
|
+
*/
|
|
1366
|
+
'eccentricity'?: number;
|
|
1367
|
+
/**
|
|
1368
|
+
*
|
|
1369
|
+
* @type {number}
|
|
1370
|
+
* @memberof V1SatelliteTarget
|
|
1371
|
+
*/
|
|
1372
|
+
'perigeeArgument'?: number;
|
|
1373
|
+
/**
|
|
1374
|
+
*
|
|
1375
|
+
* @type {number}
|
|
1376
|
+
* @memberof V1SatelliteTarget
|
|
1377
|
+
*/
|
|
1378
|
+
'meanAnomaly'?: number;
|
|
1379
|
+
/**
|
|
1380
|
+
*
|
|
1381
|
+
* @type {number}
|
|
1382
|
+
* @memberof V1SatelliteTarget
|
|
1383
|
+
*/
|
|
1384
|
+
'meanMotion'?: number;
|
|
1385
|
+
/**
|
|
1386
|
+
*
|
|
1387
|
+
* @type {number}
|
|
1388
|
+
* @memberof V1SatelliteTarget
|
|
1389
|
+
*/
|
|
1390
|
+
'revolutionNumberAtEpoch'?: number;
|
|
1391
|
+
/**
|
|
1392
|
+
*
|
|
1393
|
+
* @type {string}
|
|
1394
|
+
* @memberof V1SatelliteTarget
|
|
1395
|
+
*/
|
|
1396
|
+
'organizationId'?: string;
|
|
1397
|
+
/**
|
|
1398
|
+
*
|
|
1399
|
+
* @type {number}
|
|
1400
|
+
* @memberof V1SatelliteTarget
|
|
1401
|
+
*/
|
|
1402
|
+
'coefficientOfReflection'?: number;
|
|
1403
|
+
/**
|
|
1404
|
+
*
|
|
1405
|
+
* @type {number}
|
|
1406
|
+
* @memberof V1SatelliteTarget
|
|
1407
|
+
*/
|
|
1408
|
+
'mass'?: number;
|
|
1409
|
+
/**
|
|
1410
|
+
*
|
|
1411
|
+
* @type {number}
|
|
1412
|
+
* @memberof V1SatelliteTarget
|
|
1413
|
+
*/
|
|
1414
|
+
'area'?: number;
|
|
1282
1415
|
}
|
|
1283
1416
|
|
|
1284
1417
|
|
|
@@ -3260,7 +3393,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3260
3393
|
* @param {*} [options] Override http request option.
|
|
3261
3394
|
* @throws {RequiredError}
|
|
3262
3395
|
*/
|
|
3263
|
-
async v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3396
|
+
async v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OrganizationTarget>> {
|
|
3264
3397
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest, options);
|
|
3265
3398
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3266
3399
|
},
|
|
@@ -3330,7 +3463,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3330
3463
|
* @param {*} [options] Override http request option.
|
|
3331
3464
|
* @throws {RequiredError}
|
|
3332
3465
|
*/
|
|
3333
|
-
async v1DeleteOrganizationTarget(satelliteTargetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3466
|
+
async v1DeleteOrganizationTarget(satelliteTargetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulDelete>> {
|
|
3334
3467
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteOrganizationTarget(satelliteTargetId, options);
|
|
3335
3468
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3336
3469
|
},
|
|
@@ -3620,7 +3753,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3620
3753
|
* @param {*} [options] Override http request option.
|
|
3621
3754
|
* @throws {RequiredError}
|
|
3622
3755
|
*/
|
|
3623
|
-
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
3756
|
+
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1OrganizationTarget> {
|
|
3624
3757
|
return localVarFp.v1CreateOrganizationTarget(requestParameters.v1CreateOrganizationTargetRequest, options).then((request) => request(axios, basePath));
|
|
3625
3758
|
},
|
|
3626
3759
|
/**
|
|
@@ -3683,7 +3816,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3683
3816
|
* @param {*} [options] Override http request option.
|
|
3684
3817
|
* @throws {RequiredError}
|
|
3685
3818
|
*/
|
|
3686
|
-
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
3819
|
+
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete> {
|
|
3687
3820
|
return localVarFp.v1DeleteOrganizationTarget(requestParameters.satelliteTargetId, options).then((request) => request(axios, basePath));
|
|
3688
3821
|
},
|
|
3689
3822
|
/**
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -374,6 +374,19 @@ export interface SuccessfulCreate {
|
|
|
374
374
|
*/
|
|
375
375
|
'id': string;
|
|
376
376
|
}
|
|
377
|
+
/**
|
|
378
|
+
*
|
|
379
|
+
* @export
|
|
380
|
+
* @interface SuccessfulDelete
|
|
381
|
+
*/
|
|
382
|
+
export interface SuccessfulDelete {
|
|
383
|
+
/**
|
|
384
|
+
*
|
|
385
|
+
* @type {string}
|
|
386
|
+
* @memberof SuccessfulDelete
|
|
387
|
+
*/
|
|
388
|
+
'id': string;
|
|
389
|
+
}
|
|
377
390
|
/**
|
|
378
391
|
*
|
|
379
392
|
* @export
|
|
@@ -1229,6 +1242,126 @@ export interface V1SatelliteTarget {
|
|
|
1229
1242
|
* @memberof V1SatelliteTarget
|
|
1230
1243
|
*/
|
|
1231
1244
|
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
1245
|
+
/**
|
|
1246
|
+
*
|
|
1247
|
+
* @type {string}
|
|
1248
|
+
* @memberof V1SatelliteTarget
|
|
1249
|
+
*/
|
|
1250
|
+
'classification'?: string;
|
|
1251
|
+
/**
|
|
1252
|
+
*
|
|
1253
|
+
* @type {number}
|
|
1254
|
+
* @memberof V1SatelliteTarget
|
|
1255
|
+
*/
|
|
1256
|
+
'launchYear'?: number;
|
|
1257
|
+
/**
|
|
1258
|
+
*
|
|
1259
|
+
* @type {number}
|
|
1260
|
+
* @memberof V1SatelliteTarget
|
|
1261
|
+
*/
|
|
1262
|
+
'epochYear'?: number;
|
|
1263
|
+
/**
|
|
1264
|
+
*
|
|
1265
|
+
* @type {number}
|
|
1266
|
+
* @memberof V1SatelliteTarget
|
|
1267
|
+
*/
|
|
1268
|
+
'epochDay'?: number;
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* @type {number}
|
|
1272
|
+
* @memberof V1SatelliteTarget
|
|
1273
|
+
*/
|
|
1274
|
+
'meanMotionFirstDerivative'?: number;
|
|
1275
|
+
/**
|
|
1276
|
+
*
|
|
1277
|
+
* @type {number}
|
|
1278
|
+
* @memberof V1SatelliteTarget
|
|
1279
|
+
*/
|
|
1280
|
+
'meanMotionSecondDerivative'?: number;
|
|
1281
|
+
/**
|
|
1282
|
+
*
|
|
1283
|
+
* @type {number}
|
|
1284
|
+
* @memberof V1SatelliteTarget
|
|
1285
|
+
*/
|
|
1286
|
+
'bstar'?: number;
|
|
1287
|
+
/**
|
|
1288
|
+
*
|
|
1289
|
+
* @type {number}
|
|
1290
|
+
* @memberof V1SatelliteTarget
|
|
1291
|
+
*/
|
|
1292
|
+
'ephemerisType'?: number;
|
|
1293
|
+
/**
|
|
1294
|
+
*
|
|
1295
|
+
* @type {number}
|
|
1296
|
+
* @memberof V1SatelliteTarget
|
|
1297
|
+
*/
|
|
1298
|
+
'elementNumber'?: number;
|
|
1299
|
+
/**
|
|
1300
|
+
*
|
|
1301
|
+
* @type {number}
|
|
1302
|
+
* @memberof V1SatelliteTarget
|
|
1303
|
+
*/
|
|
1304
|
+
'inclination'?: number;
|
|
1305
|
+
/**
|
|
1306
|
+
*
|
|
1307
|
+
* @type {number}
|
|
1308
|
+
* @memberof V1SatelliteTarget
|
|
1309
|
+
*/
|
|
1310
|
+
'raan'?: number;
|
|
1311
|
+
/**
|
|
1312
|
+
*
|
|
1313
|
+
* @type {number}
|
|
1314
|
+
* @memberof V1SatelliteTarget
|
|
1315
|
+
*/
|
|
1316
|
+
'eccentricity'?: number;
|
|
1317
|
+
/**
|
|
1318
|
+
*
|
|
1319
|
+
* @type {number}
|
|
1320
|
+
* @memberof V1SatelliteTarget
|
|
1321
|
+
*/
|
|
1322
|
+
'perigeeArgument'?: number;
|
|
1323
|
+
/**
|
|
1324
|
+
*
|
|
1325
|
+
* @type {number}
|
|
1326
|
+
* @memberof V1SatelliteTarget
|
|
1327
|
+
*/
|
|
1328
|
+
'meanAnomaly'?: number;
|
|
1329
|
+
/**
|
|
1330
|
+
*
|
|
1331
|
+
* @type {number}
|
|
1332
|
+
* @memberof V1SatelliteTarget
|
|
1333
|
+
*/
|
|
1334
|
+
'meanMotion'?: number;
|
|
1335
|
+
/**
|
|
1336
|
+
*
|
|
1337
|
+
* @type {number}
|
|
1338
|
+
* @memberof V1SatelliteTarget
|
|
1339
|
+
*/
|
|
1340
|
+
'revolutionNumberAtEpoch'?: number;
|
|
1341
|
+
/**
|
|
1342
|
+
*
|
|
1343
|
+
* @type {string}
|
|
1344
|
+
* @memberof V1SatelliteTarget
|
|
1345
|
+
*/
|
|
1346
|
+
'organizationId'?: string;
|
|
1347
|
+
/**
|
|
1348
|
+
*
|
|
1349
|
+
* @type {number}
|
|
1350
|
+
* @memberof V1SatelliteTarget
|
|
1351
|
+
*/
|
|
1352
|
+
'coefficientOfReflection'?: number;
|
|
1353
|
+
/**
|
|
1354
|
+
*
|
|
1355
|
+
* @type {number}
|
|
1356
|
+
* @memberof V1SatelliteTarget
|
|
1357
|
+
*/
|
|
1358
|
+
'mass'?: number;
|
|
1359
|
+
/**
|
|
1360
|
+
*
|
|
1361
|
+
* @type {number}
|
|
1362
|
+
* @memberof V1SatelliteTarget
|
|
1363
|
+
*/
|
|
1364
|
+
'area'?: number;
|
|
1232
1365
|
}
|
|
1233
1366
|
/**
|
|
1234
1367
|
* Search Instruction
|
|
@@ -1953,7 +2086,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1953
2086
|
* @param {*} [options] Override http request option.
|
|
1954
2087
|
* @throws {RequiredError}
|
|
1955
2088
|
*/
|
|
1956
|
-
v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2089
|
+
v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OrganizationTarget>>;
|
|
1957
2090
|
/**
|
|
1958
2091
|
* Create a private satellite target. This target will only be visible to your organization
|
|
1959
2092
|
* @param {V1CreateSatelliteTargetRequest} v1CreateSatelliteTargetRequest
|
|
@@ -2002,7 +2135,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2002
2135
|
* @param {*} [options] Override http request option.
|
|
2003
2136
|
* @throws {RequiredError}
|
|
2004
2137
|
*/
|
|
2005
|
-
v1DeleteOrganizationTarget(satelliteTargetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2138
|
+
v1DeleteOrganizationTarget(satelliteTargetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulDelete>>;
|
|
2006
2139
|
/**
|
|
2007
2140
|
* Delete a search instruction.
|
|
2008
2141
|
* @param {string} id
|
|
@@ -2209,7 +2342,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2209
2342
|
* @param {*} [options] Override http request option.
|
|
2210
2343
|
* @throws {RequiredError}
|
|
2211
2344
|
*/
|
|
2212
|
-
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
2345
|
+
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1OrganizationTarget>;
|
|
2213
2346
|
/**
|
|
2214
2347
|
* Create a private satellite target. This target will only be visible to your organization
|
|
2215
2348
|
* @param {DefaultApiV1CreateSatelliteTargetRequest} requestParameters Request parameters.
|
|
@@ -2258,7 +2391,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2258
2391
|
* @param {*} [options] Override http request option.
|
|
2259
2392
|
* @throws {RequiredError}
|
|
2260
2393
|
*/
|
|
2261
|
-
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
2394
|
+
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete>;
|
|
2262
2395
|
/**
|
|
2263
2396
|
* Delete a search instruction.
|
|
2264
2397
|
* @param {DefaultApiV1DeleteSearchInstructionRequest} requestParameters Request parameters.
|
|
@@ -2948,7 +3081,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2948
3081
|
* @throws {RequiredError}
|
|
2949
3082
|
* @memberof DefaultApi
|
|
2950
3083
|
*/
|
|
2951
|
-
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3084
|
+
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OrganizationTarget, any>>;
|
|
2952
3085
|
/**
|
|
2953
3086
|
* Create a private satellite target. This target will only be visible to your organization
|
|
2954
3087
|
* @param {DefaultApiV1CreateSatelliteTargetRequest} requestParameters Request parameters.
|
|
@@ -3004,7 +3137,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3004
3137
|
* @throws {RequiredError}
|
|
3005
3138
|
* @memberof DefaultApi
|
|
3006
3139
|
*/
|
|
3007
|
-
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3140
|
+
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulDelete, any>>;
|
|
3008
3141
|
/**
|
|
3009
3142
|
* Delete a search instruction.
|
|
3010
3143
|
* @param {DefaultApiV1DeleteSearchInstructionRequest} requestParameters Request parameters.
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -374,6 +374,19 @@ export interface SuccessfulCreate {
|
|
|
374
374
|
*/
|
|
375
375
|
'id': string;
|
|
376
376
|
}
|
|
377
|
+
/**
|
|
378
|
+
*
|
|
379
|
+
* @export
|
|
380
|
+
* @interface SuccessfulDelete
|
|
381
|
+
*/
|
|
382
|
+
export interface SuccessfulDelete {
|
|
383
|
+
/**
|
|
384
|
+
*
|
|
385
|
+
* @type {string}
|
|
386
|
+
* @memberof SuccessfulDelete
|
|
387
|
+
*/
|
|
388
|
+
'id': string;
|
|
389
|
+
}
|
|
377
390
|
/**
|
|
378
391
|
*
|
|
379
392
|
* @export
|
|
@@ -1229,6 +1242,126 @@ export interface V1SatelliteTarget {
|
|
|
1229
1242
|
* @memberof V1SatelliteTarget
|
|
1230
1243
|
*/
|
|
1231
1244
|
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
1245
|
+
/**
|
|
1246
|
+
*
|
|
1247
|
+
* @type {string}
|
|
1248
|
+
* @memberof V1SatelliteTarget
|
|
1249
|
+
*/
|
|
1250
|
+
'classification'?: string;
|
|
1251
|
+
/**
|
|
1252
|
+
*
|
|
1253
|
+
* @type {number}
|
|
1254
|
+
* @memberof V1SatelliteTarget
|
|
1255
|
+
*/
|
|
1256
|
+
'launchYear'?: number;
|
|
1257
|
+
/**
|
|
1258
|
+
*
|
|
1259
|
+
* @type {number}
|
|
1260
|
+
* @memberof V1SatelliteTarget
|
|
1261
|
+
*/
|
|
1262
|
+
'epochYear'?: number;
|
|
1263
|
+
/**
|
|
1264
|
+
*
|
|
1265
|
+
* @type {number}
|
|
1266
|
+
* @memberof V1SatelliteTarget
|
|
1267
|
+
*/
|
|
1268
|
+
'epochDay'?: number;
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* @type {number}
|
|
1272
|
+
* @memberof V1SatelliteTarget
|
|
1273
|
+
*/
|
|
1274
|
+
'meanMotionFirstDerivative'?: number;
|
|
1275
|
+
/**
|
|
1276
|
+
*
|
|
1277
|
+
* @type {number}
|
|
1278
|
+
* @memberof V1SatelliteTarget
|
|
1279
|
+
*/
|
|
1280
|
+
'meanMotionSecondDerivative'?: number;
|
|
1281
|
+
/**
|
|
1282
|
+
*
|
|
1283
|
+
* @type {number}
|
|
1284
|
+
* @memberof V1SatelliteTarget
|
|
1285
|
+
*/
|
|
1286
|
+
'bstar'?: number;
|
|
1287
|
+
/**
|
|
1288
|
+
*
|
|
1289
|
+
* @type {number}
|
|
1290
|
+
* @memberof V1SatelliteTarget
|
|
1291
|
+
*/
|
|
1292
|
+
'ephemerisType'?: number;
|
|
1293
|
+
/**
|
|
1294
|
+
*
|
|
1295
|
+
* @type {number}
|
|
1296
|
+
* @memberof V1SatelliteTarget
|
|
1297
|
+
*/
|
|
1298
|
+
'elementNumber'?: number;
|
|
1299
|
+
/**
|
|
1300
|
+
*
|
|
1301
|
+
* @type {number}
|
|
1302
|
+
* @memberof V1SatelliteTarget
|
|
1303
|
+
*/
|
|
1304
|
+
'inclination'?: number;
|
|
1305
|
+
/**
|
|
1306
|
+
*
|
|
1307
|
+
* @type {number}
|
|
1308
|
+
* @memberof V1SatelliteTarget
|
|
1309
|
+
*/
|
|
1310
|
+
'raan'?: number;
|
|
1311
|
+
/**
|
|
1312
|
+
*
|
|
1313
|
+
* @type {number}
|
|
1314
|
+
* @memberof V1SatelliteTarget
|
|
1315
|
+
*/
|
|
1316
|
+
'eccentricity'?: number;
|
|
1317
|
+
/**
|
|
1318
|
+
*
|
|
1319
|
+
* @type {number}
|
|
1320
|
+
* @memberof V1SatelliteTarget
|
|
1321
|
+
*/
|
|
1322
|
+
'perigeeArgument'?: number;
|
|
1323
|
+
/**
|
|
1324
|
+
*
|
|
1325
|
+
* @type {number}
|
|
1326
|
+
* @memberof V1SatelliteTarget
|
|
1327
|
+
*/
|
|
1328
|
+
'meanAnomaly'?: number;
|
|
1329
|
+
/**
|
|
1330
|
+
*
|
|
1331
|
+
* @type {number}
|
|
1332
|
+
* @memberof V1SatelliteTarget
|
|
1333
|
+
*/
|
|
1334
|
+
'meanMotion'?: number;
|
|
1335
|
+
/**
|
|
1336
|
+
*
|
|
1337
|
+
* @type {number}
|
|
1338
|
+
* @memberof V1SatelliteTarget
|
|
1339
|
+
*/
|
|
1340
|
+
'revolutionNumberAtEpoch'?: number;
|
|
1341
|
+
/**
|
|
1342
|
+
*
|
|
1343
|
+
* @type {string}
|
|
1344
|
+
* @memberof V1SatelliteTarget
|
|
1345
|
+
*/
|
|
1346
|
+
'organizationId'?: string;
|
|
1347
|
+
/**
|
|
1348
|
+
*
|
|
1349
|
+
* @type {number}
|
|
1350
|
+
* @memberof V1SatelliteTarget
|
|
1351
|
+
*/
|
|
1352
|
+
'coefficientOfReflection'?: number;
|
|
1353
|
+
/**
|
|
1354
|
+
*
|
|
1355
|
+
* @type {number}
|
|
1356
|
+
* @memberof V1SatelliteTarget
|
|
1357
|
+
*/
|
|
1358
|
+
'mass'?: number;
|
|
1359
|
+
/**
|
|
1360
|
+
*
|
|
1361
|
+
* @type {number}
|
|
1362
|
+
* @memberof V1SatelliteTarget
|
|
1363
|
+
*/
|
|
1364
|
+
'area'?: number;
|
|
1232
1365
|
}
|
|
1233
1366
|
/**
|
|
1234
1367
|
* Search Instruction
|
|
@@ -1953,7 +2086,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1953
2086
|
* @param {*} [options] Override http request option.
|
|
1954
2087
|
* @throws {RequiredError}
|
|
1955
2088
|
*/
|
|
1956
|
-
v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2089
|
+
v1CreateOrganizationTarget(v1CreateOrganizationTargetRequest: V1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OrganizationTarget>>;
|
|
1957
2090
|
/**
|
|
1958
2091
|
* Create a private satellite target. This target will only be visible to your organization
|
|
1959
2092
|
* @param {V1CreateSatelliteTargetRequest} v1CreateSatelliteTargetRequest
|
|
@@ -2002,7 +2135,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2002
2135
|
* @param {*} [options] Override http request option.
|
|
2003
2136
|
* @throws {RequiredError}
|
|
2004
2137
|
*/
|
|
2005
|
-
v1DeleteOrganizationTarget(satelliteTargetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2138
|
+
v1DeleteOrganizationTarget(satelliteTargetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulDelete>>;
|
|
2006
2139
|
/**
|
|
2007
2140
|
* Delete a search instruction.
|
|
2008
2141
|
* @param {string} id
|
|
@@ -2209,7 +2342,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2209
2342
|
* @param {*} [options] Override http request option.
|
|
2210
2343
|
* @throws {RequiredError}
|
|
2211
2344
|
*/
|
|
2212
|
-
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
2345
|
+
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1OrganizationTarget>;
|
|
2213
2346
|
/**
|
|
2214
2347
|
* Create a private satellite target. This target will only be visible to your organization
|
|
2215
2348
|
* @param {DefaultApiV1CreateSatelliteTargetRequest} requestParameters Request parameters.
|
|
@@ -2258,7 +2391,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2258
2391
|
* @param {*} [options] Override http request option.
|
|
2259
2392
|
* @throws {RequiredError}
|
|
2260
2393
|
*/
|
|
2261
|
-
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
2394
|
+
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete>;
|
|
2262
2395
|
/**
|
|
2263
2396
|
* Delete a search instruction.
|
|
2264
2397
|
* @param {DefaultApiV1DeleteSearchInstructionRequest} requestParameters Request parameters.
|
|
@@ -2948,7 +3081,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2948
3081
|
* @throws {RequiredError}
|
|
2949
3082
|
* @memberof DefaultApi
|
|
2950
3083
|
*/
|
|
2951
|
-
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3084
|
+
v1CreateOrganizationTarget(requestParameters: DefaultApiV1CreateOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OrganizationTarget, any>>;
|
|
2952
3085
|
/**
|
|
2953
3086
|
* Create a private satellite target. This target will only be visible to your organization
|
|
2954
3087
|
* @param {DefaultApiV1CreateSatelliteTargetRequest} requestParameters Request parameters.
|
|
@@ -3004,7 +3137,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3004
3137
|
* @throws {RequiredError}
|
|
3005
3138
|
* @memberof DefaultApi
|
|
3006
3139
|
*/
|
|
3007
|
-
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3140
|
+
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulDelete, any>>;
|
|
3008
3141
|
/**
|
|
3009
3142
|
* Delete a search instruction.
|
|
3010
3143
|
* @param {DefaultApiV1DeleteSearchInstructionRequest} requestParameters Request parameters.
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3836
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|