@ourskyai/sda-api 1.3.8106 → 1.3.8639
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 +259 -24
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +162 -21
- package/dist/api.js +144 -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 +162 -21
- package/dist/esm/api.js +144 -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/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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -314,6 +314,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
314
314
|
options: localVarRequestOptions,
|
|
315
315
|
};
|
|
316
316
|
}),
|
|
317
|
+
/**
|
|
318
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
319
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
320
|
+
* @param {*} [options] Override http request option.
|
|
321
|
+
* @throws {RequiredError}
|
|
322
|
+
*/
|
|
323
|
+
v1CreateDirectTaskInstruction: (v1CreateDirectTaskInstructionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
324
|
+
// verify required parameter 'v1CreateDirectTaskInstructionRequest' is not null or undefined
|
|
325
|
+
assertParamExists('v1CreateDirectTaskInstruction', 'v1CreateDirectTaskInstructionRequest', v1CreateDirectTaskInstructionRequest);
|
|
326
|
+
const localVarPath = `/v1/direct-task-instruction`;
|
|
327
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
328
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
329
|
+
let baseOptions;
|
|
330
|
+
if (configuration) {
|
|
331
|
+
baseOptions = configuration.baseOptions;
|
|
332
|
+
}
|
|
333
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
334
|
+
const localVarHeaderParameter = {};
|
|
335
|
+
const localVarQueryParameter = {};
|
|
336
|
+
// authentication Roles required
|
|
337
|
+
// authentication BearerToken required
|
|
338
|
+
// http bearer authentication required
|
|
339
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
340
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
341
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
342
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
343
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
344
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateDirectTaskInstructionRequest, localVarRequestOptions, configuration);
|
|
345
|
+
return {
|
|
346
|
+
url: toPathString(localVarUrlObj),
|
|
347
|
+
options: localVarRequestOptions,
|
|
348
|
+
};
|
|
349
|
+
}),
|
|
317
350
|
/**
|
|
318
351
|
* Create an image set.
|
|
319
352
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -613,6 +646,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
613
646
|
options: localVarRequestOptions,
|
|
614
647
|
};
|
|
615
648
|
}),
|
|
649
|
+
/**
|
|
650
|
+
* Delete a direct task instruction.
|
|
651
|
+
* @param {string} id
|
|
652
|
+
* @param {*} [options] Override http request option.
|
|
653
|
+
* @throws {RequiredError}
|
|
654
|
+
*/
|
|
655
|
+
v1DeleteDirectTaskInstruction: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
656
|
+
// verify required parameter 'id' is not null or undefined
|
|
657
|
+
assertParamExists('v1DeleteDirectTaskInstruction', 'id', id);
|
|
658
|
+
const localVarPath = `/v1/direct-task-instruction`;
|
|
659
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
660
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
661
|
+
let baseOptions;
|
|
662
|
+
if (configuration) {
|
|
663
|
+
baseOptions = configuration.baseOptions;
|
|
664
|
+
}
|
|
665
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
666
|
+
const localVarHeaderParameter = {};
|
|
667
|
+
const localVarQueryParameter = {};
|
|
668
|
+
// authentication Roles required
|
|
669
|
+
// authentication BearerToken required
|
|
670
|
+
// http bearer authentication required
|
|
671
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
672
|
+
if (id !== undefined) {
|
|
673
|
+
localVarQueryParameter['id'] = id;
|
|
674
|
+
}
|
|
675
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
676
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
677
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
678
|
+
return {
|
|
679
|
+
url: toPathString(localVarUrlObj),
|
|
680
|
+
options: localVarRequestOptions,
|
|
681
|
+
};
|
|
682
|
+
}),
|
|
616
683
|
/**
|
|
617
684
|
* Delete an image set.
|
|
618
685
|
* @param {string} id
|
|
@@ -1168,17 +1235,18 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1168
1235
|
};
|
|
1169
1236
|
}),
|
|
1170
1237
|
/**
|
|
1171
|
-
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`,
|
|
1238
|
+
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
|
|
1172
1239
|
* @param {string} [targetId]
|
|
1173
1240
|
* @param {string} [before]
|
|
1174
1241
|
* @param {string} [searchInstructionId]
|
|
1175
1242
|
* @param {string} [surveyInstructionId]
|
|
1176
1243
|
* @param {string} [resolvedImageInstructionId]
|
|
1244
|
+
* @param {string} [directTaskId]
|
|
1177
1245
|
* @param {string} [imageId]
|
|
1178
1246
|
* @param {*} [options] Override http request option.
|
|
1179
1247
|
* @throws {RequiredError}
|
|
1180
1248
|
*/
|
|
1181
|
-
v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1249
|
+
v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1182
1250
|
const localVarPath = `/v1/observation-statuses`;
|
|
1183
1251
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1184
1252
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1210,6 +1278,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1210
1278
|
if (resolvedImageInstructionId !== undefined) {
|
|
1211
1279
|
localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
|
|
1212
1280
|
}
|
|
1281
|
+
if (directTaskId !== undefined) {
|
|
1282
|
+
localVarQueryParameter['directTaskId'] = directTaskId;
|
|
1283
|
+
}
|
|
1213
1284
|
if (imageId !== undefined) {
|
|
1214
1285
|
localVarQueryParameter['imageId'] = imageId;
|
|
1215
1286
|
}
|
|
@@ -2116,6 +2187,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2116
2187
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2117
2188
|
});
|
|
2118
2189
|
},
|
|
2190
|
+
/**
|
|
2191
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
2192
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
2193
|
+
* @param {*} [options] Override http request option.
|
|
2194
|
+
* @throws {RequiredError}
|
|
2195
|
+
*/
|
|
2196
|
+
v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest, options) {
|
|
2197
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2198
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest, options);
|
|
2199
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2200
|
+
});
|
|
2201
|
+
},
|
|
2119
2202
|
/**
|
|
2120
2203
|
* Create an image set.
|
|
2121
2204
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2225,6 +2308,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2225
2308
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2226
2309
|
});
|
|
2227
2310
|
},
|
|
2311
|
+
/**
|
|
2312
|
+
* Delete a direct task instruction.
|
|
2313
|
+
* @param {string} id
|
|
2314
|
+
* @param {*} [options] Override http request option.
|
|
2315
|
+
* @throws {RequiredError}
|
|
2316
|
+
*/
|
|
2317
|
+
v1DeleteDirectTaskInstruction(id, options) {
|
|
2318
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2319
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteDirectTaskInstruction(id, options);
|
|
2320
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2321
|
+
});
|
|
2322
|
+
},
|
|
2228
2323
|
/**
|
|
2229
2324
|
* Delete an image set.
|
|
2230
2325
|
* @param {string} id
|
|
@@ -2421,19 +2516,20 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2421
2516
|
});
|
|
2422
2517
|
},
|
|
2423
2518
|
/**
|
|
2424
|
-
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`,
|
|
2519
|
+
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
|
|
2425
2520
|
* @param {string} [targetId]
|
|
2426
2521
|
* @param {string} [before]
|
|
2427
2522
|
* @param {string} [searchInstructionId]
|
|
2428
2523
|
* @param {string} [surveyInstructionId]
|
|
2429
2524
|
* @param {string} [resolvedImageInstructionId]
|
|
2525
|
+
* @param {string} [directTaskId]
|
|
2430
2526
|
* @param {string} [imageId]
|
|
2431
2527
|
* @param {*} [options] Override http request option.
|
|
2432
2528
|
* @throws {RequiredError}
|
|
2433
2529
|
*/
|
|
2434
|
-
v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options) {
|
|
2530
|
+
v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options) {
|
|
2435
2531
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2436
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options);
|
|
2532
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options);
|
|
2437
2533
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2438
2534
|
});
|
|
2439
2535
|
},
|
|
@@ -2765,6 +2861,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2765
2861
|
v1CreateBlackoutVolume(requestParameters, options) {
|
|
2766
2862
|
return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
|
|
2767
2863
|
},
|
|
2864
|
+
/**
|
|
2865
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
2866
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
2867
|
+
* @param {*} [options] Override http request option.
|
|
2868
|
+
* @throws {RequiredError}
|
|
2869
|
+
*/
|
|
2870
|
+
v1CreateDirectTaskInstruction(requestParameters, options) {
|
|
2871
|
+
return localVarFp.v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(axios, basePath));
|
|
2872
|
+
},
|
|
2768
2873
|
/**
|
|
2769
2874
|
* Create an image set.
|
|
2770
2875
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2847,6 +2952,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2847
2952
|
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
2848
2953
|
return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2849
2954
|
},
|
|
2955
|
+
/**
|
|
2956
|
+
* Delete a direct task instruction.
|
|
2957
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
2958
|
+
* @param {*} [options] Override http request option.
|
|
2959
|
+
* @throws {RequiredError}
|
|
2960
|
+
*/
|
|
2961
|
+
v1DeleteDirectTaskInstruction(requestParameters, options) {
|
|
2962
|
+
return localVarFp.v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2963
|
+
},
|
|
2850
2964
|
/**
|
|
2851
2965
|
* Delete an image set.
|
|
2852
2966
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -2991,13 +3105,13 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2991
3105
|
return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
|
|
2992
3106
|
},
|
|
2993
3107
|
/**
|
|
2994
|
-
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`,
|
|
3108
|
+
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
|
|
2995
3109
|
* @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
|
|
2996
3110
|
* @param {*} [options] Override http request option.
|
|
2997
3111
|
* @throws {RequiredError}
|
|
2998
3112
|
*/
|
|
2999
3113
|
v1GetObservationStatuses(requestParameters = {}, options) {
|
|
3000
|
-
return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
3114
|
+
return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.directTaskId, requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
3001
3115
|
},
|
|
3002
3116
|
/**
|
|
3003
3117
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
@@ -3243,6 +3357,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
3243
3357
|
v1CreateBlackoutVolume(requestParameters, options) {
|
|
3244
3358
|
return DefaultApiFp(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3245
3359
|
}
|
|
3360
|
+
/**
|
|
3361
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3362
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
3363
|
+
* @param {*} [options] Override http request option.
|
|
3364
|
+
* @throws {RequiredError}
|
|
3365
|
+
* @memberof DefaultApi
|
|
3366
|
+
*/
|
|
3367
|
+
v1CreateDirectTaskInstruction(requestParameters, options) {
|
|
3368
|
+
return DefaultApiFp(this.configuration).v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3369
|
+
}
|
|
3246
3370
|
/**
|
|
3247
3371
|
* Create an image set.
|
|
3248
3372
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -3334,6 +3458,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
3334
3458
|
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
3335
3459
|
return DefaultApiFp(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3336
3460
|
}
|
|
3461
|
+
/**
|
|
3462
|
+
* Delete a direct task instruction.
|
|
3463
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
3464
|
+
* @param {*} [options] Override http request option.
|
|
3465
|
+
* @throws {RequiredError}
|
|
3466
|
+
* @memberof DefaultApi
|
|
3467
|
+
*/
|
|
3468
|
+
v1DeleteDirectTaskInstruction(requestParameters, options) {
|
|
3469
|
+
return DefaultApiFp(this.configuration).v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3470
|
+
}
|
|
3337
3471
|
/**
|
|
3338
3472
|
* Delete an image set.
|
|
3339
3473
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -3494,14 +3628,14 @@ export class DefaultApi extends BaseAPI {
|
|
|
3494
3628
|
return DefaultApiFp(this.configuration).v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
|
|
3495
3629
|
}
|
|
3496
3630
|
/**
|
|
3497
|
-
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`,
|
|
3631
|
+
* Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
|
|
3498
3632
|
* @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
|
|
3499
3633
|
* @param {*} [options] Override http request option.
|
|
3500
3634
|
* @throws {RequiredError}
|
|
3501
3635
|
* @memberof DefaultApi
|
|
3502
3636
|
*/
|
|
3503
3637
|
v1GetObservationStatuses(requestParameters = {}, options) {
|
|
3504
|
-
return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
3638
|
+
return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.directTaskId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
3505
3639
|
}
|
|
3506
3640
|
/**
|
|
3507
3641
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|