@ourskyai/sda-api 1.3.3798 → 1.3.3810
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 +38 -6
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +25 -3
- package/dist/api.js +16 -6
- 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 +25 -3
- package/dist/esm/api.js +16 -6
- 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.3810
|
|
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.3810 --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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1255,6 +1255,12 @@ export interface V1SatelliteTarget {
|
|
|
1255
1255
|
* @memberof V1SatelliteTarget
|
|
1256
1256
|
*/
|
|
1257
1257
|
'tleEpoch'?: string;
|
|
1258
|
+
/**
|
|
1259
|
+
*
|
|
1260
|
+
* @type {string}
|
|
1261
|
+
* @memberof V1SatelliteTarget
|
|
1262
|
+
*/
|
|
1263
|
+
'tleName'?: string;
|
|
1258
1264
|
/**
|
|
1259
1265
|
*
|
|
1260
1266
|
* @type {string}
|
|
@@ -2813,12 +2819,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2813
2819
|
},
|
|
2814
2820
|
/**
|
|
2815
2821
|
* The available satellite objects that the OurSky platform can currently track.
|
|
2822
|
+
* @param {number} [offset]
|
|
2823
|
+
* @param {number} [limit]
|
|
2816
2824
|
* @param {OrbitType} [orbitType]
|
|
2817
2825
|
* @param {string} [noradId]
|
|
2818
2826
|
* @param {*} [options] Override http request option.
|
|
2819
2827
|
* @throws {RequiredError}
|
|
2820
2828
|
*/
|
|
2821
|
-
v1GetSatelliteTargets: async (orbitType?: OrbitType, noradId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2829
|
+
v1GetSatelliteTargets: async (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2822
2830
|
const localVarPath = `/v1/satellite-targets`;
|
|
2823
2831
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2824
2832
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2837,6 +2845,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2837
2845
|
// http bearer authentication required
|
|
2838
2846
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2839
2847
|
|
|
2848
|
+
if (offset !== undefined) {
|
|
2849
|
+
localVarQueryParameter['offset'] = offset;
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
if (limit !== undefined) {
|
|
2853
|
+
localVarQueryParameter['limit'] = limit;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2840
2856
|
if (orbitType !== undefined) {
|
|
2841
2857
|
localVarQueryParameter['orbitType'] = orbitType;
|
|
2842
2858
|
}
|
|
@@ -3465,13 +3481,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3465
3481
|
},
|
|
3466
3482
|
/**
|
|
3467
3483
|
* The available satellite objects that the OurSky platform can currently track.
|
|
3484
|
+
* @param {number} [offset]
|
|
3485
|
+
* @param {number} [limit]
|
|
3468
3486
|
* @param {OrbitType} [orbitType]
|
|
3469
3487
|
* @param {string} [noradId]
|
|
3470
3488
|
* @param {*} [options] Override http request option.
|
|
3471
3489
|
* @throws {RequiredError}
|
|
3472
3490
|
*/
|
|
3473
|
-
async v1GetSatelliteTargets(orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>> {
|
|
3474
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetSatelliteTargets(orbitType, noradId, options);
|
|
3491
|
+
async v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>> {
|
|
3492
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, options);
|
|
3475
3493
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3476
3494
|
},
|
|
3477
3495
|
/**
|
|
@@ -3796,7 +3814,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3796
3814
|
* @throws {RequiredError}
|
|
3797
3815
|
*/
|
|
3798
3816
|
v1GetSatelliteTargets(requestParameters: DefaultApiV1GetSatelliteTargetsRequest = {}, options?: AxiosRequestConfig): AxiosPromise<V1GetSatelliteTargetsResponse> {
|
|
3799
|
-
return localVarFp.v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
|
|
3817
|
+
return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
|
|
3800
3818
|
},
|
|
3801
3819
|
/**
|
|
3802
3820
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
@@ -4249,6 +4267,20 @@ export interface DefaultApiV1GetSatelliteTargetRequest {
|
|
|
4249
4267
|
* @interface DefaultApiV1GetSatelliteTargetsRequest
|
|
4250
4268
|
*/
|
|
4251
4269
|
export interface DefaultApiV1GetSatelliteTargetsRequest {
|
|
4270
|
+
/**
|
|
4271
|
+
*
|
|
4272
|
+
* @type {number}
|
|
4273
|
+
* @memberof DefaultApiV1GetSatelliteTargets
|
|
4274
|
+
*/
|
|
4275
|
+
readonly offset?: number
|
|
4276
|
+
|
|
4277
|
+
/**
|
|
4278
|
+
*
|
|
4279
|
+
* @type {number}
|
|
4280
|
+
* @memberof DefaultApiV1GetSatelliteTargets
|
|
4281
|
+
*/
|
|
4282
|
+
readonly limit?: number
|
|
4283
|
+
|
|
4252
4284
|
/**
|
|
4253
4285
|
*
|
|
4254
4286
|
* @type {OrbitType}
|
|
@@ -4671,7 +4703,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
4671
4703
|
* @memberof DefaultApi
|
|
4672
4704
|
*/
|
|
4673
4705
|
public v1GetSatelliteTargets(requestParameters: DefaultApiV1GetSatelliteTargetsRequest = {}, options?: AxiosRequestConfig) {
|
|
4674
|
-
return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
|
|
4706
|
+
return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
|
|
4675
4707
|
}
|
|
4676
4708
|
|
|
4677
4709
|
/**
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1205,6 +1205,12 @@ export interface V1SatelliteTarget {
|
|
|
1205
1205
|
* @memberof V1SatelliteTarget
|
|
1206
1206
|
*/
|
|
1207
1207
|
'tleEpoch'?: string;
|
|
1208
|
+
/**
|
|
1209
|
+
*
|
|
1210
|
+
* @type {string}
|
|
1211
|
+
* @memberof V1SatelliteTarget
|
|
1212
|
+
*/
|
|
1213
|
+
'tleName'?: string;
|
|
1208
1214
|
/**
|
|
1209
1215
|
*
|
|
1210
1216
|
* @type {string}
|
|
@@ -1853,12 +1859,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1853
1859
|
v1GetSatelliteTarget: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1854
1860
|
/**
|
|
1855
1861
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1862
|
+
* @param {number} [offset]
|
|
1863
|
+
* @param {number} [limit]
|
|
1856
1864
|
* @param {OrbitType} [orbitType]
|
|
1857
1865
|
* @param {string} [noradId]
|
|
1858
1866
|
* @param {*} [options] Override http request option.
|
|
1859
1867
|
* @throws {RequiredError}
|
|
1860
1868
|
*/
|
|
1861
|
-
v1GetSatelliteTargets: (orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1869
|
+
v1GetSatelliteTargets: (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1862
1870
|
/**
|
|
1863
1871
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
1864
1872
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -2105,12 +2113,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2105
2113
|
v1GetSatelliteTarget(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SatelliteTarget>>;
|
|
2106
2114
|
/**
|
|
2107
2115
|
* The available satellite objects that the OurSky platform can currently track.
|
|
2116
|
+
* @param {number} [offset]
|
|
2117
|
+
* @param {number} [limit]
|
|
2108
2118
|
* @param {OrbitType} [orbitType]
|
|
2109
2119
|
* @param {string} [noradId]
|
|
2110
2120
|
* @param {*} [options] Override http request option.
|
|
2111
2121
|
* @throws {RequiredError}
|
|
2112
2122
|
*/
|
|
2113
|
-
v1GetSatelliteTargets(orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
|
|
2123
|
+
v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
|
|
2114
2124
|
/**
|
|
2115
2125
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
2116
2126
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -2758,6 +2768,18 @@ export interface DefaultApiV1GetSatelliteTargetRequest {
|
|
|
2758
2768
|
* @interface DefaultApiV1GetSatelliteTargetsRequest
|
|
2759
2769
|
*/
|
|
2760
2770
|
export interface DefaultApiV1GetSatelliteTargetsRequest {
|
|
2771
|
+
/**
|
|
2772
|
+
*
|
|
2773
|
+
* @type {number}
|
|
2774
|
+
* @memberof DefaultApiV1GetSatelliteTargets
|
|
2775
|
+
*/
|
|
2776
|
+
readonly offset?: number;
|
|
2777
|
+
/**
|
|
2778
|
+
*
|
|
2779
|
+
* @type {number}
|
|
2780
|
+
* @memberof DefaultApiV1GetSatelliteTargets
|
|
2781
|
+
*/
|
|
2782
|
+
readonly limit?: number;
|
|
2761
2783
|
/**
|
|
2762
2784
|
*
|
|
2763
2785
|
* @type {OrbitType}
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1038,12 +1038,14 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1038
1038
|
}),
|
|
1039
1039
|
/**
|
|
1040
1040
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1041
|
+
* @param {number} [offset]
|
|
1042
|
+
* @param {number} [limit]
|
|
1041
1043
|
* @param {OrbitType} [orbitType]
|
|
1042
1044
|
* @param {string} [noradId]
|
|
1043
1045
|
* @param {*} [options] Override http request option.
|
|
1044
1046
|
* @throws {RequiredError}
|
|
1045
1047
|
*/
|
|
1046
|
-
v1GetSatelliteTargets: (orbitType, noradId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1048
|
+
v1GetSatelliteTargets: (offset, limit, orbitType, noradId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1047
1049
|
const localVarPath = `/v1/satellite-targets`;
|
|
1048
1050
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1049
1051
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1058,6 +1060,12 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1058
1060
|
// authentication BearerToken required
|
|
1059
1061
|
// http bearer authentication required
|
|
1060
1062
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1063
|
+
if (offset !== undefined) {
|
|
1064
|
+
localVarQueryParameter['offset'] = offset;
|
|
1065
|
+
}
|
|
1066
|
+
if (limit !== undefined) {
|
|
1067
|
+
localVarQueryParameter['limit'] = limit;
|
|
1068
|
+
}
|
|
1061
1069
|
if (orbitType !== undefined) {
|
|
1062
1070
|
localVarQueryParameter['orbitType'] = orbitType;
|
|
1063
1071
|
}
|
|
@@ -1665,14 +1673,16 @@ const DefaultApiFp = function (configuration) {
|
|
|
1665
1673
|
},
|
|
1666
1674
|
/**
|
|
1667
1675
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1676
|
+
* @param {number} [offset]
|
|
1677
|
+
* @param {number} [limit]
|
|
1668
1678
|
* @param {OrbitType} [orbitType]
|
|
1669
1679
|
* @param {string} [noradId]
|
|
1670
1680
|
* @param {*} [options] Override http request option.
|
|
1671
1681
|
* @throws {RequiredError}
|
|
1672
1682
|
*/
|
|
1673
|
-
v1GetSatelliteTargets(orbitType, noradId, options) {
|
|
1683
|
+
v1GetSatelliteTargets(offset, limit, orbitType, noradId, options) {
|
|
1674
1684
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1675
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatelliteTargets(orbitType, noradId, options);
|
|
1685
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, options);
|
|
1676
1686
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1677
1687
|
});
|
|
1678
1688
|
},
|
|
@@ -2014,7 +2024,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2014
2024
|
* @throws {RequiredError}
|
|
2015
2025
|
*/
|
|
2016
2026
|
v1GetSatelliteTargets(requestParameters = {}, options) {
|
|
2017
|
-
return localVarFp.v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
|
|
2027
|
+
return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
|
|
2018
2028
|
},
|
|
2019
2029
|
/**
|
|
2020
2030
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
@@ -2353,7 +2363,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2353
2363
|
* @memberof DefaultApi
|
|
2354
2364
|
*/
|
|
2355
2365
|
v1GetSatelliteTargets(requestParameters = {}, options) {
|
|
2356
|
-
return (0, exports.DefaultApiFp)(this.configuration).v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
|
|
2366
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
|
|
2357
2367
|
}
|
|
2358
2368
|
/**
|
|
2359
2369
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
package/dist/base.d.ts
CHANGED
|
@@ -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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1205,6 +1205,12 @@ export interface V1SatelliteTarget {
|
|
|
1205
1205
|
* @memberof V1SatelliteTarget
|
|
1206
1206
|
*/
|
|
1207
1207
|
'tleEpoch'?: string;
|
|
1208
|
+
/**
|
|
1209
|
+
*
|
|
1210
|
+
* @type {string}
|
|
1211
|
+
* @memberof V1SatelliteTarget
|
|
1212
|
+
*/
|
|
1213
|
+
'tleName'?: string;
|
|
1208
1214
|
/**
|
|
1209
1215
|
*
|
|
1210
1216
|
* @type {string}
|
|
@@ -1853,12 +1859,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1853
1859
|
v1GetSatelliteTarget: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1854
1860
|
/**
|
|
1855
1861
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1862
|
+
* @param {number} [offset]
|
|
1863
|
+
* @param {number} [limit]
|
|
1856
1864
|
* @param {OrbitType} [orbitType]
|
|
1857
1865
|
* @param {string} [noradId]
|
|
1858
1866
|
* @param {*} [options] Override http request option.
|
|
1859
1867
|
* @throws {RequiredError}
|
|
1860
1868
|
*/
|
|
1861
|
-
v1GetSatelliteTargets: (orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1869
|
+
v1GetSatelliteTargets: (offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1862
1870
|
/**
|
|
1863
1871
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
1864
1872
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -2105,12 +2113,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2105
2113
|
v1GetSatelliteTarget(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SatelliteTarget>>;
|
|
2106
2114
|
/**
|
|
2107
2115
|
* The available satellite objects that the OurSky platform can currently track.
|
|
2116
|
+
* @param {number} [offset]
|
|
2117
|
+
* @param {number} [limit]
|
|
2108
2118
|
* @param {OrbitType} [orbitType]
|
|
2109
2119
|
* @param {string} [noradId]
|
|
2110
2120
|
* @param {*} [options] Override http request option.
|
|
2111
2121
|
* @throws {RequiredError}
|
|
2112
2122
|
*/
|
|
2113
|
-
v1GetSatelliteTargets(orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
|
|
2123
|
+
v1GetSatelliteTargets(offset?: number, limit?: number, orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
|
|
2114
2124
|
/**
|
|
2115
2125
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
2116
2126
|
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
@@ -2758,6 +2768,18 @@ export interface DefaultApiV1GetSatelliteTargetRequest {
|
|
|
2758
2768
|
* @interface DefaultApiV1GetSatelliteTargetsRequest
|
|
2759
2769
|
*/
|
|
2760
2770
|
export interface DefaultApiV1GetSatelliteTargetsRequest {
|
|
2771
|
+
/**
|
|
2772
|
+
*
|
|
2773
|
+
* @type {number}
|
|
2774
|
+
* @memberof DefaultApiV1GetSatelliteTargets
|
|
2775
|
+
*/
|
|
2776
|
+
readonly offset?: number;
|
|
2777
|
+
/**
|
|
2778
|
+
*
|
|
2779
|
+
* @type {number}
|
|
2780
|
+
* @memberof DefaultApiV1GetSatelliteTargets
|
|
2781
|
+
*/
|
|
2782
|
+
readonly limit?: number;
|
|
2761
2783
|
/**
|
|
2762
2784
|
*
|
|
2763
2785
|
* @type {OrbitType}
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1035,12 +1035,14 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1035
1035
|
}),
|
|
1036
1036
|
/**
|
|
1037
1037
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1038
|
+
* @param {number} [offset]
|
|
1039
|
+
* @param {number} [limit]
|
|
1038
1040
|
* @param {OrbitType} [orbitType]
|
|
1039
1041
|
* @param {string} [noradId]
|
|
1040
1042
|
* @param {*} [options] Override http request option.
|
|
1041
1043
|
* @throws {RequiredError}
|
|
1042
1044
|
*/
|
|
1043
|
-
v1GetSatelliteTargets: (orbitType, noradId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1045
|
+
v1GetSatelliteTargets: (offset, limit, orbitType, noradId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1044
1046
|
const localVarPath = `/v1/satellite-targets`;
|
|
1045
1047
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1046
1048
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1055,6 +1057,12 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1055
1057
|
// authentication BearerToken required
|
|
1056
1058
|
// http bearer authentication required
|
|
1057
1059
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1060
|
+
if (offset !== undefined) {
|
|
1061
|
+
localVarQueryParameter['offset'] = offset;
|
|
1062
|
+
}
|
|
1063
|
+
if (limit !== undefined) {
|
|
1064
|
+
localVarQueryParameter['limit'] = limit;
|
|
1065
|
+
}
|
|
1058
1066
|
if (orbitType !== undefined) {
|
|
1059
1067
|
localVarQueryParameter['orbitType'] = orbitType;
|
|
1060
1068
|
}
|
|
@@ -1661,14 +1669,16 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1661
1669
|
},
|
|
1662
1670
|
/**
|
|
1663
1671
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1672
|
+
* @param {number} [offset]
|
|
1673
|
+
* @param {number} [limit]
|
|
1664
1674
|
* @param {OrbitType} [orbitType]
|
|
1665
1675
|
* @param {string} [noradId]
|
|
1666
1676
|
* @param {*} [options] Override http request option.
|
|
1667
1677
|
* @throws {RequiredError}
|
|
1668
1678
|
*/
|
|
1669
|
-
v1GetSatelliteTargets(orbitType, noradId, options) {
|
|
1679
|
+
v1GetSatelliteTargets(offset, limit, orbitType, noradId, options) {
|
|
1670
1680
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1671
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatelliteTargets(orbitType, noradId, options);
|
|
1681
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatelliteTargets(offset, limit, orbitType, noradId, options);
|
|
1672
1682
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1673
1683
|
});
|
|
1674
1684
|
},
|
|
@@ -2009,7 +2019,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2009
2019
|
* @throws {RequiredError}
|
|
2010
2020
|
*/
|
|
2011
2021
|
v1GetSatelliteTargets(requestParameters = {}, options) {
|
|
2012
|
-
return localVarFp.v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
|
|
2022
|
+
return localVarFp.v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(axios, basePath));
|
|
2013
2023
|
},
|
|
2014
2024
|
/**
|
|
2015
2025
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
@@ -2347,7 +2357,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
2347
2357
|
* @memberof DefaultApi
|
|
2348
2358
|
*/
|
|
2349
2359
|
v1GetSatelliteTargets(requestParameters = {}, options) {
|
|
2350
|
-
return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
|
|
2360
|
+
return DefaultApiFp(this.configuration).v1GetSatelliteTargets(requestParameters.offset, requestParameters.limit, requestParameters.orbitType, requestParameters.noradId, options).then((request) => request(this.axios, this.basePath));
|
|
2351
2361
|
}
|
|
2352
2362
|
/**
|
|
2353
2363
|
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
package/dist/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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
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](#tag/satellite-targets/get/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/get/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3810
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|