@ourskyai/sda-api 1.3.2816 → 1.3.3194
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 +798 -116
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +479 -71
- package/dist/api.js +434 -29
- 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 +479 -71
- package/dist/esm/api.js +433 -28
- 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/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.3194
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -234,6 +234,18 @@ export interface ObservationResult {
|
|
|
234
234
|
* @memberof ObservationResult
|
|
235
235
|
*/
|
|
236
236
|
'dec': number;
|
|
237
|
+
/**
|
|
238
|
+
* The measured right ascension calibrated for stellar aberration in degrees
|
|
239
|
+
* @type {number}
|
|
240
|
+
* @memberof ObservationResult
|
|
241
|
+
*/
|
|
242
|
+
'correctedRa'?: number;
|
|
243
|
+
/**
|
|
244
|
+
* The measured declination calibrated for stellar aberration in degrees
|
|
245
|
+
* @type {number}
|
|
246
|
+
* @memberof ObservationResult
|
|
247
|
+
*/
|
|
248
|
+
'correctedDec'?: number;
|
|
237
249
|
/**
|
|
238
250
|
*
|
|
239
251
|
* @type {ObservationBoundingBox}
|
|
@@ -265,6 +277,18 @@ export interface ObservationResult {
|
|
|
265
277
|
*/
|
|
266
278
|
'features'?: Array<V1ObservationFeature>;
|
|
267
279
|
}
|
|
280
|
+
/**
|
|
281
|
+
*
|
|
282
|
+
* @export
|
|
283
|
+
* @enum {string}
|
|
284
|
+
*/
|
|
285
|
+
export declare const ObservationState: {
|
|
286
|
+
readonly PENDING: "PENDING";
|
|
287
|
+
readonly UNDERWAY: "UNDERWAY";
|
|
288
|
+
readonly COMPLETED: "COMPLETED";
|
|
289
|
+
readonly FAILED: "FAILED";
|
|
290
|
+
};
|
|
291
|
+
export type ObservationState = typeof ObservationState[keyof typeof ObservationState];
|
|
268
292
|
/**
|
|
269
293
|
*
|
|
270
294
|
* @export
|
|
@@ -435,76 +459,46 @@ export interface V1CreateSatelliteTargetRequest {
|
|
|
435
459
|
/**
|
|
436
460
|
*
|
|
437
461
|
* @export
|
|
438
|
-
* @interface
|
|
462
|
+
* @interface V1CreateSearchInstructionRequest
|
|
439
463
|
*/
|
|
440
|
-
export interface
|
|
441
|
-
/**
|
|
442
|
-
*
|
|
443
|
-
* @type {string}
|
|
444
|
-
* @memberof V1CreateSearchTaskRequest
|
|
445
|
-
*/
|
|
446
|
-
'nodeId': string;
|
|
464
|
+
export interface V1CreateSearchInstructionRequest {
|
|
447
465
|
/**
|
|
448
466
|
*
|
|
449
467
|
* @type {string}
|
|
450
|
-
* @memberof
|
|
468
|
+
* @memberof V1CreateSearchInstructionRequest
|
|
451
469
|
*/
|
|
452
470
|
'targetId': string;
|
|
453
471
|
/**
|
|
454
472
|
*
|
|
455
473
|
* @type {TrackingType}
|
|
456
|
-
* @memberof
|
|
474
|
+
* @memberof V1CreateSearchInstructionRequest
|
|
457
475
|
*/
|
|
458
|
-
'trackingType'
|
|
476
|
+
'trackingType': TrackingType;
|
|
459
477
|
/**
|
|
460
478
|
*
|
|
461
|
-
* @type {Array<
|
|
462
|
-
* @memberof
|
|
479
|
+
* @type {Array<V1SearchInstructionStep>}
|
|
480
|
+
* @memberof V1CreateSearchInstructionRequest
|
|
463
481
|
*/
|
|
464
|
-
'steps': Array<
|
|
482
|
+
'steps': Array<V1SearchInstructionStep>;
|
|
465
483
|
}
|
|
466
484
|
/**
|
|
467
|
-
*
|
|
485
|
+
*
|
|
468
486
|
* @export
|
|
469
|
-
* @interface
|
|
487
|
+
* @interface V1CreateSurveyInstructionRequest
|
|
470
488
|
*/
|
|
471
|
-
export interface
|
|
472
|
-
/**
|
|
473
|
-
* Right Ascension in degrees. Required for SIDEREAL trackingType. Should be null for TARGET_RATE trackingType.
|
|
474
|
-
* @type {number}
|
|
475
|
-
* @memberof V1CreateSearchTaskRequestStepsInner
|
|
476
|
-
*/
|
|
477
|
-
'ra'?: number;
|
|
478
|
-
/**
|
|
479
|
-
* Declination in degrees. Required for SIDEREAL trackingType. Should be null for TARGET_RATE trackingType.
|
|
480
|
-
* @type {number}
|
|
481
|
-
* @memberof V1CreateSearchTaskRequestStepsInner
|
|
482
|
-
*/
|
|
483
|
-
'dec'?: number;
|
|
484
|
-
/**
|
|
485
|
-
* Offset in degrees from the ra. Required for TARGET_RATE trackingType. Should be null for SIDEREAL trackingType.
|
|
486
|
-
* @type {number}
|
|
487
|
-
* @memberof V1CreateSearchTaskRequestStepsInner
|
|
488
|
-
*/
|
|
489
|
-
'raOffset'?: number;
|
|
490
|
-
/**
|
|
491
|
-
* Offset in degrees from the dec. Required for TARGET_RATE trackingType. Should be null for SIDEREAL trackingType.
|
|
492
|
-
* @type {number}
|
|
493
|
-
* @memberof V1CreateSearchTaskRequestStepsInner
|
|
494
|
-
*/
|
|
495
|
-
'decOffset'?: number;
|
|
489
|
+
export interface V1CreateSurveyInstructionRequest {
|
|
496
490
|
/**
|
|
497
491
|
*
|
|
498
492
|
* @type {string}
|
|
499
|
-
* @memberof
|
|
493
|
+
* @memberof V1CreateSurveyInstructionRequest
|
|
500
494
|
*/
|
|
501
|
-
'
|
|
495
|
+
'targetId': string;
|
|
502
496
|
/**
|
|
503
497
|
*
|
|
504
|
-
* @type {
|
|
505
|
-
* @memberof
|
|
498
|
+
* @type {Array<V1SurveyInstructionStep>}
|
|
499
|
+
* @memberof V1CreateSurveyInstructionRequest
|
|
506
500
|
*/
|
|
507
|
-
'
|
|
501
|
+
'steps': Array<V1SurveyInstructionStep>;
|
|
508
502
|
}
|
|
509
503
|
/**
|
|
510
504
|
*
|
|
@@ -1029,6 +1023,24 @@ export interface V1ObservationStatus {
|
|
|
1029
1023
|
* @memberof V1ObservationStatus
|
|
1030
1024
|
*/
|
|
1031
1025
|
'searchInstructionId'?: string;
|
|
1026
|
+
/**
|
|
1027
|
+
*
|
|
1028
|
+
* @type {string}
|
|
1029
|
+
* @memberof V1ObservationStatus
|
|
1030
|
+
*/
|
|
1031
|
+
'surveyInstructionId'?: string;
|
|
1032
|
+
/**
|
|
1033
|
+
*
|
|
1034
|
+
* @type {string}
|
|
1035
|
+
* @memberof V1ObservationStatus
|
|
1036
|
+
*/
|
|
1037
|
+
'completedAt'?: string;
|
|
1038
|
+
/**
|
|
1039
|
+
*
|
|
1040
|
+
* @type {ObservationState}
|
|
1041
|
+
* @memberof V1ObservationStatus
|
|
1042
|
+
*/
|
|
1043
|
+
'state': ObservationState;
|
|
1032
1044
|
}
|
|
1033
1045
|
/**
|
|
1034
1046
|
*
|
|
@@ -1153,6 +1165,142 @@ export interface V1SatelliteTarget {
|
|
|
1153
1165
|
*/
|
|
1154
1166
|
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
1155
1167
|
}
|
|
1168
|
+
/**
|
|
1169
|
+
* Search Instruction
|
|
1170
|
+
* @export
|
|
1171
|
+
* @interface V1SearchInstruction
|
|
1172
|
+
*/
|
|
1173
|
+
export interface V1SearchInstruction {
|
|
1174
|
+
/**
|
|
1175
|
+
*
|
|
1176
|
+
* @type {string}
|
|
1177
|
+
* @memberof V1SearchInstruction
|
|
1178
|
+
*/
|
|
1179
|
+
'id': string;
|
|
1180
|
+
/**
|
|
1181
|
+
*
|
|
1182
|
+
* @type {string}
|
|
1183
|
+
* @memberof V1SearchInstruction
|
|
1184
|
+
*/
|
|
1185
|
+
'nodeId'?: string;
|
|
1186
|
+
/**
|
|
1187
|
+
*
|
|
1188
|
+
* @type {string}
|
|
1189
|
+
* @memberof V1SearchInstruction
|
|
1190
|
+
*/
|
|
1191
|
+
'targetId': string;
|
|
1192
|
+
/**
|
|
1193
|
+
*
|
|
1194
|
+
* @type {TrackingType}
|
|
1195
|
+
* @memberof V1SearchInstruction
|
|
1196
|
+
*/
|
|
1197
|
+
'trackingType': TrackingType;
|
|
1198
|
+
/**
|
|
1199
|
+
* Each step indicates an observation attempt at a given distance offset in the local spacecraft frame. Offset values for each step should always be entered in absolute distance offset from the target\'s TLE, not relative to the previous step.
|
|
1200
|
+
* @type {Array<V1SearchInstructionStep>}
|
|
1201
|
+
* @memberof V1SearchInstruction
|
|
1202
|
+
*/
|
|
1203
|
+
'steps': Array<V1SearchInstructionStep>;
|
|
1204
|
+
}
|
|
1205
|
+
/**
|
|
1206
|
+
* Search Instruction Step
|
|
1207
|
+
* @export
|
|
1208
|
+
* @interface V1SearchInstructionStep
|
|
1209
|
+
*/
|
|
1210
|
+
export interface V1SearchInstructionStep {
|
|
1211
|
+
/**
|
|
1212
|
+
* Along-track offset in the local spacecraft frame.
|
|
1213
|
+
* @type {number}
|
|
1214
|
+
* @memberof V1SearchInstructionStep
|
|
1215
|
+
*/
|
|
1216
|
+
'alongTrackOffsetMeters': number;
|
|
1217
|
+
/**
|
|
1218
|
+
* Cross-track offset in the local spacecraft frame.
|
|
1219
|
+
* @type {number}
|
|
1220
|
+
* @memberof V1SearchInstructionStep
|
|
1221
|
+
*/
|
|
1222
|
+
'crossTrackOffsetMeters': number;
|
|
1223
|
+
/**
|
|
1224
|
+
* Radial offset in the local spacecraft frame.
|
|
1225
|
+
* @type {number}
|
|
1226
|
+
* @memberof V1SearchInstructionStep
|
|
1227
|
+
*/
|
|
1228
|
+
'radialOffsetMeters': number;
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* @type {string}
|
|
1232
|
+
* @memberof V1SearchInstructionStep
|
|
1233
|
+
*/
|
|
1234
|
+
'startTime': string;
|
|
1235
|
+
/**
|
|
1236
|
+
*
|
|
1237
|
+
* @type {string}
|
|
1238
|
+
* @memberof V1SearchInstructionStep
|
|
1239
|
+
*/
|
|
1240
|
+
'endTime': string;
|
|
1241
|
+
}
|
|
1242
|
+
/**
|
|
1243
|
+
*
|
|
1244
|
+
* @export
|
|
1245
|
+
* @interface V1SurveyInstruction
|
|
1246
|
+
*/
|
|
1247
|
+
export interface V1SurveyInstruction {
|
|
1248
|
+
/**
|
|
1249
|
+
*
|
|
1250
|
+
* @type {string}
|
|
1251
|
+
* @memberof V1SurveyInstruction
|
|
1252
|
+
*/
|
|
1253
|
+
'id': string;
|
|
1254
|
+
/**
|
|
1255
|
+
*
|
|
1256
|
+
* @type {string}
|
|
1257
|
+
* @memberof V1SurveyInstruction
|
|
1258
|
+
*/
|
|
1259
|
+
'nodeId'?: string;
|
|
1260
|
+
/**
|
|
1261
|
+
*
|
|
1262
|
+
* @type {string}
|
|
1263
|
+
* @memberof V1SurveyInstruction
|
|
1264
|
+
*/
|
|
1265
|
+
'targetId': string;
|
|
1266
|
+
/**
|
|
1267
|
+
* 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
|
+
* @type {Array<V1SurveyInstructionStep>}
|
|
1269
|
+
* @memberof V1SurveyInstruction
|
|
1270
|
+
*/
|
|
1271
|
+
'steps': Array<V1SurveyInstructionStep>;
|
|
1272
|
+
}
|
|
1273
|
+
/**
|
|
1274
|
+
* Survey Instruction Step
|
|
1275
|
+
* @export
|
|
1276
|
+
* @interface V1SurveyInstructionStep
|
|
1277
|
+
*/
|
|
1278
|
+
export interface V1SurveyInstructionStep {
|
|
1279
|
+
/**
|
|
1280
|
+
*
|
|
1281
|
+
* @type {number}
|
|
1282
|
+
* @memberof V1SurveyInstructionStep
|
|
1283
|
+
*/
|
|
1284
|
+
'ra': number;
|
|
1285
|
+
/**
|
|
1286
|
+
*
|
|
1287
|
+
* @type {number}
|
|
1288
|
+
* @memberof V1SurveyInstructionStep
|
|
1289
|
+
*/
|
|
1290
|
+
'dec': number;
|
|
1291
|
+
/**
|
|
1292
|
+
*
|
|
1293
|
+
* @type {string}
|
|
1294
|
+
* @memberof V1SurveyInstructionStep
|
|
1295
|
+
*/
|
|
1296
|
+
'startTime': string;
|
|
1297
|
+
/**
|
|
1298
|
+
*
|
|
1299
|
+
* @type {string}
|
|
1300
|
+
* @memberof V1SurveyInstructionStep
|
|
1301
|
+
*/
|
|
1302
|
+
'endTime': string;
|
|
1303
|
+
}
|
|
1156
1304
|
/**
|
|
1157
1305
|
* Target Correlation
|
|
1158
1306
|
* @export
|
|
@@ -1411,12 +1559,19 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1411
1559
|
*/
|
|
1412
1560
|
v1CreateSatelliteTarget: (v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1413
1561
|
/**
|
|
1414
|
-
*
|
|
1415
|
-
* @param {
|
|
1562
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the results will be available in the observation status endpoint.
|
|
1563
|
+
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1416
1564
|
* @param {*} [options] Override http request option.
|
|
1417
1565
|
* @throws {RequiredError}
|
|
1418
1566
|
*/
|
|
1419
|
-
|
|
1567
|
+
v1CreateSearchInstruction: (v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1568
|
+
/**
|
|
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.
|
|
1570
|
+
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1571
|
+
* @param {*} [options] Override http request option.
|
|
1572
|
+
* @throws {RequiredError}
|
|
1573
|
+
*/
|
|
1574
|
+
v1CreateSurveyInstruction: (v1CreateSurveyInstructionRequest: V1CreateSurveyInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1420
1575
|
/**
|
|
1421
1576
|
* Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> `GET /v1/tdm?id={id}` For the `V1_EO_OBSERVATION_CREATED` event, please refer to the UDL API schema reference found at https://unifieddatalibrary.com The payload sent to the webhook endpoint will include a header field `\"X-OurSky-Signature\"` which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded. If your webhook endpoint requires authorization, use the `authType` and `authorization` parameters to ensure we can reach your servers. Basic authorizations headers should already be base64 encoded.
|
|
1422
1577
|
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
@@ -1445,6 +1600,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1445
1600
|
* @throws {RequiredError}
|
|
1446
1601
|
*/
|
|
1447
1602
|
v1DeleteOrganizationTarget: (satelliteTargetId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1603
|
+
/**
|
|
1604
|
+
* Delete a search instruction.
|
|
1605
|
+
* @param {string} id
|
|
1606
|
+
* @param {*} [options] Override http request option.
|
|
1607
|
+
* @throws {RequiredError}
|
|
1608
|
+
*/
|
|
1609
|
+
v1DeleteSearchInstruction: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1610
|
+
/**
|
|
1611
|
+
* Delete a survey instruction.
|
|
1612
|
+
* @param {string} id
|
|
1613
|
+
* @param {*} [options] Override http request option.
|
|
1614
|
+
* @throws {RequiredError}
|
|
1615
|
+
*/
|
|
1616
|
+
v1DeleteSurveyInstruction: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1448
1617
|
/**
|
|
1449
1618
|
* Delete a webhook configuration.
|
|
1450
1619
|
* @param {string} id
|
|
@@ -1502,14 +1671,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1502
1671
|
*/
|
|
1503
1672
|
v1GetObservationSequenceResults: (targetId?: string, after?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1504
1673
|
/**
|
|
1505
|
-
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by
|
|
1674
|
+
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId` or `surveyInstructionId`, a `before` timestamp is not required.
|
|
1506
1675
|
* @param {string} [targetId]
|
|
1507
1676
|
* @param {string} [before]
|
|
1508
1677
|
* @param {string} [searchInstructionId]
|
|
1678
|
+
* @param {string} [surveyInstructionId]
|
|
1509
1679
|
* @param {*} [options] Override http request option.
|
|
1510
1680
|
* @throws {RequiredError}
|
|
1511
1681
|
*/
|
|
1512
|
-
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1682
|
+
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1513
1683
|
/**
|
|
1514
1684
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
1515
1685
|
* @param {*} [options] Override http request option.
|
|
@@ -1524,6 +1694,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1524
1694
|
* @throws {RequiredError}
|
|
1525
1695
|
*/
|
|
1526
1696
|
v1GetSatellitePotentials: (satelliteTargetId: string, until: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1697
|
+
/**
|
|
1698
|
+
* Get a satellite target that the OurSky platform can currently track by id.
|
|
1699
|
+
* @param {string} id
|
|
1700
|
+
* @param {*} [options] Override http request option.
|
|
1701
|
+
* @throws {RequiredError}
|
|
1702
|
+
*/
|
|
1703
|
+
v1GetSatelliteTarget: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1527
1704
|
/**
|
|
1528
1705
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1529
1706
|
* @param {OrbitType} [orbitType]
|
|
@@ -1532,6 +1709,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1532
1709
|
* @throws {RequiredError}
|
|
1533
1710
|
*/
|
|
1534
1711
|
v1GetSatelliteTargets: (orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1712
|
+
/**
|
|
1713
|
+
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
1714
|
+
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
1715
|
+
* @param {*} [options] Override http request option.
|
|
1716
|
+
* @throws {RequiredError}
|
|
1717
|
+
*/
|
|
1718
|
+
v1GetSearchInstructions: (before?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1719
|
+
/**
|
|
1720
|
+
* Get a list of survey instructions. Survey instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
1721
|
+
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
1722
|
+
* @param {*} [options] Override http request option.
|
|
1723
|
+
* @throws {RequiredError}
|
|
1724
|
+
*/
|
|
1725
|
+
v1GetSurveyInstructions: (before?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1535
1726
|
/**
|
|
1536
1727
|
* Get a TDM.
|
|
1537
1728
|
* @param {string} tdmId
|
|
@@ -1602,12 +1793,19 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1602
1793
|
*/
|
|
1603
1794
|
v1CreateSatelliteTarget(v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1604
1795
|
/**
|
|
1605
|
-
*
|
|
1606
|
-
* @param {
|
|
1796
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the results will be available in the observation status endpoint.
|
|
1797
|
+
* @param {V1CreateSearchInstructionRequest} v1CreateSearchInstructionRequest
|
|
1607
1798
|
* @param {*} [options] Override http request option.
|
|
1608
1799
|
* @throws {RequiredError}
|
|
1609
1800
|
*/
|
|
1610
|
-
|
|
1801
|
+
v1CreateSearchInstruction(v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1802
|
+
/**
|
|
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.
|
|
1804
|
+
* @param {V1CreateSurveyInstructionRequest} v1CreateSurveyInstructionRequest
|
|
1805
|
+
* @param {*} [options] Override http request option.
|
|
1806
|
+
* @throws {RequiredError}
|
|
1807
|
+
*/
|
|
1808
|
+
v1CreateSurveyInstruction(v1CreateSurveyInstructionRequest: V1CreateSurveyInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1611
1809
|
/**
|
|
1612
1810
|
* Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> `GET /v1/tdm?id={id}` For the `V1_EO_OBSERVATION_CREATED` event, please refer to the UDL API schema reference found at https://unifieddatalibrary.com The payload sent to the webhook endpoint will include a header field `\"X-OurSky-Signature\"` which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded. If your webhook endpoint requires authorization, use the `authType` and `authorization` parameters to ensure we can reach your servers. Basic authorizations headers should already be base64 encoded.
|
|
1613
1811
|
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
@@ -1636,6 +1834,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1636
1834
|
* @throws {RequiredError}
|
|
1637
1835
|
*/
|
|
1638
1836
|
v1DeleteOrganizationTarget(satelliteTargetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
1837
|
+
/**
|
|
1838
|
+
* Delete a search instruction.
|
|
1839
|
+
* @param {string} id
|
|
1840
|
+
* @param {*} [options] Override http request option.
|
|
1841
|
+
* @throws {RequiredError}
|
|
1842
|
+
*/
|
|
1843
|
+
v1DeleteSearchInstruction(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
1844
|
+
/**
|
|
1845
|
+
* Delete a survey instruction.
|
|
1846
|
+
* @param {string} id
|
|
1847
|
+
* @param {*} [options] Override http request option.
|
|
1848
|
+
* @throws {RequiredError}
|
|
1849
|
+
*/
|
|
1850
|
+
v1DeleteSurveyInstruction(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
1639
1851
|
/**
|
|
1640
1852
|
* Delete a webhook configuration.
|
|
1641
1853
|
* @param {string} id
|
|
@@ -1693,14 +1905,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1693
1905
|
*/
|
|
1694
1906
|
v1GetObservationSequenceResults(targetId?: string, after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationSequenceResult>>>;
|
|
1695
1907
|
/**
|
|
1696
|
-
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by
|
|
1908
|
+
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId` or `surveyInstructionId`, a `before` timestamp is not required.
|
|
1697
1909
|
* @param {string} [targetId]
|
|
1698
1910
|
* @param {string} [before]
|
|
1699
1911
|
* @param {string} [searchInstructionId]
|
|
1912
|
+
* @param {string} [surveyInstructionId]
|
|
1700
1913
|
* @param {*} [options] Override http request option.
|
|
1701
1914
|
* @throws {RequiredError}
|
|
1702
1915
|
*/
|
|
1703
|
-
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
1916
|
+
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
1704
1917
|
/**
|
|
1705
1918
|
* Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
|
|
1706
1919
|
* @param {*} [options] Override http request option.
|
|
@@ -1715,6 +1928,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1715
1928
|
* @throws {RequiredError}
|
|
1716
1929
|
*/
|
|
1717
1930
|
v1GetSatellitePotentials(satelliteTargetId: string, until: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SatellitePotential>>>;
|
|
1931
|
+
/**
|
|
1932
|
+
* Get a satellite target that the OurSky platform can currently track by id.
|
|
1933
|
+
* @param {string} id
|
|
1934
|
+
* @param {*} [options] Override http request option.
|
|
1935
|
+
* @throws {RequiredError}
|
|
1936
|
+
*/
|
|
1937
|
+
v1GetSatelliteTarget(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SatelliteTarget>>;
|
|
1718
1938
|
/**
|
|
1719
1939
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1720
1940
|
* @param {OrbitType} [orbitType]
|
|
@@ -1723,6 +1943,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
1723
1943
|
* @throws {RequiredError}
|
|
1724
1944
|
*/
|
|
1725
1945
|
v1GetSatelliteTargets(orbitType?: OrbitType, noradId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSatelliteTargetsResponse>>;
|
|
1946
|
+
/**
|
|
1947
|
+
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
1948
|
+
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
1949
|
+
* @param {*} [options] Override http request option.
|
|
1950
|
+
* @throws {RequiredError}
|
|
1951
|
+
*/
|
|
1952
|
+
v1GetSearchInstructions(before?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SearchInstruction>>>;
|
|
1953
|
+
/**
|
|
1954
|
+
* Get a list of survey instructions. Survey instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
1955
|
+
* @param {string} [before] The timestamp to get the next page of results. Defaults to the current time.
|
|
1956
|
+
* @param {*} [options] Override http request option.
|
|
1957
|
+
* @throws {RequiredError}
|
|
1958
|
+
*/
|
|
1959
|
+
v1GetSurveyInstructions(before?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SurveyInstruction>>>;
|
|
1726
1960
|
/**
|
|
1727
1961
|
* Get a TDM.
|
|
1728
1962
|
* @param {string} tdmId
|
|
@@ -1793,12 +2027,19 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1793
2027
|
*/
|
|
1794
2028
|
v1CreateSatelliteTarget(requestParameters: DefaultApiV1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
1795
2029
|
/**
|
|
1796
|
-
*
|
|
1797
|
-
* @param {
|
|
2030
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the results will be available in the observation status endpoint.
|
|
2031
|
+
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2032
|
+
* @param {*} [options] Override http request option.
|
|
2033
|
+
* @throws {RequiredError}
|
|
2034
|
+
*/
|
|
2035
|
+
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2036
|
+
/**
|
|
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.
|
|
2038
|
+
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
1798
2039
|
* @param {*} [options] Override http request option.
|
|
1799
2040
|
* @throws {RequiredError}
|
|
1800
2041
|
*/
|
|
1801
|
-
|
|
2042
|
+
v1CreateSurveyInstruction(requestParameters: DefaultApiV1CreateSurveyInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
1802
2043
|
/**
|
|
1803
2044
|
* Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> `GET /v1/tdm?id={id}` For the `V1_EO_OBSERVATION_CREATED` event, please refer to the UDL API schema reference found at https://unifieddatalibrary.com The payload sent to the webhook endpoint will include a header field `\"X-OurSky-Signature\"` which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded. If your webhook endpoint requires authorization, use the `authType` and `authorization` parameters to ensure we can reach your servers. Basic authorizations headers should already be base64 encoded.
|
|
1804
2045
|
* @param {DefaultApiV1CreateWebhookConfigurationRequest} requestParameters Request parameters.
|
|
@@ -1827,6 +2068,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1827
2068
|
* @throws {RequiredError}
|
|
1828
2069
|
*/
|
|
1829
2070
|
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
2071
|
+
/**
|
|
2072
|
+
* Delete a search instruction.
|
|
2073
|
+
* @param {DefaultApiV1DeleteSearchInstructionRequest} requestParameters Request parameters.
|
|
2074
|
+
* @param {*} [options] Override http request option.
|
|
2075
|
+
* @throws {RequiredError}
|
|
2076
|
+
*/
|
|
2077
|
+
v1DeleteSearchInstruction(requestParameters: DefaultApiV1DeleteSearchInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
2078
|
+
/**
|
|
2079
|
+
* Delete a survey instruction.
|
|
2080
|
+
* @param {DefaultApiV1DeleteSurveyInstructionRequest} requestParameters Request parameters.
|
|
2081
|
+
* @param {*} [options] Override http request option.
|
|
2082
|
+
* @throws {RequiredError}
|
|
2083
|
+
*/
|
|
2084
|
+
v1DeleteSurveyInstruction(requestParameters: DefaultApiV1DeleteSurveyInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
1830
2085
|
/**
|
|
1831
2086
|
* Delete a webhook configuration.
|
|
1832
2087
|
* @param {DefaultApiV1DeleteWebhookConfigurationRequest} requestParameters Request parameters.
|
|
@@ -1883,7 +2138,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1883
2138
|
*/
|
|
1884
2139
|
v1GetObservationSequenceResults(requestParameters?: DefaultApiV1GetObservationSequenceResultsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1ObservationSequenceResult>>;
|
|
1885
2140
|
/**
|
|
1886
|
-
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by
|
|
2141
|
+
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId` or `surveyInstructionId`, a `before` timestamp is not required.
|
|
1887
2142
|
* @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
|
|
1888
2143
|
* @param {*} [options] Override http request option.
|
|
1889
2144
|
* @throws {RequiredError}
|
|
@@ -1902,6 +2157,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1902
2157
|
* @throws {RequiredError}
|
|
1903
2158
|
*/
|
|
1904
2159
|
v1GetSatellitePotentials(requestParameters: DefaultApiV1GetSatellitePotentialsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SatellitePotential>>;
|
|
2160
|
+
/**
|
|
2161
|
+
* Get a satellite target that the OurSky platform can currently track by id.
|
|
2162
|
+
* @param {DefaultApiV1GetSatelliteTargetRequest} requestParameters Request parameters.
|
|
2163
|
+
* @param {*} [options] Override http request option.
|
|
2164
|
+
* @throws {RequiredError}
|
|
2165
|
+
*/
|
|
2166
|
+
v1GetSatelliteTarget(requestParameters: DefaultApiV1GetSatelliteTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1SatelliteTarget>;
|
|
1905
2167
|
/**
|
|
1906
2168
|
* The available satellite objects that the OurSky platform can currently track.
|
|
1907
2169
|
* @param {DefaultApiV1GetSatelliteTargetsRequest} requestParameters Request parameters.
|
|
@@ -1909,6 +2171,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
1909
2171
|
* @throws {RequiredError}
|
|
1910
2172
|
*/
|
|
1911
2173
|
v1GetSatelliteTargets(requestParameters?: DefaultApiV1GetSatelliteTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetSatelliteTargetsResponse>;
|
|
2174
|
+
/**
|
|
2175
|
+
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
2176
|
+
* @param {DefaultApiV1GetSearchInstructionsRequest} requestParameters Request parameters.
|
|
2177
|
+
* @param {*} [options] Override http request option.
|
|
2178
|
+
* @throws {RequiredError}
|
|
2179
|
+
*/
|
|
2180
|
+
v1GetSearchInstructions(requestParameters?: DefaultApiV1GetSearchInstructionsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SearchInstruction>>;
|
|
2181
|
+
/**
|
|
2182
|
+
* Get a list of survey instructions. Survey instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
2183
|
+
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
2184
|
+
* @param {*} [options] Override http request option.
|
|
2185
|
+
* @throws {RequiredError}
|
|
2186
|
+
*/
|
|
2187
|
+
v1GetSurveyInstructions(requestParameters?: DefaultApiV1GetSurveyInstructionsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SurveyInstruction>>;
|
|
1912
2188
|
/**
|
|
1913
2189
|
* Get a TDM.
|
|
1914
2190
|
* @param {DefaultApiV1GetTdmRequest} requestParameters Request parameters.
|
|
@@ -1997,17 +2273,30 @@ export interface DefaultApiV1CreateSatelliteTargetRequest {
|
|
|
1997
2273
|
readonly v1CreateSatelliteTargetRequest: V1CreateSatelliteTargetRequest;
|
|
1998
2274
|
}
|
|
1999
2275
|
/**
|
|
2000
|
-
* Request parameters for
|
|
2276
|
+
* Request parameters for v1CreateSearchInstruction operation in DefaultApi.
|
|
2277
|
+
* @export
|
|
2278
|
+
* @interface DefaultApiV1CreateSearchInstructionRequest
|
|
2279
|
+
*/
|
|
2280
|
+
export interface DefaultApiV1CreateSearchInstructionRequest {
|
|
2281
|
+
/**
|
|
2282
|
+
*
|
|
2283
|
+
* @type {V1CreateSearchInstructionRequest}
|
|
2284
|
+
* @memberof DefaultApiV1CreateSearchInstruction
|
|
2285
|
+
*/
|
|
2286
|
+
readonly v1CreateSearchInstructionRequest: V1CreateSearchInstructionRequest;
|
|
2287
|
+
}
|
|
2288
|
+
/**
|
|
2289
|
+
* Request parameters for v1CreateSurveyInstruction operation in DefaultApi.
|
|
2001
2290
|
* @export
|
|
2002
|
-
* @interface
|
|
2291
|
+
* @interface DefaultApiV1CreateSurveyInstructionRequest
|
|
2003
2292
|
*/
|
|
2004
|
-
export interface
|
|
2293
|
+
export interface DefaultApiV1CreateSurveyInstructionRequest {
|
|
2005
2294
|
/**
|
|
2006
2295
|
*
|
|
2007
|
-
* @type {
|
|
2008
|
-
* @memberof
|
|
2296
|
+
* @type {V1CreateSurveyInstructionRequest}
|
|
2297
|
+
* @memberof DefaultApiV1CreateSurveyInstruction
|
|
2009
2298
|
*/
|
|
2010
|
-
readonly
|
|
2299
|
+
readonly v1CreateSurveyInstructionRequest: V1CreateSurveyInstructionRequest;
|
|
2011
2300
|
}
|
|
2012
2301
|
/**
|
|
2013
2302
|
* Request parameters for v1CreateWebhookConfiguration operation in DefaultApi.
|
|
@@ -2061,6 +2350,32 @@ export interface DefaultApiV1DeleteOrganizationTargetRequest {
|
|
|
2061
2350
|
*/
|
|
2062
2351
|
readonly satelliteTargetId: string;
|
|
2063
2352
|
}
|
|
2353
|
+
/**
|
|
2354
|
+
* Request parameters for v1DeleteSearchInstruction operation in DefaultApi.
|
|
2355
|
+
* @export
|
|
2356
|
+
* @interface DefaultApiV1DeleteSearchInstructionRequest
|
|
2357
|
+
*/
|
|
2358
|
+
export interface DefaultApiV1DeleteSearchInstructionRequest {
|
|
2359
|
+
/**
|
|
2360
|
+
*
|
|
2361
|
+
* @type {string}
|
|
2362
|
+
* @memberof DefaultApiV1DeleteSearchInstruction
|
|
2363
|
+
*/
|
|
2364
|
+
readonly id: string;
|
|
2365
|
+
}
|
|
2366
|
+
/**
|
|
2367
|
+
* Request parameters for v1DeleteSurveyInstruction operation in DefaultApi.
|
|
2368
|
+
* @export
|
|
2369
|
+
* @interface DefaultApiV1DeleteSurveyInstructionRequest
|
|
2370
|
+
*/
|
|
2371
|
+
export interface DefaultApiV1DeleteSurveyInstructionRequest {
|
|
2372
|
+
/**
|
|
2373
|
+
*
|
|
2374
|
+
* @type {string}
|
|
2375
|
+
* @memberof DefaultApiV1DeleteSurveyInstruction
|
|
2376
|
+
*/
|
|
2377
|
+
readonly id: string;
|
|
2378
|
+
}
|
|
2064
2379
|
/**
|
|
2065
2380
|
* Request parameters for v1DeleteWebhookConfiguration operation in DefaultApi.
|
|
2066
2381
|
* @export
|
|
@@ -2182,6 +2497,12 @@ export interface DefaultApiV1GetObservationStatusesRequest {
|
|
|
2182
2497
|
* @memberof DefaultApiV1GetObservationStatuses
|
|
2183
2498
|
*/
|
|
2184
2499
|
readonly searchInstructionId?: string;
|
|
2500
|
+
/**
|
|
2501
|
+
*
|
|
2502
|
+
* @type {string}
|
|
2503
|
+
* @memberof DefaultApiV1GetObservationStatuses
|
|
2504
|
+
*/
|
|
2505
|
+
readonly surveyInstructionId?: string;
|
|
2185
2506
|
}
|
|
2186
2507
|
/**
|
|
2187
2508
|
* Request parameters for v1GetSatellitePotentials operation in DefaultApi.
|
|
@@ -2202,6 +2523,19 @@ export interface DefaultApiV1GetSatellitePotentialsRequest {
|
|
|
2202
2523
|
*/
|
|
2203
2524
|
readonly until: string;
|
|
2204
2525
|
}
|
|
2526
|
+
/**
|
|
2527
|
+
* Request parameters for v1GetSatelliteTarget operation in DefaultApi.
|
|
2528
|
+
* @export
|
|
2529
|
+
* @interface DefaultApiV1GetSatelliteTargetRequest
|
|
2530
|
+
*/
|
|
2531
|
+
export interface DefaultApiV1GetSatelliteTargetRequest {
|
|
2532
|
+
/**
|
|
2533
|
+
*
|
|
2534
|
+
* @type {string}
|
|
2535
|
+
* @memberof DefaultApiV1GetSatelliteTarget
|
|
2536
|
+
*/
|
|
2537
|
+
readonly id: string;
|
|
2538
|
+
}
|
|
2205
2539
|
/**
|
|
2206
2540
|
* Request parameters for v1GetSatelliteTargets operation in DefaultApi.
|
|
2207
2541
|
* @export
|
|
@@ -2221,6 +2555,32 @@ export interface DefaultApiV1GetSatelliteTargetsRequest {
|
|
|
2221
2555
|
*/
|
|
2222
2556
|
readonly noradId?: string;
|
|
2223
2557
|
}
|
|
2558
|
+
/**
|
|
2559
|
+
* Request parameters for v1GetSearchInstructions operation in DefaultApi.
|
|
2560
|
+
* @export
|
|
2561
|
+
* @interface DefaultApiV1GetSearchInstructionsRequest
|
|
2562
|
+
*/
|
|
2563
|
+
export interface DefaultApiV1GetSearchInstructionsRequest {
|
|
2564
|
+
/**
|
|
2565
|
+
* The timestamp to get the next page of results. Defaults to the current time.
|
|
2566
|
+
* @type {string}
|
|
2567
|
+
* @memberof DefaultApiV1GetSearchInstructions
|
|
2568
|
+
*/
|
|
2569
|
+
readonly before?: string;
|
|
2570
|
+
}
|
|
2571
|
+
/**
|
|
2572
|
+
* Request parameters for v1GetSurveyInstructions operation in DefaultApi.
|
|
2573
|
+
* @export
|
|
2574
|
+
* @interface DefaultApiV1GetSurveyInstructionsRequest
|
|
2575
|
+
*/
|
|
2576
|
+
export interface DefaultApiV1GetSurveyInstructionsRequest {
|
|
2577
|
+
/**
|
|
2578
|
+
* The timestamp to get the next page of results. Defaults to the current time.
|
|
2579
|
+
* @type {string}
|
|
2580
|
+
* @memberof DefaultApiV1GetSurveyInstructions
|
|
2581
|
+
*/
|
|
2582
|
+
readonly before?: string;
|
|
2583
|
+
}
|
|
2224
2584
|
/**
|
|
2225
2585
|
* Request parameters for v1GetTdm operation in DefaultApi.
|
|
2226
2586
|
* @export
|
|
@@ -2319,13 +2679,21 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2319
2679
|
*/
|
|
2320
2680
|
v1CreateSatelliteTarget(requestParameters: DefaultApiV1CreateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
2321
2681
|
/**
|
|
2322
|
-
*
|
|
2323
|
-
* @param {
|
|
2682
|
+
* Create a search instruction. Search instructions are the highest priority request in the system. The system will execute the search and the results will be available in the observation status endpoint.
|
|
2683
|
+
* @param {DefaultApiV1CreateSearchInstructionRequest} requestParameters Request parameters.
|
|
2684
|
+
* @param {*} [options] Override http request option.
|
|
2685
|
+
* @throws {RequiredError}
|
|
2686
|
+
* @memberof DefaultApi
|
|
2687
|
+
*/
|
|
2688
|
+
v1CreateSearchInstruction(requestParameters: DefaultApiV1CreateSearchInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
2689
|
+
/**
|
|
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.
|
|
2691
|
+
* @param {DefaultApiV1CreateSurveyInstructionRequest} requestParameters Request parameters.
|
|
2324
2692
|
* @param {*} [options] Override http request option.
|
|
2325
2693
|
* @throws {RequiredError}
|
|
2326
2694
|
* @memberof DefaultApi
|
|
2327
2695
|
*/
|
|
2328
|
-
|
|
2696
|
+
v1CreateSurveyInstruction(requestParameters: DefaultApiV1CreateSurveyInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
2329
2697
|
/**
|
|
2330
2698
|
* Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> `GET /v1/tdm?id={id}` For the `V1_EO_OBSERVATION_CREATED` event, please refer to the UDL API schema reference found at https://unifieddatalibrary.com The payload sent to the webhook endpoint will include a header field `\"X-OurSky-Signature\"` which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded. If your webhook endpoint requires authorization, use the `authType` and `authorization` parameters to ensure we can reach your servers. Basic authorizations headers should already be base64 encoded.
|
|
2331
2699
|
* @param {DefaultApiV1CreateWebhookConfigurationRequest} requestParameters Request parameters.
|
|
@@ -2358,6 +2726,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2358
2726
|
* @memberof DefaultApi
|
|
2359
2727
|
*/
|
|
2360
2728
|
v1DeleteOrganizationTarget(requestParameters: DefaultApiV1DeleteOrganizationTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
2729
|
+
/**
|
|
2730
|
+
* Delete a search instruction.
|
|
2731
|
+
* @param {DefaultApiV1DeleteSearchInstructionRequest} requestParameters Request parameters.
|
|
2732
|
+
* @param {*} [options] Override http request option.
|
|
2733
|
+
* @throws {RequiredError}
|
|
2734
|
+
* @memberof DefaultApi
|
|
2735
|
+
*/
|
|
2736
|
+
v1DeleteSearchInstruction(requestParameters: DefaultApiV1DeleteSearchInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
2737
|
+
/**
|
|
2738
|
+
* Delete a survey instruction.
|
|
2739
|
+
* @param {DefaultApiV1DeleteSurveyInstructionRequest} requestParameters Request parameters.
|
|
2740
|
+
* @param {*} [options] Override http request option.
|
|
2741
|
+
* @throws {RequiredError}
|
|
2742
|
+
* @memberof DefaultApi
|
|
2743
|
+
*/
|
|
2744
|
+
v1DeleteSurveyInstruction(requestParameters: DefaultApiV1DeleteSurveyInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
2361
2745
|
/**
|
|
2362
2746
|
* Delete a webhook configuration.
|
|
2363
2747
|
* @param {DefaultApiV1DeleteWebhookConfigurationRequest} requestParameters Request parameters.
|
|
@@ -2422,7 +2806,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2422
2806
|
*/
|
|
2423
2807
|
v1GetObservationSequenceResults(requestParameters?: DefaultApiV1GetObservationSequenceResultsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ObservationSequenceResult[], any>>;
|
|
2424
2808
|
/**
|
|
2425
|
-
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by
|
|
2809
|
+
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId` or `surveyInstructionId`, a `before` timestamp is not required.
|
|
2426
2810
|
* @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
|
|
2427
2811
|
* @param {*} [options] Override http request option.
|
|
2428
2812
|
* @throws {RequiredError}
|
|
@@ -2444,6 +2828,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2444
2828
|
* @memberof DefaultApi
|
|
2445
2829
|
*/
|
|
2446
2830
|
v1GetSatellitePotentials(requestParameters: DefaultApiV1GetSatellitePotentialsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SatellitePotential[], any>>;
|
|
2831
|
+
/**
|
|
2832
|
+
* Get a satellite target that the OurSky platform can currently track by id.
|
|
2833
|
+
* @param {DefaultApiV1GetSatelliteTargetRequest} requestParameters Request parameters.
|
|
2834
|
+
* @param {*} [options] Override http request option.
|
|
2835
|
+
* @throws {RequiredError}
|
|
2836
|
+
* @memberof DefaultApi
|
|
2837
|
+
*/
|
|
2838
|
+
v1GetSatelliteTarget(requestParameters: DefaultApiV1GetSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SatelliteTarget, any>>;
|
|
2447
2839
|
/**
|
|
2448
2840
|
* The available satellite objects that the OurSky platform can currently track.
|
|
2449
2841
|
* @param {DefaultApiV1GetSatelliteTargetsRequest} requestParameters Request parameters.
|
|
@@ -2452,6 +2844,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
2452
2844
|
* @memberof DefaultApi
|
|
2453
2845
|
*/
|
|
2454
2846
|
v1GetSatelliteTargets(requestParameters?: DefaultApiV1GetSatelliteTargetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetSatelliteTargetsResponse, any>>;
|
|
2847
|
+
/**
|
|
2848
|
+
* Get a list of search instructions. Search instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
2849
|
+
* @param {DefaultApiV1GetSearchInstructionsRequest} requestParameters Request parameters.
|
|
2850
|
+
* @param {*} [options] Override http request option.
|
|
2851
|
+
* @throws {RequiredError}
|
|
2852
|
+
* @memberof DefaultApi
|
|
2853
|
+
*/
|
|
2854
|
+
v1GetSearchInstructions(requestParameters?: DefaultApiV1GetSearchInstructionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SearchInstruction[], any>>;
|
|
2855
|
+
/**
|
|
2856
|
+
* Get a list of survey instructions. Survey instructions are the highest priority request in the system. This endpoint is paginated and will return a maximum of 20 results per page. Use the before timestamp to get the next page of results.
|
|
2857
|
+
* @param {DefaultApiV1GetSurveyInstructionsRequest} requestParameters Request parameters.
|
|
2858
|
+
* @param {*} [options] Override http request option.
|
|
2859
|
+
* @throws {RequiredError}
|
|
2860
|
+
* @memberof DefaultApi
|
|
2861
|
+
*/
|
|
2862
|
+
v1GetSurveyInstructions(requestParameters?: DefaultApiV1GetSurveyInstructionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SurveyInstruction[], any>>;
|
|
2455
2863
|
/**
|
|
2456
2864
|
* Get a TDM.
|
|
2457
2865
|
* @param {DefaultApiV1GetTdmRequest} requestParameters Request parameters.
|