@ourskyai/platform-api 1.3.1734
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/.openapi-generator/FILES +13 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +45 -0
- package/api.ts +2911 -0
- package/base.ts +72 -0
- package/common.ts +150 -0
- package/configuration.ts +101 -0
- package/dist/api.d.ts +1990 -0
- package/dist/api.js +1404 -0
- package/dist/base.d.ts +54 -0
- package/dist/base.js +59 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +160 -0
- package/dist/configuration.d.ts +83 -0
- package/dist/configuration.js +42 -0
- package/dist/esm/api.d.ts +1990 -0
- package/dist/esm/api.js +1397 -0
- package/dist/esm/base.d.ts +54 -0
- package/dist/esm/base.js +54 -0
- package/dist/esm/common.d.ts +65 -0
- package/dist/esm/common.js +148 -0
- package/dist/esm/configuration.d.ts +83 -0
- package/dist/esm/configuration.js +38 -0
- package/dist/esm/index.d.ts +13 -0
- package/dist/esm/index.js +15 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +31 -0
- package/git_push.sh +57 -0
- package/index.ts +18 -0
- package/package.json +33 -0
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +18 -0
package/dist/api.d.ts
ADDED
|
@@ -0,0 +1,1990 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OurSky Platform
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.3.1734
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from './configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
|
+
import type { RequestArgs } from './base';
|
|
15
|
+
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
* Camera mode
|
|
18
|
+
* @export
|
|
19
|
+
* @enum {string}
|
|
20
|
+
*/
|
|
21
|
+
export declare const CameraMode: {
|
|
22
|
+
readonly VIDEO: "VIDEO";
|
|
23
|
+
readonly SINGLE: "SINGLE";
|
|
24
|
+
};
|
|
25
|
+
export type CameraMode = typeof CameraMode[keyof typeof CameraMode];
|
|
26
|
+
/**
|
|
27
|
+
* successful action
|
|
28
|
+
* @export
|
|
29
|
+
* @interface EmptySuccess
|
|
30
|
+
*/
|
|
31
|
+
export interface EmptySuccess {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof EmptySuccess
|
|
36
|
+
*/
|
|
37
|
+
'message'?: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @export
|
|
42
|
+
* @enum {string}
|
|
43
|
+
*/
|
|
44
|
+
export declare const FilterType: {
|
|
45
|
+
readonly NONE: "NONE";
|
|
46
|
+
readonly RED: "RED";
|
|
47
|
+
readonly BLUE: "BLUE";
|
|
48
|
+
readonly GREEN: "GREEN";
|
|
49
|
+
readonly UV: "UV";
|
|
50
|
+
readonly IR: "IR";
|
|
51
|
+
readonly LUMINANCE: "LUMINANCE";
|
|
52
|
+
readonly ENHANCED_LUMINANCE: "ENHANCED_LUMINANCE";
|
|
53
|
+
readonly H_ALPHA: "H_ALPHA";
|
|
54
|
+
readonly H_BETA: "H_BETA";
|
|
55
|
+
readonly S_II: "S_II";
|
|
56
|
+
readonly O_III: "O_III";
|
|
57
|
+
readonly DUAL_BAND: "DUAL_BAND";
|
|
58
|
+
readonly PHOTO_JOHNSON_U: "PHOTO_JOHNSON_U";
|
|
59
|
+
readonly PHOTO_JOHNSON_B: "PHOTO_JOHNSON_B";
|
|
60
|
+
readonly PHOTO_JOHNSON_V: "PHOTO_JOHNSON_V";
|
|
61
|
+
readonly PHOTO_COUSINS_R: "PHOTO_COUSINS_R";
|
|
62
|
+
readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
|
|
63
|
+
};
|
|
64
|
+
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
65
|
+
/**
|
|
66
|
+
* GroundStationParticipant
|
|
67
|
+
* @export
|
|
68
|
+
* @interface GroundStationParticipant
|
|
69
|
+
*/
|
|
70
|
+
export interface GroundStationParticipant {
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof GroundStationParticipant
|
|
75
|
+
*/
|
|
76
|
+
'nodeId': string;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {Location}
|
|
80
|
+
* @memberof GroundStationParticipant
|
|
81
|
+
*/
|
|
82
|
+
'location': Location;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof GroundStationParticipant
|
|
87
|
+
*/
|
|
88
|
+
'megapixels': number;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {ShutterType}
|
|
92
|
+
* @memberof GroundStationParticipant
|
|
93
|
+
*/
|
|
94
|
+
'shutterType': ShutterType;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof GroundStationParticipant
|
|
99
|
+
*/
|
|
100
|
+
'pixelSizeMicrons': number;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {boolean}
|
|
104
|
+
* @memberof GroundStationParticipant
|
|
105
|
+
*/
|
|
106
|
+
'gpsTimestamps': boolean;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof GroundStationParticipant
|
|
111
|
+
*/
|
|
112
|
+
'otaFocalLengthMm': number;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof GroundStationParticipant
|
|
117
|
+
*/
|
|
118
|
+
'otaApertureMm': number;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {MountType}
|
|
122
|
+
* @memberof GroundStationParticipant
|
|
123
|
+
*/
|
|
124
|
+
'mountType': MountType;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof GroundStationParticipant
|
|
129
|
+
*/
|
|
130
|
+
'masterFlat'?: string;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof GroundStationParticipant
|
|
135
|
+
*/
|
|
136
|
+
'masterDark'?: string;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof GroundStationParticipant
|
|
141
|
+
*/
|
|
142
|
+
'masterBias'?: string;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
*
|
|
146
|
+
* @export
|
|
147
|
+
* @interface Location
|
|
148
|
+
*/
|
|
149
|
+
export interface Location {
|
|
150
|
+
/**
|
|
151
|
+
*
|
|
152
|
+
* @type {number}
|
|
153
|
+
* @memberof Location
|
|
154
|
+
*/
|
|
155
|
+
'latitude': number;
|
|
156
|
+
/**
|
|
157
|
+
*
|
|
158
|
+
* @type {number}
|
|
159
|
+
* @memberof Location
|
|
160
|
+
*/
|
|
161
|
+
'longitude': number;
|
|
162
|
+
/**
|
|
163
|
+
*
|
|
164
|
+
* @type {number}
|
|
165
|
+
* @memberof Location
|
|
166
|
+
*/
|
|
167
|
+
'altitude': number;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* metric type
|
|
171
|
+
* @export
|
|
172
|
+
* @enum {string}
|
|
173
|
+
*/
|
|
174
|
+
export declare const MetricType: {
|
|
175
|
+
readonly COUNT: "COUNT";
|
|
176
|
+
readonly DISTRIBUTION: "DISTRIBUTION";
|
|
177
|
+
};
|
|
178
|
+
export type MetricType = typeof MetricType[keyof typeof MetricType];
|
|
179
|
+
/**
|
|
180
|
+
* The type of mount
|
|
181
|
+
* @export
|
|
182
|
+
* @enum {string}
|
|
183
|
+
*/
|
|
184
|
+
export declare const MountType: {
|
|
185
|
+
readonly ALT_AZ: "ALT_AZ";
|
|
186
|
+
readonly EQUITORIAL: "EQUITORIAL";
|
|
187
|
+
};
|
|
188
|
+
export type MountType = typeof MountType[keyof typeof MountType];
|
|
189
|
+
/**
|
|
190
|
+
* possible states for a node
|
|
191
|
+
* @export
|
|
192
|
+
* @enum {string}
|
|
193
|
+
*/
|
|
194
|
+
export declare const NodeState: {
|
|
195
|
+
readonly READY: "READY";
|
|
196
|
+
readonly PENDING: "PENDING";
|
|
197
|
+
readonly OFFLINE: "OFFLINE";
|
|
198
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
199
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
200
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
201
|
+
};
|
|
202
|
+
export type NodeState = typeof NodeState[keyof typeof NodeState];
|
|
203
|
+
/**
|
|
204
|
+
* optical tube types
|
|
205
|
+
* @export
|
|
206
|
+
* @enum {string}
|
|
207
|
+
*/
|
|
208
|
+
export declare const OpticalTubeType: {
|
|
209
|
+
readonly NEWTONIAN: "NEWTONIAN";
|
|
210
|
+
readonly SCT: "SCT";
|
|
211
|
+
readonly MCT: "MCT";
|
|
212
|
+
readonly RC: "RC";
|
|
213
|
+
readonly REFRACTOR: "REFRACTOR";
|
|
214
|
+
};
|
|
215
|
+
export type OpticalTubeType = typeof OpticalTubeType[keyof typeof OpticalTubeType];
|
|
216
|
+
/**
|
|
217
|
+
* shutter type
|
|
218
|
+
* @export
|
|
219
|
+
* @enum {string}
|
|
220
|
+
*/
|
|
221
|
+
export declare const ShutterType: {
|
|
222
|
+
readonly ROLLING: "ROLLING";
|
|
223
|
+
readonly GLOBAL: "GLOBAL";
|
|
224
|
+
};
|
|
225
|
+
export type ShutterType = typeof ShutterType[keyof typeof ShutterType];
|
|
226
|
+
/**
|
|
227
|
+
* successful create
|
|
228
|
+
* @export
|
|
229
|
+
* @interface SuccessfulCreate
|
|
230
|
+
*/
|
|
231
|
+
export interface SuccessfulCreate {
|
|
232
|
+
/**
|
|
233
|
+
*
|
|
234
|
+
* @type {string}
|
|
235
|
+
* @memberof SuccessfulCreate
|
|
236
|
+
*/
|
|
237
|
+
'id': string;
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* target tracking type
|
|
241
|
+
* @export
|
|
242
|
+
* @enum {string}
|
|
243
|
+
*/
|
|
244
|
+
export declare const TrackingType: {
|
|
245
|
+
readonly SIDEREAL: "SIDEREAL";
|
|
246
|
+
readonly TARGET_RATE: "TARGET_RATE";
|
|
247
|
+
};
|
|
248
|
+
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
249
|
+
/**
|
|
250
|
+
* v1Camera
|
|
251
|
+
* @export
|
|
252
|
+
* @interface V1Camera
|
|
253
|
+
*/
|
|
254
|
+
export interface V1Camera {
|
|
255
|
+
/**
|
|
256
|
+
*
|
|
257
|
+
* @type {string}
|
|
258
|
+
* @memberof V1Camera
|
|
259
|
+
*/
|
|
260
|
+
'id': string;
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @type {string}
|
|
264
|
+
* @memberof V1Camera
|
|
265
|
+
*/
|
|
266
|
+
'model': string;
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @type {number}
|
|
270
|
+
* @memberof V1Camera
|
|
271
|
+
*/
|
|
272
|
+
'pixelSizeMicrons': number;
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* @type {number}
|
|
276
|
+
* @memberof V1Camera
|
|
277
|
+
*/
|
|
278
|
+
'pixelsX'?: number;
|
|
279
|
+
/**
|
|
280
|
+
*
|
|
281
|
+
* @type {number}
|
|
282
|
+
* @memberof V1Camera
|
|
283
|
+
*/
|
|
284
|
+
'pixelsY'?: number;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @type {number}
|
|
288
|
+
* @memberof V1Camera
|
|
289
|
+
*/
|
|
290
|
+
'megapixels': number;
|
|
291
|
+
/**
|
|
292
|
+
*
|
|
293
|
+
* @type {boolean}
|
|
294
|
+
* @memberof V1Camera
|
|
295
|
+
*/
|
|
296
|
+
'chilled': boolean;
|
|
297
|
+
/**
|
|
298
|
+
*
|
|
299
|
+
* @type {number}
|
|
300
|
+
* @memberof V1Camera
|
|
301
|
+
*/
|
|
302
|
+
'adcBitDepth': number;
|
|
303
|
+
/**
|
|
304
|
+
*
|
|
305
|
+
* @type {boolean}
|
|
306
|
+
* @memberof V1Camera
|
|
307
|
+
*/
|
|
308
|
+
'gpsTimestamps': boolean;
|
|
309
|
+
/**
|
|
310
|
+
*
|
|
311
|
+
* @type {ShutterType}
|
|
312
|
+
* @memberof V1Camera
|
|
313
|
+
*/
|
|
314
|
+
'shutterType': ShutterType;
|
|
315
|
+
/**
|
|
316
|
+
*
|
|
317
|
+
* @type {number}
|
|
318
|
+
* @memberof V1Camera
|
|
319
|
+
*/
|
|
320
|
+
'fullWellCapacity'?: number;
|
|
321
|
+
/**
|
|
322
|
+
*
|
|
323
|
+
* @type {Array<V1SetupAction>}
|
|
324
|
+
* @memberof V1Camera
|
|
325
|
+
*/
|
|
326
|
+
'setupActions'?: Array<V1SetupAction>;
|
|
327
|
+
/**
|
|
328
|
+
*
|
|
329
|
+
* @type {boolean}
|
|
330
|
+
* @memberof V1Camera
|
|
331
|
+
*/
|
|
332
|
+
'isColor': boolean;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* complete an observation
|
|
336
|
+
* @export
|
|
337
|
+
* @interface V1CompleteObservation
|
|
338
|
+
*/
|
|
339
|
+
export interface V1CompleteObservation {
|
|
340
|
+
/**
|
|
341
|
+
*
|
|
342
|
+
* @type {string}
|
|
343
|
+
* @memberof V1CompleteObservation
|
|
344
|
+
*/
|
|
345
|
+
'imageSetId': string;
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* create image set
|
|
349
|
+
* @export
|
|
350
|
+
* @interface V1CreateImageSet
|
|
351
|
+
*/
|
|
352
|
+
export interface V1CreateImageSet {
|
|
353
|
+
/**
|
|
354
|
+
*
|
|
355
|
+
* @type {string}
|
|
356
|
+
* @memberof V1CreateImageSet
|
|
357
|
+
*/
|
|
358
|
+
'targetId': string;
|
|
359
|
+
/**
|
|
360
|
+
*
|
|
361
|
+
* @type {string}
|
|
362
|
+
* @memberof V1CreateImageSet
|
|
363
|
+
*/
|
|
364
|
+
'nodeId': string;
|
|
365
|
+
/**
|
|
366
|
+
*
|
|
367
|
+
* @type {string}
|
|
368
|
+
* @memberof V1CreateImageSet
|
|
369
|
+
*/
|
|
370
|
+
'observationId'?: string;
|
|
371
|
+
/**
|
|
372
|
+
*
|
|
373
|
+
* @type {string}
|
|
374
|
+
* @memberof V1CreateImageSet
|
|
375
|
+
* @deprecated
|
|
376
|
+
*/
|
|
377
|
+
'ourskyPluginVersion'?: string;
|
|
378
|
+
/**
|
|
379
|
+
*
|
|
380
|
+
* @type {TrackingType}
|
|
381
|
+
* @memberof V1CreateImageSet
|
|
382
|
+
*/
|
|
383
|
+
'trackingType'?: TrackingType;
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* @type {FilterType}
|
|
387
|
+
* @memberof V1CreateImageSet
|
|
388
|
+
*/
|
|
389
|
+
'filterType'?: FilterType;
|
|
390
|
+
}
|
|
391
|
+
/**
|
|
392
|
+
* create image set image
|
|
393
|
+
* @export
|
|
394
|
+
* @interface V1CreateImageSetImage
|
|
395
|
+
*/
|
|
396
|
+
export interface V1CreateImageSetImage {
|
|
397
|
+
/**
|
|
398
|
+
*
|
|
399
|
+
* @type {string}
|
|
400
|
+
* @memberof V1CreateImageSetImage
|
|
401
|
+
*/
|
|
402
|
+
'imageSetId': string;
|
|
403
|
+
}
|
|
404
|
+
/**
|
|
405
|
+
* successful create of image set image
|
|
406
|
+
* @export
|
|
407
|
+
* @interface V1CreateImageSetImageResponse
|
|
408
|
+
*/
|
|
409
|
+
export interface V1CreateImageSetImageResponse {
|
|
410
|
+
/**
|
|
411
|
+
*
|
|
412
|
+
* @type {string}
|
|
413
|
+
* @memberof V1CreateImageSetImageResponse
|
|
414
|
+
*/
|
|
415
|
+
'id': string;
|
|
416
|
+
/**
|
|
417
|
+
*
|
|
418
|
+
* @type {string}
|
|
419
|
+
* @memberof V1CreateImageSetImageResponse
|
|
420
|
+
*/
|
|
421
|
+
'uploadUrl': string;
|
|
422
|
+
}
|
|
423
|
+
/**
|
|
424
|
+
* create a mount
|
|
425
|
+
* @export
|
|
426
|
+
* @interface V1CreateMount
|
|
427
|
+
*/
|
|
428
|
+
export interface V1CreateMount {
|
|
429
|
+
/**
|
|
430
|
+
*
|
|
431
|
+
* @type {string}
|
|
432
|
+
* @memberof V1CreateMount
|
|
433
|
+
*/
|
|
434
|
+
'model': string;
|
|
435
|
+
/**
|
|
436
|
+
*
|
|
437
|
+
* @type {MountType}
|
|
438
|
+
* @memberof V1CreateMount
|
|
439
|
+
*/
|
|
440
|
+
'mountType': MountType;
|
|
441
|
+
/**
|
|
442
|
+
*
|
|
443
|
+
* @type {number}
|
|
444
|
+
* @memberof V1CreateMount
|
|
445
|
+
*/
|
|
446
|
+
'slewRate': number;
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* create an optical tube
|
|
450
|
+
* @export
|
|
451
|
+
* @interface V1CreateOpticalTube
|
|
452
|
+
*/
|
|
453
|
+
export interface V1CreateOpticalTube {
|
|
454
|
+
/**
|
|
455
|
+
*
|
|
456
|
+
* @type {string}
|
|
457
|
+
* @memberof V1CreateOpticalTube
|
|
458
|
+
*/
|
|
459
|
+
'model': string;
|
|
460
|
+
/**
|
|
461
|
+
*
|
|
462
|
+
* @type {number}
|
|
463
|
+
* @memberof V1CreateOpticalTube
|
|
464
|
+
*/
|
|
465
|
+
'focalLengthMm': number;
|
|
466
|
+
/**
|
|
467
|
+
*
|
|
468
|
+
* @type {number}
|
|
469
|
+
* @memberof V1CreateOpticalTube
|
|
470
|
+
*/
|
|
471
|
+
'apertureMm': number;
|
|
472
|
+
/**
|
|
473
|
+
*
|
|
474
|
+
* @type {OpticalTubeType}
|
|
475
|
+
* @memberof V1CreateOpticalTube
|
|
476
|
+
*/
|
|
477
|
+
'type'?: OpticalTubeType;
|
|
478
|
+
}
|
|
479
|
+
/**
|
|
480
|
+
* v1GetNodes
|
|
481
|
+
* @export
|
|
482
|
+
* @interface V1GetNodes
|
|
483
|
+
*/
|
|
484
|
+
export interface V1GetNodes {
|
|
485
|
+
/**
|
|
486
|
+
*
|
|
487
|
+
* @type {Array<V1NodeWithLocation>}
|
|
488
|
+
* @memberof V1GetNodes
|
|
489
|
+
*/
|
|
490
|
+
'nodes': Array<V1NodeWithLocation>;
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* V1GetObservatories
|
|
494
|
+
* @export
|
|
495
|
+
* @interface V1GetObservatories
|
|
496
|
+
*/
|
|
497
|
+
export interface V1GetObservatories {
|
|
498
|
+
/**
|
|
499
|
+
*
|
|
500
|
+
* @type {Array<V1Observatory>}
|
|
501
|
+
* @memberof V1GetObservatories
|
|
502
|
+
*/
|
|
503
|
+
'observatories': Array<V1Observatory>;
|
|
504
|
+
}
|
|
505
|
+
/**
|
|
506
|
+
* v1GetImageSet
|
|
507
|
+
* @export
|
|
508
|
+
* @interface V1ImageSet
|
|
509
|
+
*/
|
|
510
|
+
export interface V1ImageSet {
|
|
511
|
+
/**
|
|
512
|
+
*
|
|
513
|
+
* @type {string}
|
|
514
|
+
* @memberof V1ImageSet
|
|
515
|
+
*/
|
|
516
|
+
'id': string;
|
|
517
|
+
/**
|
|
518
|
+
*
|
|
519
|
+
* @type {string}
|
|
520
|
+
* @memberof V1ImageSet
|
|
521
|
+
*/
|
|
522
|
+
'targetId'?: string;
|
|
523
|
+
/**
|
|
524
|
+
*
|
|
525
|
+
* @type {number}
|
|
526
|
+
* @memberof V1ImageSet
|
|
527
|
+
*/
|
|
528
|
+
'ra'?: number;
|
|
529
|
+
/**
|
|
530
|
+
*
|
|
531
|
+
* @type {number}
|
|
532
|
+
* @memberof V1ImageSet
|
|
533
|
+
*/
|
|
534
|
+
'dec'?: number;
|
|
535
|
+
/**
|
|
536
|
+
*
|
|
537
|
+
* @type {string}
|
|
538
|
+
* @memberof V1ImageSet
|
|
539
|
+
*/
|
|
540
|
+
'nodeId': string;
|
|
541
|
+
/**
|
|
542
|
+
*
|
|
543
|
+
* @type {string}
|
|
544
|
+
* @memberof V1ImageSet
|
|
545
|
+
*/
|
|
546
|
+
'observationId'?: string;
|
|
547
|
+
/**
|
|
548
|
+
*
|
|
549
|
+
* @type {TrackingType}
|
|
550
|
+
* @memberof V1ImageSet
|
|
551
|
+
*/
|
|
552
|
+
'trackingType': TrackingType;
|
|
553
|
+
/**
|
|
554
|
+
*
|
|
555
|
+
* @type {FilterType}
|
|
556
|
+
* @memberof V1ImageSet
|
|
557
|
+
*/
|
|
558
|
+
'filterType'?: FilterType;
|
|
559
|
+
/**
|
|
560
|
+
*
|
|
561
|
+
* @type {string}
|
|
562
|
+
* @memberof V1ImageSet
|
|
563
|
+
*/
|
|
564
|
+
'createdAt': string;
|
|
565
|
+
/**
|
|
566
|
+
*
|
|
567
|
+
* @type {string}
|
|
568
|
+
* @memberof V1ImageSet
|
|
569
|
+
*/
|
|
570
|
+
'updatedAt'?: string;
|
|
571
|
+
/**
|
|
572
|
+
*
|
|
573
|
+
* @type {string}
|
|
574
|
+
* @memberof V1ImageSet
|
|
575
|
+
*/
|
|
576
|
+
'ourskyPluginVersion'?: string;
|
|
577
|
+
}
|
|
578
|
+
/**
|
|
579
|
+
* v1GetImageSetImage
|
|
580
|
+
* @export
|
|
581
|
+
* @interface V1ImageSetImage
|
|
582
|
+
*/
|
|
583
|
+
export interface V1ImageSetImage {
|
|
584
|
+
/**
|
|
585
|
+
*
|
|
586
|
+
* @type {string}
|
|
587
|
+
* @memberof V1ImageSetImage
|
|
588
|
+
*/
|
|
589
|
+
'id': string;
|
|
590
|
+
/**
|
|
591
|
+
*
|
|
592
|
+
* @type {string}
|
|
593
|
+
* @memberof V1ImageSetImage
|
|
594
|
+
*/
|
|
595
|
+
'thumbnailUrl'?: string;
|
|
596
|
+
/**
|
|
597
|
+
*
|
|
598
|
+
* @type {string}
|
|
599
|
+
* @memberof V1ImageSetImage
|
|
600
|
+
*/
|
|
601
|
+
'imageUrl': string;
|
|
602
|
+
/**
|
|
603
|
+
*
|
|
604
|
+
* @type {string}
|
|
605
|
+
* @memberof V1ImageSetImage
|
|
606
|
+
*/
|
|
607
|
+
'nodeId': string;
|
|
608
|
+
/**
|
|
609
|
+
*
|
|
610
|
+
* @type {string}
|
|
611
|
+
* @memberof V1ImageSetImage
|
|
612
|
+
*/
|
|
613
|
+
'targetId'?: string;
|
|
614
|
+
/**
|
|
615
|
+
*
|
|
616
|
+
* @type {number}
|
|
617
|
+
* @memberof V1ImageSetImage
|
|
618
|
+
*/
|
|
619
|
+
'ra'?: number;
|
|
620
|
+
/**
|
|
621
|
+
*
|
|
622
|
+
* @type {number}
|
|
623
|
+
* @memberof V1ImageSetImage
|
|
624
|
+
*/
|
|
625
|
+
'dec'?: number;
|
|
626
|
+
/**
|
|
627
|
+
*
|
|
628
|
+
* @type {string}
|
|
629
|
+
* @memberof V1ImageSetImage
|
|
630
|
+
*/
|
|
631
|
+
'imageSetId': string;
|
|
632
|
+
/**
|
|
633
|
+
*
|
|
634
|
+
* @type {boolean}
|
|
635
|
+
* @memberof V1ImageSetImage
|
|
636
|
+
*/
|
|
637
|
+
'darkCalibrated': boolean;
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @type {boolean}
|
|
641
|
+
* @memberof V1ImageSetImage
|
|
642
|
+
*/
|
|
643
|
+
'flatCalibrated': boolean;
|
|
644
|
+
/**
|
|
645
|
+
*
|
|
646
|
+
* @type {boolean}
|
|
647
|
+
* @memberof V1ImageSetImage
|
|
648
|
+
*/
|
|
649
|
+
'biasCalibrated': boolean;
|
|
650
|
+
/**
|
|
651
|
+
*
|
|
652
|
+
* @type {number}
|
|
653
|
+
* @memberof V1ImageSetImage
|
|
654
|
+
*/
|
|
655
|
+
'fwhmAverage'?: number;
|
|
656
|
+
/**
|
|
657
|
+
*
|
|
658
|
+
* @type {number}
|
|
659
|
+
* @memberof V1ImageSetImage
|
|
660
|
+
*/
|
|
661
|
+
'fwhmStdDev'?: number;
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @type {number}
|
|
665
|
+
* @memberof V1ImageSetImage
|
|
666
|
+
*/
|
|
667
|
+
'fwhmAngle'?: number;
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @type {number}
|
|
671
|
+
* @memberof V1ImageSetImage
|
|
672
|
+
*/
|
|
673
|
+
'raOffset'?: number;
|
|
674
|
+
/**
|
|
675
|
+
*
|
|
676
|
+
* @type {number}
|
|
677
|
+
* @memberof V1ImageSetImage
|
|
678
|
+
*/
|
|
679
|
+
'decOffset'?: number;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @type {number}
|
|
683
|
+
* @memberof V1ImageSetImage
|
|
684
|
+
*/
|
|
685
|
+
'totalOffset'?: number;
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @type {number}
|
|
689
|
+
* @memberof V1ImageSetImage
|
|
690
|
+
*/
|
|
691
|
+
'totalOffsetStdDev'?: number;
|
|
692
|
+
/**
|
|
693
|
+
*
|
|
694
|
+
* @type {number}
|
|
695
|
+
* @memberof V1ImageSetImage
|
|
696
|
+
*/
|
|
697
|
+
'totalOffsetRMS'?: number;
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof V1ImageSetImage
|
|
702
|
+
*/
|
|
703
|
+
'capturedAt': string;
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @type {string}
|
|
707
|
+
* @memberof V1ImageSetImage
|
|
708
|
+
*/
|
|
709
|
+
'createdAt': string;
|
|
710
|
+
/**
|
|
711
|
+
*
|
|
712
|
+
* @type {number}
|
|
713
|
+
* @memberof V1ImageSetImage
|
|
714
|
+
*/
|
|
715
|
+
'binning'?: number;
|
|
716
|
+
/**
|
|
717
|
+
*
|
|
718
|
+
* @type {number}
|
|
719
|
+
* @memberof V1ImageSetImage
|
|
720
|
+
*/
|
|
721
|
+
'exposureLength': number;
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* metric
|
|
725
|
+
* @export
|
|
726
|
+
* @interface V1Metric
|
|
727
|
+
*/
|
|
728
|
+
export interface V1Metric {
|
|
729
|
+
/**
|
|
730
|
+
*
|
|
731
|
+
* @type {string}
|
|
732
|
+
* @memberof V1Metric
|
|
733
|
+
*/
|
|
734
|
+
'name': string;
|
|
735
|
+
/**
|
|
736
|
+
*
|
|
737
|
+
* @type {number}
|
|
738
|
+
* @memberof V1Metric
|
|
739
|
+
*/
|
|
740
|
+
'value': number;
|
|
741
|
+
/**
|
|
742
|
+
*
|
|
743
|
+
* @type {Array<string>}
|
|
744
|
+
* @memberof V1Metric
|
|
745
|
+
*/
|
|
746
|
+
'tags'?: Array<string>;
|
|
747
|
+
/**
|
|
748
|
+
*
|
|
749
|
+
* @type {MetricType}
|
|
750
|
+
* @memberof V1Metric
|
|
751
|
+
*/
|
|
752
|
+
'type': MetricType;
|
|
753
|
+
/**
|
|
754
|
+
*
|
|
755
|
+
* @type {string}
|
|
756
|
+
* @memberof V1Metric
|
|
757
|
+
*/
|
|
758
|
+
'measuredAt': string;
|
|
759
|
+
}
|
|
760
|
+
/**
|
|
761
|
+
* v1Mount
|
|
762
|
+
* @export
|
|
763
|
+
* @interface V1Mount
|
|
764
|
+
*/
|
|
765
|
+
export interface V1Mount {
|
|
766
|
+
/**
|
|
767
|
+
*
|
|
768
|
+
* @type {string}
|
|
769
|
+
* @memberof V1Mount
|
|
770
|
+
*/
|
|
771
|
+
'id': string;
|
|
772
|
+
/**
|
|
773
|
+
*
|
|
774
|
+
* @type {string}
|
|
775
|
+
* @memberof V1Mount
|
|
776
|
+
*/
|
|
777
|
+
'model': string;
|
|
778
|
+
}
|
|
779
|
+
/**
|
|
780
|
+
* v1Node
|
|
781
|
+
* @export
|
|
782
|
+
* @interface V1Node
|
|
783
|
+
*/
|
|
784
|
+
export interface V1Node {
|
|
785
|
+
/**
|
|
786
|
+
*
|
|
787
|
+
* @type {string}
|
|
788
|
+
* @memberof V1Node
|
|
789
|
+
*/
|
|
790
|
+
'name': string;
|
|
791
|
+
/**
|
|
792
|
+
*
|
|
793
|
+
* @type {string}
|
|
794
|
+
* @memberof V1Node
|
|
795
|
+
*/
|
|
796
|
+
'observatoryId'?: string;
|
|
797
|
+
/**
|
|
798
|
+
*
|
|
799
|
+
* @type {string}
|
|
800
|
+
* @memberof V1Node
|
|
801
|
+
*/
|
|
802
|
+
'organizationId': string;
|
|
803
|
+
/**
|
|
804
|
+
*
|
|
805
|
+
* @type {string}
|
|
806
|
+
* @memberof V1Node
|
|
807
|
+
*/
|
|
808
|
+
'cameraId': string;
|
|
809
|
+
/**
|
|
810
|
+
*
|
|
811
|
+
* @type {string}
|
|
812
|
+
* @memberof V1Node
|
|
813
|
+
*/
|
|
814
|
+
'opticalTubeId': string;
|
|
815
|
+
/**
|
|
816
|
+
*
|
|
817
|
+
* @type {string}
|
|
818
|
+
* @memberof V1Node
|
|
819
|
+
*/
|
|
820
|
+
'mountId': string;
|
|
821
|
+
/**
|
|
822
|
+
*
|
|
823
|
+
* @type {string}
|
|
824
|
+
* @memberof V1Node
|
|
825
|
+
*/
|
|
826
|
+
'filterWheelId'?: string;
|
|
827
|
+
/**
|
|
828
|
+
*
|
|
829
|
+
* @type {number}
|
|
830
|
+
* @memberof V1Node
|
|
831
|
+
*/
|
|
832
|
+
'minAltitude': number;
|
|
833
|
+
/**
|
|
834
|
+
*
|
|
835
|
+
* @type {string}
|
|
836
|
+
* @memberof V1Node
|
|
837
|
+
*/
|
|
838
|
+
'createdAt': string;
|
|
839
|
+
/**
|
|
840
|
+
*
|
|
841
|
+
* @type {string}
|
|
842
|
+
* @memberof V1Node
|
|
843
|
+
*/
|
|
844
|
+
'updatedAt'?: string;
|
|
845
|
+
/**
|
|
846
|
+
*
|
|
847
|
+
* @type {NodeState}
|
|
848
|
+
* @memberof V1Node
|
|
849
|
+
*/
|
|
850
|
+
'state'?: NodeState;
|
|
851
|
+
/**
|
|
852
|
+
*
|
|
853
|
+
* @type {string}
|
|
854
|
+
* @memberof V1Node
|
|
855
|
+
*/
|
|
856
|
+
'id': string;
|
|
857
|
+
}
|
|
858
|
+
/**
|
|
859
|
+
* v1NodeWithLocation
|
|
860
|
+
* @export
|
|
861
|
+
* @interface V1NodeWithLocation
|
|
862
|
+
*/
|
|
863
|
+
export interface V1NodeWithLocation {
|
|
864
|
+
/**
|
|
865
|
+
*
|
|
866
|
+
* @type {V1Node}
|
|
867
|
+
* @memberof V1NodeWithLocation
|
|
868
|
+
*/
|
|
869
|
+
'node': V1Node;
|
|
870
|
+
/**
|
|
871
|
+
*
|
|
872
|
+
* @type {Location}
|
|
873
|
+
* @memberof V1NodeWithLocation
|
|
874
|
+
*/
|
|
875
|
+
'location': Location;
|
|
876
|
+
}
|
|
877
|
+
/**
|
|
878
|
+
* V1Observatory
|
|
879
|
+
* @export
|
|
880
|
+
* @interface V1Observatory
|
|
881
|
+
*/
|
|
882
|
+
export interface V1Observatory {
|
|
883
|
+
/**
|
|
884
|
+
*
|
|
885
|
+
* @type {string}
|
|
886
|
+
* @memberof V1Observatory
|
|
887
|
+
*/
|
|
888
|
+
'id': string;
|
|
889
|
+
/**
|
|
890
|
+
*
|
|
891
|
+
* @type {string}
|
|
892
|
+
* @memberof V1Observatory
|
|
893
|
+
*/
|
|
894
|
+
'name': string;
|
|
895
|
+
/**
|
|
896
|
+
*
|
|
897
|
+
* @type {number}
|
|
898
|
+
* @memberof V1Observatory
|
|
899
|
+
*/
|
|
900
|
+
'latitude': number;
|
|
901
|
+
/**
|
|
902
|
+
*
|
|
903
|
+
* @type {number}
|
|
904
|
+
* @memberof V1Observatory
|
|
905
|
+
*/
|
|
906
|
+
'longitude': number;
|
|
907
|
+
/**
|
|
908
|
+
*
|
|
909
|
+
* @type {number}
|
|
910
|
+
* @memberof V1Observatory
|
|
911
|
+
*/
|
|
912
|
+
'altitude': number;
|
|
913
|
+
}
|
|
914
|
+
/**
|
|
915
|
+
* v1OpticalTube
|
|
916
|
+
* @export
|
|
917
|
+
* @interface V1OpticalTube
|
|
918
|
+
*/
|
|
919
|
+
export interface V1OpticalTube {
|
|
920
|
+
/**
|
|
921
|
+
*
|
|
922
|
+
* @type {string}
|
|
923
|
+
* @memberof V1OpticalTube
|
|
924
|
+
*/
|
|
925
|
+
'id': string;
|
|
926
|
+
/**
|
|
927
|
+
*
|
|
928
|
+
* @type {string}
|
|
929
|
+
* @memberof V1OpticalTube
|
|
930
|
+
*/
|
|
931
|
+
'model': string;
|
|
932
|
+
/**
|
|
933
|
+
*
|
|
934
|
+
* @type {number}
|
|
935
|
+
* @memberof V1OpticalTube
|
|
936
|
+
*/
|
|
937
|
+
'focalLengthMm': number;
|
|
938
|
+
/**
|
|
939
|
+
*
|
|
940
|
+
* @type {number}
|
|
941
|
+
* @memberof V1OpticalTube
|
|
942
|
+
*/
|
|
943
|
+
'apertureMm': number;
|
|
944
|
+
}
|
|
945
|
+
/**
|
|
946
|
+
* v1SetupAction
|
|
947
|
+
* @export
|
|
948
|
+
* @interface V1SetupAction
|
|
949
|
+
*/
|
|
950
|
+
export interface V1SetupAction {
|
|
951
|
+
/**
|
|
952
|
+
*
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof V1SetupAction
|
|
955
|
+
*/
|
|
956
|
+
'action': string;
|
|
957
|
+
/**
|
|
958
|
+
*
|
|
959
|
+
* @type {Array<string>}
|
|
960
|
+
* @memberof V1SetupAction
|
|
961
|
+
*/
|
|
962
|
+
'arguments'?: Array<string>;
|
|
963
|
+
}
|
|
964
|
+
/**
|
|
965
|
+
* update node metrics
|
|
966
|
+
* @export
|
|
967
|
+
* @interface V1UpdateNodeMetrics
|
|
968
|
+
*/
|
|
969
|
+
export interface V1UpdateNodeMetrics {
|
|
970
|
+
/**
|
|
971
|
+
*
|
|
972
|
+
* @type {string}
|
|
973
|
+
* @memberof V1UpdateNodeMetrics
|
|
974
|
+
*/
|
|
975
|
+
'nodeId': string;
|
|
976
|
+
/**
|
|
977
|
+
*
|
|
978
|
+
* @type {number}
|
|
979
|
+
* @memberof V1UpdateNodeMetrics
|
|
980
|
+
*/
|
|
981
|
+
'availableDiskBytes': number;
|
|
982
|
+
/**
|
|
983
|
+
*
|
|
984
|
+
* @type {number}
|
|
985
|
+
* @memberof V1UpdateNodeMetrics
|
|
986
|
+
*/
|
|
987
|
+
'availableMemoryBytes': number;
|
|
988
|
+
/**
|
|
989
|
+
*
|
|
990
|
+
* @type {number}
|
|
991
|
+
* @memberof V1UpdateNodeMetrics
|
|
992
|
+
*/
|
|
993
|
+
'ntpTimeDriftMs': number;
|
|
994
|
+
/**
|
|
995
|
+
*
|
|
996
|
+
* @type {number}
|
|
997
|
+
* @memberof V1UpdateNodeMetrics
|
|
998
|
+
*/
|
|
999
|
+
'minSlewSpeedMs'?: number;
|
|
1000
|
+
/**
|
|
1001
|
+
*
|
|
1002
|
+
* @type {number}
|
|
1003
|
+
* @memberof V1UpdateNodeMetrics
|
|
1004
|
+
*/
|
|
1005
|
+
'maxSlewSpeedMs'?: number;
|
|
1006
|
+
/**
|
|
1007
|
+
*
|
|
1008
|
+
* @type {number}
|
|
1009
|
+
* @memberof V1UpdateNodeMetrics
|
|
1010
|
+
*/
|
|
1011
|
+
'minSlewAndCenterSpeedMs'?: number;
|
|
1012
|
+
/**
|
|
1013
|
+
*
|
|
1014
|
+
* @type {number}
|
|
1015
|
+
* @memberof V1UpdateNodeMetrics
|
|
1016
|
+
*/
|
|
1017
|
+
'maxSlewAndCenterSpeedMs'?: number;
|
|
1018
|
+
/**
|
|
1019
|
+
*
|
|
1020
|
+
* @type {number}
|
|
1021
|
+
* @memberof V1UpdateNodeMetrics
|
|
1022
|
+
*/
|
|
1023
|
+
'minSlewAccuracyArcseconds'?: number;
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @type {number}
|
|
1027
|
+
* @memberof V1UpdateNodeMetrics
|
|
1028
|
+
*/
|
|
1029
|
+
'maxSlewAccuracyArcseconds'?: number;
|
|
1030
|
+
/**
|
|
1031
|
+
*
|
|
1032
|
+
* @type {string}
|
|
1033
|
+
* @memberof V1UpdateNodeMetrics
|
|
1034
|
+
*/
|
|
1035
|
+
'measuredAt': string;
|
|
1036
|
+
}
|
|
1037
|
+
/**
|
|
1038
|
+
* v2ObservationInstruction
|
|
1039
|
+
* @export
|
|
1040
|
+
* @interface V2GetObservation
|
|
1041
|
+
*/
|
|
1042
|
+
export interface V2GetObservation {
|
|
1043
|
+
/**
|
|
1044
|
+
*
|
|
1045
|
+
* @type {string}
|
|
1046
|
+
* @memberof V2GetObservation
|
|
1047
|
+
*/
|
|
1048
|
+
'id': string;
|
|
1049
|
+
/**
|
|
1050
|
+
*
|
|
1051
|
+
* @type {string}
|
|
1052
|
+
* @memberof V2GetObservation
|
|
1053
|
+
*/
|
|
1054
|
+
'imageSetId': string;
|
|
1055
|
+
/**
|
|
1056
|
+
*
|
|
1057
|
+
* @type {string}
|
|
1058
|
+
* @memberof V2GetObservation
|
|
1059
|
+
*/
|
|
1060
|
+
'targetId': string;
|
|
1061
|
+
/**
|
|
1062
|
+
*
|
|
1063
|
+
* @type {TrackingType}
|
|
1064
|
+
* @memberof V2GetObservation
|
|
1065
|
+
*/
|
|
1066
|
+
'trackingType': TrackingType;
|
|
1067
|
+
/**
|
|
1068
|
+
*
|
|
1069
|
+
* @type {number}
|
|
1070
|
+
* @memberof V2GetObservation
|
|
1071
|
+
*/
|
|
1072
|
+
'exposureDuration': number;
|
|
1073
|
+
/**
|
|
1074
|
+
*
|
|
1075
|
+
* @type {number}
|
|
1076
|
+
* @memberof V2GetObservation
|
|
1077
|
+
*/
|
|
1078
|
+
'binning': number;
|
|
1079
|
+
/**
|
|
1080
|
+
*
|
|
1081
|
+
* @type {number}
|
|
1082
|
+
* @memberof V2GetObservation
|
|
1083
|
+
*/
|
|
1084
|
+
'gain': number;
|
|
1085
|
+
/**
|
|
1086
|
+
*
|
|
1087
|
+
* @type {number}
|
|
1088
|
+
* @memberof V2GetObservation
|
|
1089
|
+
*/
|
|
1090
|
+
'gainMode': number;
|
|
1091
|
+
/**
|
|
1092
|
+
*
|
|
1093
|
+
* @type {number}
|
|
1094
|
+
* @memberof V2GetObservation
|
|
1095
|
+
*/
|
|
1096
|
+
'ra': number;
|
|
1097
|
+
/**
|
|
1098
|
+
*
|
|
1099
|
+
* @type {number}
|
|
1100
|
+
* @memberof V2GetObservation
|
|
1101
|
+
*/
|
|
1102
|
+
'dec': number;
|
|
1103
|
+
/**
|
|
1104
|
+
*
|
|
1105
|
+
* @type {string}
|
|
1106
|
+
* @memberof V2GetObservation
|
|
1107
|
+
*/
|
|
1108
|
+
'captureStart': string;
|
|
1109
|
+
/**
|
|
1110
|
+
*
|
|
1111
|
+
* @type {string}
|
|
1112
|
+
* @memberof V2GetObservation
|
|
1113
|
+
*/
|
|
1114
|
+
'captureEnd': string;
|
|
1115
|
+
/**
|
|
1116
|
+
*
|
|
1117
|
+
* @type {number}
|
|
1118
|
+
* @memberof V2GetObservation
|
|
1119
|
+
*/
|
|
1120
|
+
'preCaptureWait': number;
|
|
1121
|
+
/**
|
|
1122
|
+
*
|
|
1123
|
+
* @type {string}
|
|
1124
|
+
* @memberof V2GetObservation
|
|
1125
|
+
*/
|
|
1126
|
+
'startSlewAt': string;
|
|
1127
|
+
/**
|
|
1128
|
+
*
|
|
1129
|
+
* @type {CameraMode}
|
|
1130
|
+
* @memberof V2GetObservation
|
|
1131
|
+
*/
|
|
1132
|
+
'cameraMode': CameraMode;
|
|
1133
|
+
/**
|
|
1134
|
+
*
|
|
1135
|
+
* @type {string}
|
|
1136
|
+
* @memberof V2GetObservation
|
|
1137
|
+
*/
|
|
1138
|
+
'tleLine1': string;
|
|
1139
|
+
/**
|
|
1140
|
+
*
|
|
1141
|
+
* @type {string}
|
|
1142
|
+
* @memberof V2GetObservation
|
|
1143
|
+
*/
|
|
1144
|
+
'tleLine2': string;
|
|
1145
|
+
}
|
|
1146
|
+
/**
|
|
1147
|
+
* DefaultApi - axios parameter creator
|
|
1148
|
+
* @export
|
|
1149
|
+
*/
|
|
1150
|
+
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1151
|
+
/**
|
|
1152
|
+
* match camera
|
|
1153
|
+
* @param {string} [model]
|
|
1154
|
+
* @param {number} [pixelSizeMicrons]
|
|
1155
|
+
* @param {number} [pixelsX]
|
|
1156
|
+
* @param {number} [pixelsY]
|
|
1157
|
+
* @param {number} [megapixels]
|
|
1158
|
+
* @param {boolean} [chilled]
|
|
1159
|
+
* @param {number} [adcBitDepth]
|
|
1160
|
+
* @param {boolean} [isColor]
|
|
1161
|
+
* @param {*} [options] Override http request option.
|
|
1162
|
+
* @throws {RequiredError}
|
|
1163
|
+
*/
|
|
1164
|
+
v1CameraMatch: (model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1165
|
+
/**
|
|
1166
|
+
* complete an observation
|
|
1167
|
+
* @param {V1CompleteObservation} v1CompleteObservation request to complete an observation
|
|
1168
|
+
* @param {*} [options] Override http request option.
|
|
1169
|
+
* @throws {RequiredError}
|
|
1170
|
+
*/
|
|
1171
|
+
v1CompleteObservation: (v1CompleteObservation: V1CompleteObservation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1172
|
+
/**
|
|
1173
|
+
* create an image set
|
|
1174
|
+
* @param {V1CreateImageSet} v1CreateImageSet request to create the Image Set
|
|
1175
|
+
* @param {*} [options] Override http request option.
|
|
1176
|
+
* @throws {RequiredError}
|
|
1177
|
+
*/
|
|
1178
|
+
v1CreateImageSet: (v1CreateImageSet: V1CreateImageSet, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1179
|
+
/**
|
|
1180
|
+
* create an image set image
|
|
1181
|
+
* @param {V1CreateImageSetImage} v1CreateImageSetImage request to create an image set image
|
|
1182
|
+
* @param {*} [options] Override http request option.
|
|
1183
|
+
* @throws {RequiredError}
|
|
1184
|
+
*/
|
|
1185
|
+
v1CreateImageSetImage: (v1CreateImageSetImage: V1CreateImageSetImage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1186
|
+
/**
|
|
1187
|
+
* create metrics
|
|
1188
|
+
* @param {Array<V1Metric>} v1Metric request to create metrics
|
|
1189
|
+
* @param {*} [options] Override http request option.
|
|
1190
|
+
* @throws {RequiredError}
|
|
1191
|
+
*/
|
|
1192
|
+
v1CreateMetrics: (v1Metric: Array<V1Metric>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1193
|
+
/**
|
|
1194
|
+
* create a mount
|
|
1195
|
+
* @param {V1CreateMount} v1CreateMount request to create a mount
|
|
1196
|
+
* @param {*} [options] Override http request option.
|
|
1197
|
+
* @throws {RequiredError}
|
|
1198
|
+
*/
|
|
1199
|
+
v1CreateMount: (v1CreateMount: V1CreateMount, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1200
|
+
/**
|
|
1201
|
+
* create an optical tube
|
|
1202
|
+
* @param {V1CreateOpticalTube} v1CreateOpticalTube request to create an optical tube
|
|
1203
|
+
* @param {*} [options] Override http request option.
|
|
1204
|
+
* @throws {RequiredError}
|
|
1205
|
+
*/
|
|
1206
|
+
v1CreateOpticalTube: (v1CreateOpticalTube: V1CreateOpticalTube, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1207
|
+
/**
|
|
1208
|
+
* get all cameras
|
|
1209
|
+
* @param {*} [options] Override http request option.
|
|
1210
|
+
* @throws {RequiredError}
|
|
1211
|
+
*/
|
|
1212
|
+
v1GetCameras: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1213
|
+
/**
|
|
1214
|
+
* get an image set
|
|
1215
|
+
* @param {string} id
|
|
1216
|
+
* @param {*} [options] Override http request option.
|
|
1217
|
+
* @throws {RequiredError}
|
|
1218
|
+
*/
|
|
1219
|
+
v1GetImageSet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1220
|
+
/**
|
|
1221
|
+
* get an image
|
|
1222
|
+
* @param {string} imageId
|
|
1223
|
+
* @param {*} [options] Override http request option.
|
|
1224
|
+
* @throws {RequiredError}
|
|
1225
|
+
*/
|
|
1226
|
+
v1GetImageSetImage: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1227
|
+
/**
|
|
1228
|
+
* get a mount
|
|
1229
|
+
* @param {string} id
|
|
1230
|
+
* @param {*} [options] Override http request option.
|
|
1231
|
+
* @throws {RequiredError}
|
|
1232
|
+
*/
|
|
1233
|
+
v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1234
|
+
/**
|
|
1235
|
+
* get the current properties of a node
|
|
1236
|
+
* @param {string} nodeId
|
|
1237
|
+
* @param {*} [options] Override http request option.
|
|
1238
|
+
* @throws {RequiredError}
|
|
1239
|
+
*/
|
|
1240
|
+
v1GetNodeProperties: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1241
|
+
/**
|
|
1242
|
+
* get all nodes
|
|
1243
|
+
* @param {*} [options] Override http request option.
|
|
1244
|
+
* @throws {RequiredError}
|
|
1245
|
+
*/
|
|
1246
|
+
v1GetNodes: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1247
|
+
/**
|
|
1248
|
+
* get observatories
|
|
1249
|
+
* @param {*} [options] Override http request option.
|
|
1250
|
+
* @throws {RequiredError}
|
|
1251
|
+
*/
|
|
1252
|
+
v1GetObservatories: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1253
|
+
/**
|
|
1254
|
+
* get an optical tube
|
|
1255
|
+
* @param {string} id
|
|
1256
|
+
* @param {*} [options] Override http request option.
|
|
1257
|
+
* @throws {RequiredError}
|
|
1258
|
+
*/
|
|
1259
|
+
v1GetOpticalTube: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1260
|
+
/**
|
|
1261
|
+
* match mount
|
|
1262
|
+
* @param {string} [model]
|
|
1263
|
+
* @param {*} [options] Override http request option.
|
|
1264
|
+
* @throws {RequiredError}
|
|
1265
|
+
*/
|
|
1266
|
+
v1MountMatch: (model?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1267
|
+
/**
|
|
1268
|
+
* match optical tube
|
|
1269
|
+
* @param {string} [model]
|
|
1270
|
+
* @param {number} [focalLengthMm]
|
|
1271
|
+
* @param {number} [apertureMm]
|
|
1272
|
+
* @param {*} [options] Override http request option.
|
|
1273
|
+
* @throws {RequiredError}
|
|
1274
|
+
*/
|
|
1275
|
+
v1OpticalTubeMatch: (model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1276
|
+
/**
|
|
1277
|
+
* update node metrics
|
|
1278
|
+
* @param {V1UpdateNodeMetrics} v1UpdateNodeMetrics request to update node metrics
|
|
1279
|
+
* @param {*} [options] Override http request option.
|
|
1280
|
+
* @throws {RequiredError}
|
|
1281
|
+
*/
|
|
1282
|
+
v1UpdateNodeMetrics: (v1UpdateNodeMetrics: V1UpdateNodeMetrics, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1283
|
+
/**
|
|
1284
|
+
* get next observation
|
|
1285
|
+
* @param {string} nodeId
|
|
1286
|
+
* @param {*} [options] Override http request option.
|
|
1287
|
+
* @throws {RequiredError}
|
|
1288
|
+
*/
|
|
1289
|
+
v2GetObservation: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1290
|
+
};
|
|
1291
|
+
/**
|
|
1292
|
+
* DefaultApi - functional programming interface
|
|
1293
|
+
* @export
|
|
1294
|
+
*/
|
|
1295
|
+
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
1296
|
+
/**
|
|
1297
|
+
* match camera
|
|
1298
|
+
* @param {string} [model]
|
|
1299
|
+
* @param {number} [pixelSizeMicrons]
|
|
1300
|
+
* @param {number} [pixelsX]
|
|
1301
|
+
* @param {number} [pixelsY]
|
|
1302
|
+
* @param {number} [megapixels]
|
|
1303
|
+
* @param {boolean} [chilled]
|
|
1304
|
+
* @param {number} [adcBitDepth]
|
|
1305
|
+
* @param {boolean} [isColor]
|
|
1306
|
+
* @param {*} [options] Override http request option.
|
|
1307
|
+
* @throws {RequiredError}
|
|
1308
|
+
*/
|
|
1309
|
+
v1CameraMatch(model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
|
|
1310
|
+
/**
|
|
1311
|
+
* complete an observation
|
|
1312
|
+
* @param {V1CompleteObservation} v1CompleteObservation request to complete an observation
|
|
1313
|
+
* @param {*} [options] Override http request option.
|
|
1314
|
+
* @throws {RequiredError}
|
|
1315
|
+
*/
|
|
1316
|
+
v1CompleteObservation(v1CompleteObservation: V1CompleteObservation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
1317
|
+
/**
|
|
1318
|
+
* create an image set
|
|
1319
|
+
* @param {V1CreateImageSet} v1CreateImageSet request to create the Image Set
|
|
1320
|
+
* @param {*} [options] Override http request option.
|
|
1321
|
+
* @throws {RequiredError}
|
|
1322
|
+
*/
|
|
1323
|
+
v1CreateImageSet(v1CreateImageSet: V1CreateImageSet, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1324
|
+
/**
|
|
1325
|
+
* create an image set image
|
|
1326
|
+
* @param {V1CreateImageSetImage} v1CreateImageSetImage request to create an image set image
|
|
1327
|
+
* @param {*} [options] Override http request option.
|
|
1328
|
+
* @throws {RequiredError}
|
|
1329
|
+
*/
|
|
1330
|
+
v1CreateImageSetImage(v1CreateImageSetImage: V1CreateImageSetImage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
|
|
1331
|
+
/**
|
|
1332
|
+
* create metrics
|
|
1333
|
+
* @param {Array<V1Metric>} v1Metric request to create metrics
|
|
1334
|
+
* @param {*} [options] Override http request option.
|
|
1335
|
+
* @throws {RequiredError}
|
|
1336
|
+
*/
|
|
1337
|
+
v1CreateMetrics(v1Metric: Array<V1Metric>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
1338
|
+
/**
|
|
1339
|
+
* create a mount
|
|
1340
|
+
* @param {V1CreateMount} v1CreateMount request to create a mount
|
|
1341
|
+
* @param {*} [options] Override http request option.
|
|
1342
|
+
* @throws {RequiredError}
|
|
1343
|
+
*/
|
|
1344
|
+
v1CreateMount(v1CreateMount: V1CreateMount, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1345
|
+
/**
|
|
1346
|
+
* create an optical tube
|
|
1347
|
+
* @param {V1CreateOpticalTube} v1CreateOpticalTube request to create an optical tube
|
|
1348
|
+
* @param {*} [options] Override http request option.
|
|
1349
|
+
* @throws {RequiredError}
|
|
1350
|
+
*/
|
|
1351
|
+
v1CreateOpticalTube(v1CreateOpticalTube: V1CreateOpticalTube, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
1352
|
+
/**
|
|
1353
|
+
* get all cameras
|
|
1354
|
+
* @param {*} [options] Override http request option.
|
|
1355
|
+
* @throws {RequiredError}
|
|
1356
|
+
*/
|
|
1357
|
+
v1GetCameras(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
|
|
1358
|
+
/**
|
|
1359
|
+
* get an image set
|
|
1360
|
+
* @param {string} id
|
|
1361
|
+
* @param {*} [options] Override http request option.
|
|
1362
|
+
* @throws {RequiredError}
|
|
1363
|
+
*/
|
|
1364
|
+
v1GetImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageSet>>;
|
|
1365
|
+
/**
|
|
1366
|
+
* get an image
|
|
1367
|
+
* @param {string} imageId
|
|
1368
|
+
* @param {*} [options] Override http request option.
|
|
1369
|
+
* @throws {RequiredError}
|
|
1370
|
+
*/
|
|
1371
|
+
v1GetImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageSetImage>>;
|
|
1372
|
+
/**
|
|
1373
|
+
* get a mount
|
|
1374
|
+
* @param {string} id
|
|
1375
|
+
* @param {*} [options] Override http request option.
|
|
1376
|
+
* @throws {RequiredError}
|
|
1377
|
+
*/
|
|
1378
|
+
v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
|
|
1379
|
+
/**
|
|
1380
|
+
* get the current properties of a node
|
|
1381
|
+
* @param {string} nodeId
|
|
1382
|
+
* @param {*} [options] Override http request option.
|
|
1383
|
+
* @throws {RequiredError}
|
|
1384
|
+
*/
|
|
1385
|
+
v1GetNodeProperties(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroundStationParticipant>>;
|
|
1386
|
+
/**
|
|
1387
|
+
* get all nodes
|
|
1388
|
+
* @param {*} [options] Override http request option.
|
|
1389
|
+
* @throws {RequiredError}
|
|
1390
|
+
*/
|
|
1391
|
+
v1GetNodes(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetNodes>>;
|
|
1392
|
+
/**
|
|
1393
|
+
* get observatories
|
|
1394
|
+
* @param {*} [options] Override http request option.
|
|
1395
|
+
* @throws {RequiredError}
|
|
1396
|
+
*/
|
|
1397
|
+
v1GetObservatories(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetObservatories>>;
|
|
1398
|
+
/**
|
|
1399
|
+
* get an optical tube
|
|
1400
|
+
* @param {string} id
|
|
1401
|
+
* @param {*} [options] Override http request option.
|
|
1402
|
+
* @throws {RequiredError}
|
|
1403
|
+
*/
|
|
1404
|
+
v1GetOpticalTube(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OpticalTube>>;
|
|
1405
|
+
/**
|
|
1406
|
+
* match mount
|
|
1407
|
+
* @param {string} [model]
|
|
1408
|
+
* @param {*} [options] Override http request option.
|
|
1409
|
+
* @throws {RequiredError}
|
|
1410
|
+
*/
|
|
1411
|
+
v1MountMatch(model?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>>;
|
|
1412
|
+
/**
|
|
1413
|
+
* match optical tube
|
|
1414
|
+
* @param {string} [model]
|
|
1415
|
+
* @param {number} [focalLengthMm]
|
|
1416
|
+
* @param {number} [apertureMm]
|
|
1417
|
+
* @param {*} [options] Override http request option.
|
|
1418
|
+
* @throws {RequiredError}
|
|
1419
|
+
*/
|
|
1420
|
+
v1OpticalTubeMatch(model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1OpticalTube>>>;
|
|
1421
|
+
/**
|
|
1422
|
+
* update node metrics
|
|
1423
|
+
* @param {V1UpdateNodeMetrics} v1UpdateNodeMetrics request to update node metrics
|
|
1424
|
+
* @param {*} [options] Override http request option.
|
|
1425
|
+
* @throws {RequiredError}
|
|
1426
|
+
*/
|
|
1427
|
+
v1UpdateNodeMetrics(v1UpdateNodeMetrics: V1UpdateNodeMetrics, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
1428
|
+
/**
|
|
1429
|
+
* get next observation
|
|
1430
|
+
* @param {string} nodeId
|
|
1431
|
+
* @param {*} [options] Override http request option.
|
|
1432
|
+
* @throws {RequiredError}
|
|
1433
|
+
*/
|
|
1434
|
+
v2GetObservation(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2GetObservation>>;
|
|
1435
|
+
};
|
|
1436
|
+
/**
|
|
1437
|
+
* DefaultApi - factory interface
|
|
1438
|
+
* @export
|
|
1439
|
+
*/
|
|
1440
|
+
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1441
|
+
/**
|
|
1442
|
+
* match camera
|
|
1443
|
+
* @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
|
|
1444
|
+
* @param {*} [options] Override http request option.
|
|
1445
|
+
* @throws {RequiredError}
|
|
1446
|
+
*/
|
|
1447
|
+
v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
|
|
1448
|
+
/**
|
|
1449
|
+
* complete an observation
|
|
1450
|
+
* @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
|
|
1451
|
+
* @param {*} [options] Override http request option.
|
|
1452
|
+
* @throws {RequiredError}
|
|
1453
|
+
*/
|
|
1454
|
+
v1CompleteObservation(requestParameters: DefaultApiV1CompleteObservationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
1455
|
+
/**
|
|
1456
|
+
* create an image set
|
|
1457
|
+
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
1458
|
+
* @param {*} [options] Override http request option.
|
|
1459
|
+
* @throws {RequiredError}
|
|
1460
|
+
*/
|
|
1461
|
+
v1CreateImageSet(requestParameters: DefaultApiV1CreateImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
1462
|
+
/**
|
|
1463
|
+
* create an image set image
|
|
1464
|
+
* @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
|
|
1465
|
+
* @param {*} [options] Override http request option.
|
|
1466
|
+
* @throws {RequiredError}
|
|
1467
|
+
*/
|
|
1468
|
+
v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
|
|
1469
|
+
/**
|
|
1470
|
+
* create metrics
|
|
1471
|
+
* @param {DefaultApiV1CreateMetricsRequest} requestParameters Request parameters.
|
|
1472
|
+
* @param {*} [options] Override http request option.
|
|
1473
|
+
* @throws {RequiredError}
|
|
1474
|
+
*/
|
|
1475
|
+
v1CreateMetrics(requestParameters: DefaultApiV1CreateMetricsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
1476
|
+
/**
|
|
1477
|
+
* create a mount
|
|
1478
|
+
* @param {DefaultApiV1CreateMountRequest} requestParameters Request parameters.
|
|
1479
|
+
* @param {*} [options] Override http request option.
|
|
1480
|
+
* @throws {RequiredError}
|
|
1481
|
+
*/
|
|
1482
|
+
v1CreateMount(requestParameters: DefaultApiV1CreateMountRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
1483
|
+
/**
|
|
1484
|
+
* create an optical tube
|
|
1485
|
+
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
1486
|
+
* @param {*} [options] Override http request option.
|
|
1487
|
+
* @throws {RequiredError}
|
|
1488
|
+
*/
|
|
1489
|
+
v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
1490
|
+
/**
|
|
1491
|
+
* get all cameras
|
|
1492
|
+
* @param {*} [options] Override http request option.
|
|
1493
|
+
* @throws {RequiredError}
|
|
1494
|
+
*/
|
|
1495
|
+
v1GetCameras(options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
|
|
1496
|
+
/**
|
|
1497
|
+
* get an image set
|
|
1498
|
+
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
1499
|
+
* @param {*} [options] Override http request option.
|
|
1500
|
+
* @throws {RequiredError}
|
|
1501
|
+
*/
|
|
1502
|
+
v1GetImageSet(requestParameters: DefaultApiV1GetImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageSet>;
|
|
1503
|
+
/**
|
|
1504
|
+
* get an image
|
|
1505
|
+
* @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
|
|
1506
|
+
* @param {*} [options] Override http request option.
|
|
1507
|
+
* @throws {RequiredError}
|
|
1508
|
+
*/
|
|
1509
|
+
v1GetImageSetImage(requestParameters: DefaultApiV1GetImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageSetImage>;
|
|
1510
|
+
/**
|
|
1511
|
+
* get a mount
|
|
1512
|
+
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|
|
1513
|
+
* @param {*} [options] Override http request option.
|
|
1514
|
+
* @throws {RequiredError}
|
|
1515
|
+
*/
|
|
1516
|
+
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
|
|
1517
|
+
/**
|
|
1518
|
+
* get the current properties of a node
|
|
1519
|
+
* @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
|
|
1520
|
+
* @param {*} [options] Override http request option.
|
|
1521
|
+
* @throws {RequiredError}
|
|
1522
|
+
*/
|
|
1523
|
+
v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<GroundStationParticipant>;
|
|
1524
|
+
/**
|
|
1525
|
+
* get all nodes
|
|
1526
|
+
* @param {*} [options] Override http request option.
|
|
1527
|
+
* @throws {RequiredError}
|
|
1528
|
+
*/
|
|
1529
|
+
v1GetNodes(options?: AxiosRequestConfig): AxiosPromise<V1GetNodes>;
|
|
1530
|
+
/**
|
|
1531
|
+
* get observatories
|
|
1532
|
+
* @param {*} [options] Override http request option.
|
|
1533
|
+
* @throws {RequiredError}
|
|
1534
|
+
*/
|
|
1535
|
+
v1GetObservatories(options?: AxiosRequestConfig): AxiosPromise<V1GetObservatories>;
|
|
1536
|
+
/**
|
|
1537
|
+
* get an optical tube
|
|
1538
|
+
* @param {DefaultApiV1GetOpticalTubeRequest} requestParameters Request parameters.
|
|
1539
|
+
* @param {*} [options] Override http request option.
|
|
1540
|
+
* @throws {RequiredError}
|
|
1541
|
+
*/
|
|
1542
|
+
v1GetOpticalTube(requestParameters: DefaultApiV1GetOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube>;
|
|
1543
|
+
/**
|
|
1544
|
+
* match mount
|
|
1545
|
+
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
1546
|
+
* @param {*} [options] Override http request option.
|
|
1547
|
+
* @throws {RequiredError}
|
|
1548
|
+
*/
|
|
1549
|
+
v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>>;
|
|
1550
|
+
/**
|
|
1551
|
+
* match optical tube
|
|
1552
|
+
* @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
|
|
1553
|
+
* @param {*} [options] Override http request option.
|
|
1554
|
+
* @throws {RequiredError}
|
|
1555
|
+
*/
|
|
1556
|
+
v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1OpticalTube>>;
|
|
1557
|
+
/**
|
|
1558
|
+
* update node metrics
|
|
1559
|
+
* @param {DefaultApiV1UpdateNodeMetricsRequest} requestParameters Request parameters.
|
|
1560
|
+
* @param {*} [options] Override http request option.
|
|
1561
|
+
* @throws {RequiredError}
|
|
1562
|
+
*/
|
|
1563
|
+
v1UpdateNodeMetrics(requestParameters: DefaultApiV1UpdateNodeMetricsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
1564
|
+
/**
|
|
1565
|
+
* get next observation
|
|
1566
|
+
* @param {DefaultApiV2GetObservationRequest} requestParameters Request parameters.
|
|
1567
|
+
* @param {*} [options] Override http request option.
|
|
1568
|
+
* @throws {RequiredError}
|
|
1569
|
+
*/
|
|
1570
|
+
v2GetObservation(requestParameters: DefaultApiV2GetObservationRequest, options?: AxiosRequestConfig): AxiosPromise<V2GetObservation>;
|
|
1571
|
+
};
|
|
1572
|
+
/**
|
|
1573
|
+
* Request parameters for v1CameraMatch operation in DefaultApi.
|
|
1574
|
+
* @export
|
|
1575
|
+
* @interface DefaultApiV1CameraMatchRequest
|
|
1576
|
+
*/
|
|
1577
|
+
export interface DefaultApiV1CameraMatchRequest {
|
|
1578
|
+
/**
|
|
1579
|
+
*
|
|
1580
|
+
* @type {string}
|
|
1581
|
+
* @memberof DefaultApiV1CameraMatch
|
|
1582
|
+
*/
|
|
1583
|
+
readonly model?: string;
|
|
1584
|
+
/**
|
|
1585
|
+
*
|
|
1586
|
+
* @type {number}
|
|
1587
|
+
* @memberof DefaultApiV1CameraMatch
|
|
1588
|
+
*/
|
|
1589
|
+
readonly pixelSizeMicrons?: number;
|
|
1590
|
+
/**
|
|
1591
|
+
*
|
|
1592
|
+
* @type {number}
|
|
1593
|
+
* @memberof DefaultApiV1CameraMatch
|
|
1594
|
+
*/
|
|
1595
|
+
readonly pixelsX?: number;
|
|
1596
|
+
/**
|
|
1597
|
+
*
|
|
1598
|
+
* @type {number}
|
|
1599
|
+
* @memberof DefaultApiV1CameraMatch
|
|
1600
|
+
*/
|
|
1601
|
+
readonly pixelsY?: number;
|
|
1602
|
+
/**
|
|
1603
|
+
*
|
|
1604
|
+
* @type {number}
|
|
1605
|
+
* @memberof DefaultApiV1CameraMatch
|
|
1606
|
+
*/
|
|
1607
|
+
readonly megapixels?: number;
|
|
1608
|
+
/**
|
|
1609
|
+
*
|
|
1610
|
+
* @type {boolean}
|
|
1611
|
+
* @memberof DefaultApiV1CameraMatch
|
|
1612
|
+
*/
|
|
1613
|
+
readonly chilled?: boolean;
|
|
1614
|
+
/**
|
|
1615
|
+
*
|
|
1616
|
+
* @type {number}
|
|
1617
|
+
* @memberof DefaultApiV1CameraMatch
|
|
1618
|
+
*/
|
|
1619
|
+
readonly adcBitDepth?: number;
|
|
1620
|
+
/**
|
|
1621
|
+
*
|
|
1622
|
+
* @type {boolean}
|
|
1623
|
+
* @memberof DefaultApiV1CameraMatch
|
|
1624
|
+
*/
|
|
1625
|
+
readonly isColor?: boolean;
|
|
1626
|
+
}
|
|
1627
|
+
/**
|
|
1628
|
+
* Request parameters for v1CompleteObservation operation in DefaultApi.
|
|
1629
|
+
* @export
|
|
1630
|
+
* @interface DefaultApiV1CompleteObservationRequest
|
|
1631
|
+
*/
|
|
1632
|
+
export interface DefaultApiV1CompleteObservationRequest {
|
|
1633
|
+
/**
|
|
1634
|
+
* request to complete an observation
|
|
1635
|
+
* @type {V1CompleteObservation}
|
|
1636
|
+
* @memberof DefaultApiV1CompleteObservation
|
|
1637
|
+
*/
|
|
1638
|
+
readonly v1CompleteObservation: V1CompleteObservation;
|
|
1639
|
+
}
|
|
1640
|
+
/**
|
|
1641
|
+
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
1642
|
+
* @export
|
|
1643
|
+
* @interface DefaultApiV1CreateImageSetRequest
|
|
1644
|
+
*/
|
|
1645
|
+
export interface DefaultApiV1CreateImageSetRequest {
|
|
1646
|
+
/**
|
|
1647
|
+
* request to create the Image Set
|
|
1648
|
+
* @type {V1CreateImageSet}
|
|
1649
|
+
* @memberof DefaultApiV1CreateImageSet
|
|
1650
|
+
*/
|
|
1651
|
+
readonly v1CreateImageSet: V1CreateImageSet;
|
|
1652
|
+
}
|
|
1653
|
+
/**
|
|
1654
|
+
* Request parameters for v1CreateImageSetImage operation in DefaultApi.
|
|
1655
|
+
* @export
|
|
1656
|
+
* @interface DefaultApiV1CreateImageSetImageRequest
|
|
1657
|
+
*/
|
|
1658
|
+
export interface DefaultApiV1CreateImageSetImageRequest {
|
|
1659
|
+
/**
|
|
1660
|
+
* request to create an image set image
|
|
1661
|
+
* @type {V1CreateImageSetImage}
|
|
1662
|
+
* @memberof DefaultApiV1CreateImageSetImage
|
|
1663
|
+
*/
|
|
1664
|
+
readonly v1CreateImageSetImage: V1CreateImageSetImage;
|
|
1665
|
+
}
|
|
1666
|
+
/**
|
|
1667
|
+
* Request parameters for v1CreateMetrics operation in DefaultApi.
|
|
1668
|
+
* @export
|
|
1669
|
+
* @interface DefaultApiV1CreateMetricsRequest
|
|
1670
|
+
*/
|
|
1671
|
+
export interface DefaultApiV1CreateMetricsRequest {
|
|
1672
|
+
/**
|
|
1673
|
+
* request to create metrics
|
|
1674
|
+
* @type {Array<V1Metric>}
|
|
1675
|
+
* @memberof DefaultApiV1CreateMetrics
|
|
1676
|
+
*/
|
|
1677
|
+
readonly v1Metric: Array<V1Metric>;
|
|
1678
|
+
}
|
|
1679
|
+
/**
|
|
1680
|
+
* Request parameters for v1CreateMount operation in DefaultApi.
|
|
1681
|
+
* @export
|
|
1682
|
+
* @interface DefaultApiV1CreateMountRequest
|
|
1683
|
+
*/
|
|
1684
|
+
export interface DefaultApiV1CreateMountRequest {
|
|
1685
|
+
/**
|
|
1686
|
+
* request to create a mount
|
|
1687
|
+
* @type {V1CreateMount}
|
|
1688
|
+
* @memberof DefaultApiV1CreateMount
|
|
1689
|
+
*/
|
|
1690
|
+
readonly v1CreateMount: V1CreateMount;
|
|
1691
|
+
}
|
|
1692
|
+
/**
|
|
1693
|
+
* Request parameters for v1CreateOpticalTube operation in DefaultApi.
|
|
1694
|
+
* @export
|
|
1695
|
+
* @interface DefaultApiV1CreateOpticalTubeRequest
|
|
1696
|
+
*/
|
|
1697
|
+
export interface DefaultApiV1CreateOpticalTubeRequest {
|
|
1698
|
+
/**
|
|
1699
|
+
* request to create an optical tube
|
|
1700
|
+
* @type {V1CreateOpticalTube}
|
|
1701
|
+
* @memberof DefaultApiV1CreateOpticalTube
|
|
1702
|
+
*/
|
|
1703
|
+
readonly v1CreateOpticalTube: V1CreateOpticalTube;
|
|
1704
|
+
}
|
|
1705
|
+
/**
|
|
1706
|
+
* Request parameters for v1GetImageSet operation in DefaultApi.
|
|
1707
|
+
* @export
|
|
1708
|
+
* @interface DefaultApiV1GetImageSetRequest
|
|
1709
|
+
*/
|
|
1710
|
+
export interface DefaultApiV1GetImageSetRequest {
|
|
1711
|
+
/**
|
|
1712
|
+
*
|
|
1713
|
+
* @type {string}
|
|
1714
|
+
* @memberof DefaultApiV1GetImageSet
|
|
1715
|
+
*/
|
|
1716
|
+
readonly id: string;
|
|
1717
|
+
}
|
|
1718
|
+
/**
|
|
1719
|
+
* Request parameters for v1GetImageSetImage operation in DefaultApi.
|
|
1720
|
+
* @export
|
|
1721
|
+
* @interface DefaultApiV1GetImageSetImageRequest
|
|
1722
|
+
*/
|
|
1723
|
+
export interface DefaultApiV1GetImageSetImageRequest {
|
|
1724
|
+
/**
|
|
1725
|
+
*
|
|
1726
|
+
* @type {string}
|
|
1727
|
+
* @memberof DefaultApiV1GetImageSetImage
|
|
1728
|
+
*/
|
|
1729
|
+
readonly imageId: string;
|
|
1730
|
+
}
|
|
1731
|
+
/**
|
|
1732
|
+
* Request parameters for v1GetMount operation in DefaultApi.
|
|
1733
|
+
* @export
|
|
1734
|
+
* @interface DefaultApiV1GetMountRequest
|
|
1735
|
+
*/
|
|
1736
|
+
export interface DefaultApiV1GetMountRequest {
|
|
1737
|
+
/**
|
|
1738
|
+
*
|
|
1739
|
+
* @type {string}
|
|
1740
|
+
* @memberof DefaultApiV1GetMount
|
|
1741
|
+
*/
|
|
1742
|
+
readonly id: string;
|
|
1743
|
+
}
|
|
1744
|
+
/**
|
|
1745
|
+
* Request parameters for v1GetNodeProperties operation in DefaultApi.
|
|
1746
|
+
* @export
|
|
1747
|
+
* @interface DefaultApiV1GetNodePropertiesRequest
|
|
1748
|
+
*/
|
|
1749
|
+
export interface DefaultApiV1GetNodePropertiesRequest {
|
|
1750
|
+
/**
|
|
1751
|
+
*
|
|
1752
|
+
* @type {string}
|
|
1753
|
+
* @memberof DefaultApiV1GetNodeProperties
|
|
1754
|
+
*/
|
|
1755
|
+
readonly nodeId: string;
|
|
1756
|
+
}
|
|
1757
|
+
/**
|
|
1758
|
+
* Request parameters for v1GetOpticalTube operation in DefaultApi.
|
|
1759
|
+
* @export
|
|
1760
|
+
* @interface DefaultApiV1GetOpticalTubeRequest
|
|
1761
|
+
*/
|
|
1762
|
+
export interface DefaultApiV1GetOpticalTubeRequest {
|
|
1763
|
+
/**
|
|
1764
|
+
*
|
|
1765
|
+
* @type {string}
|
|
1766
|
+
* @memberof DefaultApiV1GetOpticalTube
|
|
1767
|
+
*/
|
|
1768
|
+
readonly id: string;
|
|
1769
|
+
}
|
|
1770
|
+
/**
|
|
1771
|
+
* Request parameters for v1MountMatch operation in DefaultApi.
|
|
1772
|
+
* @export
|
|
1773
|
+
* @interface DefaultApiV1MountMatchRequest
|
|
1774
|
+
*/
|
|
1775
|
+
export interface DefaultApiV1MountMatchRequest {
|
|
1776
|
+
/**
|
|
1777
|
+
*
|
|
1778
|
+
* @type {string}
|
|
1779
|
+
* @memberof DefaultApiV1MountMatch
|
|
1780
|
+
*/
|
|
1781
|
+
readonly model?: string;
|
|
1782
|
+
}
|
|
1783
|
+
/**
|
|
1784
|
+
* Request parameters for v1OpticalTubeMatch operation in DefaultApi.
|
|
1785
|
+
* @export
|
|
1786
|
+
* @interface DefaultApiV1OpticalTubeMatchRequest
|
|
1787
|
+
*/
|
|
1788
|
+
export interface DefaultApiV1OpticalTubeMatchRequest {
|
|
1789
|
+
/**
|
|
1790
|
+
*
|
|
1791
|
+
* @type {string}
|
|
1792
|
+
* @memberof DefaultApiV1OpticalTubeMatch
|
|
1793
|
+
*/
|
|
1794
|
+
readonly model?: string;
|
|
1795
|
+
/**
|
|
1796
|
+
*
|
|
1797
|
+
* @type {number}
|
|
1798
|
+
* @memberof DefaultApiV1OpticalTubeMatch
|
|
1799
|
+
*/
|
|
1800
|
+
readonly focalLengthMm?: number;
|
|
1801
|
+
/**
|
|
1802
|
+
*
|
|
1803
|
+
* @type {number}
|
|
1804
|
+
* @memberof DefaultApiV1OpticalTubeMatch
|
|
1805
|
+
*/
|
|
1806
|
+
readonly apertureMm?: number;
|
|
1807
|
+
}
|
|
1808
|
+
/**
|
|
1809
|
+
* Request parameters for v1UpdateNodeMetrics operation in DefaultApi.
|
|
1810
|
+
* @export
|
|
1811
|
+
* @interface DefaultApiV1UpdateNodeMetricsRequest
|
|
1812
|
+
*/
|
|
1813
|
+
export interface DefaultApiV1UpdateNodeMetricsRequest {
|
|
1814
|
+
/**
|
|
1815
|
+
* request to update node metrics
|
|
1816
|
+
* @type {V1UpdateNodeMetrics}
|
|
1817
|
+
* @memberof DefaultApiV1UpdateNodeMetrics
|
|
1818
|
+
*/
|
|
1819
|
+
readonly v1UpdateNodeMetrics: V1UpdateNodeMetrics;
|
|
1820
|
+
}
|
|
1821
|
+
/**
|
|
1822
|
+
* Request parameters for v2GetObservation operation in DefaultApi.
|
|
1823
|
+
* @export
|
|
1824
|
+
* @interface DefaultApiV2GetObservationRequest
|
|
1825
|
+
*/
|
|
1826
|
+
export interface DefaultApiV2GetObservationRequest {
|
|
1827
|
+
/**
|
|
1828
|
+
*
|
|
1829
|
+
* @type {string}
|
|
1830
|
+
* @memberof DefaultApiV2GetObservation
|
|
1831
|
+
*/
|
|
1832
|
+
readonly nodeId: string;
|
|
1833
|
+
}
|
|
1834
|
+
/**
|
|
1835
|
+
* DefaultApi - object-oriented interface
|
|
1836
|
+
* @export
|
|
1837
|
+
* @class DefaultApi
|
|
1838
|
+
* @extends {BaseAPI}
|
|
1839
|
+
*/
|
|
1840
|
+
export declare class DefaultApi extends BaseAPI {
|
|
1841
|
+
/**
|
|
1842
|
+
* match camera
|
|
1843
|
+
* @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
|
|
1844
|
+
* @param {*} [options] Override http request option.
|
|
1845
|
+
* @throws {RequiredError}
|
|
1846
|
+
* @memberof DefaultApi
|
|
1847
|
+
*/
|
|
1848
|
+
v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
|
|
1849
|
+
/**
|
|
1850
|
+
* complete an observation
|
|
1851
|
+
* @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
|
|
1852
|
+
* @param {*} [options] Override http request option.
|
|
1853
|
+
* @throws {RequiredError}
|
|
1854
|
+
* @memberof DefaultApi
|
|
1855
|
+
*/
|
|
1856
|
+
v1CompleteObservation(requestParameters: DefaultApiV1CompleteObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
1857
|
+
/**
|
|
1858
|
+
* create an image set
|
|
1859
|
+
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
1860
|
+
* @param {*} [options] Override http request option.
|
|
1861
|
+
* @throws {RequiredError}
|
|
1862
|
+
* @memberof DefaultApi
|
|
1863
|
+
*/
|
|
1864
|
+
v1CreateImageSet(requestParameters: DefaultApiV1CreateImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
1865
|
+
/**
|
|
1866
|
+
* create an image set image
|
|
1867
|
+
* @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
|
|
1868
|
+
* @param {*} [options] Override http request option.
|
|
1869
|
+
* @throws {RequiredError}
|
|
1870
|
+
* @memberof DefaultApi
|
|
1871
|
+
*/
|
|
1872
|
+
v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
|
|
1873
|
+
/**
|
|
1874
|
+
* create metrics
|
|
1875
|
+
* @param {DefaultApiV1CreateMetricsRequest} requestParameters Request parameters.
|
|
1876
|
+
* @param {*} [options] Override http request option.
|
|
1877
|
+
* @throws {RequiredError}
|
|
1878
|
+
* @memberof DefaultApi
|
|
1879
|
+
*/
|
|
1880
|
+
v1CreateMetrics(requestParameters: DefaultApiV1CreateMetricsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
1881
|
+
/**
|
|
1882
|
+
* create a mount
|
|
1883
|
+
* @param {DefaultApiV1CreateMountRequest} requestParameters Request parameters.
|
|
1884
|
+
* @param {*} [options] Override http request option.
|
|
1885
|
+
* @throws {RequiredError}
|
|
1886
|
+
* @memberof DefaultApi
|
|
1887
|
+
*/
|
|
1888
|
+
v1CreateMount(requestParameters: DefaultApiV1CreateMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
1889
|
+
/**
|
|
1890
|
+
* create an optical tube
|
|
1891
|
+
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
1892
|
+
* @param {*} [options] Override http request option.
|
|
1893
|
+
* @throws {RequiredError}
|
|
1894
|
+
* @memberof DefaultApi
|
|
1895
|
+
*/
|
|
1896
|
+
v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
1897
|
+
/**
|
|
1898
|
+
* get all cameras
|
|
1899
|
+
* @param {*} [options] Override http request option.
|
|
1900
|
+
* @throws {RequiredError}
|
|
1901
|
+
* @memberof DefaultApi
|
|
1902
|
+
*/
|
|
1903
|
+
v1GetCameras(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
|
|
1904
|
+
/**
|
|
1905
|
+
* get an image set
|
|
1906
|
+
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
1907
|
+
* @param {*} [options] Override http request option.
|
|
1908
|
+
* @throws {RequiredError}
|
|
1909
|
+
* @memberof DefaultApi
|
|
1910
|
+
*/
|
|
1911
|
+
v1GetImageSet(requestParameters: DefaultApiV1GetImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSet, any>>;
|
|
1912
|
+
/**
|
|
1913
|
+
* get an image
|
|
1914
|
+
* @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
|
|
1915
|
+
* @param {*} [options] Override http request option.
|
|
1916
|
+
* @throws {RequiredError}
|
|
1917
|
+
* @memberof DefaultApi
|
|
1918
|
+
*/
|
|
1919
|
+
v1GetImageSetImage(requestParameters: DefaultApiV1GetImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSetImage, any>>;
|
|
1920
|
+
/**
|
|
1921
|
+
* get a mount
|
|
1922
|
+
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|
|
1923
|
+
* @param {*} [options] Override http request option.
|
|
1924
|
+
* @throws {RequiredError}
|
|
1925
|
+
* @memberof DefaultApi
|
|
1926
|
+
*/
|
|
1927
|
+
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
|
|
1928
|
+
/**
|
|
1929
|
+
* get the current properties of a node
|
|
1930
|
+
* @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
|
|
1931
|
+
* @param {*} [options] Override http request option.
|
|
1932
|
+
* @throws {RequiredError}
|
|
1933
|
+
* @memberof DefaultApi
|
|
1934
|
+
*/
|
|
1935
|
+
v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroundStationParticipant, any>>;
|
|
1936
|
+
/**
|
|
1937
|
+
* get all nodes
|
|
1938
|
+
* @param {*} [options] Override http request option.
|
|
1939
|
+
* @throws {RequiredError}
|
|
1940
|
+
* @memberof DefaultApi
|
|
1941
|
+
*/
|
|
1942
|
+
v1GetNodes(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetNodes, any>>;
|
|
1943
|
+
/**
|
|
1944
|
+
* get observatories
|
|
1945
|
+
* @param {*} [options] Override http request option.
|
|
1946
|
+
* @throws {RequiredError}
|
|
1947
|
+
* @memberof DefaultApi
|
|
1948
|
+
*/
|
|
1949
|
+
v1GetObservatories(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetObservatories, any>>;
|
|
1950
|
+
/**
|
|
1951
|
+
* get an optical tube
|
|
1952
|
+
* @param {DefaultApiV1GetOpticalTubeRequest} requestParameters Request parameters.
|
|
1953
|
+
* @param {*} [options] Override http request option.
|
|
1954
|
+
* @throws {RequiredError}
|
|
1955
|
+
* @memberof DefaultApi
|
|
1956
|
+
*/
|
|
1957
|
+
v1GetOpticalTube(requestParameters: DefaultApiV1GetOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube, any>>;
|
|
1958
|
+
/**
|
|
1959
|
+
* match mount
|
|
1960
|
+
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
1961
|
+
* @param {*} [options] Override http request option.
|
|
1962
|
+
* @throws {RequiredError}
|
|
1963
|
+
* @memberof DefaultApi
|
|
1964
|
+
*/
|
|
1965
|
+
v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount[], any>>;
|
|
1966
|
+
/**
|
|
1967
|
+
* match optical tube
|
|
1968
|
+
* @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
|
|
1969
|
+
* @param {*} [options] Override http request option.
|
|
1970
|
+
* @throws {RequiredError}
|
|
1971
|
+
* @memberof DefaultApi
|
|
1972
|
+
*/
|
|
1973
|
+
v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube[], any>>;
|
|
1974
|
+
/**
|
|
1975
|
+
* update node metrics
|
|
1976
|
+
* @param {DefaultApiV1UpdateNodeMetricsRequest} requestParameters Request parameters.
|
|
1977
|
+
* @param {*} [options] Override http request option.
|
|
1978
|
+
* @throws {RequiredError}
|
|
1979
|
+
* @memberof DefaultApi
|
|
1980
|
+
*/
|
|
1981
|
+
v1UpdateNodeMetrics(requestParameters: DefaultApiV1UpdateNodeMetricsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
1982
|
+
/**
|
|
1983
|
+
* get next observation
|
|
1984
|
+
* @param {DefaultApiV2GetObservationRequest} requestParameters Request parameters.
|
|
1985
|
+
* @param {*} [options] Override http request option.
|
|
1986
|
+
* @throws {RequiredError}
|
|
1987
|
+
* @memberof DefaultApi
|
|
1988
|
+
*/
|
|
1989
|
+
v2GetObservation(requestParameters: DefaultApiV2GetObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2GetObservation, any>>;
|
|
1990
|
+
}
|