@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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/sda-api@1.3.
|
|
1
|
+
## @ourskyai/sda-api@1.3.8459
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @ourskyai/sda-api@1.3.
|
|
39
|
+
npm install @ourskyai/sda-api@1.3.8459 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive 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).
|
|
@@ -530,6 +530,33 @@ export const V1BlackoutVolumeRequestReferenceFrameEnum = {
|
|
|
530
530
|
|
|
531
531
|
export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeRequestReferenceFrameEnum[keyof typeof V1BlackoutVolumeRequestReferenceFrameEnum];
|
|
532
532
|
|
|
533
|
+
/**
|
|
534
|
+
*
|
|
535
|
+
* @export
|
|
536
|
+
* @interface V1CreateDirectTaskInstructionRequest
|
|
537
|
+
*/
|
|
538
|
+
export interface V1CreateDirectTaskInstructionRequest {
|
|
539
|
+
/**
|
|
540
|
+
* NET time after which the instruction can be executed. If null, the instruction can be executed immediately.
|
|
541
|
+
* @type {string}
|
|
542
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
543
|
+
*/
|
|
544
|
+
'executableAfter'?: string;
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @type {string}
|
|
548
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
549
|
+
*/
|
|
550
|
+
'targetId': string;
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @type {TrackingType}
|
|
554
|
+
* @memberof V1CreateDirectTaskInstructionRequest
|
|
555
|
+
*/
|
|
556
|
+
'trackingType': TrackingType;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
|
|
533
560
|
/**
|
|
534
561
|
*
|
|
535
562
|
* @export
|
|
@@ -3311,6 +3338,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3311
3338
|
options: localVarRequestOptions,
|
|
3312
3339
|
};
|
|
3313
3340
|
},
|
|
3341
|
+
/**
|
|
3342
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
3343
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
3344
|
+
* @param {*} [options] Override http request option.
|
|
3345
|
+
* @throws {RequiredError}
|
|
3346
|
+
*/
|
|
3347
|
+
v1CreateDirectTaskInstruction: async (v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3348
|
+
// verify required parameter 'v1CreateDirectTaskInstructionRequest' is not null or undefined
|
|
3349
|
+
assertParamExists('v1CreateDirectTaskInstruction', 'v1CreateDirectTaskInstructionRequest', v1CreateDirectTaskInstructionRequest)
|
|
3350
|
+
const localVarPath = `/v1/direct-task-instruction`;
|
|
3351
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3352
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3353
|
+
let baseOptions;
|
|
3354
|
+
if (configuration) {
|
|
3355
|
+
baseOptions = configuration.baseOptions;
|
|
3356
|
+
}
|
|
3357
|
+
|
|
3358
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3359
|
+
const localVarHeaderParameter = {} as any;
|
|
3360
|
+
const localVarQueryParameter = {} as any;
|
|
3361
|
+
|
|
3362
|
+
// authentication Roles required
|
|
3363
|
+
|
|
3364
|
+
// authentication BearerToken required
|
|
3365
|
+
// http bearer authentication required
|
|
3366
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3367
|
+
|
|
3368
|
+
|
|
3369
|
+
|
|
3370
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3371
|
+
|
|
3372
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3373
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3374
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3375
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateDirectTaskInstructionRequest, localVarRequestOptions, configuration)
|
|
3376
|
+
|
|
3377
|
+
return {
|
|
3378
|
+
url: toPathString(localVarUrlObj),
|
|
3379
|
+
options: localVarRequestOptions,
|
|
3380
|
+
};
|
|
3381
|
+
},
|
|
3314
3382
|
/**
|
|
3315
3383
|
* Create an image set.
|
|
3316
3384
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -3673,6 +3741,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3673
3741
|
|
|
3674
3742
|
|
|
3675
3743
|
|
|
3744
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3745
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3746
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3747
|
+
|
|
3748
|
+
return {
|
|
3749
|
+
url: toPathString(localVarUrlObj),
|
|
3750
|
+
options: localVarRequestOptions,
|
|
3751
|
+
};
|
|
3752
|
+
},
|
|
3753
|
+
/**
|
|
3754
|
+
* Delete a direct task instruction.
|
|
3755
|
+
* @param {string} id
|
|
3756
|
+
* @param {*} [options] Override http request option.
|
|
3757
|
+
* @throws {RequiredError}
|
|
3758
|
+
*/
|
|
3759
|
+
v1DeleteDirectTaskInstruction: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3760
|
+
// verify required parameter 'id' is not null or undefined
|
|
3761
|
+
assertParamExists('v1DeleteDirectTaskInstruction', 'id', id)
|
|
3762
|
+
const localVarPath = `/v1/direct-task-instruction`;
|
|
3763
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3764
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3765
|
+
let baseOptions;
|
|
3766
|
+
if (configuration) {
|
|
3767
|
+
baseOptions = configuration.baseOptions;
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3770
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
3771
|
+
const localVarHeaderParameter = {} as any;
|
|
3772
|
+
const localVarQueryParameter = {} as any;
|
|
3773
|
+
|
|
3774
|
+
// authentication Roles required
|
|
3775
|
+
|
|
3776
|
+
// authentication BearerToken required
|
|
3777
|
+
// http bearer authentication required
|
|
3778
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3779
|
+
|
|
3780
|
+
if (id !== undefined) {
|
|
3781
|
+
localVarQueryParameter['id'] = id;
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
|
|
3785
|
+
|
|
3676
3786
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3677
3787
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3678
3788
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5530,6 +5640,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
5530
5640
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateBlackoutVolume(v1BlackoutVolumeRequest, options);
|
|
5531
5641
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5532
5642
|
},
|
|
5643
|
+
/**
|
|
5644
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
5645
|
+
* @param {V1CreateDirectTaskInstructionRequest} v1CreateDirectTaskInstructionRequest
|
|
5646
|
+
* @param {*} [options] Override http request option.
|
|
5647
|
+
* @throws {RequiredError}
|
|
5648
|
+
*/
|
|
5649
|
+
async v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>> {
|
|
5650
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateDirectTaskInstruction(v1CreateDirectTaskInstructionRequest, options);
|
|
5651
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5652
|
+
},
|
|
5533
5653
|
/**
|
|
5534
5654
|
* Create an image set.
|
|
5535
5655
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -5621,6 +5741,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
5621
5741
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteBlackoutVolume(id, options);
|
|
5622
5742
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5623
5743
|
},
|
|
5744
|
+
/**
|
|
5745
|
+
* Delete a direct task instruction.
|
|
5746
|
+
* @param {string} id
|
|
5747
|
+
* @param {*} [options] Override http request option.
|
|
5748
|
+
* @throws {RequiredError}
|
|
5749
|
+
*/
|
|
5750
|
+
async v1DeleteDirectTaskInstruction(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
5751
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteDirectTaskInstruction(id, options);
|
|
5752
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5753
|
+
},
|
|
5624
5754
|
/**
|
|
5625
5755
|
* Delete an image set.
|
|
5626
5756
|
* @param {string} id
|
|
@@ -6080,6 +6210,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6080
6210
|
v1CreateBlackoutVolume(requestParameters: DefaultApiV1CreateBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
6081
6211
|
return localVarFp.v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(axios, basePath));
|
|
6082
6212
|
},
|
|
6213
|
+
/**
|
|
6214
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
6215
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
6216
|
+
* @param {*} [options] Override http request option.
|
|
6217
|
+
* @throws {RequiredError}
|
|
6218
|
+
*/
|
|
6219
|
+
v1CreateDirectTaskInstruction(requestParameters: DefaultApiV1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
6220
|
+
return localVarFp.v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(axios, basePath));
|
|
6221
|
+
},
|
|
6083
6222
|
/**
|
|
6084
6223
|
* Create an image set.
|
|
6085
6224
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -6162,6 +6301,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6162
6301
|
v1DeleteBlackoutVolume(requestParameters: DefaultApiV1DeleteBlackoutVolumeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulDelete> {
|
|
6163
6302
|
return localVarFp.v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
6164
6303
|
},
|
|
6304
|
+
/**
|
|
6305
|
+
* Delete a direct task instruction.
|
|
6306
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
6307
|
+
* @param {*} [options] Override http request option.
|
|
6308
|
+
* @throws {RequiredError}
|
|
6309
|
+
*/
|
|
6310
|
+
v1DeleteDirectTaskInstruction(requestParameters: DefaultApiV1DeleteDirectTaskInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
6311
|
+
return localVarFp.v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
6312
|
+
},
|
|
6165
6313
|
/**
|
|
6166
6314
|
* Delete an image set.
|
|
6167
6315
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -6559,6 +6707,20 @@ export interface DefaultApiV1CreateBlackoutVolumeRequest {
|
|
|
6559
6707
|
readonly v1BlackoutVolumeRequest: V1BlackoutVolumeRequest
|
|
6560
6708
|
}
|
|
6561
6709
|
|
|
6710
|
+
/**
|
|
6711
|
+
* Request parameters for v1CreateDirectTaskInstruction operation in DefaultApi.
|
|
6712
|
+
* @export
|
|
6713
|
+
* @interface DefaultApiV1CreateDirectTaskInstructionRequest
|
|
6714
|
+
*/
|
|
6715
|
+
export interface DefaultApiV1CreateDirectTaskInstructionRequest {
|
|
6716
|
+
/**
|
|
6717
|
+
*
|
|
6718
|
+
* @type {V1CreateDirectTaskInstructionRequest}
|
|
6719
|
+
* @memberof DefaultApiV1CreateDirectTaskInstruction
|
|
6720
|
+
*/
|
|
6721
|
+
readonly v1CreateDirectTaskInstructionRequest: V1CreateDirectTaskInstructionRequest
|
|
6722
|
+
}
|
|
6723
|
+
|
|
6562
6724
|
/**
|
|
6563
6725
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
6564
6726
|
* @export
|
|
@@ -6685,6 +6847,20 @@ export interface DefaultApiV1DeleteBlackoutVolumeRequest {
|
|
|
6685
6847
|
readonly id: string
|
|
6686
6848
|
}
|
|
6687
6849
|
|
|
6850
|
+
/**
|
|
6851
|
+
* Request parameters for v1DeleteDirectTaskInstruction operation in DefaultApi.
|
|
6852
|
+
* @export
|
|
6853
|
+
* @interface DefaultApiV1DeleteDirectTaskInstructionRequest
|
|
6854
|
+
*/
|
|
6855
|
+
export interface DefaultApiV1DeleteDirectTaskInstructionRequest {
|
|
6856
|
+
/**
|
|
6857
|
+
*
|
|
6858
|
+
* @type {string}
|
|
6859
|
+
* @memberof DefaultApiV1DeleteDirectTaskInstruction
|
|
6860
|
+
*/
|
|
6861
|
+
readonly id: string
|
|
6862
|
+
}
|
|
6863
|
+
|
|
6688
6864
|
/**
|
|
6689
6865
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
6690
6866
|
* @export
|
|
@@ -7408,6 +7584,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
7408
7584
|
return DefaultApiFp(this.configuration).v1CreateBlackoutVolume(requestParameters.v1BlackoutVolumeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7409
7585
|
}
|
|
7410
7586
|
|
|
7587
|
+
/**
|
|
7588
|
+
* Create a direct-task instruction. This enables collecting observations on a target at a specific time, bypassing normal scheduling constraints.
|
|
7589
|
+
* @param {DefaultApiV1CreateDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
7590
|
+
* @param {*} [options] Override http request option.
|
|
7591
|
+
* @throws {RequiredError}
|
|
7592
|
+
* @memberof DefaultApi
|
|
7593
|
+
*/
|
|
7594
|
+
public v1CreateDirectTaskInstruction(requestParameters: DefaultApiV1CreateDirectTaskInstructionRequest, options?: AxiosRequestConfig) {
|
|
7595
|
+
return DefaultApiFp(this.configuration).v1CreateDirectTaskInstruction(requestParameters.v1CreateDirectTaskInstructionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7596
|
+
}
|
|
7597
|
+
|
|
7411
7598
|
/**
|
|
7412
7599
|
* Create an image set.
|
|
7413
7600
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -7508,6 +7695,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
7508
7695
|
return DefaultApiFp(this.configuration).v1DeleteBlackoutVolume(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7509
7696
|
}
|
|
7510
7697
|
|
|
7698
|
+
/**
|
|
7699
|
+
* Delete a direct task instruction.
|
|
7700
|
+
* @param {DefaultApiV1DeleteDirectTaskInstructionRequest} requestParameters Request parameters.
|
|
7701
|
+
* @param {*} [options] Override http request option.
|
|
7702
|
+
* @throws {RequiredError}
|
|
7703
|
+
* @memberof DefaultApi
|
|
7704
|
+
*/
|
|
7705
|
+
public v1DeleteDirectTaskInstruction(requestParameters: DefaultApiV1DeleteDirectTaskInstructionRequest, options?: AxiosRequestConfig) {
|
|
7706
|
+
return DefaultApiFp(this.configuration).v1DeleteDirectTaskInstruction(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7707
|
+
}
|
|
7708
|
+
|
|
7511
7709
|
/**
|
|
7512
7710
|
* Delete an image set.
|
|
7513
7711
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive 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).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive 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).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive 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).
|
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 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.
|