@ourskyai/sda-api 1.3.3194 → 1.3.3368
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 -28
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +37 -27
- package/dist/api.js +20 -10
- 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 +37 -27
- package/dist/esm/api.js +20 -10
- 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.3368
|
|
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.3368 --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.3368
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -325,7 +325,17 @@ export const OrbitType = {
|
|
|
325
325
|
GTO: 'GTO',
|
|
326
326
|
SSO: 'SSO',
|
|
327
327
|
TUNDRA: 'TUNDRA',
|
|
328
|
-
MOLNIYA: 'MOLNIYA'
|
|
328
|
+
MOLNIYA: 'MOLNIYA',
|
|
329
|
+
EGO: 'EGO',
|
|
330
|
+
ESO: 'ESO',
|
|
331
|
+
GHO: 'GHO',
|
|
332
|
+
HAO: 'HAO',
|
|
333
|
+
HEO: 'HEO',
|
|
334
|
+
IGO: 'IGO',
|
|
335
|
+
LMO: 'LMO',
|
|
336
|
+
MGO: 'MGO',
|
|
337
|
+
NSO: 'NSO',
|
|
338
|
+
UFO: 'UFO'
|
|
329
339
|
} as const;
|
|
330
340
|
|
|
331
341
|
export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
|
|
@@ -541,6 +551,12 @@ export interface V1CreateSurveyInstructionRequest {
|
|
|
541
551
|
* @memberof V1CreateSurveyInstructionRequest
|
|
542
552
|
*/
|
|
543
553
|
'steps': Array<V1SurveyInstructionStep>;
|
|
554
|
+
/**
|
|
555
|
+
*
|
|
556
|
+
* @type {string}
|
|
557
|
+
* @memberof V1CreateSurveyInstructionRequest
|
|
558
|
+
*/
|
|
559
|
+
'firstStepAt'?: string;
|
|
544
560
|
}
|
|
545
561
|
/**
|
|
546
562
|
*
|
|
@@ -1257,7 +1273,7 @@ export interface V1SearchInstruction {
|
|
|
1257
1273
|
|
|
1258
1274
|
|
|
1259
1275
|
/**
|
|
1260
|
-
* Search Instruction Step
|
|
1276
|
+
* Search Instruction Step. Each step is associated with one observation.
|
|
1261
1277
|
* @export
|
|
1262
1278
|
* @interface V1SearchInstructionStep
|
|
1263
1279
|
*/
|
|
@@ -1282,16 +1298,10 @@ export interface V1SearchInstructionStep {
|
|
|
1282
1298
|
'radialOffsetMeters': number;
|
|
1283
1299
|
/**
|
|
1284
1300
|
*
|
|
1285
|
-
* @type {
|
|
1286
|
-
* @memberof V1SearchInstructionStep
|
|
1287
|
-
*/
|
|
1288
|
-
'startTime': string;
|
|
1289
|
-
/**
|
|
1290
|
-
*
|
|
1291
|
-
* @type {string}
|
|
1301
|
+
* @type {number}
|
|
1292
1302
|
* @memberof V1SearchInstructionStep
|
|
1293
1303
|
*/
|
|
1294
|
-
'
|
|
1304
|
+
'durationSeconds': number;
|
|
1295
1305
|
}
|
|
1296
1306
|
/**
|
|
1297
1307
|
*
|
|
@@ -1317,6 +1327,12 @@ export interface V1SurveyInstruction {
|
|
|
1317
1327
|
* @memberof V1SurveyInstruction
|
|
1318
1328
|
*/
|
|
1319
1329
|
'targetId': string;
|
|
1330
|
+
/**
|
|
1331
|
+
*
|
|
1332
|
+
* @type {string}
|
|
1333
|
+
* @memberof V1SurveyInstruction
|
|
1334
|
+
*/
|
|
1335
|
+
'firstStepAt'?: string;
|
|
1320
1336
|
/**
|
|
1321
1337
|
* Each step indicates a sidereal observation attempt at a given (Ra, Dec). When supplying coordinates, they should be given in J2000 reference frames using an SGP4 model for propagation.
|
|
1322
1338
|
* @type {Array<V1SurveyInstructionStep>}
|
|
@@ -1325,7 +1341,7 @@ export interface V1SurveyInstruction {
|
|
|
1325
1341
|
'steps': Array<V1SurveyInstructionStep>;
|
|
1326
1342
|
}
|
|
1327
1343
|
/**
|
|
1328
|
-
* Survey Instruction Step
|
|
1344
|
+
* Survey Instruction Step. Each step is associated with one observation.
|
|
1329
1345
|
* @export
|
|
1330
1346
|
* @interface V1SurveyInstructionStep
|
|
1331
1347
|
*/
|
|
@@ -1344,16 +1360,10 @@ export interface V1SurveyInstructionStep {
|
|
|
1344
1360
|
'dec': number;
|
|
1345
1361
|
/**
|
|
1346
1362
|
*
|
|
1347
|
-
* @type {
|
|
1348
|
-
* @memberof V1SurveyInstructionStep
|
|
1349
|
-
*/
|
|
1350
|
-
'startTime': string;
|
|
1351
|
-
/**
|
|
1352
|
-
*
|
|
1353
|
-
* @type {string}
|
|
1363
|
+
* @type {number}
|
|
1354
1364
|
* @memberof V1SurveyInstructionStep
|
|
1355
1365
|
*/
|
|
1356
|
-
'
|
|
1366
|
+
'durationSeconds': number;
|
|
1357
1367
|
}
|
|
1358
1368
|
/**
|
|
1359
1369
|
* Target Correlation
|
|
@@ -1761,7 +1771,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1761
1771
|
};
|
|
1762
1772
|
},
|
|
1763
1773
|
/**
|
|
1764
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1774
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1765
1775
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1766
1776
|
* @param {*} [options] Override http request option.
|
|
1767
1777
|
* @throws {RequiredError}
|
|
@@ -1802,7 +1812,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1802
1812
|
};
|
|
1803
1813
|
},
|
|
1804
1814
|
/**
|
|
1805
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1815
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1806
1816
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1807
1817
|
* @param {*} [options] Override http request option.
|
|
1808
1818
|
* @throws {RequiredError}
|
|
@@ -2998,7 +3008,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
2998
3008
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2999
3009
|
},
|
|
3000
3010
|
/**
|
|
3001
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
3011
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3002
3012
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
3003
3013
|
* @param {*} [options] Override http request option.
|
|
3004
3014
|
* @throws {RequiredError}
|
|
@@ -3008,7 +3018,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3008
3018
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3009
3019
|
},
|
|
3010
3020
|
/**
|
|
3011
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
3021
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
3012
3022
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
3013
3023
|
* @param {*} [options] Override http request option.
|
|
3014
3024
|
* @throws {RequiredError}
|
|
@@ -3328,7 +3338,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3328
3338
|
return localVarFp.v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
3329
3339
|
},
|
|
3330
3340
|
/**
|
|
3331
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
3341
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
3332
3342
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
3333
3343
|
* @param {*} [options] Override http request option.
|
|
3334
3344
|
* @throws {RequiredError}
|
|
@@ -3337,7 +3347,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3337
3347
|
return localVarFp.v1CreateSearchInstruction(requestParameters.v1CreateSearchInstructionRequest, options).then((request) => request(axios, basePath));
|
|
3338
3348
|
},
|
|
3339
3349
|
/**
|
|
3340
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
3350
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
3341
3351
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
3342
3352
|
* @param {*} [options] Override http request option.
|
|
3343
3353
|
* @throws {RequiredError}
|
|
@@ -4086,7 +4096,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
4086
4096
|
}
|
|
4087
4097
|
|
|
4088
4098
|
/**
|
|
4089
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
4099
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
4090
4100
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
4091
4101
|
* @param {*} [options] Override http request option.
|
|
4092
4102
|
* @throws {RequiredError}
|
|
@@ -4097,7 +4107,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
4097
4107
|
}
|
|
4098
4108
|
|
|
4099
4109
|
/**
|
|
4100
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
4110
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
4101
4111
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
4102
4112
|
* @param {*} [options] Override http request option.
|
|
4103
4113
|
* @throws {RequiredError}
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -303,6 +303,16 @@ export declare const OrbitType: {
|
|
|
303
303
|
readonly SSO: "SSO";
|
|
304
304
|
readonly TUNDRA: "TUNDRA";
|
|
305
305
|
readonly MOLNIYA: "MOLNIYA";
|
|
306
|
+
readonly EGO: "EGO";
|
|
307
|
+
readonly ESO: "ESO";
|
|
308
|
+
readonly GHO: "GHO";
|
|
309
|
+
readonly HAO: "HAO";
|
|
310
|
+
readonly HEO: "HEO";
|
|
311
|
+
readonly IGO: "IGO";
|
|
312
|
+
readonly LMO: "LMO";
|
|
313
|
+
readonly MGO: "MGO";
|
|
314
|
+
readonly NSO: "NSO";
|
|
315
|
+
readonly UFO: "UFO";
|
|
306
316
|
};
|
|
307
317
|
export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
|
|
308
318
|
/**
|
|
@@ -499,6 +509,12 @@ export interface V1CreateSurveyInstructionRequest {
|
|
|
499
509
|
* @memberof V1CreateSurveyInstructionRequest
|
|
500
510
|
*/
|
|
501
511
|
'steps': Array<V1SurveyInstructionStep>;
|
|
512
|
+
/**
|
|
513
|
+
*
|
|
514
|
+
* @type {string}
|
|
515
|
+
* @memberof V1CreateSurveyInstructionRequest
|
|
516
|
+
*/
|
|
517
|
+
'firstStepAt'?: string;
|
|
502
518
|
}
|
|
503
519
|
/**
|
|
504
520
|
*
|
|
@@ -1203,7 +1219,7 @@ export interface V1SearchInstruction {
|
|
|
1203
1219
|
'steps': Array<V1SearchInstructionStep>;
|
|
1204
1220
|
}
|
|
1205
1221
|
/**
|
|
1206
|
-
* Search Instruction Step
|
|
1222
|
+
* Search Instruction Step. Each step is associated with one observation.
|
|
1207
1223
|
* @export
|
|
1208
1224
|
* @interface V1SearchInstructionStep
|
|
1209
1225
|
*/
|
|
@@ -1228,16 +1244,10 @@ export interface V1SearchInstructionStep {
|
|
|
1228
1244
|
'radialOffsetMeters': number;
|
|
1229
1245
|
/**
|
|
1230
1246
|
*
|
|
1231
|
-
* @type {
|
|
1232
|
-
* @memberof V1SearchInstructionStep
|
|
1233
|
-
*/
|
|
1234
|
-
'startTime': string;
|
|
1235
|
-
/**
|
|
1236
|
-
*
|
|
1237
|
-
* @type {string}
|
|
1247
|
+
* @type {number}
|
|
1238
1248
|
* @memberof V1SearchInstructionStep
|
|
1239
1249
|
*/
|
|
1240
|
-
'
|
|
1250
|
+
'durationSeconds': number;
|
|
1241
1251
|
}
|
|
1242
1252
|
/**
|
|
1243
1253
|
*
|
|
@@ -1263,6 +1273,12 @@ export interface V1SurveyInstruction {
|
|
|
1263
1273
|
* @memberof V1SurveyInstruction
|
|
1264
1274
|
*/
|
|
1265
1275
|
'targetId': string;
|
|
1276
|
+
/**
|
|
1277
|
+
*
|
|
1278
|
+
* @type {string}
|
|
1279
|
+
* @memberof V1SurveyInstruction
|
|
1280
|
+
*/
|
|
1281
|
+
'firstStepAt'?: string;
|
|
1266
1282
|
/**
|
|
1267
1283
|
* Each step indicates a sidereal observation attempt at a given (Ra, Dec). When supplying coordinates, they should be given in J2000 reference frames using an SGP4 model for propagation.
|
|
1268
1284
|
* @type {Array<V1SurveyInstructionStep>}
|
|
@@ -1271,7 +1287,7 @@ export interface V1SurveyInstruction {
|
|
|
1271
1287
|
'steps': Array<V1SurveyInstructionStep>;
|
|
1272
1288
|
}
|
|
1273
1289
|
/**
|
|
1274
|
-
* Survey Instruction Step
|
|
1290
|
+
* Survey Instruction Step. Each step is associated with one observation.
|
|
1275
1291
|
* @export
|
|
1276
1292
|
* @interface V1SurveyInstructionStep
|
|
1277
1293
|
*/
|
|
@@ -1290,16 +1306,10 @@ export interface V1SurveyInstructionStep {
|
|
|
1290
1306
|
'dec': number;
|
|
1291
1307
|
/**
|
|
1292
1308
|
*
|
|
1293
|
-
* @type {
|
|
1294
|
-
* @memberof V1SurveyInstructionStep
|
|
1295
|
-
*/
|
|
1296
|
-
'startTime': string;
|
|
1297
|
-
/**
|
|
1298
|
-
*
|
|
1299
|
-
* @type {string}
|
|
1309
|
+
* @type {number}
|
|
1300
1310
|
* @memberof V1SurveyInstructionStep
|
|
1301
1311
|
*/
|
|
1302
|
-
'
|
|
1312
|
+
'durationSeconds': number;
|
|
1303
1313
|
}
|
|
1304
1314
|
/**
|
|
1305
1315
|
* Target Correlation
|
|
@@ -1559,14 +1569,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1559
1569
|
*/
|
|
1560
1570
|
v1CreateSatelliteTarget: (v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1561
1571
|
/**
|
|
1562
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1572
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1563
1573
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1564
1574
|
* @param {*} [options] Override http request option.
|
|
1565
1575
|
* @throws {RequiredError}
|
|
1566
1576
|
*/
|
|
1567
1577
|
v1CreateSearchInstruction: (v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1568
1578
|
/**
|
|
1569
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1579
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1570
1580
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1571
1581
|
* @param {*} [options] Override http request option.
|
|
1572
1582
|
* @throws {RequiredError}
|
|
@@ -1793,14 +1803,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1793
1803
|
*/
|
|
1794
1804
|
v1CreateSatelliteTarget(v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1795
1805
|
/**
|
|
1796
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1806
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1797
1807
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1798
1808
|
* @param {*} [options] Override http request option.
|
|
1799
1809
|
* @throws {RequiredError}
|
|
1800
1810
|
*/
|
|
1801
1811
|
v1CreateSearchInstruction(v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1802
1812
|
/**
|
|
1803
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1813
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1804
1814
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1805
1815
|
* @param {*} [options] Override http request option.
|
|
1806
1816
|
* @throws {RequiredError}
|
|
@@ -2027,14 +2037,14 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2027
2037
|
*/
|
|
2028
2038
|
v1CreateSatelliteTarget(requestParameters: DefaultApiV1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2029
2039
|
/**
|
|
2030
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
2040
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2031
2041
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2032
2042
|
* @param {*} [options] Override http request option.
|
|
2033
2043
|
* @throws {RequiredError}
|
|
2034
2044
|
*/
|
|
2035
2045
|
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2036
2046
|
/**
|
|
2037
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
2047
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
2038
2048
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
2039
2049
|
* @param {*} [options] Override http request option.
|
|
2040
2050
|
* @throws {RequiredError}
|
|
@@ -2679,7 +2689,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2679
2689
|
*/
|
|
2680
2690
|
v1CreateSatelliteTarget(requestParameters: DefaultApiV1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
2681
2691
|
/**
|
|
2682
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
2692
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2683
2693
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2684
2694
|
* @param {*} [options] Override http request option.
|
|
2685
2695
|
* @throws {RequiredError}
|
|
@@ -2687,7 +2697,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2687
2697
|
*/
|
|
2688
2698
|
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
2689
2699
|
/**
|
|
2690
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
2700
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
2691
2701
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
2692
2702
|
* @param {*} [options] Override http request option.
|
|
2693
2703
|
* @throws {RequiredError}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky SDA
|
|
6
6
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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.3368
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -87,7 +87,17 @@ exports.OrbitType = {
|
|
|
87
87
|
GTO: 'GTO',
|
|
88
88
|
SSO: 'SSO',
|
|
89
89
|
TUNDRA: 'TUNDRA',
|
|
90
|
-
MOLNIYA: 'MOLNIYA'
|
|
90
|
+
MOLNIYA: 'MOLNIYA',
|
|
91
|
+
EGO: 'EGO',
|
|
92
|
+
ESO: 'ESO',
|
|
93
|
+
GHO: 'GHO',
|
|
94
|
+
HAO: 'HAO',
|
|
95
|
+
HEO: 'HEO',
|
|
96
|
+
IGO: 'IGO',
|
|
97
|
+
LMO: 'LMO',
|
|
98
|
+
MGO: 'MGO',
|
|
99
|
+
NSO: 'NSO',
|
|
100
|
+
UFO: 'UFO'
|
|
91
101
|
};
|
|
92
102
|
/**
|
|
93
103
|
*
|
|
@@ -280,7 +290,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
280
290
|
};
|
|
281
291
|
}),
|
|
282
292
|
/**
|
|
283
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
293
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
284
294
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
285
295
|
* @param {*} [options] Override http request option.
|
|
286
296
|
* @throws {RequiredError}
|
|
@@ -313,7 +323,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
313
323
|
};
|
|
314
324
|
}),
|
|
315
325
|
/**
|
|
316
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
326
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
317
327
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
318
328
|
* @param {*} [options] Override http request option.
|
|
319
329
|
* @throws {RequiredError}
|
|
@@ -1297,7 +1307,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
1297
1307
|
});
|
|
1298
1308
|
},
|
|
1299
1309
|
/**
|
|
1300
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1310
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1301
1311
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1302
1312
|
* @param {*} [options] Override http request option.
|
|
1303
1313
|
* @throws {RequiredError}
|
|
@@ -1309,7 +1319,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
1309
1319
|
});
|
|
1310
1320
|
},
|
|
1311
1321
|
/**
|
|
1312
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1322
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1313
1323
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1314
1324
|
* @param {*} [options] Override http request option.
|
|
1315
1325
|
* @throws {RequiredError}
|
|
@@ -1683,7 +1693,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1683
1693
|
return localVarFp.v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
1684
1694
|
},
|
|
1685
1695
|
/**
|
|
1686
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1696
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1687
1697
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
1688
1698
|
* @param {*} [options] Override http request option.
|
|
1689
1699
|
* @throws {RequiredError}
|
|
@@ -1692,7 +1702,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1692
1702
|
return localVarFp.v1CreateSearchInstruction(requestParameters.v1CreateSearchInstructionRequest, options).then((request) => request(axios, basePath));
|
|
1693
1703
|
},
|
|
1694
1704
|
/**
|
|
1695
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1705
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1696
1706
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
1697
1707
|
* @param {*} [options] Override http request option.
|
|
1698
1708
|
* @throws {RequiredError}
|
|
@@ -1982,7 +1992,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1982
1992
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1983
1993
|
}
|
|
1984
1994
|
/**
|
|
1985
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1995
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1986
1996
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
1987
1997
|
* @param {*} [options] Override http request option.
|
|
1988
1998
|
* @throws {RequiredError}
|
|
@@ -1992,7 +2002,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1992
2002
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateSearchInstruction(requestParameters.v1CreateSearchInstructionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1993
2003
|
}
|
|
1994
2004
|
/**
|
|
1995
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
2005
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1996
2006
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
1997
2007
|
* @param {*} [options] Override http request option.
|
|
1998
2008
|
* @throws {RequiredError}
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -303,6 +303,16 @@ export declare const OrbitType: {
|
|
|
303
303
|
readonly SSO: "SSO";
|
|
304
304
|
readonly TUNDRA: "TUNDRA";
|
|
305
305
|
readonly MOLNIYA: "MOLNIYA";
|
|
306
|
+
readonly EGO: "EGO";
|
|
307
|
+
readonly ESO: "ESO";
|
|
308
|
+
readonly GHO: "GHO";
|
|
309
|
+
readonly HAO: "HAO";
|
|
310
|
+
readonly HEO: "HEO";
|
|
311
|
+
readonly IGO: "IGO";
|
|
312
|
+
readonly LMO: "LMO";
|
|
313
|
+
readonly MGO: "MGO";
|
|
314
|
+
readonly NSO: "NSO";
|
|
315
|
+
readonly UFO: "UFO";
|
|
306
316
|
};
|
|
307
317
|
export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
|
|
308
318
|
/**
|
|
@@ -499,6 +509,12 @@ export interface V1CreateSurveyInstructionRequest {
|
|
|
499
509
|
* @memberof V1CreateSurveyInstructionRequest
|
|
500
510
|
*/
|
|
501
511
|
'steps': Array<V1SurveyInstructionStep>;
|
|
512
|
+
/**
|
|
513
|
+
*
|
|
514
|
+
* @type {string}
|
|
515
|
+
* @memberof V1CreateSurveyInstructionRequest
|
|
516
|
+
*/
|
|
517
|
+
'firstStepAt'?: string;
|
|
502
518
|
}
|
|
503
519
|
/**
|
|
504
520
|
*
|
|
@@ -1203,7 +1219,7 @@ export interface V1SearchInstruction {
|
|
|
1203
1219
|
'steps': Array<V1SearchInstructionStep>;
|
|
1204
1220
|
}
|
|
1205
1221
|
/**
|
|
1206
|
-
* Search Instruction Step
|
|
1222
|
+
* Search Instruction Step. Each step is associated with one observation.
|
|
1207
1223
|
* @export
|
|
1208
1224
|
* @interface V1SearchInstructionStep
|
|
1209
1225
|
*/
|
|
@@ -1228,16 +1244,10 @@ export interface V1SearchInstructionStep {
|
|
|
1228
1244
|
'radialOffsetMeters': number;
|
|
1229
1245
|
/**
|
|
1230
1246
|
*
|
|
1231
|
-
* @type {
|
|
1232
|
-
* @memberof V1SearchInstructionStep
|
|
1233
|
-
*/
|
|
1234
|
-
'startTime': string;
|
|
1235
|
-
/**
|
|
1236
|
-
*
|
|
1237
|
-
* @type {string}
|
|
1247
|
+
* @type {number}
|
|
1238
1248
|
* @memberof V1SearchInstructionStep
|
|
1239
1249
|
*/
|
|
1240
|
-
'
|
|
1250
|
+
'durationSeconds': number;
|
|
1241
1251
|
}
|
|
1242
1252
|
/**
|
|
1243
1253
|
*
|
|
@@ -1263,6 +1273,12 @@ export interface V1SurveyInstruction {
|
|
|
1263
1273
|
* @memberof V1SurveyInstruction
|
|
1264
1274
|
*/
|
|
1265
1275
|
'targetId': string;
|
|
1276
|
+
/**
|
|
1277
|
+
*
|
|
1278
|
+
* @type {string}
|
|
1279
|
+
* @memberof V1SurveyInstruction
|
|
1280
|
+
*/
|
|
1281
|
+
'firstStepAt'?: string;
|
|
1266
1282
|
/**
|
|
1267
1283
|
* Each step indicates a sidereal observation attempt at a given (Ra, Dec). When supplying coordinates, they should be given in J2000 reference frames using an SGP4 model for propagation.
|
|
1268
1284
|
* @type {Array<V1SurveyInstructionStep>}
|
|
@@ -1271,7 +1287,7 @@ export interface V1SurveyInstruction {
|
|
|
1271
1287
|
'steps': Array<V1SurveyInstructionStep>;
|
|
1272
1288
|
}
|
|
1273
1289
|
/**
|
|
1274
|
-
* Survey Instruction Step
|
|
1290
|
+
* Survey Instruction Step. Each step is associated with one observation.
|
|
1275
1291
|
* @export
|
|
1276
1292
|
* @interface V1SurveyInstructionStep
|
|
1277
1293
|
*/
|
|
@@ -1290,16 +1306,10 @@ export interface V1SurveyInstructionStep {
|
|
|
1290
1306
|
'dec': number;
|
|
1291
1307
|
/**
|
|
1292
1308
|
*
|
|
1293
|
-
* @type {
|
|
1294
|
-
* @memberof V1SurveyInstructionStep
|
|
1295
|
-
*/
|
|
1296
|
-
'startTime': string;
|
|
1297
|
-
/**
|
|
1298
|
-
*
|
|
1299
|
-
* @type {string}
|
|
1309
|
+
* @type {number}
|
|
1300
1310
|
* @memberof V1SurveyInstructionStep
|
|
1301
1311
|
*/
|
|
1302
|
-
'
|
|
1312
|
+
'durationSeconds': number;
|
|
1303
1313
|
}
|
|
1304
1314
|
/**
|
|
1305
1315
|
* Target Correlation
|
|
@@ -1559,14 +1569,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1559
1569
|
*/
|
|
1560
1570
|
v1CreateSatelliteTarget: (v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1561
1571
|
/**
|
|
1562
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1572
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1563
1573
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1564
1574
|
* @param {*} [options] Override http request option.
|
|
1565
1575
|
* @throws {RequiredError}
|
|
1566
1576
|
*/
|
|
1567
1577
|
v1CreateSearchInstruction: (v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1568
1578
|
/**
|
|
1569
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1579
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1570
1580
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1571
1581
|
* @param {*} [options] Override http request option.
|
|
1572
1582
|
* @throws {RequiredError}
|
|
@@ -1793,14 +1803,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1793
1803
|
*/
|
|
1794
1804
|
v1CreateSatelliteTarget(v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1795
1805
|
/**
|
|
1796
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1806
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1797
1807
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1798
1808
|
* @param {*} [options] Override http request option.
|
|
1799
1809
|
* @throws {RequiredError}
|
|
1800
1810
|
*/
|
|
1801
1811
|
v1CreateSearchInstruction(v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1802
1812
|
/**
|
|
1803
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1813
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1804
1814
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1805
1815
|
* @param {*} [options] Override http request option.
|
|
1806
1816
|
* @throws {RequiredError}
|
|
@@ -2027,14 +2037,14 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2027
2037
|
*/
|
|
2028
2038
|
v1CreateSatelliteTarget(requestParameters: DefaultApiV1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2029
2039
|
/**
|
|
2030
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
2040
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2031
2041
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2032
2042
|
* @param {*} [options] Override http request option.
|
|
2033
2043
|
* @throws {RequiredError}
|
|
2034
2044
|
*/
|
|
2035
2045
|
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2036
2046
|
/**
|
|
2037
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
2047
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
2038
2048
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
2039
2049
|
* @param {*} [options] Override http request option.
|
|
2040
2050
|
* @throws {RequiredError}
|
|
@@ -2679,7 +2689,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2679
2689
|
*/
|
|
2680
2690
|
v1CreateSatelliteTarget(requestParameters: DefaultApiV1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
2681
2691
|
/**
|
|
2682
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
2692
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
2683
2693
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2684
2694
|
* @param {*} [options] Override http request option.
|
|
2685
2695
|
* @throws {RequiredError}
|
|
@@ -2687,7 +2697,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2687
2697
|
*/
|
|
2688
2698
|
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
2689
2699
|
/**
|
|
2690
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
2700
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
2691
2701
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
2692
2702
|
* @param {*} [options] Override http request option.
|
|
2693
2703
|
* @throws {RequiredError}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#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.3368
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -84,7 +84,17 @@ export const OrbitType = {
|
|
|
84
84
|
GTO: 'GTO',
|
|
85
85
|
SSO: 'SSO',
|
|
86
86
|
TUNDRA: 'TUNDRA',
|
|
87
|
-
MOLNIYA: 'MOLNIYA'
|
|
87
|
+
MOLNIYA: 'MOLNIYA',
|
|
88
|
+
EGO: 'EGO',
|
|
89
|
+
ESO: 'ESO',
|
|
90
|
+
GHO: 'GHO',
|
|
91
|
+
HAO: 'HAO',
|
|
92
|
+
HEO: 'HEO',
|
|
93
|
+
IGO: 'IGO',
|
|
94
|
+
LMO: 'LMO',
|
|
95
|
+
MGO: 'MGO',
|
|
96
|
+
NSO: 'NSO',
|
|
97
|
+
UFO: 'UFO'
|
|
88
98
|
};
|
|
89
99
|
/**
|
|
90
100
|
*
|
|
@@ -277,7 +287,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
277
287
|
};
|
|
278
288
|
}),
|
|
279
289
|
/**
|
|
280
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
290
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
281
291
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
282
292
|
* @param {*} [options] Override http request option.
|
|
283
293
|
* @throws {RequiredError}
|
|
@@ -310,7 +320,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
310
320
|
};
|
|
311
321
|
}),
|
|
312
322
|
/**
|
|
313
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
323
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
314
324
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
315
325
|
* @param {*} [options] Override http request option.
|
|
316
326
|
* @throws {RequiredError}
|
|
@@ -1293,7 +1303,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1293
1303
|
});
|
|
1294
1304
|
},
|
|
1295
1305
|
/**
|
|
1296
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1306
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1297
1307
|
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1298
1308
|
* @param {*} [options] Override http request option.
|
|
1299
1309
|
* @throws {RequiredError}
|
|
@@ -1305,7 +1315,7 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1305
1315
|
});
|
|
1306
1316
|
},
|
|
1307
1317
|
/**
|
|
1308
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1318
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1309
1319
|
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1310
1320
|
* @param {*} [options] Override http request option.
|
|
1311
1321
|
* @throws {RequiredError}
|
|
@@ -1678,7 +1688,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1678
1688
|
return localVarFp.v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
1679
1689
|
},
|
|
1680
1690
|
/**
|
|
1681
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1691
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1682
1692
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
1683
1693
|
* @param {*} [options] Override http request option.
|
|
1684
1694
|
* @throws {RequiredError}
|
|
@@ -1687,7 +1697,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1687
1697
|
return localVarFp.v1CreateSearchInstruction(requestParameters.v1CreateSearchInstructionRequest, options).then((request) => request(axios, basePath));
|
|
1688
1698
|
},
|
|
1689
1699
|
/**
|
|
1690
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1700
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1691
1701
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
1692
1702
|
* @param {*} [options] Override http request option.
|
|
1693
1703
|
* @throws {RequiredError}
|
|
@@ -1976,7 +1986,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1976
1986
|
return DefaultApiFp(this.configuration).v1CreateSatelliteTarget(requestParameters.v1CreateSatelliteTargetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1977
1987
|
}
|
|
1978
1988
|
/**
|
|
1979
|
-
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the
|
|
1989
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The maximum duration for all steps is 5 minutes. Search patterns can be defined through both step offsets and timing. The system will execute the search and the resulting observations will be available in the observation status endpoint.
|
|
1980
1990
|
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
1981
1991
|
* @param {*} [options] Override http request option.
|
|
1982
1992
|
* @throws {RequiredError}
|
|
@@ -1986,7 +1996,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1986
1996
|
return DefaultApiFp(this.configuration).v1CreateSearchInstruction(requestParameters.v1CreateSearchInstructionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1987
1997
|
}
|
|
1988
1998
|
/**
|
|
1989
|
-
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint.
|
|
1999
|
+
* Create a survey instruction. Survey instructions are the highest priority request in the system. The system will execute the survey and the results will be available in the observation status endpoint. If `firstStepAt` is not specified, then the first node that is able to view an RA/Dec of any step will execute the instruction. If `firstStepAt` is specified, then the instruction will only execute starting at that time.
|
|
1990
2000
|
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
1991
2001
|
* @param {*} [options] Override http request option.
|
|
1992
2002
|
* @throws {RequiredError}
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
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.3368
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|