@ourskyai/sda-api 1.3.3445 → 1.3.3644
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 +216 -22
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +153 -19
- package/dist/api.js +98 -7
- 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 +153 -19
- package/dist/esm/api.js +97 -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/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.3644
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -20,37 +20,37 @@ import { BaseAPI } from './base';
|
|
|
20
20
|
*/
|
|
21
21
|
export interface AstrometricOffsets {
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* the average offset from the star catalog (NOMAD or GAIA DR3) for right ascension in degrees in EME2000 frame
|
|
24
24
|
* @type {number}
|
|
25
25
|
* @memberof AstrometricOffsets
|
|
26
26
|
*/
|
|
27
27
|
'raPlateSolveOffsetAverage': number;
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* the standard deviation of offset from the star catalog (NOMAD or GAIA DR3) for right ascension in degrees in EME2000 frame
|
|
30
30
|
* @type {number}
|
|
31
31
|
* @memberof AstrometricOffsets
|
|
32
32
|
*/
|
|
33
33
|
'raPlateSolveOffsetStdDev': number;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* the average offset from the star catalog (NOMAD or GAIA DR3) for declination in degrees in EME2000 frame
|
|
36
36
|
* @type {number}
|
|
37
37
|
* @memberof AstrometricOffsets
|
|
38
38
|
*/
|
|
39
39
|
'decPlateSolveOffsetAverage': number;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* the standard deviation of offset from the star catalog (NOMAD or GAIA DR3) for declination in degrees in EME2000 frame
|
|
42
42
|
* @type {number}
|
|
43
43
|
* @memberof AstrometricOffsets
|
|
44
44
|
*/
|
|
45
45
|
'decPlateSolveOffsetStdDev': number;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* The standard deviation of the full-width-half-max of all stars in the image measured in arcseconds
|
|
48
48
|
* @type {number}
|
|
49
49
|
* @memberof AstrometricOffsets
|
|
50
50
|
*/
|
|
51
51
|
'fwhmStdDev': number;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* The average of the full-width-half-max of all stars in the image measured in arcseconds
|
|
54
54
|
* @type {number}
|
|
55
55
|
* @memberof AstrometricOffsets
|
|
56
56
|
*/
|
|
@@ -95,6 +95,25 @@ export declare const FilterType: {
|
|
|
95
95
|
readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
|
|
96
96
|
};
|
|
97
97
|
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @export
|
|
101
|
+
* @interface FitsHeader
|
|
102
|
+
*/
|
|
103
|
+
export interface FitsHeader {
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof FitsHeader
|
|
108
|
+
*/
|
|
109
|
+
'key': string;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof FitsHeader
|
|
114
|
+
*/
|
|
115
|
+
'value': string;
|
|
116
|
+
}
|
|
98
117
|
/**
|
|
99
118
|
* Location
|
|
100
119
|
* @export
|
|
@@ -223,25 +242,25 @@ export interface ObservationResult {
|
|
|
223
242
|
*/
|
|
224
243
|
'jpgUrl'?: string;
|
|
225
244
|
/**
|
|
226
|
-
*
|
|
245
|
+
* The un-corrected apparent right ascension in degrees and EME2000 frame at the ground station
|
|
227
246
|
* @type {number}
|
|
228
247
|
* @memberof ObservationResult
|
|
229
248
|
*/
|
|
230
249
|
'ra': number;
|
|
231
250
|
/**
|
|
232
|
-
*
|
|
251
|
+
* The un-corrected apparent declination in degrees and EME2000 frame at the ground station
|
|
233
252
|
* @type {number}
|
|
234
253
|
* @memberof ObservationResult
|
|
235
254
|
*/
|
|
236
255
|
'dec': number;
|
|
237
256
|
/**
|
|
238
|
-
* The measured right ascension calibrated for stellar aberration in degrees
|
|
257
|
+
* The measured right ascension calibrated for stellar aberration in degrees and EME2000 frame
|
|
239
258
|
* @type {number}
|
|
240
259
|
* @memberof ObservationResult
|
|
241
260
|
*/
|
|
242
261
|
'correctedRa'?: number;
|
|
243
262
|
/**
|
|
244
|
-
* The measured declination calibrated for stellar aberration in degrees
|
|
263
|
+
* The measured declination calibrated for stellar aberration in degrees and EME2000 frame
|
|
245
264
|
* @type {number}
|
|
246
265
|
* @memberof ObservationResult
|
|
247
266
|
*/
|
|
@@ -258,6 +277,12 @@ export interface ObservationResult {
|
|
|
258
277
|
* @memberof ObservationResult
|
|
259
278
|
*/
|
|
260
279
|
'timestamp': string;
|
|
280
|
+
/**
|
|
281
|
+
* Timestamps for this image are considered to be accurate to within +/- this value in seconds
|
|
282
|
+
* @type {number}
|
|
283
|
+
* @memberof ObservationResult
|
|
284
|
+
*/
|
|
285
|
+
'timingAccuracy': number;
|
|
261
286
|
/**
|
|
262
287
|
* BETA: the apparent magnitude of the target at the time of the observation
|
|
263
288
|
* @type {number}
|
|
@@ -265,7 +290,7 @@ export interface ObservationResult {
|
|
|
265
290
|
*/
|
|
266
291
|
'apparentMagnitude'?: number;
|
|
267
292
|
/**
|
|
268
|
-
*
|
|
293
|
+
* The distance from the predicted location in arcseconds (using SGP4 propagation)
|
|
269
294
|
* @type {number}
|
|
270
295
|
* @memberof ObservationResult
|
|
271
296
|
*/
|
|
@@ -831,6 +856,12 @@ export interface V1ImageSetImage {
|
|
|
831
856
|
* @memberof V1ImageSetImage
|
|
832
857
|
*/
|
|
833
858
|
'exposureLength': number;
|
|
859
|
+
/**
|
|
860
|
+
*
|
|
861
|
+
* @type {Array<FitsHeader>}
|
|
862
|
+
* @memberof V1ImageSetImage
|
|
863
|
+
*/
|
|
864
|
+
'fitsHeaders': Array<FitsHeader>;
|
|
834
865
|
}
|
|
835
866
|
/**
|
|
836
867
|
* Observation Feature
|
|
@@ -839,13 +870,13 @@ export interface V1ImageSetImage {
|
|
|
839
870
|
*/
|
|
840
871
|
export interface V1ObservationFeature {
|
|
841
872
|
/**
|
|
842
|
-
*
|
|
873
|
+
* the right ascension in degrees in EME2000 frame
|
|
843
874
|
* @type {number}
|
|
844
875
|
* @memberof V1ObservationFeature
|
|
845
876
|
*/
|
|
846
877
|
'ra': number;
|
|
847
878
|
/**
|
|
848
|
-
*
|
|
879
|
+
* the declination in degrees in EME2000 frame
|
|
849
880
|
* @type {number}
|
|
850
881
|
* @memberof V1ObservationFeature
|
|
851
882
|
*/
|
|
@@ -869,7 +900,7 @@ export interface V1ObservationFeature {
|
|
|
869
900
|
*/
|
|
870
901
|
'apparentMagnitude'?: number;
|
|
871
902
|
/**
|
|
872
|
-
*
|
|
903
|
+
* The distance from the predicted location in arcseconds (using SGP4 propagation)
|
|
873
904
|
* @type {number}
|
|
874
905
|
* @memberof V1ObservationFeature
|
|
875
906
|
*/
|
|
@@ -1125,6 +1156,18 @@ export interface V1SatellitePotential {
|
|
|
1125
1156
|
* @memberof V1SatellitePotential
|
|
1126
1157
|
*/
|
|
1127
1158
|
'orbitType'?: OrbitType;
|
|
1159
|
+
/**
|
|
1160
|
+
*
|
|
1161
|
+
* @type {WeatherCondition}
|
|
1162
|
+
* @memberof V1SatellitePotential
|
|
1163
|
+
*/
|
|
1164
|
+
'weatherCondition'?: WeatherCondition;
|
|
1165
|
+
/**
|
|
1166
|
+
*
|
|
1167
|
+
* @type {string}
|
|
1168
|
+
* @memberof V1SatellitePotential
|
|
1169
|
+
*/
|
|
1170
|
+
'weatherDescription'?: string;
|
|
1128
1171
|
}
|
|
1129
1172
|
/**
|
|
1130
1173
|
* Satellite Target
|
|
@@ -1324,17 +1367,35 @@ export interface V1TargetCorrelation {
|
|
|
1324
1367
|
*/
|
|
1325
1368
|
'targetId': string;
|
|
1326
1369
|
/**
|
|
1327
|
-
*
|
|
1370
|
+
* The predicted (propagated) center of the targetId in Right Ascension in degrees
|
|
1328
1371
|
* @type {number}
|
|
1329
1372
|
* @memberof V1TargetCorrelation
|
|
1330
1373
|
*/
|
|
1331
1374
|
'ra': number;
|
|
1332
1375
|
/**
|
|
1333
|
-
*
|
|
1376
|
+
* The predicted (propagated) center of the streak in Declination in degrees
|
|
1334
1377
|
* @type {number}
|
|
1335
1378
|
* @memberof V1TargetCorrelation
|
|
1336
1379
|
*/
|
|
1337
1380
|
'dec': number;
|
|
1381
|
+
/**
|
|
1382
|
+
* The predicted (propagated) length of the target streak in degrees
|
|
1383
|
+
* @type {number}
|
|
1384
|
+
* @memberof V1TargetCorrelation
|
|
1385
|
+
*/
|
|
1386
|
+
'streakLength'?: number;
|
|
1387
|
+
/**
|
|
1388
|
+
* The distance between the predicted and actual center of the streak in degrees
|
|
1389
|
+
* @type {number}
|
|
1390
|
+
* @memberof V1TargetCorrelation
|
|
1391
|
+
*/
|
|
1392
|
+
'distanceFromStreak'?: number;
|
|
1393
|
+
/**
|
|
1394
|
+
* The angle between the predicted and actual angle-to-celestial-north for the streak in degrees
|
|
1395
|
+
* @type {number}
|
|
1396
|
+
* @memberof V1TargetCorrelation
|
|
1397
|
+
*/
|
|
1398
|
+
'angleFromStreak'?: number;
|
|
1338
1399
|
}
|
|
1339
1400
|
/**
|
|
1340
1401
|
* TDM
|
|
@@ -1509,6 +1570,21 @@ export interface V1WebhookConfiguration {
|
|
|
1509
1570
|
*/
|
|
1510
1571
|
'createdAt': string;
|
|
1511
1572
|
}
|
|
1573
|
+
/**
|
|
1574
|
+
*
|
|
1575
|
+
* @export
|
|
1576
|
+
* @enum {string}
|
|
1577
|
+
*/
|
|
1578
|
+
export declare const WeatherCondition: {
|
|
1579
|
+
readonly THUNDERSTORM: "THUNDERSTORM";
|
|
1580
|
+
readonly DRIZZLE: "DRIZZLE";
|
|
1581
|
+
readonly RAIN: "RAIN";
|
|
1582
|
+
readonly SNOW: "SNOW";
|
|
1583
|
+
readonly ATMOSPHERE: "ATMOSPHERE";
|
|
1584
|
+
readonly CLEAR: "CLEAR";
|
|
1585
|
+
readonly CLOUDS: "CLOUDS";
|
|
1586
|
+
};
|
|
1587
|
+
export type WeatherCondition = typeof WeatherCondition[keyof typeof WeatherCondition];
|
|
1512
1588
|
/**
|
|
1513
1589
|
* Authorization mechanism required for webhook endpoint, if any. Use `NONE` if not required.
|
|
1514
1590
|
* @export
|
|
@@ -1690,6 +1766,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1690
1766
|
* @throws {RequiredError}
|
|
1691
1767
|
*/
|
|
1692
1768
|
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1769
|
+
/**
|
|
1770
|
+
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
1771
|
+
* @param {string} until
|
|
1772
|
+
* @param {boolean} [includeWeather]
|
|
1773
|
+
* @param {*} [options] Override http request option.
|
|
1774
|
+
* @throws {RequiredError}
|
|
1775
|
+
*/
|
|
1776
|
+
v1GetOrganizationSatellitePotentials: (until: string, includeWeather?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1693
1777
|
/**
|
|
1694
1778
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
1695
1779
|
* @param {*} [options] Override http request option.
|
|
@@ -1700,10 +1784,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1700
1784
|
* Get potential observation windows for a satellite across the network from now until the `until` datetime
|
|
1701
1785
|
* @param {string} satelliteTargetId
|
|
1702
1786
|
* @param {string} until
|
|
1787
|
+
* @param {boolean} [includeWeather]
|
|
1703
1788
|
* @param {*} [options] Override http request option.
|
|
1704
1789
|
* @throws {RequiredError}
|
|
1705
1790
|
*/
|
|
1706
|
-
v1GetSatellitePotentials: (satelliteTargetId: string, until: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1791
|
+
v1GetSatellitePotentials: (satelliteTargetId: string, until: string, includeWeather?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1707
1792
|
/**
|
|
1708
1793
|
* Get a satellite target that the OurSky platform can currently track by id.
|
|
1709
1794
|
* @param {string} id
|
|
@@ -1924,6 +2009,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1924
2009
|
* @throws {RequiredError}
|
|
1925
2010
|
*/
|
|
1926
2011
|
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
2012
|
+
/**
|
|
2013
|
+
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
2014
|
+
* @param {string} until
|
|
2015
|
+
* @param {boolean} [includeWeather]
|
|
2016
|
+
* @param {*} [options] Override http request option.
|
|
2017
|
+
* @throws {RequiredError}
|
|
2018
|
+
*/
|
|
2019
|
+
v1GetOrganizationSatellitePotentials(until: string, includeWeather?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SatellitePotential>>>;
|
|
1927
2020
|
/**
|
|
1928
2021
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
1929
2022
|
* @param {*} [options] Override http request option.
|
|
@@ -1934,10 +2027,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1934
2027
|
* Get potential observation windows for a satellite across the network from now until the `until` datetime
|
|
1935
2028
|
* @param {string} satelliteTargetId
|
|
1936
2029
|
* @param {string} until
|
|
2030
|
+
* @param {boolean} [includeWeather]
|
|
1937
2031
|
* @param {*} [options] Override http request option.
|
|
1938
2032
|
* @throws {RequiredError}
|
|
1939
2033
|
*/
|
|
1940
|
-
v1GetSatellitePotentials(satelliteTargetId: string, until: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SatellitePotential>>>;
|
|
2034
|
+
v1GetSatellitePotentials(satelliteTargetId: string, until: string, includeWeather?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SatellitePotential>>>;
|
|
1941
2035
|
/**
|
|
1942
2036
|
* Get a satellite target that the OurSky platform can currently track by id.
|
|
1943
2037
|
* @param {string} id
|
|
@@ -2154,6 +2248,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2154
2248
|
* @throws {RequiredError}
|
|
2155
2249
|
*/
|
|
2156
2250
|
v1GetObservationStatuses(requestParameters?: DefaultApiV1GetObservationStatusesRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1ObservationStatus>>;
|
|
2251
|
+
/**
|
|
2252
|
+
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
2253
|
+
* @param {DefaultApiV1GetOrganizationSatellitePotentialsRequest} requestParameters Request parameters.
|
|
2254
|
+
* @param {*} [options] Override http request option.
|
|
2255
|
+
* @throws {RequiredError}
|
|
2256
|
+
*/
|
|
2257
|
+
v1GetOrganizationSatellitePotentials(requestParameters: DefaultApiV1GetOrganizationSatellitePotentialsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SatellitePotential>>;
|
|
2157
2258
|
/**
|
|
2158
2259
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
2159
2260
|
* @param {*} [options] Override http request option.
|
|
@@ -2514,6 +2615,25 @@ export interface DefaultApiV1GetObservationStatusesRequest {
|
|
|
2514
2615
|
*/
|
|
2515
2616
|
readonly surveyInstructionId?: string;
|
|
2516
2617
|
}
|
|
2618
|
+
/**
|
|
2619
|
+
* Request parameters for v1GetOrganizationSatellitePotentials operation in DefaultApi.
|
|
2620
|
+
* @export
|
|
2621
|
+
* @interface DefaultApiV1GetOrganizationSatellitePotentialsRequest
|
|
2622
|
+
*/
|
|
2623
|
+
export interface DefaultApiV1GetOrganizationSatellitePotentialsRequest {
|
|
2624
|
+
/**
|
|
2625
|
+
*
|
|
2626
|
+
* @type {string}
|
|
2627
|
+
* @memberof DefaultApiV1GetOrganizationSatellitePotentials
|
|
2628
|
+
*/
|
|
2629
|
+
readonly until: string;
|
|
2630
|
+
/**
|
|
2631
|
+
*
|
|
2632
|
+
* @type {boolean}
|
|
2633
|
+
* @memberof DefaultApiV1GetOrganizationSatellitePotentials
|
|
2634
|
+
*/
|
|
2635
|
+
readonly includeWeather?: boolean;
|
|
2636
|
+
}
|
|
2517
2637
|
/**
|
|
2518
2638
|
* Request parameters for v1GetSatellitePotentials operation in DefaultApi.
|
|
2519
2639
|
* @export
|
|
@@ -2532,6 +2652,12 @@ export interface DefaultApiV1GetSatellitePotentialsRequest {
|
|
|
2532
2652
|
* @memberof DefaultApiV1GetSatellitePotentials
|
|
2533
2653
|
*/
|
|
2534
2654
|
readonly until: string;
|
|
2655
|
+
/**
|
|
2656
|
+
*
|
|
2657
|
+
* @type {boolean}
|
|
2658
|
+
* @memberof DefaultApiV1GetSatellitePotentials
|
|
2659
|
+
*/
|
|
2660
|
+
readonly includeWeather?: boolean;
|
|
2535
2661
|
}
|
|
2536
2662
|
/**
|
|
2537
2663
|
* Request parameters for v1GetSatelliteTarget operation in DefaultApi.
|
|
@@ -2823,6 +2949,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2823
2949
|
* @memberof DefaultApi
|
|
2824
2950
|
*/
|
|
2825
2951
|
v1GetObservationStatuses(requestParameters?: DefaultApiV1GetObservationStatusesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ObservationStatus[], any>>;
|
|
2952
|
+
/**
|
|
2953
|
+
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
2954
|
+
* @param {DefaultApiV1GetOrganizationSatellitePotentialsRequest} requestParameters Request parameters.
|
|
2955
|
+
* @param {*} [options] Override http request option.
|
|
2956
|
+
* @throws {RequiredError}
|
|
2957
|
+
* @memberof DefaultApi
|
|
2958
|
+
*/
|
|
2959
|
+
v1GetOrganizationSatellitePotentials(requestParameters: DefaultApiV1GetOrganizationSatellitePotentialsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SatellitePotential[], any>>;
|
|
2826
2960
|
/**
|
|
2827
2961
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
2828
2962
|
* @param {*} [options] Override http request option.
|
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.3644
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -124,6 +124,20 @@ export const TrackingType = {
|
|
|
124
124
|
SIDEREAL: 'SIDEREAL',
|
|
125
125
|
TARGET_RATE: 'TARGET_RATE'
|
|
126
126
|
};
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @export
|
|
130
|
+
* @enum {string}
|
|
131
|
+
*/
|
|
132
|
+
export const WeatherCondition = {
|
|
133
|
+
THUNDERSTORM: 'THUNDERSTORM',
|
|
134
|
+
DRIZZLE: 'DRIZZLE',
|
|
135
|
+
RAIN: 'RAIN',
|
|
136
|
+
SNOW: 'SNOW',
|
|
137
|
+
ATMOSPHERE: 'ATMOSPHERE',
|
|
138
|
+
CLEAR: 'CLEAR',
|
|
139
|
+
CLOUDS: 'CLOUDS'
|
|
140
|
+
};
|
|
127
141
|
/**
|
|
128
142
|
* Authorization mechanism required for webhook endpoint, if any. Use `NONE` if not required.
|
|
129
143
|
* @export
|
|
@@ -871,6 +885,46 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
871
885
|
options: localVarRequestOptions,
|
|
872
886
|
};
|
|
873
887
|
}),
|
|
888
|
+
/**
|
|
889
|
+
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
890
|
+
* @param {string} until
|
|
891
|
+
* @param {boolean} [includeWeather]
|
|
892
|
+
* @param {*} [options] Override http request option.
|
|
893
|
+
* @throws {RequiredError}
|
|
894
|
+
*/
|
|
895
|
+
v1GetOrganizationSatellitePotentials: (until, includeWeather, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
896
|
+
// verify required parameter 'until' is not null or undefined
|
|
897
|
+
assertParamExists('v1GetOrganizationSatellitePotentials', 'until', until);
|
|
898
|
+
const localVarPath = `/v1/organization-target-potentials`;
|
|
899
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
900
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
901
|
+
let baseOptions;
|
|
902
|
+
if (configuration) {
|
|
903
|
+
baseOptions = configuration.baseOptions;
|
|
904
|
+
}
|
|
905
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
906
|
+
const localVarHeaderParameter = {};
|
|
907
|
+
const localVarQueryParameter = {};
|
|
908
|
+
// authentication Roles required
|
|
909
|
+
// authentication BearerToken required
|
|
910
|
+
// http bearer authentication required
|
|
911
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
912
|
+
if (until !== undefined) {
|
|
913
|
+
localVarQueryParameter['until'] = (until instanceof Date) ?
|
|
914
|
+
until.toISOString() :
|
|
915
|
+
until;
|
|
916
|
+
}
|
|
917
|
+
if (includeWeather !== undefined) {
|
|
918
|
+
localVarQueryParameter['includeWeather'] = includeWeather;
|
|
919
|
+
}
|
|
920
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
921
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
922
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
923
|
+
return {
|
|
924
|
+
url: toPathString(localVarUrlObj),
|
|
925
|
+
options: localVarRequestOptions,
|
|
926
|
+
};
|
|
927
|
+
}),
|
|
874
928
|
/**
|
|
875
929
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
876
930
|
* @param {*} [options] Override http request option.
|
|
@@ -903,10 +957,11 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
903
957
|
* Get potential observation windows for a satellite across the network from now until the `until` datetime
|
|
904
958
|
* @param {string} satelliteTargetId
|
|
905
959
|
* @param {string} until
|
|
960
|
+
* @param {boolean} [includeWeather]
|
|
906
961
|
* @param {*} [options] Override http request option.
|
|
907
962
|
* @throws {RequiredError}
|
|
908
963
|
*/
|
|
909
|
-
v1GetSatellitePotentials: (satelliteTargetId, until, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
964
|
+
v1GetSatellitePotentials: (satelliteTargetId, until, includeWeather, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
910
965
|
// verify required parameter 'satelliteTargetId' is not null or undefined
|
|
911
966
|
assertParamExists('v1GetSatellitePotentials', 'satelliteTargetId', satelliteTargetId);
|
|
912
967
|
// verify required parameter 'until' is not null or undefined
|
|
@@ -933,6 +988,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
933
988
|
until.toISOString() :
|
|
934
989
|
until;
|
|
935
990
|
}
|
|
991
|
+
if (includeWeather !== undefined) {
|
|
992
|
+
localVarQueryParameter['includeWeather'] = includeWeather;
|
|
993
|
+
}
|
|
936
994
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
937
995
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
938
996
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1509,6 +1567,19 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1509
1567
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1510
1568
|
});
|
|
1511
1569
|
},
|
|
1570
|
+
/**
|
|
1571
|
+
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
1572
|
+
* @param {string} until
|
|
1573
|
+
* @param {boolean} [includeWeather]
|
|
1574
|
+
* @param {*} [options] Override http request option.
|
|
1575
|
+
* @throws {RequiredError}
|
|
1576
|
+
*/
|
|
1577
|
+
v1GetOrganizationSatellitePotentials(until, includeWeather, options) {
|
|
1578
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1579
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrganizationSatellitePotentials(until, includeWeather, options);
|
|
1580
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1581
|
+
});
|
|
1582
|
+
},
|
|
1512
1583
|
/**
|
|
1513
1584
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
1514
1585
|
* @param {*} [options] Override http request option.
|
|
@@ -1524,12 +1595,13 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1524
1595
|
* Get potential observation windows for a satellite across the network from now until the `until` datetime
|
|
1525
1596
|
* @param {string} satelliteTargetId
|
|
1526
1597
|
* @param {string} until
|
|
1598
|
+
* @param {boolean} [includeWeather]
|
|
1527
1599
|
* @param {*} [options] Override http request option.
|
|
1528
1600
|
* @throws {RequiredError}
|
|
1529
1601
|
*/
|
|
1530
|
-
v1GetSatellitePotentials(satelliteTargetId, until, options) {
|
|
1602
|
+
v1GetSatellitePotentials(satelliteTargetId, until, includeWeather, options) {
|
|
1531
1603
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1532
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatellitePotentials(satelliteTargetId, until, options);
|
|
1604
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetSatellitePotentials(satelliteTargetId, until, includeWeather, options);
|
|
1533
1605
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1534
1606
|
});
|
|
1535
1607
|
},
|
|
@@ -1839,6 +1911,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1839
1911
|
v1GetObservationStatuses(requestParameters = {}, options) {
|
|
1840
1912
|
return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, options).then((request) => request(axios, basePath));
|
|
1841
1913
|
},
|
|
1914
|
+
/**
|
|
1915
|
+
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
1916
|
+
* @param {DefaultApiV1GetOrganizationSatellitePotentialsRequest} requestParameters Request parameters.
|
|
1917
|
+
* @param {*} [options] Override http request option.
|
|
1918
|
+
* @throws {RequiredError}
|
|
1919
|
+
*/
|
|
1920
|
+
v1GetOrganizationSatellitePotentials(requestParameters, options) {
|
|
1921
|
+
return localVarFp.v1GetOrganizationSatellitePotentials(requestParameters.until, requestParameters.includeWeather, options).then((request) => request(axios, basePath));
|
|
1922
|
+
},
|
|
1842
1923
|
/**
|
|
1843
1924
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
1844
1925
|
* @param {*} [options] Override http request option.
|
|
@@ -1854,7 +1935,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1854
1935
|
* @throws {RequiredError}
|
|
1855
1936
|
*/
|
|
1856
1937
|
v1GetSatellitePotentials(requestParameters, options) {
|
|
1857
|
-
return localVarFp.v1GetSatellitePotentials(requestParameters.satelliteTargetId, requestParameters.until, options).then((request) => request(axios, basePath));
|
|
1938
|
+
return localVarFp.v1GetSatellitePotentials(requestParameters.satelliteTargetId, requestParameters.until, requestParameters.includeWeather, options).then((request) => request(axios, basePath));
|
|
1858
1939
|
},
|
|
1859
1940
|
/**
|
|
1860
1941
|
* Get a satellite target that the OurSky platform can currently track by id.
|
|
@@ -2154,6 +2235,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2154
2235
|
v1GetObservationStatuses(requestParameters = {}, options) {
|
|
2155
2236
|
return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, options).then((request) => request(this.axios, this.basePath));
|
|
2156
2237
|
}
|
|
2238
|
+
/**
|
|
2239
|
+
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
2240
|
+
* @param {DefaultApiV1GetOrganizationSatellitePotentialsRequest} requestParameters Request parameters.
|
|
2241
|
+
* @param {*} [options] Override http request option.
|
|
2242
|
+
* @throws {RequiredError}
|
|
2243
|
+
* @memberof DefaultApi
|
|
2244
|
+
*/
|
|
2245
|
+
v1GetOrganizationSatellitePotentials(requestParameters, options) {
|
|
2246
|
+
return DefaultApiFp(this.configuration).v1GetOrganizationSatellitePotentials(requestParameters.until, requestParameters.includeWeather, options).then((request) => request(this.axios, this.basePath));
|
|
2247
|
+
}
|
|
2157
2248
|
/**
|
|
2158
2249
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
2159
2250
|
* @param {*} [options] Override http request option.
|
|
@@ -2171,7 +2262,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
2171
2262
|
* @memberof DefaultApi
|
|
2172
2263
|
*/
|
|
2173
2264
|
v1GetSatellitePotentials(requestParameters, options) {
|
|
2174
|
-
return DefaultApiFp(this.configuration).v1GetSatellitePotentials(requestParameters.satelliteTargetId, requestParameters.until, options).then((request) => request(this.axios, this.basePath));
|
|
2265
|
+
return DefaultApiFp(this.configuration).v1GetSatellitePotentials(requestParameters.satelliteTargetId, requestParameters.until, requestParameters.includeWeather, options).then((request) => request(this.axios, this.basePath));
|
|
2175
2266
|
}
|
|
2176
2267
|
/**
|
|
2177
2268
|
* Get a satellite target that the OurSky platform can currently track by id.
|
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.3644
|
|
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.3644
|
|
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.3644
|
|
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.3644
|
|
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.3644
|
|
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.3644
|
|
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.3644
|
|
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.3644
|
|
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.3644
|
|
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.3644
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|