@ourskyai/sda-api 1.3.2151 → 1.3.2229
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 +109 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +103 -1
- package/dist/api.js +12 -2
- 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 +103 -1
- package/dist/esm/api.js +11 -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.2229
|
|
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.2229 --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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -109,6 +109,37 @@ export const FilterType = {
|
|
|
109
109
|
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
110
110
|
|
|
111
111
|
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @export
|
|
115
|
+
* @interface ObservationBoundingBox
|
|
116
|
+
*/
|
|
117
|
+
export interface ObservationBoundingBox {
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @type {number}
|
|
121
|
+
* @memberof ObservationBoundingBox
|
|
122
|
+
*/
|
|
123
|
+
'startX': number;
|
|
124
|
+
/**
|
|
125
|
+
*
|
|
126
|
+
* @type {number}
|
|
127
|
+
* @memberof ObservationBoundingBox
|
|
128
|
+
*/
|
|
129
|
+
'startY': number;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {number}
|
|
133
|
+
* @memberof ObservationBoundingBox
|
|
134
|
+
*/
|
|
135
|
+
'endX': number;
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @type {number}
|
|
139
|
+
* @memberof ObservationBoundingBox
|
|
140
|
+
*/
|
|
141
|
+
'endY': number;
|
|
142
|
+
}
|
|
112
143
|
/**
|
|
113
144
|
* A single observation result. This is a 1:1 mapping with a single image
|
|
114
145
|
* @export
|
|
@@ -133,6 +164,12 @@ export interface ObservationResult {
|
|
|
133
164
|
* @memberof ObservationResult
|
|
134
165
|
*/
|
|
135
166
|
'imageUrl'?: string;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof ObservationResult
|
|
171
|
+
*/
|
|
172
|
+
'jpgUrl'?: string;
|
|
136
173
|
/**
|
|
137
174
|
*
|
|
138
175
|
* @type {number}
|
|
@@ -145,6 +182,12 @@ export interface ObservationResult {
|
|
|
145
182
|
* @memberof ObservationResult
|
|
146
183
|
*/
|
|
147
184
|
'dec': number;
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {ObservationBoundingBox}
|
|
188
|
+
* @memberof ObservationResult
|
|
189
|
+
*/
|
|
190
|
+
'boundingBox'?: ObservationBoundingBox;
|
|
148
191
|
/**
|
|
149
192
|
*
|
|
150
193
|
* @type {string}
|
|
@@ -178,6 +221,21 @@ export const OrbitType = {
|
|
|
178
221
|
export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
|
|
179
222
|
|
|
180
223
|
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @export
|
|
227
|
+
* @enum {string}
|
|
228
|
+
*/
|
|
229
|
+
|
|
230
|
+
export const SatelliteTargetTrackingStatus = {
|
|
231
|
+
ACTIVE: 'ACTIVE',
|
|
232
|
+
INACTIVE: 'INACTIVE',
|
|
233
|
+
DEORBITED: 'DEORBITED'
|
|
234
|
+
} as const;
|
|
235
|
+
|
|
236
|
+
export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
|
|
237
|
+
|
|
238
|
+
|
|
181
239
|
/**
|
|
182
240
|
*
|
|
183
241
|
* @export
|
|
@@ -401,6 +459,12 @@ export interface V1ImageSetImage {
|
|
|
401
459
|
* @memberof V1ImageSetImage
|
|
402
460
|
*/
|
|
403
461
|
'imageUrl': string;
|
|
462
|
+
/**
|
|
463
|
+
*
|
|
464
|
+
* @type {string}
|
|
465
|
+
* @memberof V1ImageSetImage
|
|
466
|
+
*/
|
|
467
|
+
'fullJpgUrl'?: string;
|
|
404
468
|
/**
|
|
405
469
|
*
|
|
406
470
|
* @type {string}
|
|
@@ -645,7 +709,27 @@ export interface V1SatellitePotential {
|
|
|
645
709
|
* @memberof V1SatellitePotential
|
|
646
710
|
*/
|
|
647
711
|
'lastObservableTime': string;
|
|
712
|
+
/**
|
|
713
|
+
*
|
|
714
|
+
* @type {string}
|
|
715
|
+
* @memberof V1SatellitePotential
|
|
716
|
+
*/
|
|
717
|
+
'satelliteTargetId'?: string;
|
|
718
|
+
/**
|
|
719
|
+
*
|
|
720
|
+
* @type {string}
|
|
721
|
+
* @memberof V1SatellitePotential
|
|
722
|
+
*/
|
|
723
|
+
'noradId'?: string;
|
|
724
|
+
/**
|
|
725
|
+
*
|
|
726
|
+
* @type {OrbitType}
|
|
727
|
+
* @memberof V1SatellitePotential
|
|
728
|
+
*/
|
|
729
|
+
'orbitType'?: OrbitType;
|
|
648
730
|
}
|
|
731
|
+
|
|
732
|
+
|
|
649
733
|
/**
|
|
650
734
|
* Satellite Target
|
|
651
735
|
* @export
|
|
@@ -676,6 +760,30 @@ export interface V1SatelliteTarget {
|
|
|
676
760
|
* @memberof V1SatelliteTarget
|
|
677
761
|
*/
|
|
678
762
|
'orbitType': OrbitType;
|
|
763
|
+
/**
|
|
764
|
+
*
|
|
765
|
+
* @type {string}
|
|
766
|
+
* @memberof V1SatelliteTarget
|
|
767
|
+
*/
|
|
768
|
+
'tleEpoch'?: string;
|
|
769
|
+
/**
|
|
770
|
+
*
|
|
771
|
+
* @type {string}
|
|
772
|
+
* @memberof V1SatelliteTarget
|
|
773
|
+
*/
|
|
774
|
+
'tleLine1'?: string;
|
|
775
|
+
/**
|
|
776
|
+
*
|
|
777
|
+
* @type {string}
|
|
778
|
+
* @memberof V1SatelliteTarget
|
|
779
|
+
*/
|
|
780
|
+
'tleLine2'?: string;
|
|
781
|
+
/**
|
|
782
|
+
*
|
|
783
|
+
* @type {SatelliteTargetTrackingStatus}
|
|
784
|
+
* @memberof V1SatelliteTarget
|
|
785
|
+
*/
|
|
786
|
+
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
679
787
|
}
|
|
680
788
|
|
|
681
789
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -95,6 +95,37 @@ export declare const FilterType: {
|
|
|
95
95
|
readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
|
|
96
96
|
};
|
|
97
97
|
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @export
|
|
101
|
+
* @interface ObservationBoundingBox
|
|
102
|
+
*/
|
|
103
|
+
export interface ObservationBoundingBox {
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {number}
|
|
107
|
+
* @memberof ObservationBoundingBox
|
|
108
|
+
*/
|
|
109
|
+
'startX': number;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof ObservationBoundingBox
|
|
114
|
+
*/
|
|
115
|
+
'startY': number;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {number}
|
|
119
|
+
* @memberof ObservationBoundingBox
|
|
120
|
+
*/
|
|
121
|
+
'endX': number;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @memberof ObservationBoundingBox
|
|
126
|
+
*/
|
|
127
|
+
'endY': number;
|
|
128
|
+
}
|
|
98
129
|
/**
|
|
99
130
|
* A single observation result. This is a 1:1 mapping with a single image
|
|
100
131
|
* @export
|
|
@@ -119,6 +150,12 @@ export interface ObservationResult {
|
|
|
119
150
|
* @memberof ObservationResult
|
|
120
151
|
*/
|
|
121
152
|
'imageUrl'?: string;
|
|
153
|
+
/**
|
|
154
|
+
*
|
|
155
|
+
* @type {string}
|
|
156
|
+
* @memberof ObservationResult
|
|
157
|
+
*/
|
|
158
|
+
'jpgUrl'?: string;
|
|
122
159
|
/**
|
|
123
160
|
*
|
|
124
161
|
* @type {number}
|
|
@@ -131,6 +168,12 @@ export interface ObservationResult {
|
|
|
131
168
|
* @memberof ObservationResult
|
|
132
169
|
*/
|
|
133
170
|
'dec': number;
|
|
171
|
+
/**
|
|
172
|
+
*
|
|
173
|
+
* @type {ObservationBoundingBox}
|
|
174
|
+
* @memberof ObservationResult
|
|
175
|
+
*/
|
|
176
|
+
'boundingBox'?: ObservationBoundingBox;
|
|
134
177
|
/**
|
|
135
178
|
*
|
|
136
179
|
* @type {string}
|
|
@@ -160,6 +203,17 @@ export declare const OrbitType: {
|
|
|
160
203
|
readonly MOLNIYA: "MOLNIYA";
|
|
161
204
|
};
|
|
162
205
|
export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
|
|
206
|
+
/**
|
|
207
|
+
*
|
|
208
|
+
* @export
|
|
209
|
+
* @enum {string}
|
|
210
|
+
*/
|
|
211
|
+
export declare const SatelliteTargetTrackingStatus: {
|
|
212
|
+
readonly ACTIVE: "ACTIVE";
|
|
213
|
+
readonly INACTIVE: "INACTIVE";
|
|
214
|
+
readonly DEORBITED: "DEORBITED";
|
|
215
|
+
};
|
|
216
|
+
export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
|
|
163
217
|
/**
|
|
164
218
|
*
|
|
165
219
|
* @export
|
|
@@ -375,6 +429,12 @@ export interface V1ImageSetImage {
|
|
|
375
429
|
* @memberof V1ImageSetImage
|
|
376
430
|
*/
|
|
377
431
|
'imageUrl': string;
|
|
432
|
+
/**
|
|
433
|
+
*
|
|
434
|
+
* @type {string}
|
|
435
|
+
* @memberof V1ImageSetImage
|
|
436
|
+
*/
|
|
437
|
+
'fullJpgUrl'?: string;
|
|
378
438
|
/**
|
|
379
439
|
*
|
|
380
440
|
* @type {string}
|
|
@@ -619,6 +679,24 @@ export interface V1SatellitePotential {
|
|
|
619
679
|
* @memberof V1SatellitePotential
|
|
620
680
|
*/
|
|
621
681
|
'lastObservableTime': string;
|
|
682
|
+
/**
|
|
683
|
+
*
|
|
684
|
+
* @type {string}
|
|
685
|
+
* @memberof V1SatellitePotential
|
|
686
|
+
*/
|
|
687
|
+
'satelliteTargetId'?: string;
|
|
688
|
+
/**
|
|
689
|
+
*
|
|
690
|
+
* @type {string}
|
|
691
|
+
* @memberof V1SatellitePotential
|
|
692
|
+
*/
|
|
693
|
+
'noradId'?: string;
|
|
694
|
+
/**
|
|
695
|
+
*
|
|
696
|
+
* @type {OrbitType}
|
|
697
|
+
* @memberof V1SatellitePotential
|
|
698
|
+
*/
|
|
699
|
+
'orbitType'?: OrbitType;
|
|
622
700
|
}
|
|
623
701
|
/**
|
|
624
702
|
* Satellite Target
|
|
@@ -650,6 +728,30 @@ export interface V1SatelliteTarget {
|
|
|
650
728
|
* @memberof V1SatelliteTarget
|
|
651
729
|
*/
|
|
652
730
|
'orbitType': OrbitType;
|
|
731
|
+
/**
|
|
732
|
+
*
|
|
733
|
+
* @type {string}
|
|
734
|
+
* @memberof V1SatelliteTarget
|
|
735
|
+
*/
|
|
736
|
+
'tleEpoch'?: string;
|
|
737
|
+
/**
|
|
738
|
+
*
|
|
739
|
+
* @type {string}
|
|
740
|
+
* @memberof V1SatelliteTarget
|
|
741
|
+
*/
|
|
742
|
+
'tleLine1'?: string;
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @type {string}
|
|
746
|
+
* @memberof V1SatelliteTarget
|
|
747
|
+
*/
|
|
748
|
+
'tleLine2'?: string;
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @type {SatelliteTargetTrackingStatus}
|
|
752
|
+
* @memberof V1SatelliteTarget
|
|
753
|
+
*/
|
|
754
|
+
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
653
755
|
}
|
|
654
756
|
/**
|
|
655
757
|
* TDM
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.TrackingType = exports.OrbitType = exports.FilterType = void 0;
|
|
25
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.TrackingType = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.FilterType = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -69,6 +69,16 @@ exports.OrbitType = {
|
|
|
69
69
|
TUNDRA: 'TUNDRA',
|
|
70
70
|
MOLNIYA: 'MOLNIYA'
|
|
71
71
|
};
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @export
|
|
75
|
+
* @enum {string}
|
|
76
|
+
*/
|
|
77
|
+
exports.SatelliteTargetTrackingStatus = {
|
|
78
|
+
ACTIVE: 'ACTIVE',
|
|
79
|
+
INACTIVE: 'INACTIVE',
|
|
80
|
+
DEORBITED: 'DEORBITED'
|
|
81
|
+
};
|
|
72
82
|
/**
|
|
73
83
|
*
|
|
74
84
|
* @export
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -95,6 +95,37 @@ export declare const FilterType: {
|
|
|
95
95
|
readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
|
|
96
96
|
};
|
|
97
97
|
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @export
|
|
101
|
+
* @interface ObservationBoundingBox
|
|
102
|
+
*/
|
|
103
|
+
export interface ObservationBoundingBox {
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {number}
|
|
107
|
+
* @memberof ObservationBoundingBox
|
|
108
|
+
*/
|
|
109
|
+
'startX': number;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof ObservationBoundingBox
|
|
114
|
+
*/
|
|
115
|
+
'startY': number;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {number}
|
|
119
|
+
* @memberof ObservationBoundingBox
|
|
120
|
+
*/
|
|
121
|
+
'endX': number;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @memberof ObservationBoundingBox
|
|
126
|
+
*/
|
|
127
|
+
'endY': number;
|
|
128
|
+
}
|
|
98
129
|
/**
|
|
99
130
|
* A single observation result. This is a 1:1 mapping with a single image
|
|
100
131
|
* @export
|
|
@@ -119,6 +150,12 @@ export interface ObservationResult {
|
|
|
119
150
|
* @memberof ObservationResult
|
|
120
151
|
*/
|
|
121
152
|
'imageUrl'?: string;
|
|
153
|
+
/**
|
|
154
|
+
*
|
|
155
|
+
* @type {string}
|
|
156
|
+
* @memberof ObservationResult
|
|
157
|
+
*/
|
|
158
|
+
'jpgUrl'?: string;
|
|
122
159
|
/**
|
|
123
160
|
*
|
|
124
161
|
* @type {number}
|
|
@@ -131,6 +168,12 @@ export interface ObservationResult {
|
|
|
131
168
|
* @memberof ObservationResult
|
|
132
169
|
*/
|
|
133
170
|
'dec': number;
|
|
171
|
+
/**
|
|
172
|
+
*
|
|
173
|
+
* @type {ObservationBoundingBox}
|
|
174
|
+
* @memberof ObservationResult
|
|
175
|
+
*/
|
|
176
|
+
'boundingBox'?: ObservationBoundingBox;
|
|
134
177
|
/**
|
|
135
178
|
*
|
|
136
179
|
* @type {string}
|
|
@@ -160,6 +203,17 @@ export declare const OrbitType: {
|
|
|
160
203
|
readonly MOLNIYA: "MOLNIYA";
|
|
161
204
|
};
|
|
162
205
|
export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
|
|
206
|
+
/**
|
|
207
|
+
*
|
|
208
|
+
* @export
|
|
209
|
+
* @enum {string}
|
|
210
|
+
*/
|
|
211
|
+
export declare const SatelliteTargetTrackingStatus: {
|
|
212
|
+
readonly ACTIVE: "ACTIVE";
|
|
213
|
+
readonly INACTIVE: "INACTIVE";
|
|
214
|
+
readonly DEORBITED: "DEORBITED";
|
|
215
|
+
};
|
|
216
|
+
export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
|
|
163
217
|
/**
|
|
164
218
|
*
|
|
165
219
|
* @export
|
|
@@ -375,6 +429,12 @@ export interface V1ImageSetImage {
|
|
|
375
429
|
* @memberof V1ImageSetImage
|
|
376
430
|
*/
|
|
377
431
|
'imageUrl': string;
|
|
432
|
+
/**
|
|
433
|
+
*
|
|
434
|
+
* @type {string}
|
|
435
|
+
* @memberof V1ImageSetImage
|
|
436
|
+
*/
|
|
437
|
+
'fullJpgUrl'?: string;
|
|
378
438
|
/**
|
|
379
439
|
*
|
|
380
440
|
* @type {string}
|
|
@@ -619,6 +679,24 @@ export interface V1SatellitePotential {
|
|
|
619
679
|
* @memberof V1SatellitePotential
|
|
620
680
|
*/
|
|
621
681
|
'lastObservableTime': string;
|
|
682
|
+
/**
|
|
683
|
+
*
|
|
684
|
+
* @type {string}
|
|
685
|
+
* @memberof V1SatellitePotential
|
|
686
|
+
*/
|
|
687
|
+
'satelliteTargetId'?: string;
|
|
688
|
+
/**
|
|
689
|
+
*
|
|
690
|
+
* @type {string}
|
|
691
|
+
* @memberof V1SatellitePotential
|
|
692
|
+
*/
|
|
693
|
+
'noradId'?: string;
|
|
694
|
+
/**
|
|
695
|
+
*
|
|
696
|
+
* @type {OrbitType}
|
|
697
|
+
* @memberof V1SatellitePotential
|
|
698
|
+
*/
|
|
699
|
+
'orbitType'?: OrbitType;
|
|
622
700
|
}
|
|
623
701
|
/**
|
|
624
702
|
* Satellite Target
|
|
@@ -650,6 +728,30 @@ export interface V1SatelliteTarget {
|
|
|
650
728
|
* @memberof V1SatelliteTarget
|
|
651
729
|
*/
|
|
652
730
|
'orbitType': OrbitType;
|
|
731
|
+
/**
|
|
732
|
+
*
|
|
733
|
+
* @type {string}
|
|
734
|
+
* @memberof V1SatelliteTarget
|
|
735
|
+
*/
|
|
736
|
+
'tleEpoch'?: string;
|
|
737
|
+
/**
|
|
738
|
+
*
|
|
739
|
+
* @type {string}
|
|
740
|
+
* @memberof V1SatelliteTarget
|
|
741
|
+
*/
|
|
742
|
+
'tleLine1'?: string;
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @type {string}
|
|
746
|
+
* @memberof V1SatelliteTarget
|
|
747
|
+
*/
|
|
748
|
+
'tleLine2'?: string;
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @type {SatelliteTargetTrackingStatus}
|
|
752
|
+
* @memberof V1SatelliteTarget
|
|
753
|
+
*/
|
|
754
|
+
'trackingStatus'?: SatelliteTargetTrackingStatus;
|
|
653
755
|
}
|
|
654
756
|
/**
|
|
655
757
|
* TDM
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -66,6 +66,16 @@ export const OrbitType = {
|
|
|
66
66
|
TUNDRA: 'TUNDRA',
|
|
67
67
|
MOLNIYA: 'MOLNIYA'
|
|
68
68
|
};
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @export
|
|
72
|
+
* @enum {string}
|
|
73
|
+
*/
|
|
74
|
+
export const SatelliteTargetTrackingStatus = {
|
|
75
|
+
ACTIVE: 'ACTIVE',
|
|
76
|
+
INACTIVE: 'INACTIVE',
|
|
77
|
+
DEORBITED: 'DEORBITED'
|
|
78
|
+
};
|
|
69
79
|
/**
|
|
70
80
|
*
|
|
71
81
|
* @export
|
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 TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky SDA
|
|
3
3
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky SDA
|
|
6
6
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky SDA
|
|
5
5
|
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|