@ourskyai/sda-api 1.3.8106 → 1.3.8459
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 +199 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +110 -1
- package/dist/api.js +130 -1
- 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 +110 -1
- package/dist/esm/api.js +130 -1
- 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.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.8459
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -317,6 +317,39 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
317
317
|
options: localVarRequestOptions,
|
|
318
318
|
};
|
|
319
319
|
}),
|
|
320
|
+
/**
|
|
321
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
322
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
323
|
+
* @param {*} [options] Override http request option.
|
|
324
|
+
* @throws {RequiredError}
|
|
325
|
+
*/
|
|
326
|
+
v1CreateDirectTaskInstruction: (v1CreateDirectTaskInstructionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
327
|
+
// verify required parameter 'v1CreateDirectTaskInstructionRequest' is not null or undefined
|
|
328
|
+
(0, common_1.assertParamExists)('v1CreateDirectTaskInstruction', 'v1CreateDirectTaskInstructionRequest', v1CreateDirectTaskInstructionRequest);
|
|
329
|
+
const localVarPath = `/v1/direct-task-instruction`;
|
|
330
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
331
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
332
|
+
let baseOptions;
|
|
333
|
+
if (configuration) {
|
|
334
|
+
baseOptions = configuration.baseOptions;
|
|
335
|
+
}
|
|
336
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
337
|
+
const localVarHeaderParameter = {};
|
|
338
|
+
const localVarQueryParameter = {};
|
|
339
|
+
// authentication Roles required
|
|
340
|
+
// authentication BearerToken required
|
|
341
|
+
// http bearer authentication required
|
|
342
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
343
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
344
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
345
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
346
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
347
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateDirectTaskInstructionRequest, localVarRequestOptions, configuration);
|
|
348
|
+
return {
|
|
349
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
350
|
+
options: localVarRequestOptions,
|
|
351
|
+
};
|
|
352
|
+
}),
|
|
320
353
|
/**
|
|
321
354
|
* Create an image set.
|
|
322
355
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -616,6 +649,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
616
649
|
options: localVarRequestOptions,
|
|
617
650
|
};
|
|
618
651
|
}),
|
|
652
|
+
/**
|
|
653
|
+
* Delete a direct task instruction.
|
|
654
|
+
* @param {string} id
|
|
655
|
+
* @param {*} [options] Override http request option.
|
|
656
|
+
* @throws {RequiredError}
|
|
657
|
+
*/
|
|
658
|
+
v1DeleteDirectTaskInstruction: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
659
|
+
// verify required parameter 'id' is not null or undefined
|
|
660
|
+
(0, common_1.assertParamExists)('v1DeleteDirectTaskInstruction', 'id', id);
|
|
661
|
+
const localVarPath = `/v1/direct-task-instruction`;
|
|
662
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
663
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
664
|
+
let baseOptions;
|
|
665
|
+
if (configuration) {
|
|
666
|
+
baseOptions = configuration.baseOptions;
|
|
667
|
+
}
|
|
668
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
669
|
+
const localVarHeaderParameter = {};
|
|
670
|
+
const localVarQueryParameter = {};
|
|
671
|
+
// authentication Roles required
|
|
672
|
+
// authentication BearerToken required
|
|
673
|
+
// http bearer authentication required
|
|
674
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
675
|
+
if (id !== undefined) {
|
|
676
|
+
localVarQueryParameter['id'] = id;
|
|
677
|
+
}
|
|
678
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
679
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
680
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
681
|
+
return {
|
|
682
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
683
|
+
options: localVarRequestOptions,
|
|
684
|
+
};
|
|
685
|
+
}),
|
|
619
686
|
/**
|
|
620
687
|
* Delete an image set.
|
|
621
688
|
* @param {string} id
|
|
@@ -2120,6 +2187,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
2120
2187
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2121
2188
|
});
|
|
2122
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 (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2200
|
+
});
|
|
2201
|
+
},
|
|
2123
2202
|
/**
|
|
2124
2203
|
* Create an image set.
|
|
2125
2204
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2229,6 +2308,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
2229
2308
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2230
2309
|
});
|
|
2231
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 (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2321
|
+
});
|
|
2322
|
+
},
|
|
2232
2323
|
/**
|
|
2233
2324
|
* Delete an image set.
|
|
2234
2325
|
* @param {string} id
|
|
@@ -2770,6 +2861,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2770
2861
|
v1CreateBlackoutVolume(requestParameters, options) {
|
|
2771
2862
|
return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
|
|
2772
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
|
+
},
|
|
2773
2873
|
/**
|
|
2774
2874
|
* Create an image set.
|
|
2775
2875
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2852,6 +2952,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2852
2952
|
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
2853
2953
|
return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2854
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
|
+
},
|
|
2855
2964
|
/**
|
|
2856
2965
|
* Delete an image set.
|
|
2857
2966
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -3249,6 +3358,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3249
3358
|
v1CreateBlackoutVolume(requestParameters, options) {
|
|
3250
3359
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3251
3360
|
}
|
|
3361
|
+
/**
|
|
3362
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3363
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
3364
|
+
* @param {*} [options] Override http request option.
|
|
3365
|
+
* @throws {RequiredError}
|
|
3366
|
+
* @memberof DefaultApi
|
|
3367
|
+
*/
|
|
3368
|
+
v1CreateDirectTaskInstruction(requestParameters, options) {
|
|
3369
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3370
|
+
}
|
|
3252
3371
|
/**
|
|
3253
3372
|
* Create an image set.
|
|
3254
3373
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -3340,6 +3459,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3340
3459
|
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
3341
3460
|
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3342
3461
|
}
|
|
3462
|
+
/**
|
|
3463
|
+
* Delete a direct task instruction.
|
|
3464
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
3465
|
+
* @param {*} [options] Override http request option.
|
|
3466
|
+
* @throws {RequiredError}
|
|
3467
|
+
* @memberof DefaultApi
|
|
3468
|
+
*/
|
|
3469
|
+
v1DeleteDirectTaskInstruction(requestParameters, options) {
|
|
3470
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3471
|
+
}
|
|
3343
3472
|
/**
|
|
3344
3473
|
* Delete an image set.
|
|
3345
3474
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
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 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.8459
|
|
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 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.8459
|
|
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 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.8459
|
|
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 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.8459
|
|
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 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.8459
|
|
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 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.8459
|
|
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 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.8459
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -481,6 +481,31 @@ export declare const V1BlackoutVolumeRequestReferenceFrameEnum: {
|
|
|
481
481
|
readonly ECEF: "ECEF";
|
|
482
482
|
};
|
|
483
483
|
export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeRequestReferenceFrameEnum[keyof typeof V1BlackoutVolumeRequestReferenceFrameEnum];
|
|
484
|
+
/**
|
|
485
|
+
*
|
|
486
|
+
* @export
|
|
487
|
+
* @interface V1CreateDirectTaskInstructionRequest
|
|
488
|
+
*/
|
|
489
|
+
export interface V1CreateDirectTaskInstructionRequest {
|
|
490
|
+
/**
|
|
491
|
+
* NET time after which the instruction can be executed. If null, the instruction can be executed immediately.
|
|
492
|
+
* @type {string}
|
|
493
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
494
|
+
*/
|
|
495
|
+
'executableAfter'?: string;
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @type {string}
|
|
499
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
500
|
+
*/
|
|
501
|
+
'targetId': string;
|
|
502
|
+
/**
|
|
503
|
+
*
|
|
504
|
+
* @type {TrackingType}
|
|
505
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
506
|
+
*/
|
|
507
|
+
'trackingType': TrackingType;
|
|
508
|
+
}
|
|
484
509
|
/**
|
|
485
510
|
*
|
|
486
511
|
* @export
|
|
@@ -3138,6 +3163,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3138
3163
|
* @throws {RequiredError}
|
|
3139
3164
|
*/
|
|
3140
3165
|
v1CreateBlackoutVolume: (v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3166
|
+
/**
|
|
3167
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3168
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
3169
|
+
* @param {*} [options] Override http request option.
|
|
3170
|
+
* @throws {RequiredError}
|
|
3171
|
+
*/
|
|
3172
|
+
v1CreateDirectTaskInstruction: (v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3141
3173
|
/**
|
|
3142
3174
|
* Create an image set.
|
|
3143
3175
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -3202,6 +3234,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3202
3234
|
* @throws {RequiredError}
|
|
3203
3235
|
*/
|
|
3204
3236
|
v1DeleteBlackoutVolume: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3237
|
+
/**
|
|
3238
|
+
* Delete a direct task instruction.
|
|
3239
|
+
* @param {string} id
|
|
3240
|
+
* @param {*} [options] Override http request option.
|
|
3241
|
+
* @throws {RequiredError}
|
|
3242
|
+
*/
|
|
3243
|
+
v1DeleteDirectTaskInstruction: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3205
3244
|
/**
|
|
3206
3245
|
* Delete an image set.
|
|
3207
3246
|
* @param {string} id
|
|
@@ -3530,6 +3569,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3530
3569
|
* @throws {RequiredError}
|
|
3531
3570
|
*/
|
|
3532
3571
|
v1CreateBlackoutVolume(v1BlackoutVolumeRequest: V1BlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
3572
|
+
/**
|
|
3573
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3574
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
3575
|
+
* @param {*} [options] Override http request option.
|
|
3576
|
+
* @throws {RequiredError}
|
|
3577
|
+
*/
|
|
3578
|
+
v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
3533
3579
|
/**
|
|
3534
3580
|
* Create an image set.
|
|
3535
3581
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -3594,6 +3640,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3594
3640
|
* @throws {RequiredError}
|
|
3595
3641
|
*/
|
|
3596
3642
|
v1DeleteBlackoutVolume(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulDelete>>;
|
|
3643
|
+
/**
|
|
3644
|
+
* Delete a direct task instruction.
|
|
3645
|
+
* @param {string} id
|
|
3646
|
+
* @param {*} [options] Override http request option.
|
|
3647
|
+
* @throws {RequiredError}
|
|
3648
|
+
*/
|
|
3649
|
+
v1DeleteDirectTaskInstruction(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3597
3650
|
/**
|
|
3598
3651
|
* Delete an image set.
|
|
3599
3652
|
* @param {string} id
|
|
@@ -3922,6 +3975,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3922
3975
|
* @throws {RequiredError}
|
|
3923
3976
|
*/
|
|
3924
3977
|
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
3978
|
+
/**
|
|
3979
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3980
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
3981
|
+
* @param {*} [options] Override http request option.
|
|
3982
|
+
* @throws {RequiredError}
|
|
3983
|
+
*/
|
|
3984
|
+
v1CreateDirectTaskInstruction(requestParameters: DefaultApiV1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
3925
3985
|
/**
|
|
3926
3986
|
* Create an image set.
|
|
3927
3987
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -3986,6 +4046,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3986
4046
|
* @throws {RequiredError}
|
|
3987
4047
|
*/
|
|
3988
4048
|
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete>;
|
|
4049
|
+
/**
|
|
4050
|
+
* Delete a direct task instruction.
|
|
4051
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
4052
|
+
* @param {*} [options] Override http request option.
|
|
4053
|
+
* @throws {RequiredError}
|
|
4054
|
+
*/
|
|
4055
|
+
v1DeleteDirectTaskInstruction(requestParameters: DefaultApiV1DeleteDirectTaskInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3989
4056
|
/**
|
|
3990
4057
|
* Delete an image set.
|
|
3991
4058
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4297,6 +4364,19 @@ export interface DefaultApiV1CreateBlackoutVolumeRequest {
|
|
|
4297
4364
|
*/
|
|
4298
4365
|
readonly v1BlackoutVolumeRequest: V1BlackoutVolumeRequest;
|
|
4299
4366
|
}
|
|
4367
|
+
/**
|
|
4368
|
+
* Request parameters for v1CreateDirectTaskInstruction operation in DefaultApi.
|
|
4369
|
+
* @export
|
|
4370
|
+
* @interface DefaultApiV1CreateDirectTaskInstructionRequest
|
|
4371
|
+
*/
|
|
4372
|
+
export interface DefaultApiV1CreateDirectTaskInstructionRequest {
|
|
4373
|
+
/**
|
|
4374
|
+
*
|
|
4375
|
+
* @type {V1CreateDirectTaskInstructionRequest}
|
|
4376
|
+
* @memberof DefaultApiV1CreateDirectTaskInstruction
|
|
4377
|
+
*/
|
|
4378
|
+
readonly v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest;
|
|
4379
|
+
}
|
|
4300
4380
|
/**
|
|
4301
4381
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
4302
4382
|
* @export
|
|
@@ -4414,6 +4494,19 @@ export interface DefaultApiV1DeleteBlackoutVolumeRequest {
|
|
|
4414
4494
|
*/
|
|
4415
4495
|
readonly id: string;
|
|
4416
4496
|
}
|
|
4497
|
+
/**
|
|
4498
|
+
* Request parameters for v1DeleteDirectTaskInstruction operation in DefaultApi.
|
|
4499
|
+
* @export
|
|
4500
|
+
* @interface DefaultApiV1DeleteDirectTaskInstructionRequest
|
|
4501
|
+
*/
|
|
4502
|
+
export interface DefaultApiV1DeleteDirectTaskInstructionRequest {
|
|
4503
|
+
/**
|
|
4504
|
+
*
|
|
4505
|
+
* @type {string}
|
|
4506
|
+
* @memberof DefaultApiV1DeleteDirectTaskInstruction
|
|
4507
|
+
*/
|
|
4508
|
+
readonly id: string;
|
|
4509
|
+
}
|
|
4417
4510
|
/**
|
|
4418
4511
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
4419
4512
|
* @export
|
|
@@ -5070,6 +5163,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5070
5163
|
* @memberof DefaultApi
|
|
5071
5164
|
*/
|
|
5072
5165
|
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
5166
|
+
/**
|
|
5167
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
5168
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
5169
|
+
* @param {*} [options] Override http request option.
|
|
5170
|
+
* @throws {RequiredError}
|
|
5171
|
+
* @memberof DefaultApi
|
|
5172
|
+
*/
|
|
5173
|
+
v1CreateDirectTaskInstruction(requestParameters: DefaultApiV1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
5073
5174
|
/**
|
|
5074
5175
|
* Create an image set.
|
|
5075
5176
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -5143,6 +5244,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5143
5244
|
* @memberof DefaultApi
|
|
5144
5245
|
*/
|
|
5145
5246
|
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulDelete, any>>;
|
|
5247
|
+
/**
|
|
5248
|
+
* Delete a direct task instruction.
|
|
5249
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
5250
|
+
* @param {*} [options] Override http request option.
|
|
5251
|
+
* @throws {RequiredError}
|
|
5252
|
+
* @memberof DefaultApi
|
|
5253
|
+
*/
|
|
5254
|
+
v1DeleteDirectTaskInstruction(requestParameters: DefaultApiV1DeleteDirectTaskInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
5146
5255
|
/**
|
|
5147
5256
|
* Delete an image set.
|
|
5148
5257
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
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.8459
|
|
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
|
|
@@ -2116,6 +2183,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2116
2183
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2117
2184
|
});
|
|
2118
2185
|
},
|
|
2186
|
+
/**
|
|
2187
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
2188
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
2189
|
+
* @param {*} [options] Override http request option.
|
|
2190
|
+
* @throws {RequiredError}
|
|
2191
|
+
*/
|
|
2192
|
+
v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest, options) {
|
|
2193
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2194
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest, options);
|
|
2195
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2196
|
+
});
|
|
2197
|
+
},
|
|
2119
2198
|
/**
|
|
2120
2199
|
* Create an image set.
|
|
2121
2200
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2225,6 +2304,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2225
2304
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2226
2305
|
});
|
|
2227
2306
|
},
|
|
2307
|
+
/**
|
|
2308
|
+
* Delete a direct task instruction.
|
|
2309
|
+
* @param {string} id
|
|
2310
|
+
* @param {*} [options] Override http request option.
|
|
2311
|
+
* @throws {RequiredError}
|
|
2312
|
+
*/
|
|
2313
|
+
v1DeleteDirectTaskInstruction(id, options) {
|
|
2314
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2315
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteDirectTaskInstruction(id, options);
|
|
2316
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2317
|
+
});
|
|
2318
|
+
},
|
|
2228
2319
|
/**
|
|
2229
2320
|
* Delete an image set.
|
|
2230
2321
|
* @param {string} id
|
|
@@ -2765,6 +2856,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2765
2856
|
v1CreateBlackoutVolume(requestParameters, options) {
|
|
2766
2857
|
return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
|
|
2767
2858
|
},
|
|
2859
|
+
/**
|
|
2860
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
2861
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
2862
|
+
* @param {*} [options] Override http request option.
|
|
2863
|
+
* @throws {RequiredError}
|
|
2864
|
+
*/
|
|
2865
|
+
v1CreateDirectTaskInstruction(requestParameters, options) {
|
|
2866
|
+
return localVarFp.v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(axios, basePath));
|
|
2867
|
+
},
|
|
2768
2868
|
/**
|
|
2769
2869
|
* Create an image set.
|
|
2770
2870
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2847,6 +2947,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2847
2947
|
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
2848
2948
|
return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2849
2949
|
},
|
|
2950
|
+
/**
|
|
2951
|
+
* Delete a direct task instruction.
|
|
2952
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
2953
|
+
* @param {*} [options] Override http request option.
|
|
2954
|
+
* @throws {RequiredError}
|
|
2955
|
+
*/
|
|
2956
|
+
v1DeleteDirectTaskInstruction(requestParameters, options) {
|
|
2957
|
+
return localVarFp.v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2958
|
+
},
|
|
2850
2959
|
/**
|
|
2851
2960
|
* Delete an image set.
|
|
2852
2961
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -3243,6 +3352,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
3243
3352
|
v1CreateBlackoutVolume(requestParameters, options) {
|
|
3244
3353
|
return DefaultApiFp(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3245
3354
|
}
|
|
3355
|
+
/**
|
|
3356
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3357
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
3358
|
+
* @param {*} [options] Override http request option.
|
|
3359
|
+
* @throws {RequiredError}
|
|
3360
|
+
* @memberof DefaultApi
|
|
3361
|
+
*/
|
|
3362
|
+
v1CreateDirectTaskInstruction(requestParameters, options) {
|
|
3363
|
+
return DefaultApiFp(this.configuration).v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3364
|
+
}
|
|
3246
3365
|
/**
|
|
3247
3366
|
* Create an image set.
|
|
3248
3367
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -3334,6 +3453,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
3334
3453
|
v1DeleteBlackoutVolume(requestParameters, options) {
|
|
3335
3454
|
return DefaultApiFp(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3336
3455
|
}
|
|
3456
|
+
/**
|
|
3457
|
+
* Delete a direct task instruction.
|
|
3458
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
3459
|
+
* @param {*} [options] Override http request option.
|
|
3460
|
+
* @throws {RequiredError}
|
|
3461
|
+
* @memberof DefaultApi
|
|
3462
|
+
*/
|
|
3463
|
+
v1DeleteDirectTaskInstruction(requestParameters, options) {
|
|
3464
|
+
return DefaultApiFp(this.configuration).v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3465
|
+
}
|
|
3337
3466
|
/**
|
|
3338
3467
|
* Delete an image set.
|
|
3339
3468
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
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.8459
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|