@ourskyai/sda-api 1.3.4331 → 1.3.4675
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 +263 -6
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +165 -3
- package/dist/api.js +143 -6
- 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 +165 -3
- package/dist/esm/api.js +143 -6
- 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.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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -950,6 +950,12 @@ export interface V1ImageSetImage {
|
|
|
950
950
|
* @memberof V1ImageSetImage
|
|
951
951
|
*/
|
|
952
952
|
'fitsHeaders': Array<FitsHeader>;
|
|
953
|
+
/**
|
|
954
|
+
*
|
|
955
|
+
* @type {V1PredictedStreakLocation}
|
|
956
|
+
* @memberof V1ImageSetImage
|
|
957
|
+
*/
|
|
958
|
+
'predictedStreakLocation'?: V1PredictedStreakLocation;
|
|
953
959
|
}
|
|
954
960
|
/**
|
|
955
961
|
* Observation Feature
|
|
@@ -1220,6 +1226,37 @@ export interface V1OrganizationTarget {
|
|
|
1220
1226
|
*/
|
|
1221
1227
|
'createdAt': string;
|
|
1222
1228
|
}
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* @export
|
|
1232
|
+
* @interface V1PredictedStreakLocation
|
|
1233
|
+
*/
|
|
1234
|
+
export interface V1PredictedStreakLocation {
|
|
1235
|
+
/**
|
|
1236
|
+
*
|
|
1237
|
+
* @type {number}
|
|
1238
|
+
* @memberof V1PredictedStreakLocation
|
|
1239
|
+
*/
|
|
1240
|
+
'startX'?: number;
|
|
1241
|
+
/**
|
|
1242
|
+
*
|
|
1243
|
+
* @type {number}
|
|
1244
|
+
* @memberof V1PredictedStreakLocation
|
|
1245
|
+
*/
|
|
1246
|
+
'startY'?: number;
|
|
1247
|
+
/**
|
|
1248
|
+
*
|
|
1249
|
+
* @type {number}
|
|
1250
|
+
* @memberof V1PredictedStreakLocation
|
|
1251
|
+
*/
|
|
1252
|
+
'endX'?: number;
|
|
1253
|
+
/**
|
|
1254
|
+
*
|
|
1255
|
+
* @type {number}
|
|
1256
|
+
* @memberof V1PredictedStreakLocation
|
|
1257
|
+
*/
|
|
1258
|
+
'endY'?: number;
|
|
1259
|
+
}
|
|
1223
1260
|
/**
|
|
1224
1261
|
* SatellitePotential
|
|
1225
1262
|
* @export
|
|
@@ -1746,6 +1783,25 @@ export interface V1UpdateSatelliteTargetRequest {
|
|
|
1746
1783
|
*/
|
|
1747
1784
|
'crossSection'?: number;
|
|
1748
1785
|
}
|
|
1786
|
+
/**
|
|
1787
|
+
*
|
|
1788
|
+
* @export
|
|
1789
|
+
* @interface V1UpdateWebhookConfigurationRequest
|
|
1790
|
+
*/
|
|
1791
|
+
export interface V1UpdateWebhookConfigurationRequest {
|
|
1792
|
+
/**
|
|
1793
|
+
*
|
|
1794
|
+
* @type {string}
|
|
1795
|
+
* @memberof V1UpdateWebhookConfigurationRequest
|
|
1796
|
+
*/
|
|
1797
|
+
'id': string;
|
|
1798
|
+
/**
|
|
1799
|
+
*
|
|
1800
|
+
* @type {boolean}
|
|
1801
|
+
* @memberof V1UpdateWebhookConfigurationRequest
|
|
1802
|
+
*/
|
|
1803
|
+
'enabled': boolean;
|
|
1804
|
+
}
|
|
1749
1805
|
/**
|
|
1750
1806
|
*
|
|
1751
1807
|
* @export
|
|
@@ -1776,6 +1832,12 @@ export interface V1WebhookConfiguration {
|
|
|
1776
1832
|
* @memberof V1WebhookConfiguration
|
|
1777
1833
|
*/
|
|
1778
1834
|
'lastFailureAt'?: string;
|
|
1835
|
+
/**
|
|
1836
|
+
*
|
|
1837
|
+
* @type {string}
|
|
1838
|
+
* @memberof V1WebhookConfiguration
|
|
1839
|
+
*/
|
|
1840
|
+
'disabledAt'?: string;
|
|
1779
1841
|
/**
|
|
1780
1842
|
*
|
|
1781
1843
|
* @type {Array<WebhookEvent>}
|
|
@@ -2024,6 +2086,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2024
2086
|
* @throws {RequiredError}
|
|
2025
2087
|
*/
|
|
2026
2088
|
v1GetObservationFeatures: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2089
|
+
/**
|
|
2090
|
+
* Get an observation sequence result for a specific image id.
|
|
2091
|
+
* @param {string} [observationSequenceResultId]
|
|
2092
|
+
* @param {string} [imageId]
|
|
2093
|
+
* @param {*} [options] Override http request option.
|
|
2094
|
+
* @throws {RequiredError}
|
|
2095
|
+
*/
|
|
2096
|
+
v1GetObservationSequenceResult: (observationSequenceResultId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2027
2097
|
/**
|
|
2028
2098
|
* Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
|
|
2029
2099
|
* @param {string} [targetId]
|
|
@@ -2038,10 +2108,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2038
2108
|
* @param {string} [before]
|
|
2039
2109
|
* @param {string} [searchInstructionId]
|
|
2040
2110
|
* @param {string} [surveyInstructionId]
|
|
2111
|
+
* @param {string} [imageId]
|
|
2041
2112
|
* @param {*} [options] Override http request option.
|
|
2042
2113
|
* @throws {RequiredError}
|
|
2043
2114
|
*/
|
|
2044
|
-
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2115
|
+
v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2045
2116
|
/**
|
|
2046
2117
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
2047
2118
|
* @param {string} until
|
|
@@ -2142,6 +2213,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2142
2213
|
* @throws {RequiredError}
|
|
2143
2214
|
*/
|
|
2144
2215
|
v1UpdateSatelliteTarget: (v1UpdateSatelliteTargetRequest: V1UpdateSatelliteTargetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2216
|
+
/**
|
|
2217
|
+
* Update a webhook configuration.
|
|
2218
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
2219
|
+
* @param {*} [options] Override http request option.
|
|
2220
|
+
* @throws {RequiredError}
|
|
2221
|
+
*/
|
|
2222
|
+
v1UpdateWebhookConfiguration: (v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2145
2223
|
};
|
|
2146
2224
|
/**
|
|
2147
2225
|
* DefaultApi - functional programming interface
|
|
@@ -2287,6 +2365,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2287
2365
|
* @throws {RequiredError}
|
|
2288
2366
|
*/
|
|
2289
2367
|
v1GetObservationFeatures(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationFeature>>>;
|
|
2368
|
+
/**
|
|
2369
|
+
* Get an observation sequence result for a specific image id.
|
|
2370
|
+
* @param {string} [observationSequenceResultId]
|
|
2371
|
+
* @param {string} [imageId]
|
|
2372
|
+
* @param {*} [options] Override http request option.
|
|
2373
|
+
* @throws {RequiredError}
|
|
2374
|
+
*/
|
|
2375
|
+
v1GetObservationSequenceResult(observationSequenceResultId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ObservationSequenceResult>>;
|
|
2290
2376
|
/**
|
|
2291
2377
|
* Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
|
|
2292
2378
|
* @param {string} [targetId]
|
|
@@ -2301,10 +2387,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2301
2387
|
* @param {string} [before]
|
|
2302
2388
|
* @param {string} [searchInstructionId]
|
|
2303
2389
|
* @param {string} [surveyInstructionId]
|
|
2390
|
+
* @param {string} [imageId]
|
|
2304
2391
|
* @param {*} [options] Override http request option.
|
|
2305
2392
|
* @throws {RequiredError}
|
|
2306
2393
|
*/
|
|
2307
|
-
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
2394
|
+
v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
|
|
2308
2395
|
/**
|
|
2309
2396
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
2310
2397
|
* @param {string} until
|
|
@@ -2405,6 +2492,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2405
2492
|
* @throws {RequiredError}
|
|
2406
2493
|
*/
|
|
2407
2494
|
v1UpdateSatelliteTarget(v1UpdateSatelliteTargetRequest: V1UpdateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
2495
|
+
/**
|
|
2496
|
+
* Update a webhook configuration.
|
|
2497
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
2498
|
+
* @param {*} [options] Override http request option.
|
|
2499
|
+
* @throws {RequiredError}
|
|
2500
|
+
*/
|
|
2501
|
+
v1UpdateWebhookConfiguration(v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
2408
2502
|
};
|
|
2409
2503
|
/**
|
|
2410
2504
|
* DefaultApi - factory interface
|
|
@@ -2550,6 +2644,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2550
2644
|
* @throws {RequiredError}
|
|
2551
2645
|
*/
|
|
2552
2646
|
v1GetObservationFeatures(requestParameters: DefaultApiV1GetObservationFeaturesRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1ObservationFeature>>;
|
|
2647
|
+
/**
|
|
2648
|
+
* Get an observation sequence result for a specific image id.
|
|
2649
|
+
* @param {DefaultApiV1GetObservationSequenceResultRequest} requestParameters Request parameters.
|
|
2650
|
+
* @param {*} [options] Override http request option.
|
|
2651
|
+
* @throws {RequiredError}
|
|
2652
|
+
*/
|
|
2653
|
+
v1GetObservationSequenceResult(requestParameters?: DefaultApiV1GetObservationSequenceResultRequest, options?: AxiosRequestConfig): AxiosPromise<V1ObservationSequenceResult>;
|
|
2553
2654
|
/**
|
|
2554
2655
|
* Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
|
|
2555
2656
|
* @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
|
|
@@ -2653,6 +2754,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2653
2754
|
* @throws {RequiredError}
|
|
2654
2755
|
*/
|
|
2655
2756
|
v1UpdateSatelliteTarget(requestParameters: DefaultApiV1UpdateSatelliteTargetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
2757
|
+
/**
|
|
2758
|
+
* Update a webhook configuration.
|
|
2759
|
+
* @param {DefaultApiV1UpdateWebhookConfigurationRequest} requestParameters Request parameters.
|
|
2760
|
+
* @param {*} [options] Override http request option.
|
|
2761
|
+
* @throws {RequiredError}
|
|
2762
|
+
*/
|
|
2763
|
+
v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
2656
2764
|
};
|
|
2657
2765
|
/**
|
|
2658
2766
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
@@ -2901,6 +3009,25 @@ export interface DefaultApiV1GetObservationFeaturesRequest {
|
|
|
2901
3009
|
*/
|
|
2902
3010
|
readonly imageId: string;
|
|
2903
3011
|
}
|
|
3012
|
+
/**
|
|
3013
|
+
* Request parameters for v1GetObservationSequenceResult operation in DefaultApi.
|
|
3014
|
+
* @export
|
|
3015
|
+
* @interface DefaultApiV1GetObservationSequenceResultRequest
|
|
3016
|
+
*/
|
|
3017
|
+
export interface DefaultApiV1GetObservationSequenceResultRequest {
|
|
3018
|
+
/**
|
|
3019
|
+
*
|
|
3020
|
+
* @type {string}
|
|
3021
|
+
* @memberof DefaultApiV1GetObservationSequenceResult
|
|
3022
|
+
*/
|
|
3023
|
+
readonly observationSequenceResultId?: string;
|
|
3024
|
+
/**
|
|
3025
|
+
*
|
|
3026
|
+
* @type {string}
|
|
3027
|
+
* @memberof DefaultApiV1GetObservationSequenceResult
|
|
3028
|
+
*/
|
|
3029
|
+
readonly imageId?: string;
|
|
3030
|
+
}
|
|
2904
3031
|
/**
|
|
2905
3032
|
* Request parameters for v1GetObservationSequenceResults operation in DefaultApi.
|
|
2906
3033
|
* @export
|
|
@@ -2950,6 +3077,12 @@ export interface DefaultApiV1GetObservationStatusesRequest {
|
|
|
2950
3077
|
* @memberof DefaultApiV1GetObservationStatuses
|
|
2951
3078
|
*/
|
|
2952
3079
|
readonly surveyInstructionId?: string;
|
|
3080
|
+
/**
|
|
3081
|
+
*
|
|
3082
|
+
* @type {string}
|
|
3083
|
+
* @memberof DefaultApiV1GetObservationStatuses
|
|
3084
|
+
*/
|
|
3085
|
+
readonly imageId?: string;
|
|
2953
3086
|
}
|
|
2954
3087
|
/**
|
|
2955
3088
|
* Request parameters for v1GetOrganizationSatellitePotentials operation in DefaultApi.
|
|
@@ -3160,6 +3293,19 @@ export interface DefaultApiV1UpdateSatelliteTargetRequest {
|
|
|
3160
3293
|
*/
|
|
3161
3294
|
readonly v1UpdateSatelliteTargetRequest: V1UpdateSatelliteTargetRequest;
|
|
3162
3295
|
}
|
|
3296
|
+
/**
|
|
3297
|
+
* Request parameters for v1UpdateWebhookConfiguration operation in DefaultApi.
|
|
3298
|
+
* @export
|
|
3299
|
+
* @interface DefaultApiV1UpdateWebhookConfigurationRequest
|
|
3300
|
+
*/
|
|
3301
|
+
export interface DefaultApiV1UpdateWebhookConfigurationRequest {
|
|
3302
|
+
/**
|
|
3303
|
+
*
|
|
3304
|
+
* @type {V1UpdateWebhookConfigurationRequest}
|
|
3305
|
+
* @memberof DefaultApiV1UpdateWebhookConfiguration
|
|
3306
|
+
*/
|
|
3307
|
+
readonly v1UpdateWebhookConfigurationRequest: V1UpdateWebhookConfigurationRequest;
|
|
3308
|
+
}
|
|
3163
3309
|
/**
|
|
3164
3310
|
* DefaultApi - object-oriented interface
|
|
3165
3311
|
* @export
|
|
@@ -3326,6 +3472,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3326
3472
|
* @memberof DefaultApi
|
|
3327
3473
|
*/
|
|
3328
3474
|
v1GetObservationFeatures(requestParameters: DefaultApiV1GetObservationFeaturesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ObservationFeature[], any>>;
|
|
3475
|
+
/**
|
|
3476
|
+
* Get an observation sequence result for a specific image id.
|
|
3477
|
+
* @param {DefaultApiV1GetObservationSequenceResultRequest} requestParameters Request parameters.
|
|
3478
|
+
* @param {*} [options] Override http request option.
|
|
3479
|
+
* @throws {RequiredError}
|
|
3480
|
+
* @memberof DefaultApi
|
|
3481
|
+
*/
|
|
3482
|
+
v1GetObservationSequenceResult(requestParameters?: DefaultApiV1GetObservationSequenceResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ObservationSequenceResult, any>>;
|
|
3329
3483
|
/**
|
|
3330
3484
|
* Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
|
|
3331
3485
|
* @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
|
|
@@ -3444,4 +3598,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3444
3598
|
* @memberof DefaultApi
|
|
3445
3599
|
*/
|
|
3446
3600
|
v1UpdateSatelliteTarget(requestParameters: DefaultApiV1UpdateSatelliteTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
3601
|
+
/**
|
|
3602
|
+
* Update a webhook configuration.
|
|
3603
|
+
* @param {DefaultApiV1UpdateWebhookConfigurationRequest} requestParameters Request parameters.
|
|
3604
|
+
* @param {*} [options] Override http request option.
|
|
3605
|
+
* @throws {RequiredError}
|
|
3606
|
+
* @memberof DefaultApi
|
|
3607
|
+
*/
|
|
3608
|
+
v1UpdateWebhookConfiguration(requestParameters: DefaultApiV1UpdateWebhookConfigurationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
3447
3609
|
}
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -836,6 +836,42 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
836
836
|
options: localVarRequestOptions,
|
|
837
837
|
};
|
|
838
838
|
}),
|
|
839
|
+
/**
|
|
840
|
+
* Get an observation sequence result for a specific image id.
|
|
841
|
+
* @param {string} [observationSequenceResultId]
|
|
842
|
+
* @param {string} [imageId]
|
|
843
|
+
* @param {*} [options] Override http request option.
|
|
844
|
+
* @throws {RequiredError}
|
|
845
|
+
*/
|
|
846
|
+
v1GetObservationSequenceResult: (observationSequenceResultId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
847
|
+
const localVarPath = `/v1/observation-sequence-result`;
|
|
848
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
849
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
850
|
+
let baseOptions;
|
|
851
|
+
if (configuration) {
|
|
852
|
+
baseOptions = configuration.baseOptions;
|
|
853
|
+
}
|
|
854
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
855
|
+
const localVarHeaderParameter = {};
|
|
856
|
+
const localVarQueryParameter = {};
|
|
857
|
+
// authentication Roles required
|
|
858
|
+
// authentication BearerToken required
|
|
859
|
+
// http bearer authentication required
|
|
860
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
861
|
+
if (observationSequenceResultId !== undefined) {
|
|
862
|
+
localVarQueryParameter['observationSequenceResultId'] = observationSequenceResultId;
|
|
863
|
+
}
|
|
864
|
+
if (imageId !== undefined) {
|
|
865
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
866
|
+
}
|
|
867
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
868
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
869
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
870
|
+
return {
|
|
871
|
+
url: toPathString(localVarUrlObj),
|
|
872
|
+
options: localVarRequestOptions,
|
|
873
|
+
};
|
|
874
|
+
}),
|
|
839
875
|
/**
|
|
840
876
|
* Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
|
|
841
877
|
* @param {string} [targetId]
|
|
@@ -880,10 +916,11 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
880
916
|
* @param {string} [before]
|
|
881
917
|
* @param {string} [searchInstructionId]
|
|
882
918
|
* @param {string} [surveyInstructionId]
|
|
919
|
+
* @param {string} [imageId]
|
|
883
920
|
* @param {*} [options] Override http request option.
|
|
884
921
|
* @throws {RequiredError}
|
|
885
922
|
*/
|
|
886
|
-
v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
923
|
+
v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
887
924
|
const localVarPath = `/v1/observation-statuses`;
|
|
888
925
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
889
926
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -912,6 +949,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
912
949
|
if (surveyInstructionId !== undefined) {
|
|
913
950
|
localVarQueryParameter['surveyInstructionId'] = surveyInstructionId;
|
|
914
951
|
}
|
|
952
|
+
if (imageId !== undefined) {
|
|
953
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
954
|
+
}
|
|
915
955
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
916
956
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
917
957
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1396,6 +1436,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1396
1436
|
options: localVarRequestOptions,
|
|
1397
1437
|
};
|
|
1398
1438
|
}),
|
|
1439
|
+
/**
|
|
1440
|
+
* Update a webhook configuration.
|
|
1441
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
1442
|
+
* @param {*} [options] Override http request option.
|
|
1443
|
+
* @throws {RequiredError}
|
|
1444
|
+
*/
|
|
1445
|
+
v1UpdateWebhookConfiguration: (v1UpdateWebhookConfigurationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1446
|
+
// verify required parameter 'v1UpdateWebhookConfigurationRequest' is not null or undefined
|
|
1447
|
+
assertParamExists('v1UpdateWebhookConfiguration', 'v1UpdateWebhookConfigurationRequest', v1UpdateWebhookConfigurationRequest);
|
|
1448
|
+
const localVarPath = `/v1/communications/webhook`;
|
|
1449
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1450
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1451
|
+
let baseOptions;
|
|
1452
|
+
if (configuration) {
|
|
1453
|
+
baseOptions = configuration.baseOptions;
|
|
1454
|
+
}
|
|
1455
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1456
|
+
const localVarHeaderParameter = {};
|
|
1457
|
+
const localVarQueryParameter = {};
|
|
1458
|
+
// authentication Roles required
|
|
1459
|
+
// authentication BearerToken required
|
|
1460
|
+
// http bearer authentication required
|
|
1461
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1462
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1463
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1464
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1465
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1466
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateWebhookConfigurationRequest, localVarRequestOptions, configuration);
|
|
1467
|
+
return {
|
|
1468
|
+
url: toPathString(localVarUrlObj),
|
|
1469
|
+
options: localVarRequestOptions,
|
|
1470
|
+
};
|
|
1471
|
+
}),
|
|
1399
1472
|
};
|
|
1400
1473
|
};
|
|
1401
1474
|
/**
|
|
@@ -1644,6 +1717,19 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1644
1717
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1645
1718
|
});
|
|
1646
1719
|
},
|
|
1720
|
+
/**
|
|
1721
|
+
* Get an observation sequence result for a specific image id.
|
|
1722
|
+
* @param {string} [observationSequenceResultId]
|
|
1723
|
+
* @param {string} [imageId]
|
|
1724
|
+
* @param {*} [options] Override http request option.
|
|
1725
|
+
* @throws {RequiredError}
|
|
1726
|
+
*/
|
|
1727
|
+
v1GetObservationSequenceResult(observationSequenceResultId, imageId, options) {
|
|
1728
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1729
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationSequenceResult(observationSequenceResultId, imageId, options);
|
|
1730
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1731
|
+
});
|
|
1732
|
+
},
|
|
1647
1733
|
/**
|
|
1648
1734
|
* Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
|
|
1649
1735
|
* @param {string} [targetId]
|
|
@@ -1663,12 +1749,13 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1663
1749
|
* @param {string} [before]
|
|
1664
1750
|
* @param {string} [searchInstructionId]
|
|
1665
1751
|
* @param {string} [surveyInstructionId]
|
|
1752
|
+
* @param {string} [imageId]
|
|
1666
1753
|
* @param {*} [options] Override http request option.
|
|
1667
1754
|
* @throws {RequiredError}
|
|
1668
1755
|
*/
|
|
1669
|
-
v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, options) {
|
|
1756
|
+
v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, imageId, options) {
|
|
1670
1757
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1671
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, options);
|
|
1758
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, imageId, options);
|
|
1672
1759
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1673
1760
|
});
|
|
1674
1761
|
},
|
|
@@ -1837,6 +1924,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1837
1924
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1838
1925
|
});
|
|
1839
1926
|
},
|
|
1927
|
+
/**
|
|
1928
|
+
* Update a webhook configuration.
|
|
1929
|
+
* @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
|
|
1930
|
+
* @param {*} [options] Override http request option.
|
|
1931
|
+
* @throws {RequiredError}
|
|
1932
|
+
*/
|
|
1933
|
+
v1UpdateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options) {
|
|
1934
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1935
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1UpdateWebhookConfiguration(v1UpdateWebhookConfigurationRequest, options);
|
|
1936
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1937
|
+
});
|
|
1938
|
+
},
|
|
1840
1939
|
};
|
|
1841
1940
|
};
|
|
1842
1941
|
/**
|
|
@@ -2025,6 +2124,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2025
2124
|
v1GetObservationFeatures(requestParameters, options) {
|
|
2026
2125
|
return localVarFp.v1GetObservationFeatures(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
2027
2126
|
},
|
|
2127
|
+
/**
|
|
2128
|
+
* Get an observation sequence result for a specific image id.
|
|
2129
|
+
* @param {DefaultApiV1GetObservationSequenceResultRequest} requestParameters Request parameters.
|
|
2130
|
+
* @param {*} [options] Override http request option.
|
|
2131
|
+
* @throws {RequiredError}
|
|
2132
|
+
*/
|
|
2133
|
+
v1GetObservationSequenceResult(requestParameters = {}, options) {
|
|
2134
|
+
return localVarFp.v1GetObservationSequenceResult(requestParameters.observationSequenceResultId, requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
2135
|
+
},
|
|
2028
2136
|
/**
|
|
2029
2137
|
* Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
|
|
2030
2138
|
* @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
|
|
@@ -2041,7 +2149,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2041
2149
|
* @throws {RequiredError}
|
|
2042
2150
|
*/
|
|
2043
2151
|
v1GetObservationStatuses(requestParameters = {}, options) {
|
|
2044
|
-
return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, options).then((request) => request(axios, basePath));
|
|
2152
|
+
return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
2045
2153
|
},
|
|
2046
2154
|
/**
|
|
2047
2155
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
@@ -2158,6 +2266,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2158
2266
|
v1UpdateSatelliteTarget(requestParameters, options) {
|
|
2159
2267
|
return localVarFp.v1UpdateSatelliteTarget(requestParameters.v1UpdateSatelliteTargetRequest, options).then((request) => request(axios, basePath));
|
|
2160
2268
|
},
|
|
2269
|
+
/**
|
|
2270
|
+
* Update a webhook configuration.
|
|
2271
|
+
* @param {DefaultApiV1UpdateWebhookConfigurationRequest} requestParameters Request parameters.
|
|
2272
|
+
* @param {*} [options] Override http request option.
|
|
2273
|
+
* @throws {RequiredError}
|
|
2274
|
+
*/
|
|
2275
|
+
v1UpdateWebhookConfiguration(requestParameters, options) {
|
|
2276
|
+
return localVarFp.v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
2277
|
+
},
|
|
2161
2278
|
};
|
|
2162
2279
|
};
|
|
2163
2280
|
/**
|
|
@@ -2366,6 +2483,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2366
2483
|
v1GetObservationFeatures(requestParameters, options) {
|
|
2367
2484
|
return DefaultApiFp(this.configuration).v1GetObservationFeatures(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
2368
2485
|
}
|
|
2486
|
+
/**
|
|
2487
|
+
* Get an observation sequence result for a specific image id.
|
|
2488
|
+
* @param {DefaultApiV1GetObservationSequenceResultRequest} requestParameters Request parameters.
|
|
2489
|
+
* @param {*} [options] Override http request option.
|
|
2490
|
+
* @throws {RequiredError}
|
|
2491
|
+
* @memberof DefaultApi
|
|
2492
|
+
*/
|
|
2493
|
+
v1GetObservationSequenceResult(requestParameters = {}, options) {
|
|
2494
|
+
return DefaultApiFp(this.configuration).v1GetObservationSequenceResult(requestParameters.observationSequenceResultId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
2495
|
+
}
|
|
2369
2496
|
/**
|
|
2370
2497
|
* Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
|
|
2371
2498
|
* @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
|
|
@@ -2384,7 +2511,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
2384
2511
|
* @memberof DefaultApi
|
|
2385
2512
|
*/
|
|
2386
2513
|
v1GetObservationStatuses(requestParameters = {}, options) {
|
|
2387
|
-
return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, options).then((request) => request(this.axios, this.basePath));
|
|
2514
|
+
return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
2388
2515
|
}
|
|
2389
2516
|
/**
|
|
2390
2517
|
* Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
|
|
@@ -2514,4 +2641,14 @@ export class DefaultApi extends BaseAPI {
|
|
|
2514
2641
|
v1UpdateSatelliteTarget(requestParameters, options) {
|
|
2515
2642
|
return DefaultApiFp(this.configuration).v1UpdateSatelliteTarget(requestParameters.v1UpdateSatelliteTargetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2516
2643
|
}
|
|
2644
|
+
/**
|
|
2645
|
+
* Update a webhook configuration.
|
|
2646
|
+
* @param {DefaultApiV1UpdateWebhookConfigurationRequest} requestParameters Request parameters.
|
|
2647
|
+
* @param {*} [options] Override http request option.
|
|
2648
|
+
* @throws {RequiredError}
|
|
2649
|
+
* @memberof DefaultApi
|
|
2650
|
+
*/
|
|
2651
|
+
v1UpdateWebhookConfiguration(requestParameters, options) {
|
|
2652
|
+
return DefaultApiFp(this.configuration).v1UpdateWebhookConfiguration(requestParameters.v1UpdateWebhookConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2653
|
+
}
|
|
2517
2654
|
}
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. 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.4675
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|