@ourskyai/platform-api 1.3.6669 → 1.3.8106
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 +3287 -562
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +2163 -228
- package/dist/api.js +1310 -108
- 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 +2163 -228
- package/dist/esm/api.js +1309 -107
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8106
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -60,6 +60,15 @@ export declare const FilterType: {
|
|
|
60
60
|
readonly PHOTO_JOHNSON_V: "PHOTO_JOHNSON_V";
|
|
61
61
|
readonly PHOTO_COUSINS_R: "PHOTO_COUSINS_R";
|
|
62
62
|
readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
|
|
63
|
+
readonly PHOTO_SLOAN_U: "PHOTO_SLOAN_U";
|
|
64
|
+
readonly PHOTO_SLOAN_G: "PHOTO_SLOAN_G";
|
|
65
|
+
readonly PHOTO_SLOAN_R: "PHOTO_SLOAN_R";
|
|
66
|
+
readonly PHOTO_SLOAN_I: "PHOTO_SLOAN_I";
|
|
67
|
+
readonly PHOTO_SLOAN_Z: "PHOTO_SLOAN_Z";
|
|
68
|
+
readonly TRIPLE_BAND: "TRIPLE_BAND";
|
|
69
|
+
readonly QUAD_BAND: "QUAD_BAND";
|
|
70
|
+
readonly DARK: "DARK";
|
|
71
|
+
readonly OTHER: "OTHER";
|
|
63
72
|
};
|
|
64
73
|
export type FilterType = typeof FilterType[keyof typeof FilterType];
|
|
65
74
|
/**
|
|
@@ -151,6 +160,18 @@ export declare const MountType: {
|
|
|
151
160
|
readonly EQUITORIAL: "EQUITORIAL";
|
|
152
161
|
};
|
|
153
162
|
export type MountType = typeof MountType[keyof typeof MountType];
|
|
163
|
+
/**
|
|
164
|
+
* Network interface types
|
|
165
|
+
* @export
|
|
166
|
+
* @enum {string}
|
|
167
|
+
*/
|
|
168
|
+
export declare const NetworkInterface: {
|
|
169
|
+
readonly ETH0: "eth0";
|
|
170
|
+
readonly ETH1: "eth1";
|
|
171
|
+
readonly ETH2: "eth2";
|
|
172
|
+
readonly WLAN0: "wlan0";
|
|
173
|
+
};
|
|
174
|
+
export type NetworkInterface = typeof NetworkInterface[keyof typeof NetworkInterface];
|
|
154
175
|
/**
|
|
155
176
|
*
|
|
156
177
|
* @export
|
|
@@ -205,6 +226,49 @@ export declare const OrbitType: {
|
|
|
205
226
|
readonly UFO: "UFO";
|
|
206
227
|
};
|
|
207
228
|
export type OrbitType = typeof OrbitType[keyof typeof OrbitType];
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @export
|
|
232
|
+
* @interface PKICertificate
|
|
233
|
+
*/
|
|
234
|
+
export interface PKICertificate {
|
|
235
|
+
/**
|
|
236
|
+
* Root certificate authority
|
|
237
|
+
* @type {string}
|
|
238
|
+
* @memberof PKICertificate
|
|
239
|
+
*/
|
|
240
|
+
'rootCa': string;
|
|
241
|
+
/**
|
|
242
|
+
* Issuing certificate authority
|
|
243
|
+
* @type {string}
|
|
244
|
+
* @memberof PKICertificate
|
|
245
|
+
*/
|
|
246
|
+
'issuingCa': string;
|
|
247
|
+
/**
|
|
248
|
+
* Signed certificate
|
|
249
|
+
* @type {string}
|
|
250
|
+
* @memberof PKICertificate
|
|
251
|
+
*/
|
|
252
|
+
'certificate': string;
|
|
253
|
+
/**
|
|
254
|
+
* Serial number of the certificate
|
|
255
|
+
* @type {string}
|
|
256
|
+
* @memberof PKICertificate
|
|
257
|
+
*/
|
|
258
|
+
'serialNumber': string;
|
|
259
|
+
/**
|
|
260
|
+
* Private key associated with the certificate
|
|
261
|
+
* @type {string}
|
|
262
|
+
* @memberof PKICertificate
|
|
263
|
+
*/
|
|
264
|
+
'privateKey': string;
|
|
265
|
+
/**
|
|
266
|
+
* Type of the private key, e.g., RSA, ECC
|
|
267
|
+
* @type {string}
|
|
268
|
+
* @memberof PKICertificate
|
|
269
|
+
*/
|
|
270
|
+
'privateKeyType': string;
|
|
271
|
+
}
|
|
208
272
|
/**
|
|
209
273
|
*
|
|
210
274
|
* @export
|
|
@@ -355,6 +419,54 @@ export declare const V1AllSkyPredictionLabel: {
|
|
|
355
419
|
readonly UNKNOWN: "UNKNOWN";
|
|
356
420
|
};
|
|
357
421
|
export type V1AllSkyPredictionLabel = typeof V1AllSkyPredictionLabel[keyof typeof V1AllSkyPredictionLabel];
|
|
422
|
+
/**
|
|
423
|
+
*
|
|
424
|
+
* @export
|
|
425
|
+
* @interface V1ApexChartsTimeline
|
|
426
|
+
*/
|
|
427
|
+
export interface V1ApexChartsTimeline {
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @type {Array<V1ApexChartsTimelineElement>}
|
|
431
|
+
* @memberof V1ApexChartsTimeline
|
|
432
|
+
*/
|
|
433
|
+
'data': Array<V1ApexChartsTimelineElement>;
|
|
434
|
+
}
|
|
435
|
+
/**
|
|
436
|
+
*
|
|
437
|
+
* @export
|
|
438
|
+
* @interface V1ApexChartsTimelineElement
|
|
439
|
+
*/
|
|
440
|
+
export interface V1ApexChartsTimelineElement {
|
|
441
|
+
/**
|
|
442
|
+
*
|
|
443
|
+
* @type {string}
|
|
444
|
+
* @memberof V1ApexChartsTimelineElement
|
|
445
|
+
*/
|
|
446
|
+
'x': string;
|
|
447
|
+
/**
|
|
448
|
+
*
|
|
449
|
+
* @type {Array<number>}
|
|
450
|
+
* @memberof V1ApexChartsTimelineElement
|
|
451
|
+
*/
|
|
452
|
+
'y': Array<number>;
|
|
453
|
+
/**
|
|
454
|
+
*
|
|
455
|
+
* @type {string}
|
|
456
|
+
* @memberof V1ApexChartsTimelineElement
|
|
457
|
+
*/
|
|
458
|
+
'tooltip': string;
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
*
|
|
462
|
+
* @export
|
|
463
|
+
* @enum {string}
|
|
464
|
+
*/
|
|
465
|
+
export declare const V1AssetSize: {
|
|
466
|
+
readonly FULL_SIZE: "FULL_SIZE";
|
|
467
|
+
readonly THUMBNAIL: "THUMBNAIL";
|
|
468
|
+
};
|
|
469
|
+
export type V1AssetSize = typeof V1AssetSize[keyof typeof V1AssetSize];
|
|
358
470
|
/**
|
|
359
471
|
* Autofocus Instruction
|
|
360
472
|
* @export
|
|
@@ -515,6 +627,61 @@ export interface V1Camera {
|
|
|
515
627
|
*/
|
|
516
628
|
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
517
629
|
}
|
|
630
|
+
/**
|
|
631
|
+
*
|
|
632
|
+
* @export
|
|
633
|
+
* @interface V1CameraRollImage
|
|
634
|
+
*/
|
|
635
|
+
export interface V1CameraRollImage {
|
|
636
|
+
/**
|
|
637
|
+
*
|
|
638
|
+
* @type {string}
|
|
639
|
+
* @memberof V1CameraRollImage
|
|
640
|
+
*/
|
|
641
|
+
'id': string;
|
|
642
|
+
/**
|
|
643
|
+
*
|
|
644
|
+
* @type {string}
|
|
645
|
+
* @memberof V1CameraRollImage
|
|
646
|
+
*/
|
|
647
|
+
'imageSetId': string;
|
|
648
|
+
/**
|
|
649
|
+
*
|
|
650
|
+
* @type {ImageSetType}
|
|
651
|
+
* @memberof V1CameraRollImage
|
|
652
|
+
*/
|
|
653
|
+
'imageType': ImageSetType;
|
|
654
|
+
/**
|
|
655
|
+
*
|
|
656
|
+
* @type {string}
|
|
657
|
+
* @memberof V1CameraRollImage
|
|
658
|
+
*/
|
|
659
|
+
'thumbnailUrl': string;
|
|
660
|
+
/**
|
|
661
|
+
*
|
|
662
|
+
* @type {string}
|
|
663
|
+
* @memberof V1CameraRollImage
|
|
664
|
+
*/
|
|
665
|
+
'fullSizeJpegUrl': string;
|
|
666
|
+
/**
|
|
667
|
+
*
|
|
668
|
+
* @type {number}
|
|
669
|
+
* @memberof V1CameraRollImage
|
|
670
|
+
*/
|
|
671
|
+
'width'?: number;
|
|
672
|
+
/**
|
|
673
|
+
*
|
|
674
|
+
* @type {number}
|
|
675
|
+
* @memberof V1CameraRollImage
|
|
676
|
+
*/
|
|
677
|
+
'height'?: number;
|
|
678
|
+
/**
|
|
679
|
+
*
|
|
680
|
+
* @type {string}
|
|
681
|
+
* @memberof V1CameraRollImage
|
|
682
|
+
*/
|
|
683
|
+
'capturedAt': string;
|
|
684
|
+
}
|
|
518
685
|
/**
|
|
519
686
|
*
|
|
520
687
|
* @export
|
|
@@ -622,6 +789,19 @@ export interface V1CreateAutofocusResultRequest {
|
|
|
622
789
|
*/
|
|
623
790
|
'hfrAfter': number;
|
|
624
791
|
}
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @export
|
|
795
|
+
* @interface V1CreateFilterWheelRequest
|
|
796
|
+
*/
|
|
797
|
+
export interface V1CreateFilterWheelRequest {
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {Array<FilterType>}
|
|
801
|
+
* @memberof V1CreateFilterWheelRequest
|
|
802
|
+
*/
|
|
803
|
+
'filters': Array<FilterType>;
|
|
804
|
+
}
|
|
625
805
|
/**
|
|
626
806
|
*
|
|
627
807
|
* @export
|
|
@@ -691,7 +871,7 @@ export interface V1CreateImageSetImageRequest {
|
|
|
691
871
|
'capturedAt'?: string;
|
|
692
872
|
}
|
|
693
873
|
/**
|
|
694
|
-
*
|
|
874
|
+
* Response from image creation, with image ID and presigned S3 upload URL.
|
|
695
875
|
* @export
|
|
696
876
|
* @interface V1CreateImageSetImageResponse
|
|
697
877
|
*/
|
|
@@ -709,6 +889,50 @@ export interface V1CreateImageSetImageResponse {
|
|
|
709
889
|
*/
|
|
710
890
|
'uploadUrl': string;
|
|
711
891
|
}
|
|
892
|
+
/**
|
|
893
|
+
*
|
|
894
|
+
* @export
|
|
895
|
+
* @interface V1CreateImageSetImageUploadUrlRequest
|
|
896
|
+
*/
|
|
897
|
+
export interface V1CreateImageSetImageUploadUrlRequest {
|
|
898
|
+
/**
|
|
899
|
+
*
|
|
900
|
+
* @type {string}
|
|
901
|
+
* @memberof V1CreateImageSetImageUploadUrlRequest
|
|
902
|
+
*/
|
|
903
|
+
'imageSetId': string;
|
|
904
|
+
/**
|
|
905
|
+
*
|
|
906
|
+
* @type {string}
|
|
907
|
+
* @memberof V1CreateImageSetImageUploadUrlRequest
|
|
908
|
+
*/
|
|
909
|
+
'imageId': string;
|
|
910
|
+
/**
|
|
911
|
+
*
|
|
912
|
+
* @type {V1ImageFileType}
|
|
913
|
+
* @memberof V1CreateImageSetImageUploadUrlRequest
|
|
914
|
+
*/
|
|
915
|
+
'imageFileType': V1ImageFileType;
|
|
916
|
+
/**
|
|
917
|
+
*
|
|
918
|
+
* @type {V1AssetSize}
|
|
919
|
+
* @memberof V1CreateImageSetImageUploadUrlRequest
|
|
920
|
+
*/
|
|
921
|
+
'assetSize'?: V1AssetSize;
|
|
922
|
+
}
|
|
923
|
+
/**
|
|
924
|
+
*
|
|
925
|
+
* @export
|
|
926
|
+
* @interface V1CreateImageSetImageUploadUrlResponse
|
|
927
|
+
*/
|
|
928
|
+
export interface V1CreateImageSetImageUploadUrlResponse {
|
|
929
|
+
/**
|
|
930
|
+
*
|
|
931
|
+
* @type {string}
|
|
932
|
+
* @memberof V1CreateImageSetImageUploadUrlResponse
|
|
933
|
+
*/
|
|
934
|
+
'uploadUrl': string;
|
|
935
|
+
}
|
|
712
936
|
/**
|
|
713
937
|
*
|
|
714
938
|
* @export
|
|
@@ -1008,6 +1232,133 @@ export interface V1CreateOpticalTubeRequest {
|
|
|
1008
1232
|
*/
|
|
1009
1233
|
'type'?: OpticalTubeType;
|
|
1010
1234
|
}
|
|
1235
|
+
/**
|
|
1236
|
+
* Data needed to create a complete image set image and its extracted data.
|
|
1237
|
+
* @export
|
|
1238
|
+
* @interface V1CreateProcessedImageSetImageRequest
|
|
1239
|
+
*/
|
|
1240
|
+
export interface V1CreateProcessedImageSetImageRequest {
|
|
1241
|
+
/**
|
|
1242
|
+
*
|
|
1243
|
+
* @type {string}
|
|
1244
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1245
|
+
*/
|
|
1246
|
+
'imageSetId': string;
|
|
1247
|
+
/**
|
|
1248
|
+
*
|
|
1249
|
+
* @type {number}
|
|
1250
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1251
|
+
*/
|
|
1252
|
+
'binning': number;
|
|
1253
|
+
/**
|
|
1254
|
+
*
|
|
1255
|
+
* @type {number}
|
|
1256
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1257
|
+
*/
|
|
1258
|
+
'exposureLength': number;
|
|
1259
|
+
/**
|
|
1260
|
+
*
|
|
1261
|
+
* @type {string}
|
|
1262
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1263
|
+
*/
|
|
1264
|
+
'imageSha'?: string;
|
|
1265
|
+
/**
|
|
1266
|
+
*
|
|
1267
|
+
* @type {number}
|
|
1268
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1269
|
+
*/
|
|
1270
|
+
'imageSizeMb'?: number;
|
|
1271
|
+
/**
|
|
1272
|
+
*
|
|
1273
|
+
* @type {string}
|
|
1274
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1275
|
+
*/
|
|
1276
|
+
'capturedAt': string;
|
|
1277
|
+
/**
|
|
1278
|
+
*
|
|
1279
|
+
* @type {boolean}
|
|
1280
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1281
|
+
*/
|
|
1282
|
+
'gpsTimestamp': boolean;
|
|
1283
|
+
/**
|
|
1284
|
+
*
|
|
1285
|
+
* @type {V1ImageRejectionReason}
|
|
1286
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1287
|
+
*/
|
|
1288
|
+
'rejectedReason'?: V1ImageRejectionReason;
|
|
1289
|
+
/**
|
|
1290
|
+
*
|
|
1291
|
+
* @type {number}
|
|
1292
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1293
|
+
*/
|
|
1294
|
+
'fwhmAverage'?: number;
|
|
1295
|
+
/**
|
|
1296
|
+
*
|
|
1297
|
+
* @type {number}
|
|
1298
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1299
|
+
*/
|
|
1300
|
+
'fwhmStdDev'?: number;
|
|
1301
|
+
/**
|
|
1302
|
+
*
|
|
1303
|
+
* @type {number}
|
|
1304
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1305
|
+
*/
|
|
1306
|
+
'raDegrees'?: number;
|
|
1307
|
+
/**
|
|
1308
|
+
*
|
|
1309
|
+
* @type {number}
|
|
1310
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1311
|
+
*/
|
|
1312
|
+
'decDegrees'?: number;
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @type {number}
|
|
1316
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1317
|
+
*/
|
|
1318
|
+
'raOffset'?: number;
|
|
1319
|
+
/**
|
|
1320
|
+
*
|
|
1321
|
+
* @type {number}
|
|
1322
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1323
|
+
*/
|
|
1324
|
+
'decOffset'?: number;
|
|
1325
|
+
/**
|
|
1326
|
+
*
|
|
1327
|
+
* @type {number}
|
|
1328
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1329
|
+
*/
|
|
1330
|
+
'totalOffset'?: number;
|
|
1331
|
+
/**
|
|
1332
|
+
*
|
|
1333
|
+
* @type {number}
|
|
1334
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1335
|
+
*/
|
|
1336
|
+
'totalOffsetStdDev'?: number;
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {number}
|
|
1340
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1341
|
+
*/
|
|
1342
|
+
'totalOffsetRMS'?: number;
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @type {Array<FitsHeader>}
|
|
1346
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1347
|
+
*/
|
|
1348
|
+
'fitsHeaders': Array<FitsHeader>;
|
|
1349
|
+
/**
|
|
1350
|
+
*
|
|
1351
|
+
* @type {Array<V1ImageSetImageStreak>}
|
|
1352
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1353
|
+
*/
|
|
1354
|
+
'extractedStreaks'?: Array<V1ImageSetImageStreak>;
|
|
1355
|
+
/**
|
|
1356
|
+
*
|
|
1357
|
+
* @type {Array<V1ImageSetImageDot>}
|
|
1358
|
+
* @memberof V1CreateProcessedImageSetImageRequest
|
|
1359
|
+
*/
|
|
1360
|
+
'extractedDots'?: Array<V1ImageSetImageDot>;
|
|
1361
|
+
}
|
|
1011
1362
|
/**
|
|
1012
1363
|
*
|
|
1013
1364
|
* @export
|
|
@@ -1092,27 +1443,46 @@ export interface V1DiagnosticInstruction {
|
|
|
1092
1443
|
/**
|
|
1093
1444
|
*
|
|
1094
1445
|
* @export
|
|
1095
|
-
* @interface
|
|
1446
|
+
* @interface V1DisableDebugServices
|
|
1096
1447
|
*/
|
|
1097
|
-
export interface
|
|
1098
|
-
/**
|
|
1099
|
-
*
|
|
1100
|
-
* @type {string}
|
|
1101
|
-
* @memberof V1DurationMeasured
|
|
1102
|
-
*/
|
|
1103
|
-
'name': string;
|
|
1448
|
+
export interface V1DisableDebugServices {
|
|
1104
1449
|
/**
|
|
1105
1450
|
*
|
|
1106
1451
|
* @type {string}
|
|
1107
|
-
* @memberof
|
|
1452
|
+
* @memberof V1DisableDebugServices
|
|
1108
1453
|
*/
|
|
1109
|
-
'
|
|
1454
|
+
'nodeId': string;
|
|
1110
1455
|
/**
|
|
1111
1456
|
*
|
|
1112
1457
|
* @type {string}
|
|
1113
|
-
* @memberof
|
|
1458
|
+
* @memberof V1DisableDebugServices
|
|
1114
1459
|
*/
|
|
1115
|
-
'
|
|
1460
|
+
'executableAt'?: string;
|
|
1461
|
+
}
|
|
1462
|
+
/**
|
|
1463
|
+
*
|
|
1464
|
+
* @export
|
|
1465
|
+
* @interface V1DurationMeasured
|
|
1466
|
+
*/
|
|
1467
|
+
export interface V1DurationMeasured {
|
|
1468
|
+
/**
|
|
1469
|
+
*
|
|
1470
|
+
* @type {string}
|
|
1471
|
+
* @memberof V1DurationMeasured
|
|
1472
|
+
*/
|
|
1473
|
+
'name': string;
|
|
1474
|
+
/**
|
|
1475
|
+
*
|
|
1476
|
+
* @type {string}
|
|
1477
|
+
* @memberof V1DurationMeasured
|
|
1478
|
+
*/
|
|
1479
|
+
'startedAt': string;
|
|
1480
|
+
/**
|
|
1481
|
+
*
|
|
1482
|
+
* @type {string}
|
|
1483
|
+
* @memberof V1DurationMeasured
|
|
1484
|
+
*/
|
|
1485
|
+
'endedAt': string;
|
|
1116
1486
|
}
|
|
1117
1487
|
/**
|
|
1118
1488
|
* Elevation Mask Point
|
|
@@ -1139,6 +1509,75 @@ export interface V1ElevationMaskPoint {
|
|
|
1139
1509
|
*/
|
|
1140
1510
|
'maxAltitudeDegrees': number;
|
|
1141
1511
|
}
|
|
1512
|
+
/**
|
|
1513
|
+
*
|
|
1514
|
+
* @export
|
|
1515
|
+
* @interface V1EnableAutonomousOperation
|
|
1516
|
+
*/
|
|
1517
|
+
export interface V1EnableAutonomousOperation {
|
|
1518
|
+
/**
|
|
1519
|
+
*
|
|
1520
|
+
* @type {string}
|
|
1521
|
+
* @memberof V1EnableAutonomousOperation
|
|
1522
|
+
*/
|
|
1523
|
+
'nodeId': string;
|
|
1524
|
+
/**
|
|
1525
|
+
*
|
|
1526
|
+
* @type {string}
|
|
1527
|
+
* @memberof V1EnableAutonomousOperation
|
|
1528
|
+
*/
|
|
1529
|
+
'executableAt'?: string;
|
|
1530
|
+
}
|
|
1531
|
+
/**
|
|
1532
|
+
*
|
|
1533
|
+
* @export
|
|
1534
|
+
* @interface V1EnableDebugServices
|
|
1535
|
+
*/
|
|
1536
|
+
export interface V1EnableDebugServices {
|
|
1537
|
+
/**
|
|
1538
|
+
*
|
|
1539
|
+
* @type {string}
|
|
1540
|
+
* @memberof V1EnableDebugServices
|
|
1541
|
+
*/
|
|
1542
|
+
'nodeId': string;
|
|
1543
|
+
/**
|
|
1544
|
+
*
|
|
1545
|
+
* @type {string}
|
|
1546
|
+
* @memberof V1EnableDebugServices
|
|
1547
|
+
*/
|
|
1548
|
+
'datadogAPIKey': string;
|
|
1549
|
+
/**
|
|
1550
|
+
*
|
|
1551
|
+
* @type {string}
|
|
1552
|
+
* @memberof V1EnableDebugServices
|
|
1553
|
+
*/
|
|
1554
|
+
'datadogURL': string;
|
|
1555
|
+
/**
|
|
1556
|
+
*
|
|
1557
|
+
* @type {string}
|
|
1558
|
+
* @memberof V1EnableDebugServices
|
|
1559
|
+
*/
|
|
1560
|
+
'executableAt'?: string;
|
|
1561
|
+
}
|
|
1562
|
+
/**
|
|
1563
|
+
*
|
|
1564
|
+
* @export
|
|
1565
|
+
* @interface V1EnableManualOperation
|
|
1566
|
+
*/
|
|
1567
|
+
export interface V1EnableManualOperation {
|
|
1568
|
+
/**
|
|
1569
|
+
*
|
|
1570
|
+
* @type {string}
|
|
1571
|
+
* @memberof V1EnableManualOperation
|
|
1572
|
+
*/
|
|
1573
|
+
'nodeId': string;
|
|
1574
|
+
/**
|
|
1575
|
+
*
|
|
1576
|
+
* @type {string}
|
|
1577
|
+
* @memberof V1EnableManualOperation
|
|
1578
|
+
*/
|
|
1579
|
+
'executableAt'?: string;
|
|
1580
|
+
}
|
|
1142
1581
|
/**
|
|
1143
1582
|
*
|
|
1144
1583
|
* @export
|
|
@@ -1148,6 +1587,37 @@ export declare const V1FileType: {
|
|
|
1148
1587
|
readonly ZIP: "ZIP";
|
|
1149
1588
|
};
|
|
1150
1589
|
export type V1FileType = typeof V1FileType[keyof typeof V1FileType];
|
|
1590
|
+
/**
|
|
1591
|
+
*
|
|
1592
|
+
* @export
|
|
1593
|
+
* @interface V1FilterWheel
|
|
1594
|
+
*/
|
|
1595
|
+
export interface V1FilterWheel {
|
|
1596
|
+
/**
|
|
1597
|
+
*
|
|
1598
|
+
* @type {string}
|
|
1599
|
+
* @memberof V1FilterWheel
|
|
1600
|
+
*/
|
|
1601
|
+
'id': string;
|
|
1602
|
+
/**
|
|
1603
|
+
*
|
|
1604
|
+
* @type {Array<FilterType>}
|
|
1605
|
+
* @memberof V1FilterWheel
|
|
1606
|
+
*/
|
|
1607
|
+
'filters': Array<FilterType>;
|
|
1608
|
+
/**
|
|
1609
|
+
*
|
|
1610
|
+
* @type {string}
|
|
1611
|
+
* @memberof V1FilterWheel
|
|
1612
|
+
*/
|
|
1613
|
+
'createdAt'?: string;
|
|
1614
|
+
/**
|
|
1615
|
+
*
|
|
1616
|
+
* @type {string}
|
|
1617
|
+
* @memberof V1FilterWheel
|
|
1618
|
+
*/
|
|
1619
|
+
'deletedAt'?: string;
|
|
1620
|
+
}
|
|
1151
1621
|
/**
|
|
1152
1622
|
* Focuser
|
|
1153
1623
|
* @export
|
|
@@ -1520,6 +1990,67 @@ export interface V1GetPlateSolveCatalogDiffRequest {
|
|
|
1520
1990
|
*/
|
|
1521
1991
|
'existingFiles': Array<V1PlateSolveCatalogFile>;
|
|
1522
1992
|
}
|
|
1993
|
+
/**
|
|
1994
|
+
*
|
|
1995
|
+
* @export
|
|
1996
|
+
* @interface V1GetSuntimesResponse
|
|
1997
|
+
*/
|
|
1998
|
+
export interface V1GetSuntimesResponse {
|
|
1999
|
+
/**
|
|
2000
|
+
*
|
|
2001
|
+
* @type {string}
|
|
2002
|
+
* @memberof V1GetSuntimesResponse
|
|
2003
|
+
*/
|
|
2004
|
+
'nodeId'?: string;
|
|
2005
|
+
/**
|
|
2006
|
+
*
|
|
2007
|
+
* @type {string}
|
|
2008
|
+
* @memberof V1GetSuntimesResponse
|
|
2009
|
+
*/
|
|
2010
|
+
'sunrise': string;
|
|
2011
|
+
/**
|
|
2012
|
+
*
|
|
2013
|
+
* @type {string}
|
|
2014
|
+
* @memberof V1GetSuntimesResponse
|
|
2015
|
+
*/
|
|
2016
|
+
'sunset': string;
|
|
2017
|
+
/**
|
|
2018
|
+
*
|
|
2019
|
+
* @type {string}
|
|
2020
|
+
* @memberof V1GetSuntimesResponse
|
|
2021
|
+
*/
|
|
2022
|
+
'civilRise'?: string;
|
|
2023
|
+
/**
|
|
2024
|
+
*
|
|
2025
|
+
* @type {string}
|
|
2026
|
+
* @memberof V1GetSuntimesResponse
|
|
2027
|
+
*/
|
|
2028
|
+
'civilSet'?: string;
|
|
2029
|
+
/**
|
|
2030
|
+
*
|
|
2031
|
+
* @type {string}
|
|
2032
|
+
* @memberof V1GetSuntimesResponse
|
|
2033
|
+
*/
|
|
2034
|
+
'nauticalRise'?: string;
|
|
2035
|
+
/**
|
|
2036
|
+
*
|
|
2037
|
+
* @type {string}
|
|
2038
|
+
* @memberof V1GetSuntimesResponse
|
|
2039
|
+
*/
|
|
2040
|
+
'nauticalSet'?: string;
|
|
2041
|
+
/**
|
|
2042
|
+
*
|
|
2043
|
+
* @type {string}
|
|
2044
|
+
* @memberof V1GetSuntimesResponse
|
|
2045
|
+
*/
|
|
2046
|
+
'astronomicalRise'?: string;
|
|
2047
|
+
/**
|
|
2048
|
+
*
|
|
2049
|
+
* @type {string}
|
|
2050
|
+
* @memberof V1GetSuntimesResponse
|
|
2051
|
+
*/
|
|
2052
|
+
'astronomicalSet'?: string;
|
|
2053
|
+
}
|
|
1523
2054
|
/**
|
|
1524
2055
|
*
|
|
1525
2056
|
* @export
|
|
@@ -1605,19 +2136,6 @@ export interface V1GroundStationParticipant {
|
|
|
1605
2136
|
*/
|
|
1606
2137
|
'focuserTravelDistanceMm'?: number;
|
|
1607
2138
|
}
|
|
1608
|
-
/**
|
|
1609
|
-
*
|
|
1610
|
-
* @export
|
|
1611
|
-
* @interface V1Halt
|
|
1612
|
-
*/
|
|
1613
|
-
export interface V1Halt {
|
|
1614
|
-
/**
|
|
1615
|
-
*
|
|
1616
|
-
* @type {boolean}
|
|
1617
|
-
* @memberof V1Halt
|
|
1618
|
-
*/
|
|
1619
|
-
'placeholder'?: boolean;
|
|
1620
|
-
}
|
|
1621
2139
|
/**
|
|
1622
2140
|
*
|
|
1623
2141
|
* @export
|
|
@@ -1628,6 +2146,40 @@ export declare const V1ImageFileType: {
|
|
|
1628
2146
|
readonly JPG: "JPG";
|
|
1629
2147
|
};
|
|
1630
2148
|
export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
|
|
2149
|
+
/**
|
|
2150
|
+
*
|
|
2151
|
+
* @export
|
|
2152
|
+
* @enum {string}
|
|
2153
|
+
*/
|
|
2154
|
+
export declare const V1ImageRejectionReason: {
|
|
2155
|
+
readonly TARGET_NOT_FOUND: "TARGET_NOT_FOUND";
|
|
2156
|
+
readonly RATE_TARGET_NOT_FOUND: "RATE_TARGET_NOT_FOUND";
|
|
2157
|
+
readonly RATE_PLATE_SOLVE_FAILURE: "RATE_PLATE_SOLVE_FAILURE";
|
|
2158
|
+
readonly STREAK_DETECTION_FAILURE: "STREAK_DETECTION_FAILURE";
|
|
2159
|
+
readonly PLATE_SOLVE_FAILURE: "PLATE_SOLVE_FAILURE";
|
|
2160
|
+
readonly PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE: "PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE";
|
|
2161
|
+
readonly PLATE_SOLVE_NO_SOLUTION_FAILURE: "PLATE_SOLVE_NO_SOLUTION_FAILURE";
|
|
2162
|
+
readonly CROP_IMAGE_FAILURE: "CROP_IMAGE_FAILURE";
|
|
2163
|
+
readonly COSMETIC_CORRECTION_FAILURE: "COSMETIC_CORRECTION_FAILURE";
|
|
2164
|
+
readonly GRADIENT_REMOVAL_FAILURE: "GRADIENT_REMOVAL_FAILURE";
|
|
2165
|
+
readonly CATMAG_FAILURE: "CATMAG_FAILURE";
|
|
2166
|
+
readonly IMAGE_QUALITY_TOO_LOW: "IMAGE_QUALITY_TOO_LOW";
|
|
2167
|
+
readonly OBSERVATION_NOT_FOUND: "OBSERVATION_NOT_FOUND";
|
|
2168
|
+
readonly NODE_NOT_FOUND: "NODE_NOT_FOUND";
|
|
2169
|
+
readonly CAMERA_NOT_FOUND: "CAMERA_NOT_FOUND";
|
|
2170
|
+
readonly OTA_NOT_FOUND: "OTA_NOT_FOUND";
|
|
2171
|
+
readonly TLE_NOT_EXTRACTED: "TLE_NOT_EXTRACTED";
|
|
2172
|
+
readonly FAILED_TO_LOAD: "FAILED_TO_LOAD";
|
|
2173
|
+
readonly GPS_ERROR: "GPS_ERROR";
|
|
2174
|
+
readonly MUTEX_TIMEOUT: "MUTEX_TIMEOUT";
|
|
2175
|
+
readonly AWAIT_TIMEOUT: "AWAIT_TIMEOUT";
|
|
2176
|
+
readonly CATALOG_COMPARE_ERROR: "CATALOG_COMPARE_ERROR";
|
|
2177
|
+
readonly SAVE_FAILURE: "SAVE_FAILURE";
|
|
2178
|
+
readonly RATE_CATALOG_COMPARE_ERROR: "RATE_CATALOG_COMPARE_ERROR";
|
|
2179
|
+
readonly MISSING_IMG_WIDTH_HEADER: "MISSING_IMG_WIDTH_HEADER";
|
|
2180
|
+
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
2181
|
+
};
|
|
2182
|
+
export type V1ImageRejectionReason = typeof V1ImageRejectionReason[keyof typeof V1ImageRejectionReason];
|
|
1631
2183
|
/**
|
|
1632
2184
|
* An image set represents a contiguous set of observations of the same target captured by the same node.
|
|
1633
2185
|
* @export
|
|
@@ -1865,141 +2417,353 @@ export interface V1ImageSetImage {
|
|
|
1865
2417
|
'predictedStreakLocation'?: V1PredictedStreakLocation;
|
|
1866
2418
|
}
|
|
1867
2419
|
/**
|
|
1868
|
-
*
|
|
2420
|
+
* Data related to the extraction of a dot from an image.
|
|
1869
2421
|
* @export
|
|
1870
|
-
* @interface
|
|
2422
|
+
* @interface V1ImageSetImageDot
|
|
1871
2423
|
*/
|
|
1872
|
-
export interface
|
|
2424
|
+
export interface V1ImageSetImageDot {
|
|
1873
2425
|
/**
|
|
1874
2426
|
*
|
|
1875
|
-
* @type {
|
|
1876
|
-
* @memberof
|
|
2427
|
+
* @type {number}
|
|
2428
|
+
* @memberof V1ImageSetImageDot
|
|
1877
2429
|
*/
|
|
1878
|
-
'
|
|
2430
|
+
'centroidRa': number;
|
|
1879
2431
|
/**
|
|
1880
2432
|
*
|
|
1881
|
-
* @type {
|
|
1882
|
-
* @memberof
|
|
2433
|
+
* @type {number}
|
|
2434
|
+
* @memberof V1ImageSetImageDot
|
|
1883
2435
|
*/
|
|
1884
|
-
'
|
|
2436
|
+
'centroidDec': number;
|
|
1885
2437
|
/**
|
|
1886
2438
|
*
|
|
1887
|
-
* @type {
|
|
1888
|
-
* @memberof
|
|
2439
|
+
* @type {number}
|
|
2440
|
+
* @memberof V1ImageSetImageDot
|
|
1889
2441
|
*/
|
|
1890
|
-
'
|
|
2442
|
+
'calibratedCentroidRa': number;
|
|
1891
2443
|
/**
|
|
1892
2444
|
*
|
|
1893
|
-
* @type {
|
|
1894
|
-
* @memberof
|
|
2445
|
+
* @type {number}
|
|
2446
|
+
* @memberof V1ImageSetImageDot
|
|
1895
2447
|
*/
|
|
1896
|
-
'
|
|
1897
|
-
}
|
|
1898
|
-
/**
|
|
1899
|
-
*
|
|
1900
|
-
* @export
|
|
1901
|
-
* @interface V1LastInstructionResponse
|
|
1902
|
-
*/
|
|
1903
|
-
export interface V1LastInstructionResponse {
|
|
2448
|
+
'calibratedCentroidDec': number;
|
|
1904
2449
|
/**
|
|
1905
2450
|
*
|
|
1906
2451
|
* @type {string}
|
|
1907
|
-
* @memberof
|
|
2452
|
+
* @memberof V1ImageSetImageDot
|
|
1908
2453
|
*/
|
|
1909
|
-
'
|
|
2454
|
+
'centroidTime': string;
|
|
1910
2455
|
/**
|
|
1911
2456
|
*
|
|
1912
|
-
* @type {
|
|
1913
|
-
* @memberof
|
|
2457
|
+
* @type {boolean}
|
|
2458
|
+
* @memberof V1ImageSetImageDot
|
|
1914
2459
|
*/
|
|
1915
|
-
'
|
|
2460
|
+
'centroidTimeIsGps': boolean;
|
|
1916
2461
|
/**
|
|
1917
2462
|
*
|
|
1918
|
-
* @type {
|
|
1919
|
-
* @memberof
|
|
2463
|
+
* @type {number}
|
|
2464
|
+
* @memberof V1ImageSetImageDot
|
|
1920
2465
|
*/
|
|
1921
|
-
'
|
|
1922
|
-
}
|
|
1923
|
-
/**
|
|
1924
|
-
*
|
|
1925
|
-
* @export
|
|
1926
|
-
* @interface V1LatestHfrResponse
|
|
1927
|
-
*/
|
|
1928
|
-
export interface V1LatestHfrResponse {
|
|
2466
|
+
'centroidX': number;
|
|
1929
2467
|
/**
|
|
1930
2468
|
*
|
|
1931
|
-
* @type {
|
|
1932
|
-
* @memberof
|
|
2469
|
+
* @type {number}
|
|
2470
|
+
* @memberof V1ImageSetImageDot
|
|
1933
2471
|
*/
|
|
1934
|
-
'
|
|
2472
|
+
'centroidY': number;
|
|
1935
2473
|
/**
|
|
1936
2474
|
*
|
|
1937
|
-
* @type {
|
|
1938
|
-
* @memberof
|
|
2475
|
+
* @type {number}
|
|
2476
|
+
* @memberof V1ImageSetImageDot
|
|
1939
2477
|
*/
|
|
1940
|
-
'
|
|
2478
|
+
'snr': number;
|
|
1941
2479
|
/**
|
|
1942
2480
|
*
|
|
1943
|
-
* @type {
|
|
1944
|
-
* @memberof
|
|
2481
|
+
* @type {number}
|
|
2482
|
+
* @memberof V1ImageSetImageDot
|
|
1945
2483
|
*/
|
|
1946
|
-
'
|
|
1947
|
-
}
|
|
1948
|
-
/**
|
|
1949
|
-
*
|
|
1950
|
-
* @export
|
|
1951
|
-
* @interface V1LogRecorded
|
|
1952
|
-
*/
|
|
1953
|
-
export interface V1LogRecorded {
|
|
2484
|
+
'magnitude': number;
|
|
1954
2485
|
/**
|
|
1955
2486
|
*
|
|
1956
|
-
* @type {
|
|
1957
|
-
* @memberof
|
|
2487
|
+
* @type {number}
|
|
2488
|
+
* @memberof V1ImageSetImageDot
|
|
1958
2489
|
*/
|
|
1959
|
-
'
|
|
2490
|
+
'magnitudeError': number;
|
|
2491
|
+
/**
|
|
2492
|
+
*
|
|
2493
|
+
* @type {boolean}
|
|
2494
|
+
* @memberof V1ImageSetImageDot
|
|
2495
|
+
*/
|
|
2496
|
+
'magnitudeIsAbsolute': boolean;
|
|
2497
|
+
/**
|
|
2498
|
+
*
|
|
2499
|
+
* @type {boolean}
|
|
2500
|
+
* @memberof V1ImageSetImageDot
|
|
2501
|
+
*/
|
|
2502
|
+
'magntiudeIsAccurate': boolean;
|
|
1960
2503
|
}
|
|
1961
2504
|
/**
|
|
1962
|
-
*
|
|
2505
|
+
* Data related to the extraction of a streak from an image.
|
|
1963
2506
|
* @export
|
|
1964
|
-
* @interface
|
|
2507
|
+
* @interface V1ImageSetImageStreak
|
|
1965
2508
|
*/
|
|
1966
|
-
export interface
|
|
2509
|
+
export interface V1ImageSetImageStreak {
|
|
1967
2510
|
/**
|
|
1968
2511
|
*
|
|
1969
|
-
* @type {
|
|
1970
|
-
* @memberof
|
|
2512
|
+
* @type {number}
|
|
2513
|
+
* @memberof V1ImageSetImageStreak
|
|
1971
2514
|
*/
|
|
1972
|
-
'
|
|
2515
|
+
'centerRa': number;
|
|
1973
2516
|
/**
|
|
1974
2517
|
*
|
|
1975
|
-
* @type {
|
|
1976
|
-
* @memberof
|
|
2518
|
+
* @type {number}
|
|
2519
|
+
* @memberof V1ImageSetImageStreak
|
|
1977
2520
|
*/
|
|
1978
|
-
'
|
|
2521
|
+
'centerDec': number;
|
|
1979
2522
|
/**
|
|
1980
2523
|
*
|
|
1981
|
-
* @type {
|
|
1982
|
-
* @memberof
|
|
2524
|
+
* @type {number}
|
|
2525
|
+
* @memberof V1ImageSetImageStreak
|
|
1983
2526
|
*/
|
|
1984
|
-
'
|
|
2527
|
+
'calibratedCenterRa': number;
|
|
1985
2528
|
/**
|
|
1986
2529
|
*
|
|
1987
|
-
* @type {
|
|
1988
|
-
* @memberof
|
|
2530
|
+
* @type {number}
|
|
2531
|
+
* @memberof V1ImageSetImageStreak
|
|
1989
2532
|
*/
|
|
1990
|
-
'
|
|
2533
|
+
'calibratedCenterDec': number;
|
|
1991
2534
|
/**
|
|
1992
2535
|
*
|
|
1993
2536
|
* @type {string}
|
|
1994
|
-
* @memberof
|
|
2537
|
+
* @memberof V1ImageSetImageStreak
|
|
1995
2538
|
*/
|
|
1996
|
-
'
|
|
2539
|
+
'centerTime': string;
|
|
1997
2540
|
/**
|
|
1998
2541
|
*
|
|
1999
|
-
* @type {
|
|
2000
|
-
* @memberof
|
|
2542
|
+
* @type {boolean}
|
|
2543
|
+
* @memberof V1ImageSetImageStreak
|
|
2001
2544
|
*/
|
|
2002
|
-
'
|
|
2545
|
+
'centerTimeIsGps': boolean;
|
|
2546
|
+
/**
|
|
2547
|
+
*
|
|
2548
|
+
* @type {number}
|
|
2549
|
+
* @memberof V1ImageSetImageStreak
|
|
2550
|
+
*/
|
|
2551
|
+
'startX': number;
|
|
2552
|
+
/**
|
|
2553
|
+
*
|
|
2554
|
+
* @type {number}
|
|
2555
|
+
* @memberof V1ImageSetImageStreak
|
|
2556
|
+
*/
|
|
2557
|
+
'startY': number;
|
|
2558
|
+
/**
|
|
2559
|
+
*
|
|
2560
|
+
* @type {number}
|
|
2561
|
+
* @memberof V1ImageSetImageStreak
|
|
2562
|
+
*/
|
|
2563
|
+
'endX': number;
|
|
2564
|
+
/**
|
|
2565
|
+
*
|
|
2566
|
+
* @type {number}
|
|
2567
|
+
* @memberof V1ImageSetImageStreak
|
|
2568
|
+
*/
|
|
2569
|
+
'endY': number;
|
|
2570
|
+
/**
|
|
2571
|
+
*
|
|
2572
|
+
* @type {number}
|
|
2573
|
+
* @memberof V1ImageSetImageStreak
|
|
2574
|
+
*/
|
|
2575
|
+
'startRa': number;
|
|
2576
|
+
/**
|
|
2577
|
+
*
|
|
2578
|
+
* @type {number}
|
|
2579
|
+
* @memberof V1ImageSetImageStreak
|
|
2580
|
+
*/
|
|
2581
|
+
'startDec': number;
|
|
2582
|
+
/**
|
|
2583
|
+
*
|
|
2584
|
+
* @type {number}
|
|
2585
|
+
* @memberof V1ImageSetImageStreak
|
|
2586
|
+
*/
|
|
2587
|
+
'endRa': number;
|
|
2588
|
+
/**
|
|
2589
|
+
*
|
|
2590
|
+
* @type {number}
|
|
2591
|
+
* @memberof V1ImageSetImageStreak
|
|
2592
|
+
*/
|
|
2593
|
+
'endDec': number;
|
|
2594
|
+
/**
|
|
2595
|
+
*
|
|
2596
|
+
* @type {number}
|
|
2597
|
+
* @memberof V1ImageSetImageStreak
|
|
2598
|
+
*/
|
|
2599
|
+
'snr': number;
|
|
2600
|
+
/**
|
|
2601
|
+
*
|
|
2602
|
+
* @type {number}
|
|
2603
|
+
* @memberof V1ImageSetImageStreak
|
|
2604
|
+
*/
|
|
2605
|
+
'magnitude': number;
|
|
2606
|
+
/**
|
|
2607
|
+
*
|
|
2608
|
+
* @type {number}
|
|
2609
|
+
* @memberof V1ImageSetImageStreak
|
|
2610
|
+
*/
|
|
2611
|
+
'magnitudeError': number;
|
|
2612
|
+
/**
|
|
2613
|
+
*
|
|
2614
|
+
* @type {boolean}
|
|
2615
|
+
* @memberof V1ImageSetImageStreak
|
|
2616
|
+
*/
|
|
2617
|
+
'magnitudeIsAbsolute': boolean;
|
|
2618
|
+
/**
|
|
2619
|
+
*
|
|
2620
|
+
* @type {boolean}
|
|
2621
|
+
* @memberof V1ImageSetImageStreak
|
|
2622
|
+
*/
|
|
2623
|
+
'magntiudeIsAccurate': boolean;
|
|
2624
|
+
}
|
|
2625
|
+
/**
|
|
2626
|
+
* Instruction
|
|
2627
|
+
* @export
|
|
2628
|
+
* @interface V1Instruction
|
|
2629
|
+
*/
|
|
2630
|
+
export interface V1Instruction {
|
|
2631
|
+
/**
|
|
2632
|
+
*
|
|
2633
|
+
* @type {V1ObservationInstruction}
|
|
2634
|
+
* @memberof V1Instruction
|
|
2635
|
+
*/
|
|
2636
|
+
'observation'?: V1ObservationInstruction;
|
|
2637
|
+
/**
|
|
2638
|
+
*
|
|
2639
|
+
* @type {V1DiagnosticInstruction}
|
|
2640
|
+
* @memberof V1Instruction
|
|
2641
|
+
*/
|
|
2642
|
+
'diagnostic'?: V1DiagnosticInstruction;
|
|
2643
|
+
/**
|
|
2644
|
+
*
|
|
2645
|
+
* @type {Array<V1ObservationInstruction>}
|
|
2646
|
+
* @memberof V1Instruction
|
|
2647
|
+
*/
|
|
2648
|
+
'search'?: Array<V1ObservationInstruction>;
|
|
2649
|
+
/**
|
|
2650
|
+
*
|
|
2651
|
+
* @type {V1ResolvedInstruction}
|
|
2652
|
+
* @memberof V1Instruction
|
|
2653
|
+
*/
|
|
2654
|
+
'resolved'?: V1ResolvedInstruction;
|
|
2655
|
+
/**
|
|
2656
|
+
*
|
|
2657
|
+
* @type {V1AutoFocusInstruction}
|
|
2658
|
+
* @memberof V1Instruction
|
|
2659
|
+
*/
|
|
2660
|
+
'autofocus'?: V1AutoFocusInstruction;
|
|
2661
|
+
}
|
|
2662
|
+
/**
|
|
2663
|
+
*
|
|
2664
|
+
* @export
|
|
2665
|
+
* @interface V1LastInstructionResponse
|
|
2666
|
+
*/
|
|
2667
|
+
export interface V1LastInstructionResponse {
|
|
2668
|
+
/**
|
|
2669
|
+
*
|
|
2670
|
+
* @type {string}
|
|
2671
|
+
* @memberof V1LastInstructionResponse
|
|
2672
|
+
*/
|
|
2673
|
+
'id'?: string;
|
|
2674
|
+
/**
|
|
2675
|
+
*
|
|
2676
|
+
* @type {string}
|
|
2677
|
+
* @memberof V1LastInstructionResponse
|
|
2678
|
+
*/
|
|
2679
|
+
'receivedAt'?: string;
|
|
2680
|
+
/**
|
|
2681
|
+
*
|
|
2682
|
+
* @type {TrackingType}
|
|
2683
|
+
* @memberof V1LastInstructionResponse
|
|
2684
|
+
*/
|
|
2685
|
+
'trackingType'?: TrackingType;
|
|
2686
|
+
}
|
|
2687
|
+
/**
|
|
2688
|
+
*
|
|
2689
|
+
* @export
|
|
2690
|
+
* @interface V1LatestHfrResponse
|
|
2691
|
+
*/
|
|
2692
|
+
export interface V1LatestHfrResponse {
|
|
2693
|
+
/**
|
|
2694
|
+
*
|
|
2695
|
+
* @type {string}
|
|
2696
|
+
* @memberof V1LatestHfrResponse
|
|
2697
|
+
*/
|
|
2698
|
+
'nodeId'?: string;
|
|
2699
|
+
/**
|
|
2700
|
+
*
|
|
2701
|
+
* @type {string}
|
|
2702
|
+
* @memberof V1LatestHfrResponse
|
|
2703
|
+
*/
|
|
2704
|
+
'hfrValues'?: string;
|
|
2705
|
+
/**
|
|
2706
|
+
*
|
|
2707
|
+
* @type {string}
|
|
2708
|
+
* @memberof V1LatestHfrResponse
|
|
2709
|
+
*/
|
|
2710
|
+
'timestamp'?: string;
|
|
2711
|
+
}
|
|
2712
|
+
/**
|
|
2713
|
+
*
|
|
2714
|
+
* @export
|
|
2715
|
+
* @interface V1LogRecorded
|
|
2716
|
+
*/
|
|
2717
|
+
export interface V1LogRecorded {
|
|
2718
|
+
/**
|
|
2719
|
+
*
|
|
2720
|
+
* @type {string}
|
|
2721
|
+
* @memberof V1LogRecorded
|
|
2722
|
+
*/
|
|
2723
|
+
'log': string;
|
|
2724
|
+
}
|
|
2725
|
+
/**
|
|
2726
|
+
*
|
|
2727
|
+
* @export
|
|
2728
|
+
* @interface V1MLModel
|
|
2729
|
+
*/
|
|
2730
|
+
export interface V1MLModel {
|
|
2731
|
+
/**
|
|
2732
|
+
*
|
|
2733
|
+
* @type {string}
|
|
2734
|
+
* @memberof V1MLModel
|
|
2735
|
+
*/
|
|
2736
|
+
'id': string;
|
|
2737
|
+
/**
|
|
2738
|
+
*
|
|
2739
|
+
* @type {string}
|
|
2740
|
+
* @memberof V1MLModel
|
|
2741
|
+
*/
|
|
2742
|
+
'name': string;
|
|
2743
|
+
/**
|
|
2744
|
+
*
|
|
2745
|
+
* @type {ModelType}
|
|
2746
|
+
* @memberof V1MLModel
|
|
2747
|
+
*/
|
|
2748
|
+
'modelType': ModelType;
|
|
2749
|
+
/**
|
|
2750
|
+
*
|
|
2751
|
+
* @type {string}
|
|
2752
|
+
* @memberof V1MLModel
|
|
2753
|
+
*/
|
|
2754
|
+
'modelDownloadUrl': string;
|
|
2755
|
+
/**
|
|
2756
|
+
*
|
|
2757
|
+
* @type {string}
|
|
2758
|
+
* @memberof V1MLModel
|
|
2759
|
+
*/
|
|
2760
|
+
'modelChecksum'?: string;
|
|
2761
|
+
/**
|
|
2762
|
+
*
|
|
2763
|
+
* @type {string}
|
|
2764
|
+
* @memberof V1MLModel
|
|
2765
|
+
*/
|
|
2766
|
+
'createdAt': string;
|
|
2003
2767
|
}
|
|
2004
2768
|
/**
|
|
2005
2769
|
*
|
|
@@ -2180,16 +2944,40 @@ export interface V1NodeCommand {
|
|
|
2180
2944
|
'id': string;
|
|
2181
2945
|
/**
|
|
2182
2946
|
*
|
|
2183
|
-
* @type {
|
|
2947
|
+
* @type {V1EnableManualOperation}
|
|
2948
|
+
* @memberof V1NodeCommand
|
|
2949
|
+
*/
|
|
2950
|
+
'V1EnableManualOperation'?: V1EnableManualOperation;
|
|
2951
|
+
/**
|
|
2952
|
+
*
|
|
2953
|
+
* @type {V1EnableAutonomousOperation}
|
|
2954
|
+
* @memberof V1NodeCommand
|
|
2955
|
+
*/
|
|
2956
|
+
'V1EnableAutonomousOperation'?: V1EnableAutonomousOperation;
|
|
2957
|
+
/**
|
|
2958
|
+
*
|
|
2959
|
+
* @type {V1RebootSystem}
|
|
2960
|
+
* @memberof V1NodeCommand
|
|
2961
|
+
*/
|
|
2962
|
+
'V1RebootSystem'?: V1RebootSystem;
|
|
2963
|
+
/**
|
|
2964
|
+
*
|
|
2965
|
+
* @type {V1SendFlare}
|
|
2966
|
+
* @memberof V1NodeCommand
|
|
2967
|
+
*/
|
|
2968
|
+
'V1SendFlare'?: V1SendFlare;
|
|
2969
|
+
/**
|
|
2970
|
+
*
|
|
2971
|
+
* @type {V1EnableDebugServices}
|
|
2184
2972
|
* @memberof V1NodeCommand
|
|
2185
2973
|
*/
|
|
2186
|
-
'
|
|
2974
|
+
'V1EnableDebugServices'?: V1EnableDebugServices;
|
|
2187
2975
|
/**
|
|
2188
2976
|
*
|
|
2189
|
-
* @type {
|
|
2977
|
+
* @type {V1DisableDebugServices}
|
|
2190
2978
|
* @memberof V1NodeCommand
|
|
2191
2979
|
*/
|
|
2192
|
-
'
|
|
2980
|
+
'V1DisableDebugServices'?: V1DisableDebugServices;
|
|
2193
2981
|
/**
|
|
2194
2982
|
*
|
|
2195
2983
|
* @type {string}
|
|
@@ -2197,25 +2985,6 @@ export interface V1NodeCommand {
|
|
|
2197
2985
|
*/
|
|
2198
2986
|
'executableAt'?: string;
|
|
2199
2987
|
}
|
|
2200
|
-
/**
|
|
2201
|
-
* @type V1NodeCommandBody
|
|
2202
|
-
* @export
|
|
2203
|
-
*/
|
|
2204
|
-
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1SendFlare | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
2205
|
-
/**
|
|
2206
|
-
*
|
|
2207
|
-
* @export
|
|
2208
|
-
* @enum {string}
|
|
2209
|
-
*/
|
|
2210
|
-
export declare const V1NodeCommandType: {
|
|
2211
|
-
readonly V1_START_PERPETUAL_INSTRUCTION_LOOP: "V1_START_PERPETUAL_INSTRUCTION_LOOP";
|
|
2212
|
-
readonly V1_STOP_PERPETUAL_INSTRUCTION_LOOP: "V1_STOP_PERPETUAL_INSTRUCTION_LOOP";
|
|
2213
|
-
readonly V1_HALT: "V1_HALT";
|
|
2214
|
-
readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
|
|
2215
|
-
readonly V1_RESTART_ADB: "V1_RESTART_ADB";
|
|
2216
|
-
readonly V1_SEND_FLARE: "V1_SEND_FLARE";
|
|
2217
|
-
};
|
|
2218
|
-
export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
|
|
2219
2988
|
/**
|
|
2220
2989
|
*
|
|
2221
2990
|
* @export
|
|
@@ -2312,6 +3081,12 @@ export interface V1NodeController {
|
|
|
2312
3081
|
* @memberof V1NodeController
|
|
2313
3082
|
*/
|
|
2314
3083
|
'chipSerialNumber'?: number;
|
|
3084
|
+
/**
|
|
3085
|
+
*
|
|
3086
|
+
* @type {Array<V1NodeControllerMacAddressesInner>}
|
|
3087
|
+
* @memberof V1NodeController
|
|
3088
|
+
*/
|
|
3089
|
+
'macAddresses'?: Array<V1NodeControllerMacAddressesInner>;
|
|
2315
3090
|
/**
|
|
2316
3091
|
*
|
|
2317
3092
|
* @type {V1NodeControllerStatus}
|
|
@@ -2387,6 +3162,56 @@ export interface V1NodeControllerIssueCertificateResponse {
|
|
|
2387
3162
|
* @memberof V1NodeControllerIssueCertificateResponse
|
|
2388
3163
|
*/
|
|
2389
3164
|
'privateKeyType': string;
|
|
3165
|
+
/**
|
|
3166
|
+
*
|
|
3167
|
+
* @type {V1NodeControllerIssueCertificateResponseRsaKeyPair}
|
|
3168
|
+
* @memberof V1NodeControllerIssueCertificateResponse
|
|
3169
|
+
*/
|
|
3170
|
+
'rsaKeyPair': V1NodeControllerIssueCertificateResponseRsaKeyPair;
|
|
3171
|
+
}
|
|
3172
|
+
/**
|
|
3173
|
+
*
|
|
3174
|
+
* @export
|
|
3175
|
+
* @interface V1NodeControllerIssueCertificateResponseRsaKeyPair
|
|
3176
|
+
*/
|
|
3177
|
+
export interface V1NodeControllerIssueCertificateResponseRsaKeyPair {
|
|
3178
|
+
/**
|
|
3179
|
+
* x509 cert containing the public key of the RSA key pair. pem encoded
|
|
3180
|
+
* @type {string}
|
|
3181
|
+
* @memberof V1NodeControllerIssueCertificateResponseRsaKeyPair
|
|
3182
|
+
*/
|
|
3183
|
+
'certificate': string;
|
|
3184
|
+
/**
|
|
3185
|
+
* Private key of the RSA key pair. pem encoded
|
|
3186
|
+
* @type {string}
|
|
3187
|
+
* @memberof V1NodeControllerIssueCertificateResponseRsaKeyPair
|
|
3188
|
+
*/
|
|
3189
|
+
'privateKey': string;
|
|
3190
|
+
/**
|
|
3191
|
+
* Certificate chain of the RSA key pair. pem encoded
|
|
3192
|
+
* @type {string}
|
|
3193
|
+
* @memberof V1NodeControllerIssueCertificateResponseRsaKeyPair
|
|
3194
|
+
*/
|
|
3195
|
+
'certChain': string;
|
|
3196
|
+
}
|
|
3197
|
+
/**
|
|
3198
|
+
*
|
|
3199
|
+
* @export
|
|
3200
|
+
* @interface V1NodeControllerMacAddressesInner
|
|
3201
|
+
*/
|
|
3202
|
+
export interface V1NodeControllerMacAddressesInner {
|
|
3203
|
+
/**
|
|
3204
|
+
* The MAC address of the node controller.
|
|
3205
|
+
* @type {string}
|
|
3206
|
+
* @memberof V1NodeControllerMacAddressesInner
|
|
3207
|
+
*/
|
|
3208
|
+
'macAddress': string;
|
|
3209
|
+
/**
|
|
3210
|
+
*
|
|
3211
|
+
* @type {NetworkInterface}
|
|
3212
|
+
* @memberof V1NodeControllerMacAddressesInner
|
|
3213
|
+
*/
|
|
3214
|
+
'interface': NetworkInterface;
|
|
2390
3215
|
}
|
|
2391
3216
|
/**
|
|
2392
3217
|
* The status of the bootstrapping process.
|
|
@@ -2461,6 +3286,7 @@ export declare const V1NodeEventType: {
|
|
|
2461
3286
|
readonly V1_PROPAGATION_TARGET_SELECTED: "V1_PROPAGATION_TARGET_SELECTED";
|
|
2462
3287
|
readonly V1_HYPOTHESIS_OBSERVATION_TASKED: "V1_HYPOTHESIS_OBSERVATION_TASKED";
|
|
2463
3288
|
readonly V1_NETWORK_STATUS: "V1_NETWORK_STATUS";
|
|
3289
|
+
readonly V1_RESOLVED_IMAGE_INSTRUCTION_TASKED: "V1_RESOLVED_IMAGE_INSTRUCTION_TASKED";
|
|
2464
3290
|
};
|
|
2465
3291
|
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
|
2466
3292
|
/**
|
|
@@ -2950,11 +3776,17 @@ export interface V1ReadNoisePoint {
|
|
|
2950
3776
|
export interface V1RebootSystem {
|
|
2951
3777
|
/**
|
|
2952
3778
|
*
|
|
2953
|
-
* @type {
|
|
3779
|
+
* @type {string}
|
|
2954
3780
|
* @memberof V1RebootSystem
|
|
2955
3781
|
*/
|
|
2956
|
-
'
|
|
2957
|
-
|
|
3782
|
+
'nodeId': string;
|
|
3783
|
+
/**
|
|
3784
|
+
*
|
|
3785
|
+
* @type {string}
|
|
3786
|
+
* @memberof V1RebootSystem
|
|
3787
|
+
*/
|
|
3788
|
+
'executableAt'?: string;
|
|
3789
|
+
}
|
|
2958
3790
|
/**
|
|
2959
3791
|
*
|
|
2960
3792
|
* @export
|
|
@@ -2967,56 +3799,256 @@ export interface V1RegisterNodeControllerRequest {
|
|
|
2967
3799
|
* @memberof V1RegisterNodeControllerRequest
|
|
2968
3800
|
*/
|
|
2969
3801
|
'chipSerialNumber': number;
|
|
3802
|
+
/**
|
|
3803
|
+
*
|
|
3804
|
+
* @type {Array<NetworkInterface>}
|
|
3805
|
+
* @memberof V1RegisterNodeControllerRequest
|
|
3806
|
+
*/
|
|
3807
|
+
'interfaces'?: Array<NetworkInterface>;
|
|
2970
3808
|
}
|
|
2971
3809
|
/**
|
|
2972
|
-
*
|
|
3810
|
+
*
|
|
2973
3811
|
* @export
|
|
2974
|
-
* @interface
|
|
3812
|
+
* @interface V1RequestMacAddressesRequest
|
|
2975
3813
|
*/
|
|
2976
|
-
export interface
|
|
3814
|
+
export interface V1RequestMacAddressesRequest {
|
|
2977
3815
|
/**
|
|
2978
3816
|
*
|
|
2979
3817
|
* @type {string}
|
|
2980
|
-
* @memberof
|
|
3818
|
+
* @memberof V1RequestMacAddressesRequest
|
|
2981
3819
|
*/
|
|
2982
|
-
'
|
|
3820
|
+
'lineageId': string;
|
|
2983
3821
|
/**
|
|
2984
|
-
*
|
|
2985
|
-
* @type {
|
|
2986
|
-
* @memberof
|
|
3822
|
+
*
|
|
3823
|
+
* @type {Array<NetworkInterface>}
|
|
3824
|
+
* @memberof V1RequestMacAddressesRequest
|
|
2987
3825
|
*/
|
|
2988
|
-
'
|
|
3826
|
+
'interfaces': Array<NetworkInterface>;
|
|
3827
|
+
}
|
|
3828
|
+
/**
|
|
3829
|
+
*
|
|
3830
|
+
* @export
|
|
3831
|
+
* @interface V1RequestMacAddressesResponse
|
|
3832
|
+
*/
|
|
3833
|
+
export interface V1RequestMacAddressesResponse {
|
|
2989
3834
|
/**
|
|
2990
3835
|
*
|
|
2991
|
-
* @type {
|
|
2992
|
-
* @memberof
|
|
3836
|
+
* @type {Array<V1RequestMacAddressesResponseMacAddressesInner>}
|
|
3837
|
+
* @memberof V1RequestMacAddressesResponse
|
|
2993
3838
|
*/
|
|
2994
|
-
'
|
|
3839
|
+
'macAddresses': Array<V1RequestMacAddressesResponseMacAddressesInner>;
|
|
3840
|
+
}
|
|
3841
|
+
/**
|
|
3842
|
+
*
|
|
3843
|
+
* @export
|
|
3844
|
+
* @interface V1RequestMacAddressesResponseMacAddressesInner
|
|
3845
|
+
*/
|
|
3846
|
+
export interface V1RequestMacAddressesResponseMacAddressesInner {
|
|
2995
3847
|
/**
|
|
2996
|
-
*
|
|
3848
|
+
* The MAC address of the node controller.
|
|
2997
3849
|
* @type {string}
|
|
2998
|
-
* @memberof
|
|
3850
|
+
* @memberof V1RequestMacAddressesResponseMacAddressesInner
|
|
2999
3851
|
*/
|
|
3000
|
-
'
|
|
3852
|
+
'macAddress': string;
|
|
3001
3853
|
/**
|
|
3002
3854
|
*
|
|
3003
|
-
* @type {
|
|
3004
|
-
* @memberof
|
|
3855
|
+
* @type {NetworkInterface}
|
|
3856
|
+
* @memberof V1RequestMacAddressesResponseMacAddressesInner
|
|
3005
3857
|
*/
|
|
3006
|
-
'
|
|
3858
|
+
'interface': NetworkInterface;
|
|
3007
3859
|
}
|
|
3008
3860
|
/**
|
|
3009
|
-
*
|
|
3861
|
+
* Resolved Observation Instruction with additional resolution fields
|
|
3010
3862
|
* @export
|
|
3011
|
-
* @interface
|
|
3863
|
+
* @interface V1ResolvedInstruction
|
|
3012
3864
|
*/
|
|
3013
|
-
export interface
|
|
3865
|
+
export interface V1ResolvedInstruction {
|
|
3866
|
+
/**
|
|
3867
|
+
*
|
|
3868
|
+
* @type {string}
|
|
3869
|
+
* @memberof V1ResolvedInstruction
|
|
3870
|
+
*/
|
|
3871
|
+
'id': string;
|
|
3872
|
+
/**
|
|
3873
|
+
*
|
|
3874
|
+
* @type {string}
|
|
3875
|
+
* @memberof V1ResolvedInstruction
|
|
3876
|
+
*/
|
|
3877
|
+
'noradId'?: string;
|
|
3878
|
+
/**
|
|
3879
|
+
*
|
|
3880
|
+
* @type {OrbitType}
|
|
3881
|
+
* @memberof V1ResolvedInstruction
|
|
3882
|
+
*/
|
|
3883
|
+
'orbitType'?: OrbitType;
|
|
3884
|
+
/**
|
|
3885
|
+
*
|
|
3886
|
+
* @type {string}
|
|
3887
|
+
* @memberof V1ResolvedInstruction
|
|
3888
|
+
*/
|
|
3889
|
+
'imageSetId': string;
|
|
3890
|
+
/**
|
|
3891
|
+
*
|
|
3892
|
+
* @type {string}
|
|
3893
|
+
* @memberof V1ResolvedInstruction
|
|
3894
|
+
*/
|
|
3895
|
+
'targetId': string;
|
|
3896
|
+
/**
|
|
3897
|
+
*
|
|
3898
|
+
* @type {TrackingType}
|
|
3899
|
+
* @memberof V1ResolvedInstruction
|
|
3900
|
+
*/
|
|
3901
|
+
'trackingType': TrackingType;
|
|
3902
|
+
/**
|
|
3903
|
+
*
|
|
3904
|
+
* @type {number}
|
|
3905
|
+
* @memberof V1ResolvedInstruction
|
|
3906
|
+
*/
|
|
3907
|
+
'exposureDuration': number;
|
|
3908
|
+
/**
|
|
3909
|
+
*
|
|
3910
|
+
* @type {number}
|
|
3911
|
+
* @memberof V1ResolvedInstruction
|
|
3912
|
+
*/
|
|
3913
|
+
'binning': number;
|
|
3914
|
+
/**
|
|
3915
|
+
*
|
|
3916
|
+
* @type {number}
|
|
3917
|
+
* @memberof V1ResolvedInstruction
|
|
3918
|
+
*/
|
|
3919
|
+
'gain': number;
|
|
3920
|
+
/**
|
|
3921
|
+
*
|
|
3922
|
+
* @type {number}
|
|
3923
|
+
* @memberof V1ResolvedInstruction
|
|
3924
|
+
*/
|
|
3925
|
+
'gainMode': number;
|
|
3926
|
+
/**
|
|
3927
|
+
*
|
|
3928
|
+
* @type {number}
|
|
3929
|
+
* @memberof V1ResolvedInstruction
|
|
3930
|
+
*/
|
|
3931
|
+
'gainOffset': number;
|
|
3932
|
+
/**
|
|
3933
|
+
* Represents the Right Ascension of the target at captureStart when `trackingType` is equal to `SIDEREAL`. When `trackingType` is equal to `TARGET_RATE`, however this is an offset from the RA and is better represented by the `tleOffsetRa` value.
|
|
3934
|
+
* @type {number}
|
|
3935
|
+
* @memberof V1ResolvedInstruction
|
|
3936
|
+
*/
|
|
3937
|
+
'ra': number;
|
|
3938
|
+
/**
|
|
3939
|
+
* Represents the Declination of the target at captureStart when `trackingType` is equal to `SIDEREAL`. When `trackingType` is equal to `TARGET_RATE`, however this is an offset from the Dec and is better represented by the `tleOffsetDec` value.
|
|
3940
|
+
* @type {number}
|
|
3941
|
+
* @memberof V1ResolvedInstruction
|
|
3942
|
+
*/
|
|
3943
|
+
'dec': number;
|
|
3944
|
+
/**
|
|
3945
|
+
*
|
|
3946
|
+
* @type {string}
|
|
3947
|
+
* @memberof V1ResolvedInstruction
|
|
3948
|
+
*/
|
|
3949
|
+
'captureStart': string;
|
|
3950
|
+
/**
|
|
3951
|
+
*
|
|
3952
|
+
* @type {string}
|
|
3953
|
+
* @memberof V1ResolvedInstruction
|
|
3954
|
+
*/
|
|
3955
|
+
'captureEnd': string;
|
|
3956
|
+
/**
|
|
3957
|
+
*
|
|
3958
|
+
* @type {number}
|
|
3959
|
+
* @memberof V1ResolvedInstruction
|
|
3960
|
+
*/
|
|
3961
|
+
'preCaptureWait': number;
|
|
3014
3962
|
/**
|
|
3015
3963
|
*
|
|
3964
|
+
* @type {string}
|
|
3965
|
+
* @memberof V1ResolvedInstruction
|
|
3966
|
+
*/
|
|
3967
|
+
'startSlewAt': string;
|
|
3968
|
+
/**
|
|
3969
|
+
*
|
|
3970
|
+
* @type {CameraMode}
|
|
3971
|
+
* @memberof V1ResolvedInstruction
|
|
3972
|
+
*/
|
|
3973
|
+
'cameraMode': CameraMode;
|
|
3974
|
+
/**
|
|
3975
|
+
*
|
|
3976
|
+
* @type {string}
|
|
3977
|
+
* @memberof V1ResolvedInstruction
|
|
3978
|
+
*/
|
|
3979
|
+
'tleName'?: string;
|
|
3980
|
+
/**
|
|
3981
|
+
*
|
|
3982
|
+
* @type {string}
|
|
3983
|
+
* @memberof V1ResolvedInstruction
|
|
3984
|
+
*/
|
|
3985
|
+
'tleLine1': string;
|
|
3986
|
+
/**
|
|
3987
|
+
*
|
|
3988
|
+
* @type {string}
|
|
3989
|
+
* @memberof V1ResolvedInstruction
|
|
3990
|
+
*/
|
|
3991
|
+
'tleLine2': string;
|
|
3992
|
+
/**
|
|
3993
|
+
*
|
|
3994
|
+
* @type {number}
|
|
3995
|
+
* @memberof V1ResolvedInstruction
|
|
3996
|
+
*/
|
|
3997
|
+
'tleOffsetDec'?: number;
|
|
3998
|
+
/**
|
|
3999
|
+
*
|
|
4000
|
+
* @type {number}
|
|
4001
|
+
* @memberof V1ResolvedInstruction
|
|
4002
|
+
*/
|
|
4003
|
+
'tleOffsetRa'?: number;
|
|
4004
|
+
/**
|
|
4005
|
+
*
|
|
4006
|
+
* @type {Array<V1BlackoutBox>}
|
|
4007
|
+
* @memberof V1ResolvedInstruction
|
|
4008
|
+
*/
|
|
4009
|
+
'blackoutBoxes'?: Array<V1BlackoutBox>;
|
|
4010
|
+
/**
|
|
4011
|
+
*
|
|
4012
|
+
* @type {PlateSolveParameters}
|
|
4013
|
+
* @memberof V1ResolvedInstruction
|
|
4014
|
+
*/
|
|
4015
|
+
'plateSolveParameters'?: PlateSolveParameters;
|
|
4016
|
+
/**
|
|
4017
|
+
*
|
|
4018
|
+
* @type {UploadPriority}
|
|
4019
|
+
* @memberof V1ResolvedInstruction
|
|
4020
|
+
*/
|
|
4021
|
+
'uploadPriority'?: UploadPriority;
|
|
4022
|
+
/**
|
|
4023
|
+
*
|
|
4024
|
+
* @type {Array<V1ObservationInstructionSatellitePassEphemerisInner>}
|
|
4025
|
+
* @memberof V1ResolvedInstruction
|
|
4026
|
+
*/
|
|
4027
|
+
'satellitePassEphemeris'?: Array<V1ObservationInstructionSatellitePassEphemerisInner>;
|
|
4028
|
+
/**
|
|
4029
|
+
*
|
|
4030
|
+
* @type {V1ObservationInstructionAscomAxisRates}
|
|
4031
|
+
* @memberof V1ResolvedInstruction
|
|
4032
|
+
*/
|
|
4033
|
+
'ascomAxisRates'?: V1ObservationInstructionAscomAxisRates;
|
|
4034
|
+
/**
|
|
4035
|
+
* x size of the square cropped area, in pixels
|
|
4036
|
+
* @type {number}
|
|
4037
|
+
* @memberof V1ResolvedInstruction
|
|
4038
|
+
*/
|
|
4039
|
+
'cropSizeWidthPx'?: number;
|
|
4040
|
+
/**
|
|
4041
|
+
* y size of the square cropped area, in pixels
|
|
4042
|
+
* @type {number}
|
|
4043
|
+
* @memberof V1ResolvedInstruction
|
|
4044
|
+
*/
|
|
4045
|
+
'cropSizeHeightPx'?: number;
|
|
4046
|
+
/**
|
|
4047
|
+
* Whether the resolved image should be auto-exposed
|
|
3016
4048
|
* @type {boolean}
|
|
3017
|
-
* @memberof
|
|
4049
|
+
* @memberof V1ResolvedInstruction
|
|
3018
4050
|
*/
|
|
3019
|
-
'
|
|
4051
|
+
'resolvedImageAutoExposure': boolean;
|
|
3020
4052
|
}
|
|
3021
4053
|
/**
|
|
3022
4054
|
*
|
|
@@ -3037,6 +4069,12 @@ export interface V1SafetyStatusUpdated {
|
|
|
3037
4069
|
* @interface V1SendFlare
|
|
3038
4070
|
*/
|
|
3039
4071
|
export interface V1SendFlare {
|
|
4072
|
+
/**
|
|
4073
|
+
*
|
|
4074
|
+
* @type {string}
|
|
4075
|
+
* @memberof V1SendFlare
|
|
4076
|
+
*/
|
|
4077
|
+
'nodeId': string;
|
|
3040
4078
|
/**
|
|
3041
4079
|
*
|
|
3042
4080
|
* @type {number}
|
|
@@ -3091,6 +4129,12 @@ export interface V1SendFlare {
|
|
|
3091
4129
|
* @memberof V1SendFlare
|
|
3092
4130
|
*/
|
|
3093
4131
|
'diagnosePlatformConnection'?: boolean;
|
|
4132
|
+
/**
|
|
4133
|
+
*
|
|
4134
|
+
* @type {string}
|
|
4135
|
+
* @memberof V1SendFlare
|
|
4136
|
+
*/
|
|
4137
|
+
'executableAt'?: string;
|
|
3094
4138
|
}
|
|
3095
4139
|
/**
|
|
3096
4140
|
* Setup Action
|
|
@@ -3158,29 +4202,70 @@ export interface V1SlewTimingInterval {
|
|
|
3158
4202
|
/**
|
|
3159
4203
|
*
|
|
3160
4204
|
* @export
|
|
3161
|
-
* @
|
|
4205
|
+
* @enum {string}
|
|
3162
4206
|
*/
|
|
3163
|
-
export
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
* @memberof V1StartPerpetualInstructionLoop
|
|
3168
|
-
*/
|
|
3169
|
-
'placeholder'?: boolean;
|
|
3170
|
-
}
|
|
4207
|
+
export declare const V1SoftwarePackageType: {
|
|
4208
|
+
readonly QCOM_OTA: "QCOM_OTA";
|
|
4209
|
+
};
|
|
4210
|
+
export type V1SoftwarePackageType = typeof V1SoftwarePackageType[keyof typeof V1SoftwarePackageType];
|
|
3171
4211
|
/**
|
|
3172
4212
|
*
|
|
3173
4213
|
* @export
|
|
3174
|
-
* @interface
|
|
4214
|
+
* @interface V1SoftwareRelease
|
|
3175
4215
|
*/
|
|
3176
|
-
export interface
|
|
4216
|
+
export interface V1SoftwareRelease {
|
|
3177
4217
|
/**
|
|
3178
4218
|
*
|
|
3179
|
-
* @type {
|
|
3180
|
-
* @memberof
|
|
4219
|
+
* @type {string}
|
|
4220
|
+
* @memberof V1SoftwareRelease
|
|
4221
|
+
*/
|
|
4222
|
+
'id': string;
|
|
4223
|
+
/**
|
|
4224
|
+
* Semantic version 2.0 of this release.
|
|
4225
|
+
* @type {string}
|
|
4226
|
+
* @memberof V1SoftwareRelease
|
|
4227
|
+
*/
|
|
4228
|
+
'version': string;
|
|
4229
|
+
/**
|
|
4230
|
+
*
|
|
4231
|
+
* @type {string}
|
|
4232
|
+
* @memberof V1SoftwareRelease
|
|
3181
4233
|
*/
|
|
3182
|
-
'
|
|
4234
|
+
'url': string;
|
|
4235
|
+
/**
|
|
4236
|
+
* SHA256 checksum of the file
|
|
4237
|
+
* @type {string}
|
|
4238
|
+
* @memberof V1SoftwareRelease
|
|
4239
|
+
*/
|
|
4240
|
+
'checksum': string;
|
|
4241
|
+
/**
|
|
4242
|
+
*
|
|
4243
|
+
* @type {V1FileType}
|
|
4244
|
+
* @memberof V1SoftwareRelease
|
|
4245
|
+
*/
|
|
4246
|
+
'fileType': V1FileType;
|
|
4247
|
+
/**
|
|
4248
|
+
*
|
|
4249
|
+
* @type {V1SoftwarePackageType}
|
|
4250
|
+
* @memberof V1SoftwareRelease
|
|
4251
|
+
*/
|
|
4252
|
+
'packageType': V1SoftwarePackageType;
|
|
4253
|
+
/**
|
|
4254
|
+
*
|
|
4255
|
+
* @type {Array<V1SoftwareRuntimeEnvironmentType>}
|
|
4256
|
+
* @memberof V1SoftwareRelease
|
|
4257
|
+
*/
|
|
4258
|
+
'runtimeEnvironmentTypes': Array<V1SoftwareRuntimeEnvironmentType>;
|
|
3183
4259
|
}
|
|
4260
|
+
/**
|
|
4261
|
+
*
|
|
4262
|
+
* @export
|
|
4263
|
+
* @enum {string}
|
|
4264
|
+
*/
|
|
4265
|
+
export declare const V1SoftwareRuntimeEnvironmentType: {
|
|
4266
|
+
readonly EDGE_CONTROLLER: "EDGE_CONTROLLER";
|
|
4267
|
+
};
|
|
4268
|
+
export type V1SoftwareRuntimeEnvironmentType = typeof V1SoftwareRuntimeEnvironmentType[keyof typeof V1SoftwareRuntimeEnvironmentType];
|
|
3184
4269
|
/**
|
|
3185
4270
|
* V1TimeWindowedAsset
|
|
3186
4271
|
* @export
|
|
@@ -3246,6 +4331,31 @@ export declare const V1TimeWindowedAssetType: {
|
|
|
3246
4331
|
readonly KEOGRAM: "KEOGRAM";
|
|
3247
4332
|
};
|
|
3248
4333
|
export type V1TimeWindowedAssetType = typeof V1TimeWindowedAssetType[keyof typeof V1TimeWindowedAssetType];
|
|
4334
|
+
/**
|
|
4335
|
+
*
|
|
4336
|
+
* @export
|
|
4337
|
+
* @interface V1UpdateMountRequest
|
|
4338
|
+
*/
|
|
4339
|
+
export interface V1UpdateMountRequest {
|
|
4340
|
+
/**
|
|
4341
|
+
*
|
|
4342
|
+
* @type {string}
|
|
4343
|
+
* @memberof V1UpdateMountRequest
|
|
4344
|
+
*/
|
|
4345
|
+
'id': string;
|
|
4346
|
+
/**
|
|
4347
|
+
*
|
|
4348
|
+
* @type {string}
|
|
4349
|
+
* @memberof V1UpdateMountRequest
|
|
4350
|
+
*/
|
|
4351
|
+
'model'?: string;
|
|
4352
|
+
/**
|
|
4353
|
+
*
|
|
4354
|
+
* @type {MountType}
|
|
4355
|
+
* @memberof V1UpdateMountRequest
|
|
4356
|
+
*/
|
|
4357
|
+
'mountType'?: MountType;
|
|
4358
|
+
}
|
|
3249
4359
|
/**
|
|
3250
4360
|
*
|
|
3251
4361
|
* @export
|
|
@@ -3570,6 +4680,43 @@ export interface V1UpdateNodeRequest {
|
|
|
3570
4680
|
*/
|
|
3571
4681
|
'state'?: NodeState;
|
|
3572
4682
|
}
|
|
4683
|
+
/**
|
|
4684
|
+
*
|
|
4685
|
+
* @export
|
|
4686
|
+
* @interface V1UpdateOpticalTubeRequest
|
|
4687
|
+
*/
|
|
4688
|
+
export interface V1UpdateOpticalTubeRequest {
|
|
4689
|
+
/**
|
|
4690
|
+
*
|
|
4691
|
+
* @type {string}
|
|
4692
|
+
* @memberof V1UpdateOpticalTubeRequest
|
|
4693
|
+
*/
|
|
4694
|
+
'id': string;
|
|
4695
|
+
/**
|
|
4696
|
+
*
|
|
4697
|
+
* @type {string}
|
|
4698
|
+
* @memberof V1UpdateOpticalTubeRequest
|
|
4699
|
+
*/
|
|
4700
|
+
'model'?: string;
|
|
4701
|
+
/**
|
|
4702
|
+
*
|
|
4703
|
+
* @type {number}
|
|
4704
|
+
* @memberof V1UpdateOpticalTubeRequest
|
|
4705
|
+
*/
|
|
4706
|
+
'focalLengthMm'?: number;
|
|
4707
|
+
/**
|
|
4708
|
+
*
|
|
4709
|
+
* @type {number}
|
|
4710
|
+
* @memberof V1UpdateOpticalTubeRequest
|
|
4711
|
+
*/
|
|
4712
|
+
'apertureMm'?: number;
|
|
4713
|
+
/**
|
|
4714
|
+
*
|
|
4715
|
+
* @type {OpticalTubeType}
|
|
4716
|
+
* @memberof V1UpdateOpticalTubeRequest
|
|
4717
|
+
*/
|
|
4718
|
+
'type'?: OpticalTubeType;
|
|
4719
|
+
}
|
|
3573
4720
|
/**
|
|
3574
4721
|
*
|
|
3575
4722
|
* @export
|
|
@@ -3632,11 +4779,40 @@ export interface V2CompleteObservationRequest {
|
|
|
3632
4779
|
*/
|
|
3633
4780
|
'metrics'?: V1ObservationMetrics;
|
|
3634
4781
|
}
|
|
4782
|
+
/**
|
|
4783
|
+
*
|
|
4784
|
+
* @export
|
|
4785
|
+
* @interface V2NodeControllerIssueCertificateResponse
|
|
4786
|
+
*/
|
|
4787
|
+
export interface V2NodeControllerIssueCertificateResponse {
|
|
4788
|
+
/**
|
|
4789
|
+
*
|
|
4790
|
+
* @type {PKICertificate}
|
|
4791
|
+
* @memberof V2NodeControllerIssueCertificateResponse
|
|
4792
|
+
*/
|
|
4793
|
+
'signatureCertificate': PKICertificate;
|
|
4794
|
+
/**
|
|
4795
|
+
*
|
|
4796
|
+
* @type {PKICertificate}
|
|
4797
|
+
* @memberof V2NodeControllerIssueCertificateResponse
|
|
4798
|
+
*/
|
|
4799
|
+
'encryptionCertificate': PKICertificate;
|
|
4800
|
+
}
|
|
3635
4801
|
/**
|
|
3636
4802
|
* DefaultApi - axios parameter creator
|
|
3637
4803
|
* @export
|
|
3638
4804
|
*/
|
|
3639
4805
|
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4806
|
+
/**
|
|
4807
|
+
* Get images for a node for display in a camera roll format
|
|
4808
|
+
* @param {string} [nodeId]
|
|
4809
|
+
* @param {string} [lineageId]
|
|
4810
|
+
* @param {string} [before]
|
|
4811
|
+
* @param {string} [types] Comma separated array of [ImageSetType](#model/imagesettype)
|
|
4812
|
+
* @param {*} [options] Override http request option.
|
|
4813
|
+
* @throws {RequiredError}
|
|
4814
|
+
*/
|
|
4815
|
+
getCameraRoll: (nodeId?: string, lineageId?: string, before?: string, types?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3640
4816
|
/**
|
|
3641
4817
|
* Get the various tokens used in client applications
|
|
3642
4818
|
* @param {*} [options] Override http request option.
|
|
@@ -3691,6 +4867,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3691
4867
|
* @throws {RequiredError}
|
|
3692
4868
|
*/
|
|
3693
4869
|
v1CreateAutofocusResult: (v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4870
|
+
/**
|
|
4871
|
+
* Create a filter wheel.
|
|
4872
|
+
* @param {V1CreateFilterWheelRequest} v1CreateFilterWheelRequest
|
|
4873
|
+
* @param {*} [options] Override http request option.
|
|
4874
|
+
* @throws {RequiredError}
|
|
4875
|
+
*/
|
|
4876
|
+
v1CreateFilterWheel: (v1CreateFilterWheelRequest: V1CreateFilterWheelRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3694
4877
|
/**
|
|
3695
4878
|
* Create an focuser.
|
|
3696
4879
|
* @param {V1CreateFocuserRequest} v1CreateFocuserRequest
|
|
@@ -3711,7 +4894,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3711
4894
|
* @param {*} [options] Override http request option.
|
|
3712
4895
|
* @throws {RequiredError}
|
|
3713
4896
|
*/
|
|
3714
|
-
v1CreateImageSetImage: (v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4897
|
+
v1CreateImageSetImage: (v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4898
|
+
/**
|
|
4899
|
+
* Create an image set image upload url.
|
|
4900
|
+
* @param {V1CreateImageSetImageUploadUrlRequest} v1CreateImageSetImageUploadUrlRequest
|
|
4901
|
+
* @param {*} [options] Override http request option.
|
|
4902
|
+
* @throws {RequiredError}
|
|
4903
|
+
*/
|
|
4904
|
+
v1CreateImageSetImageUploadUrl: (v1CreateImageSetImageUploadUrlRequest: V1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3715
4905
|
/**
|
|
3716
4906
|
* Create metrics.
|
|
3717
4907
|
* @param {Array<V1Metric>} v1Metric
|
|
@@ -3768,6 +4958,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3768
4958
|
* @throws {RequiredError}
|
|
3769
4959
|
*/
|
|
3770
4960
|
v1CreateOpticalTube: (v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4961
|
+
/**
|
|
4962
|
+
* Set metadata and plate solve results for an image.
|
|
4963
|
+
* @param {V1CreateProcessedImageSetImageRequest} v1CreateProcessedImageSetImageRequest
|
|
4964
|
+
* @param {*} [options] Override http request option.
|
|
4965
|
+
* @throws {RequiredError}
|
|
4966
|
+
*/
|
|
4967
|
+
v1CreateProcessedImageSetImage: (v1CreateProcessedImageSetImageRequest: V1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3771
4968
|
/**
|
|
3772
4969
|
* Create a time windowed asset.
|
|
3773
4970
|
* @param {V1CreateTimeWindowedAssetRequest} v1CreateTimeWindowedAssetRequest
|
|
@@ -3775,6 +4972,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3775
4972
|
* @throws {RequiredError}
|
|
3776
4973
|
*/
|
|
3777
4974
|
v1CreateTimeWindowedAsset: (v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4975
|
+
/**
|
|
4976
|
+
* Get the sunrise/sunset times for a specific node by its ID
|
|
4977
|
+
* @param {string} nodeId
|
|
4978
|
+
* @param {*} [options] Override http request option.
|
|
4979
|
+
* @throws {RequiredError}
|
|
4980
|
+
*/
|
|
4981
|
+
v1CustomerGetSuntimes: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3778
4982
|
/**
|
|
3779
4983
|
* Delete an image set.
|
|
3780
4984
|
* @param {string} id
|
|
@@ -3818,6 +5022,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3818
5022
|
* @throws {RequiredError}
|
|
3819
5023
|
*/
|
|
3820
5024
|
v1GetCameras: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5025
|
+
/**
|
|
5026
|
+
* Get a filter wheel.
|
|
5027
|
+
* @param {string} id
|
|
5028
|
+
* @param {*} [options] Override http request option.
|
|
5029
|
+
* @throws {RequiredError}
|
|
5030
|
+
*/
|
|
5031
|
+
v1GetFilterWheel: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3821
5032
|
/**
|
|
3822
5033
|
* Get a focuser.
|
|
3823
5034
|
* @param {string} id
|
|
@@ -3883,12 +5094,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3883
5094
|
*/
|
|
3884
5095
|
v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3885
5096
|
/**
|
|
3886
|
-
* Get node by lineage id.
|
|
3887
|
-
* @param {string} lineageId
|
|
5097
|
+
* Get node by lineage id or node id.
|
|
5098
|
+
* @param {string} [lineageId]
|
|
5099
|
+
* @param {string} [nodeId]
|
|
3888
5100
|
* @param {*} [options] Override http request option.
|
|
3889
5101
|
* @throws {RequiredError}
|
|
3890
5102
|
*/
|
|
3891
|
-
v1GetNode: (lineageId
|
|
5103
|
+
v1GetNode: (lineageId?: string, nodeId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3892
5104
|
/**
|
|
3893
5105
|
* Get node commands
|
|
3894
5106
|
* @param {string} nodeId
|
|
@@ -3897,13 +5109,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3897
5109
|
* @throws {RequiredError}
|
|
3898
5110
|
*/
|
|
3899
5111
|
v1GetNodeCommands: (nodeId: string, executableAt: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3900
|
-
/**
|
|
3901
|
-
* returns the current release for the node
|
|
3902
|
-
* @param {string} lineageId lineage id
|
|
3903
|
-
* @param {*} [options] Override http request option.
|
|
3904
|
-
* @throws {RequiredError}
|
|
3905
|
-
*/
|
|
3906
|
-
v1GetNodeControllerRelease: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3907
5112
|
/**
|
|
3908
5113
|
* Get node diagnostic tasks.
|
|
3909
5114
|
* @param {string} nodeId
|
|
@@ -3912,6 +5117,16 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3912
5117
|
* @throws {RequiredError}
|
|
3913
5118
|
*/
|
|
3914
5119
|
v1GetNodeDiagnosticTasks: (nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5120
|
+
/**
|
|
5121
|
+
* Get node events Apex Charts timeline
|
|
5122
|
+
* @param {string} startTime
|
|
5123
|
+
* @param {string} endTime
|
|
5124
|
+
* @param {string} [nodeId]
|
|
5125
|
+
* @param {string} [lineageId]
|
|
5126
|
+
* @param {*} [options] Override http request option.
|
|
5127
|
+
* @throws {RequiredError}
|
|
5128
|
+
*/
|
|
5129
|
+
v1GetNodeEventsApexChartsTimeline: (startTime: string, endTime: string, nodeId?: string, lineageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3915
5130
|
/**
|
|
3916
5131
|
* Get a node flare by id.
|
|
3917
5132
|
* @param {string} id
|
|
@@ -3974,6 +5189,26 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3974
5189
|
* @throws {RequiredError}
|
|
3975
5190
|
*/
|
|
3976
5191
|
v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5192
|
+
/**
|
|
5193
|
+
* Get satellites for skyAtlas. returns jsonl
|
|
5194
|
+
* @param {*} [options] Override http request option.
|
|
5195
|
+
* @throws {RequiredError}
|
|
5196
|
+
*/
|
|
5197
|
+
v1GetSkyAtlasSatellites: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5198
|
+
/**
|
|
5199
|
+
* Get the target QCOM OTA software release for a node
|
|
5200
|
+
* @param {string} lineageId lineage id
|
|
5201
|
+
* @param {*} [options] Override http request option.
|
|
5202
|
+
* @throws {RequiredError}
|
|
5203
|
+
*/
|
|
5204
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5205
|
+
/**
|
|
5206
|
+
* Get the target software releases for a node
|
|
5207
|
+
* @param {string} lineageId lineage id
|
|
5208
|
+
* @param {*} [options] Override http request option.
|
|
5209
|
+
* @throws {RequiredError}
|
|
5210
|
+
*/
|
|
5211
|
+
v1GetTargetSoftwareReleasesForNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3977
5212
|
/**
|
|
3978
5213
|
* Get a time windowed asset by id.
|
|
3979
5214
|
* @param {string} timeWindowedAssetId
|
|
@@ -4001,6 +5236,38 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4001
5236
|
* @throws {RequiredError}
|
|
4002
5237
|
*/
|
|
4003
5238
|
v1MountMatch: (model?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5239
|
+
/**
|
|
5240
|
+
* \' V1EnableAutonomousOperation - immediately places the system back under autonomous operation mode. !!CAUTION!! This will immediately begin slewing your system around if conditions are safe. Please ensure your system is prepared to move \'
|
|
5241
|
+
* @param {V1EnableAutonomousOperation} v1EnableAutonomousOperation
|
|
5242
|
+
* @param {*} [options] Override http request option.
|
|
5243
|
+
* @deprecated
|
|
5244
|
+
* @throws {RequiredError}
|
|
5245
|
+
*/
|
|
5246
|
+
v1NodeCommandV1EnableAutonomousOperation: (v1EnableAutonomousOperation: V1EnableAutonomousOperation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5247
|
+
/**
|
|
5248
|
+
* \' V1EnableManualOperation- immediately halts all autonomous operation of the system and parks the telescope (including closing the enclosure if present). !!CAUTION!! This is an indefinite halt until V1EnableAutonomousOperation is called. Your system will not respond to weather and safety events! \'
|
|
5249
|
+
* @param {V1EnableManualOperation} v1EnableManualOperation
|
|
5250
|
+
* @param {*} [options] Override http request option.
|
|
5251
|
+
* @deprecated
|
|
5252
|
+
* @throws {RequiredError}
|
|
5253
|
+
*/
|
|
5254
|
+
v1NodeCommandV1EnableManualOperation: (v1EnableManualOperation: V1EnableManualOperation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5255
|
+
/**
|
|
5256
|
+
* v1 reboot system
|
|
5257
|
+
* @param {V1RebootSystem} v1RebootSystem
|
|
5258
|
+
* @param {*} [options] Override http request option.
|
|
5259
|
+
* @deprecated
|
|
5260
|
+
* @throws {RequiredError}
|
|
5261
|
+
*/
|
|
5262
|
+
v1NodeCommandV1RebootSystem: (v1RebootSystem: V1RebootSystem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5263
|
+
/**
|
|
5264
|
+
* v1 send flare
|
|
5265
|
+
* @param {V1SendFlare} v1SendFlare
|
|
5266
|
+
* @param {*} [options] Override http request option.
|
|
5267
|
+
* @deprecated
|
|
5268
|
+
* @throws {RequiredError}
|
|
5269
|
+
*/
|
|
5270
|
+
v1NodeCommandV1SendFlare: (v1SendFlare: V1SendFlare, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4004
5271
|
/**
|
|
4005
5272
|
* Match optical tube.
|
|
4006
5273
|
* @param {string} [model]
|
|
@@ -4017,6 +5284,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4017
5284
|
* @throws {RequiredError}
|
|
4018
5285
|
*/
|
|
4019
5286
|
v1RegisterNodeController: (v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5287
|
+
/**
|
|
5288
|
+
* Requests mac addresses for the given lineage and interfaces.
|
|
5289
|
+
* @param {V1RequestMacAddressesRequest} v1RequestMacAddressesRequest
|
|
5290
|
+
* @param {*} [options] Override http request option.
|
|
5291
|
+
* @throws {RequiredError}
|
|
5292
|
+
*/
|
|
5293
|
+
v1RequestMacAddresses: (v1RequestMacAddressesRequest: V1RequestMacAddressesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5294
|
+
/**
|
|
5295
|
+
* Update a mount.
|
|
5296
|
+
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
5297
|
+
* @param {*} [options] Override http request option.
|
|
5298
|
+
* @throws {RequiredError}
|
|
5299
|
+
*/
|
|
5300
|
+
v1UpdateMount: (v1UpdateMountRequest: V1UpdateMountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4020
5301
|
/**
|
|
4021
5302
|
* Update a node.
|
|
4022
5303
|
* @param {V1UpdateNodeRequest} v1UpdateNodeRequest
|
|
@@ -4031,6 +5312,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4031
5312
|
* @throws {RequiredError}
|
|
4032
5313
|
*/
|
|
4033
5314
|
v1UpdateNodeComponents: (v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5315
|
+
/**
|
|
5316
|
+
* Update an optical tube.
|
|
5317
|
+
* @param {V1UpdateOpticalTubeRequest} v1UpdateOpticalTubeRequest
|
|
5318
|
+
* @param {*} [options] Override http request option.
|
|
5319
|
+
* @throws {RequiredError}
|
|
5320
|
+
*/
|
|
5321
|
+
v1UpdateOpticalTube: (v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4034
5322
|
/**
|
|
4035
5323
|
* Complete an observation utilizing the async pipeline.
|
|
4036
5324
|
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
@@ -4038,12 +5326,29 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4038
5326
|
* @throws {RequiredError}
|
|
4039
5327
|
*/
|
|
4040
5328
|
v2CompleteObservation: (v2CompleteObservationRequest: V2CompleteObservationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5329
|
+
/**
|
|
5330
|
+
* V2 Issue Certificate
|
|
5331
|
+
* @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
|
|
5332
|
+
* @param {*} [options] Override http request option.
|
|
5333
|
+
* @throws {RequiredError}
|
|
5334
|
+
*/
|
|
5335
|
+
v2IssueCertificate: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4041
5336
|
};
|
|
4042
5337
|
/**
|
|
4043
5338
|
* DefaultApi - functional programming interface
|
|
4044
5339
|
* @export
|
|
4045
5340
|
*/
|
|
4046
5341
|
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
5342
|
+
/**
|
|
5343
|
+
* Get images for a node for display in a camera roll format
|
|
5344
|
+
* @param {string} [nodeId]
|
|
5345
|
+
* @param {string} [lineageId]
|
|
5346
|
+
* @param {string} [before]
|
|
5347
|
+
* @param {string} [types] Comma separated array of [ImageSetType](#model/imagesettype)
|
|
5348
|
+
* @param {*} [options] Override http request option.
|
|
5349
|
+
* @throws {RequiredError}
|
|
5350
|
+
*/
|
|
5351
|
+
getCameraRoll(nodeId?: string, lineageId?: string, before?: string, types?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1CameraRollImage>>>;
|
|
4047
5352
|
/**
|
|
4048
5353
|
* Get the various tokens used in client applications
|
|
4049
5354
|
* @param {*} [options] Override http request option.
|
|
@@ -4098,6 +5403,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4098
5403
|
* @throws {RequiredError}
|
|
4099
5404
|
*/
|
|
4100
5405
|
v1CreateAutofocusResult(v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5406
|
+
/**
|
|
5407
|
+
* Create a filter wheel.
|
|
5408
|
+
* @param {V1CreateFilterWheelRequest} v1CreateFilterWheelRequest
|
|
5409
|
+
* @param {*} [options] Override http request option.
|
|
5410
|
+
* @throws {RequiredError}
|
|
5411
|
+
*/
|
|
5412
|
+
v1CreateFilterWheel(v1CreateFilterWheelRequest: V1CreateFilterWheelRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4101
5413
|
/**
|
|
4102
5414
|
* Create an focuser.
|
|
4103
5415
|
* @param {V1CreateFocuserRequest} v1CreateFocuserRequest
|
|
@@ -4119,6 +5431,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4119
5431
|
* @throws {RequiredError}
|
|
4120
5432
|
*/
|
|
4121
5433
|
v1CreateImageSetImage(v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
|
|
5434
|
+
/**
|
|
5435
|
+
* Create an image set image upload url.
|
|
5436
|
+
* @param {V1CreateImageSetImageUploadUrlRequest} v1CreateImageSetImageUploadUrlRequest
|
|
5437
|
+
* @param {*} [options] Override http request option.
|
|
5438
|
+
* @throws {RequiredError}
|
|
5439
|
+
*/
|
|
5440
|
+
v1CreateImageSetImageUploadUrl(v1CreateImageSetImageUploadUrlRequest: V1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageUploadUrlResponse>>;
|
|
4122
5441
|
/**
|
|
4123
5442
|
* Create metrics.
|
|
4124
5443
|
* @param {Array<V1Metric>} v1Metric
|
|
@@ -4175,6 +5494,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4175
5494
|
* @throws {RequiredError}
|
|
4176
5495
|
*/
|
|
4177
5496
|
v1CreateOpticalTube(v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5497
|
+
/**
|
|
5498
|
+
* Set metadata and plate solve results for an image.
|
|
5499
|
+
* @param {V1CreateProcessedImageSetImageRequest} v1CreateProcessedImageSetImageRequest
|
|
5500
|
+
* @param {*} [options] Override http request option.
|
|
5501
|
+
* @throws {RequiredError}
|
|
5502
|
+
*/
|
|
5503
|
+
v1CreateProcessedImageSetImage(v1CreateProcessedImageSetImageRequest: V1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
|
|
4178
5504
|
/**
|
|
4179
5505
|
* Create a time windowed asset.
|
|
4180
5506
|
* @param {V1CreateTimeWindowedAssetRequest} v1CreateTimeWindowedAssetRequest
|
|
@@ -4182,6 +5508,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4182
5508
|
* @throws {RequiredError}
|
|
4183
5509
|
*/
|
|
4184
5510
|
v1CreateTimeWindowedAsset(v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateTimeWindowedAssetResponse>>;
|
|
5511
|
+
/**
|
|
5512
|
+
* Get the sunrise/sunset times for a specific node by its ID
|
|
5513
|
+
* @param {string} nodeId
|
|
5514
|
+
* @param {*} [options] Override http request option.
|
|
5515
|
+
* @throws {RequiredError}
|
|
5516
|
+
*/
|
|
5517
|
+
v1CustomerGetSuntimes(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSuntimesResponse>>;
|
|
4185
5518
|
/**
|
|
4186
5519
|
* Delete an image set.
|
|
4187
5520
|
* @param {string} id
|
|
@@ -4225,6 +5558,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4225
5558
|
* @throws {RequiredError}
|
|
4226
5559
|
*/
|
|
4227
5560
|
v1GetCameras(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
|
|
5561
|
+
/**
|
|
5562
|
+
* Get a filter wheel.
|
|
5563
|
+
* @param {string} id
|
|
5564
|
+
* @param {*} [options] Override http request option.
|
|
5565
|
+
* @throws {RequiredError}
|
|
5566
|
+
*/
|
|
5567
|
+
v1GetFilterWheel(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1FilterWheel>>;
|
|
4228
5568
|
/**
|
|
4229
5569
|
* Get a focuser.
|
|
4230
5570
|
* @param {string} id
|
|
@@ -4290,12 +5630,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4290
5630
|
*/
|
|
4291
5631
|
v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
|
|
4292
5632
|
/**
|
|
4293
|
-
* Get node by lineage id.
|
|
4294
|
-
* @param {string} lineageId
|
|
5633
|
+
* Get node by lineage id or node id.
|
|
5634
|
+
* @param {string} [lineageId]
|
|
5635
|
+
* @param {string} [nodeId]
|
|
4295
5636
|
* @param {*} [options] Override http request option.
|
|
4296
5637
|
* @throws {RequiredError}
|
|
4297
5638
|
*/
|
|
4298
|
-
v1GetNode(lineageId
|
|
5639
|
+
v1GetNode(lineageId?: string, nodeId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
|
|
4299
5640
|
/**
|
|
4300
5641
|
* Get node commands
|
|
4301
5642
|
* @param {string} nodeId
|
|
@@ -4304,13 +5645,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4304
5645
|
* @throws {RequiredError}
|
|
4305
5646
|
*/
|
|
4306
5647
|
v1GetNodeCommands(nodeId: string, executableAt: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetNodeCommandsResponse>>;
|
|
4307
|
-
/**
|
|
4308
|
-
* returns the current release for the node
|
|
4309
|
-
* @param {string} lineageId lineage id
|
|
4310
|
-
* @param {*} [options] Override http request option.
|
|
4311
|
-
* @throws {RequiredError}
|
|
4312
|
-
*/
|
|
4313
|
-
v1GetNodeControllerRelease(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Release>>;
|
|
4314
5648
|
/**
|
|
4315
5649
|
* Get node diagnostic tasks.
|
|
4316
5650
|
* @param {string} nodeId
|
|
@@ -4319,6 +5653,16 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4319
5653
|
* @throws {RequiredError}
|
|
4320
5654
|
*/
|
|
4321
5655
|
v1GetNodeDiagnosticTasks(nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
|
|
5656
|
+
/**
|
|
5657
|
+
* Get node events Apex Charts timeline
|
|
5658
|
+
* @param {string} startTime
|
|
5659
|
+
* @param {string} endTime
|
|
5660
|
+
* @param {string} [nodeId]
|
|
5661
|
+
* @param {string} [lineageId]
|
|
5662
|
+
* @param {*} [options] Override http request option.
|
|
5663
|
+
* @throws {RequiredError}
|
|
5664
|
+
*/
|
|
5665
|
+
v1GetNodeEventsApexChartsTimeline(startTime: string, endTime: string, nodeId?: string, lineageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ApexChartsTimeline>>;
|
|
4322
5666
|
/**
|
|
4323
5667
|
* Get a node flare by id.
|
|
4324
5668
|
* @param {string} id
|
|
@@ -4381,6 +5725,26 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4381
5725
|
* @throws {RequiredError}
|
|
4382
5726
|
*/
|
|
4383
5727
|
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
|
|
5728
|
+
/**
|
|
5729
|
+
* Get satellites for skyAtlas. returns jsonl
|
|
5730
|
+
* @param {*} [options] Override http request option.
|
|
5731
|
+
* @throws {RequiredError}
|
|
5732
|
+
*/
|
|
5733
|
+
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
5734
|
+
/**
|
|
5735
|
+
* Get the target QCOM OTA software release for a node
|
|
5736
|
+
* @param {string} lineageId lineage id
|
|
5737
|
+
* @param {*} [options] Override http request option.
|
|
5738
|
+
* @throws {RequiredError}
|
|
5739
|
+
*/
|
|
5740
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SoftwareRelease>>;
|
|
5741
|
+
/**
|
|
5742
|
+
* Get the target software releases for a node
|
|
5743
|
+
* @param {string} lineageId lineage id
|
|
5744
|
+
* @param {*} [options] Override http request option.
|
|
5745
|
+
* @throws {RequiredError}
|
|
5746
|
+
*/
|
|
5747
|
+
v1GetTargetSoftwareReleasesForNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SoftwareRelease>>>;
|
|
4384
5748
|
/**
|
|
4385
5749
|
* Get a time windowed asset by id.
|
|
4386
5750
|
* @param {string} timeWindowedAssetId
|
|
@@ -4408,6 +5772,38 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4408
5772
|
* @throws {RequiredError}
|
|
4409
5773
|
*/
|
|
4410
5774
|
v1MountMatch(model?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>>;
|
|
5775
|
+
/**
|
|
5776
|
+
* \' V1EnableAutonomousOperation - immediately places the system back under autonomous operation mode. !!CAUTION!! This will immediately begin slewing your system around if conditions are safe. Please ensure your system is prepared to move \'
|
|
5777
|
+
* @param {V1EnableAutonomousOperation} v1EnableAutonomousOperation
|
|
5778
|
+
* @param {*} [options] Override http request option.
|
|
5779
|
+
* @deprecated
|
|
5780
|
+
* @throws {RequiredError}
|
|
5781
|
+
*/
|
|
5782
|
+
v1NodeCommandV1EnableAutonomousOperation(v1EnableAutonomousOperation: V1EnableAutonomousOperation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5783
|
+
/**
|
|
5784
|
+
* \' V1EnableManualOperation- immediately halts all autonomous operation of the system and parks the telescope (including closing the enclosure if present). !!CAUTION!! This is an indefinite halt until V1EnableAutonomousOperation is called. Your system will not respond to weather and safety events! \'
|
|
5785
|
+
* @param {V1EnableManualOperation} v1EnableManualOperation
|
|
5786
|
+
* @param {*} [options] Override http request option.
|
|
5787
|
+
* @deprecated
|
|
5788
|
+
* @throws {RequiredError}
|
|
5789
|
+
*/
|
|
5790
|
+
v1NodeCommandV1EnableManualOperation(v1EnableManualOperation: V1EnableManualOperation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5791
|
+
/**
|
|
5792
|
+
* v1 reboot system
|
|
5793
|
+
* @param {V1RebootSystem} v1RebootSystem
|
|
5794
|
+
* @param {*} [options] Override http request option.
|
|
5795
|
+
* @deprecated
|
|
5796
|
+
* @throws {RequiredError}
|
|
5797
|
+
*/
|
|
5798
|
+
v1NodeCommandV1RebootSystem(v1RebootSystem: V1RebootSystem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5799
|
+
/**
|
|
5800
|
+
* v1 send flare
|
|
5801
|
+
* @param {V1SendFlare} v1SendFlare
|
|
5802
|
+
* @param {*} [options] Override http request option.
|
|
5803
|
+
* @deprecated
|
|
5804
|
+
* @throws {RequiredError}
|
|
5805
|
+
*/
|
|
5806
|
+
v1NodeCommandV1SendFlare(v1SendFlare: V1SendFlare, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4411
5807
|
/**
|
|
4412
5808
|
* Match optical tube.
|
|
4413
5809
|
* @param {string} [model]
|
|
@@ -4424,6 +5820,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4424
5820
|
* @throws {RequiredError}
|
|
4425
5821
|
*/
|
|
4426
5822
|
v1RegisterNodeController(v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeController>>;
|
|
5823
|
+
/**
|
|
5824
|
+
* Requests mac addresses for the given lineage and interfaces.
|
|
5825
|
+
* @param {V1RequestMacAddressesRequest} v1RequestMacAddressesRequest
|
|
5826
|
+
* @param {*} [options] Override http request option.
|
|
5827
|
+
* @throws {RequiredError}
|
|
5828
|
+
*/
|
|
5829
|
+
v1RequestMacAddresses(v1RequestMacAddressesRequest: V1RequestMacAddressesRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1RequestMacAddressesResponse>>;
|
|
5830
|
+
/**
|
|
5831
|
+
* Update a mount.
|
|
5832
|
+
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
5833
|
+
* @param {*} [options] Override http request option.
|
|
5834
|
+
* @throws {RequiredError}
|
|
5835
|
+
*/
|
|
5836
|
+
v1UpdateMount(v1UpdateMountRequest: V1UpdateMountRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4427
5837
|
/**
|
|
4428
5838
|
* Update a node.
|
|
4429
5839
|
* @param {V1UpdateNodeRequest} v1UpdateNodeRequest
|
|
@@ -4438,6 +5848,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4438
5848
|
* @throws {RequiredError}
|
|
4439
5849
|
*/
|
|
4440
5850
|
v1UpdateNodeComponents(v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
|
|
5851
|
+
/**
|
|
5852
|
+
* Update an optical tube.
|
|
5853
|
+
* @param {V1UpdateOpticalTubeRequest} v1UpdateOpticalTubeRequest
|
|
5854
|
+
* @param {*} [options] Override http request option.
|
|
5855
|
+
* @throws {RequiredError}
|
|
5856
|
+
*/
|
|
5857
|
+
v1UpdateOpticalTube(v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4441
5858
|
/**
|
|
4442
5859
|
* Complete an observation utilizing the async pipeline.
|
|
4443
5860
|
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
@@ -4445,12 +5862,26 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4445
5862
|
* @throws {RequiredError}
|
|
4446
5863
|
*/
|
|
4447
5864
|
v2CompleteObservation(v2CompleteObservationRequest: V2CompleteObservationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
5865
|
+
/**
|
|
5866
|
+
* V2 Issue Certificate
|
|
5867
|
+
* @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
|
|
5868
|
+
* @param {*} [options] Override http request option.
|
|
5869
|
+
* @throws {RequiredError}
|
|
5870
|
+
*/
|
|
5871
|
+
v2IssueCertificate(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2NodeControllerIssueCertificateResponse>>;
|
|
4448
5872
|
};
|
|
4449
5873
|
/**
|
|
4450
5874
|
* DefaultApi - factory interface
|
|
4451
5875
|
* @export
|
|
4452
5876
|
*/
|
|
4453
5877
|
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5878
|
+
/**
|
|
5879
|
+
* Get images for a node for display in a camera roll format
|
|
5880
|
+
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
5881
|
+
* @param {*} [options] Override http request option.
|
|
5882
|
+
* @throws {RequiredError}
|
|
5883
|
+
*/
|
|
5884
|
+
getCameraRoll(requestParameters?: DefaultApiGetCameraRollRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1CameraRollImage>>;
|
|
4454
5885
|
/**
|
|
4455
5886
|
* Get the various tokens used in client applications
|
|
4456
5887
|
* @param {*} [options] Override http request option.
|
|
@@ -4498,6 +5929,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4498
5929
|
* @throws {RequiredError}
|
|
4499
5930
|
*/
|
|
4500
5931
|
v1CreateAutofocusResult(requestParameters: DefaultApiV1CreateAutofocusResultRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
5932
|
+
/**
|
|
5933
|
+
* Create a filter wheel.
|
|
5934
|
+
* @param {DefaultApiV1CreateFilterWheelRequest} requestParameters Request parameters.
|
|
5935
|
+
* @param {*} [options] Override http request option.
|
|
5936
|
+
* @throws {RequiredError}
|
|
5937
|
+
*/
|
|
5938
|
+
v1CreateFilterWheel(requestParameters: DefaultApiV1CreateFilterWheelRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
4501
5939
|
/**
|
|
4502
5940
|
* Create an focuser.
|
|
4503
5941
|
* @param {DefaultApiV1CreateFocuserRequest} requestParameters Request parameters.
|
|
@@ -4519,6 +5957,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4519
5957
|
* @throws {RequiredError}
|
|
4520
5958
|
*/
|
|
4521
5959
|
v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
|
|
5960
|
+
/**
|
|
5961
|
+
* Create an image set image upload url.
|
|
5962
|
+
* @param {DefaultApiV1CreateImageSetImageUploadUrlRequest} requestParameters Request parameters.
|
|
5963
|
+
* @param {*} [options] Override http request option.
|
|
5964
|
+
* @throws {RequiredError}
|
|
5965
|
+
*/
|
|
5966
|
+
v1CreateImageSetImageUploadUrl(requestParameters: DefaultApiV1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageUploadUrlResponse>;
|
|
4522
5967
|
/**
|
|
4523
5968
|
* Create metrics.
|
|
4524
5969
|
* @param {DefaultApiV1CreateMetricsRequest} requestParameters Request parameters.
|
|
@@ -4575,6 +6020,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4575
6020
|
* @throws {RequiredError}
|
|
4576
6021
|
*/
|
|
4577
6022
|
v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6023
|
+
/**
|
|
6024
|
+
* Set metadata and plate solve results for an image.
|
|
6025
|
+
* @param {DefaultApiV1CreateProcessedImageSetImageRequest} requestParameters Request parameters.
|
|
6026
|
+
* @param {*} [options] Override http request option.
|
|
6027
|
+
* @throws {RequiredError}
|
|
6028
|
+
*/
|
|
6029
|
+
v1CreateProcessedImageSetImage(requestParameters: DefaultApiV1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
|
|
4578
6030
|
/**
|
|
4579
6031
|
* Create a time windowed asset.
|
|
4580
6032
|
* @param {DefaultApiV1CreateTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
@@ -4582,6 +6034,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4582
6034
|
* @throws {RequiredError}
|
|
4583
6035
|
*/
|
|
4584
6036
|
v1CreateTimeWindowedAsset(requestParameters: DefaultApiV1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateTimeWindowedAssetResponse>;
|
|
6037
|
+
/**
|
|
6038
|
+
* Get the sunrise/sunset times for a specific node by its ID
|
|
6039
|
+
* @param {DefaultApiV1CustomerGetSuntimesRequest} requestParameters Request parameters.
|
|
6040
|
+
* @param {*} [options] Override http request option.
|
|
6041
|
+
* @throws {RequiredError}
|
|
6042
|
+
*/
|
|
6043
|
+
v1CustomerGetSuntimes(requestParameters: DefaultApiV1CustomerGetSuntimesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetSuntimesResponse>;
|
|
4585
6044
|
/**
|
|
4586
6045
|
* Delete an image set.
|
|
4587
6046
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4623,6 +6082,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4623
6082
|
* @throws {RequiredError}
|
|
4624
6083
|
*/
|
|
4625
6084
|
v1GetCameras(options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
|
|
6085
|
+
/**
|
|
6086
|
+
* Get a filter wheel.
|
|
6087
|
+
* @param {DefaultApiV1GetFilterWheelRequest} requestParameters Request parameters.
|
|
6088
|
+
* @param {*} [options] Override http request option.
|
|
6089
|
+
* @throws {RequiredError}
|
|
6090
|
+
*/
|
|
6091
|
+
v1GetFilterWheel(requestParameters: DefaultApiV1GetFilterWheelRequest, options?: AxiosRequestConfig): AxiosPromise<V1FilterWheel>;
|
|
4626
6092
|
/**
|
|
4627
6093
|
* Get a focuser.
|
|
4628
6094
|
* @param {DefaultApiV1GetFocuserRequest} requestParameters Request parameters.
|
|
@@ -4687,12 +6153,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4687
6153
|
*/
|
|
4688
6154
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
|
|
4689
6155
|
/**
|
|
4690
|
-
* Get node by lineage id.
|
|
6156
|
+
* Get node by lineage id or node id.
|
|
4691
6157
|
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
4692
6158
|
* @param {*} [options] Override http request option.
|
|
4693
6159
|
* @throws {RequiredError}
|
|
4694
6160
|
*/
|
|
4695
|
-
v1GetNode(requestParameters
|
|
6161
|
+
v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
4696
6162
|
/**
|
|
4697
6163
|
* Get node commands
|
|
4698
6164
|
* @param {DefaultApiV1GetNodeCommandsRequest} requestParameters Request parameters.
|
|
@@ -4701,19 +6167,19 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4701
6167
|
*/
|
|
4702
6168
|
v1GetNodeCommands(requestParameters: DefaultApiV1GetNodeCommandsRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetNodeCommandsResponse>;
|
|
4703
6169
|
/**
|
|
4704
|
-
*
|
|
4705
|
-
* @param {
|
|
6170
|
+
* Get node diagnostic tasks.
|
|
6171
|
+
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
4706
6172
|
* @param {*} [options] Override http request option.
|
|
4707
6173
|
* @throws {RequiredError}
|
|
4708
6174
|
*/
|
|
4709
|
-
|
|
6175
|
+
v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeDiagnosticType>>;
|
|
4710
6176
|
/**
|
|
4711
|
-
* Get node
|
|
4712
|
-
* @param {
|
|
6177
|
+
* Get node events Apex Charts timeline
|
|
6178
|
+
* @param {DefaultApiV1GetNodeEventsApexChartsTimelineRequest} requestParameters Request parameters.
|
|
4713
6179
|
* @param {*} [options] Override http request option.
|
|
4714
6180
|
* @throws {RequiredError}
|
|
4715
6181
|
*/
|
|
4716
|
-
|
|
6182
|
+
v1GetNodeEventsApexChartsTimeline(requestParameters: DefaultApiV1GetNodeEventsApexChartsTimelineRequest, options?: AxiosRequestConfig): AxiosPromise<V1ApexChartsTimeline>;
|
|
4717
6183
|
/**
|
|
4718
6184
|
* Get a node flare by id.
|
|
4719
6185
|
* @param {DefaultApiV1GetNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -4776,6 +6242,26 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4776
6242
|
* @throws {RequiredError}
|
|
4777
6243
|
*/
|
|
4778
6244
|
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
|
|
6245
|
+
/**
|
|
6246
|
+
* Get satellites for skyAtlas. returns jsonl
|
|
6247
|
+
* @param {*} [options] Override http request option.
|
|
6248
|
+
* @throws {RequiredError}
|
|
6249
|
+
*/
|
|
6250
|
+
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
6251
|
+
/**
|
|
6252
|
+
* Get the target QCOM OTA software release for a node
|
|
6253
|
+
* @param {DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest} requestParameters Request parameters.
|
|
6254
|
+
* @param {*} [options] Override http request option.
|
|
6255
|
+
* @throws {RequiredError}
|
|
6256
|
+
*/
|
|
6257
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(requestParameters: DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1SoftwareRelease>;
|
|
6258
|
+
/**
|
|
6259
|
+
* Get the target software releases for a node
|
|
6260
|
+
* @param {DefaultApiV1GetTargetSoftwareReleasesForNodeRequest} requestParameters Request parameters.
|
|
6261
|
+
* @param {*} [options] Override http request option.
|
|
6262
|
+
* @throws {RequiredError}
|
|
6263
|
+
*/
|
|
6264
|
+
v1GetTargetSoftwareReleasesForNode(requestParameters: DefaultApiV1GetTargetSoftwareReleasesForNodeRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SoftwareRelease>>;
|
|
4779
6265
|
/**
|
|
4780
6266
|
* Get a time windowed asset by id.
|
|
4781
6267
|
* @param {DefaultApiV1GetTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
@@ -4803,6 +6289,38 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4803
6289
|
* @throws {RequiredError}
|
|
4804
6290
|
*/
|
|
4805
6291
|
v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>>;
|
|
6292
|
+
/**
|
|
6293
|
+
* \' V1EnableAutonomousOperation - immediately places the system back under autonomous operation mode. !!CAUTION!! This will immediately begin slewing your system around if conditions are safe. Please ensure your system is prepared to move \'
|
|
6294
|
+
* @param {DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest} requestParameters Request parameters.
|
|
6295
|
+
* @param {*} [options] Override http request option.
|
|
6296
|
+
* @deprecated
|
|
6297
|
+
* @throws {RequiredError}
|
|
6298
|
+
*/
|
|
6299
|
+
v1NodeCommandV1EnableAutonomousOperation(requestParameters: DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6300
|
+
/**
|
|
6301
|
+
* \' V1EnableManualOperation- immediately halts all autonomous operation of the system and parks the telescope (including closing the enclosure if present). !!CAUTION!! This is an indefinite halt until V1EnableAutonomousOperation is called. Your system will not respond to weather and safety events! \'
|
|
6302
|
+
* @param {DefaultApiV1NodeCommandV1EnableManualOperationRequest} requestParameters Request parameters.
|
|
6303
|
+
* @param {*} [options] Override http request option.
|
|
6304
|
+
* @deprecated
|
|
6305
|
+
* @throws {RequiredError}
|
|
6306
|
+
*/
|
|
6307
|
+
v1NodeCommandV1EnableManualOperation(requestParameters: DefaultApiV1NodeCommandV1EnableManualOperationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6308
|
+
/**
|
|
6309
|
+
* v1 reboot system
|
|
6310
|
+
* @param {DefaultApiV1NodeCommandV1RebootSystemRequest} requestParameters Request parameters.
|
|
6311
|
+
* @param {*} [options] Override http request option.
|
|
6312
|
+
* @deprecated
|
|
6313
|
+
* @throws {RequiredError}
|
|
6314
|
+
*/
|
|
6315
|
+
v1NodeCommandV1RebootSystem(requestParameters: DefaultApiV1NodeCommandV1RebootSystemRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6316
|
+
/**
|
|
6317
|
+
* v1 send flare
|
|
6318
|
+
* @param {DefaultApiV1NodeCommandV1SendFlareRequest} requestParameters Request parameters.
|
|
6319
|
+
* @param {*} [options] Override http request option.
|
|
6320
|
+
* @deprecated
|
|
6321
|
+
* @throws {RequiredError}
|
|
6322
|
+
*/
|
|
6323
|
+
v1NodeCommandV1SendFlare(requestParameters: DefaultApiV1NodeCommandV1SendFlareRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
4806
6324
|
/**
|
|
4807
6325
|
* Match optical tube.
|
|
4808
6326
|
* @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
|
|
@@ -4817,6 +6335,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4817
6335
|
* @throws {RequiredError}
|
|
4818
6336
|
*/
|
|
4819
6337
|
v1RegisterNodeController(requestParameters: DefaultApiV1RegisterNodeControllerRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeController>;
|
|
6338
|
+
/**
|
|
6339
|
+
* Requests mac addresses for the given lineage and interfaces.
|
|
6340
|
+
* @param {DefaultApiV1RequestMacAddressesRequest} requestParameters Request parameters.
|
|
6341
|
+
* @param {*} [options] Override http request option.
|
|
6342
|
+
* @throws {RequiredError}
|
|
6343
|
+
*/
|
|
6344
|
+
v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): AxiosPromise<V1RequestMacAddressesResponse>;
|
|
6345
|
+
/**
|
|
6346
|
+
* Update a mount.
|
|
6347
|
+
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|
|
6348
|
+
* @param {*} [options] Override http request option.
|
|
6349
|
+
* @throws {RequiredError}
|
|
6350
|
+
*/
|
|
6351
|
+
v1UpdateMount(requestParameters: DefaultApiV1UpdateMountRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
4820
6352
|
/**
|
|
4821
6353
|
* Update a node.
|
|
4822
6354
|
* @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
|
|
@@ -4825,20 +6357,65 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4825
6357
|
*/
|
|
4826
6358
|
v1UpdateNode(requestParameters: DefaultApiV1UpdateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
4827
6359
|
/**
|
|
4828
|
-
* Update node components.
|
|
4829
|
-
* @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.
|
|
4830
|
-
* @param {*} [options] Override http request option.
|
|
4831
|
-
* @throws {RequiredError}
|
|
6360
|
+
* Update node components.
|
|
6361
|
+
* @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.
|
|
6362
|
+
* @param {*} [options] Override http request option.
|
|
6363
|
+
* @throws {RequiredError}
|
|
6364
|
+
*/
|
|
6365
|
+
v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
6366
|
+
/**
|
|
6367
|
+
* Update an optical tube.
|
|
6368
|
+
* @param {DefaultApiV1UpdateOpticalTubeRequest} requestParameters Request parameters.
|
|
6369
|
+
* @param {*} [options] Override http request option.
|
|
6370
|
+
* @throws {RequiredError}
|
|
6371
|
+
*/
|
|
6372
|
+
v1UpdateOpticalTube(requestParameters: DefaultApiV1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6373
|
+
/**
|
|
6374
|
+
* Complete an observation utilizing the async pipeline.
|
|
6375
|
+
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
6376
|
+
* @param {*} [options] Override http request option.
|
|
6377
|
+
* @throws {RequiredError}
|
|
6378
|
+
*/
|
|
6379
|
+
v2CompleteObservation(requestParameters: DefaultApiV2CompleteObservationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
6380
|
+
/**
|
|
6381
|
+
* V2 Issue Certificate
|
|
6382
|
+
* @param {DefaultApiV2IssueCertificateRequest} requestParameters Request parameters.
|
|
6383
|
+
* @param {*} [options] Override http request option.
|
|
6384
|
+
* @throws {RequiredError}
|
|
6385
|
+
*/
|
|
6386
|
+
v2IssueCertificate(requestParameters: DefaultApiV2IssueCertificateRequest, options?: AxiosRequestConfig): AxiosPromise<V2NodeControllerIssueCertificateResponse>;
|
|
6387
|
+
};
|
|
6388
|
+
/**
|
|
6389
|
+
* Request parameters for getCameraRoll operation in DefaultApi.
|
|
6390
|
+
* @export
|
|
6391
|
+
* @interface DefaultApiGetCameraRollRequest
|
|
6392
|
+
*/
|
|
6393
|
+
export interface DefaultApiGetCameraRollRequest {
|
|
6394
|
+
/**
|
|
6395
|
+
*
|
|
6396
|
+
* @type {string}
|
|
6397
|
+
* @memberof DefaultApiGetCameraRoll
|
|
6398
|
+
*/
|
|
6399
|
+
readonly nodeId?: string;
|
|
6400
|
+
/**
|
|
6401
|
+
*
|
|
6402
|
+
* @type {string}
|
|
6403
|
+
* @memberof DefaultApiGetCameraRoll
|
|
6404
|
+
*/
|
|
6405
|
+
readonly lineageId?: string;
|
|
6406
|
+
/**
|
|
6407
|
+
*
|
|
6408
|
+
* @type {string}
|
|
6409
|
+
* @memberof DefaultApiGetCameraRoll
|
|
4832
6410
|
*/
|
|
4833
|
-
|
|
6411
|
+
readonly before?: string;
|
|
4834
6412
|
/**
|
|
4835
|
-
*
|
|
4836
|
-
* @
|
|
4837
|
-
* @
|
|
4838
|
-
* @throws {RequiredError}
|
|
6413
|
+
* Comma separated array of [ImageSetType](#model/imagesettype)
|
|
6414
|
+
* @type {string}
|
|
6415
|
+
* @memberof DefaultApiGetCameraRoll
|
|
4839
6416
|
*/
|
|
4840
|
-
|
|
4841
|
-
}
|
|
6417
|
+
readonly types?: string;
|
|
6418
|
+
}
|
|
4842
6419
|
/**
|
|
4843
6420
|
* Request parameters for v1CameraMatch operation in DefaultApi.
|
|
4844
6421
|
* @export
|
|
@@ -4946,6 +6523,19 @@ export interface DefaultApiV1CreateAutofocusResultRequest {
|
|
|
4946
6523
|
*/
|
|
4947
6524
|
readonly v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest;
|
|
4948
6525
|
}
|
|
6526
|
+
/**
|
|
6527
|
+
* Request parameters for v1CreateFilterWheel operation in DefaultApi.
|
|
6528
|
+
* @export
|
|
6529
|
+
* @interface DefaultApiV1CreateFilterWheelRequest
|
|
6530
|
+
*/
|
|
6531
|
+
export interface DefaultApiV1CreateFilterWheelRequest {
|
|
6532
|
+
/**
|
|
6533
|
+
*
|
|
6534
|
+
* @type {V1CreateFilterWheelRequest}
|
|
6535
|
+
* @memberof DefaultApiV1CreateFilterWheel
|
|
6536
|
+
*/
|
|
6537
|
+
readonly v1CreateFilterWheelRequest: V1CreateFilterWheelRequest;
|
|
6538
|
+
}
|
|
4949
6539
|
/**
|
|
4950
6540
|
* Request parameters for v1CreateFocuser operation in DefaultApi.
|
|
4951
6541
|
* @export
|
|
@@ -4985,6 +6575,19 @@ export interface DefaultApiV1CreateImageSetImageRequest {
|
|
|
4985
6575
|
*/
|
|
4986
6576
|
readonly v1CreateImageSetImageRequest: V1CreateImageSetImageRequest;
|
|
4987
6577
|
}
|
|
6578
|
+
/**
|
|
6579
|
+
* Request parameters for v1CreateImageSetImageUploadUrl operation in DefaultApi.
|
|
6580
|
+
* @export
|
|
6581
|
+
* @interface DefaultApiV1CreateImageSetImageUploadUrlRequest
|
|
6582
|
+
*/
|
|
6583
|
+
export interface DefaultApiV1CreateImageSetImageUploadUrlRequest {
|
|
6584
|
+
/**
|
|
6585
|
+
*
|
|
6586
|
+
* @type {V1CreateImageSetImageUploadUrlRequest}
|
|
6587
|
+
* @memberof DefaultApiV1CreateImageSetImageUploadUrl
|
|
6588
|
+
*/
|
|
6589
|
+
readonly v1CreateImageSetImageUploadUrlRequest: V1CreateImageSetImageUploadUrlRequest;
|
|
6590
|
+
}
|
|
4988
6591
|
/**
|
|
4989
6592
|
* Request parameters for v1CreateMetrics operation in DefaultApi.
|
|
4990
6593
|
* @export
|
|
@@ -5089,6 +6692,19 @@ export interface DefaultApiV1CreateOpticalTubeRequest {
|
|
|
5089
6692
|
*/
|
|
5090
6693
|
readonly v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest;
|
|
5091
6694
|
}
|
|
6695
|
+
/**
|
|
6696
|
+
* Request parameters for v1CreateProcessedImageSetImage operation in DefaultApi.
|
|
6697
|
+
* @export
|
|
6698
|
+
* @interface DefaultApiV1CreateProcessedImageSetImageRequest
|
|
6699
|
+
*/
|
|
6700
|
+
export interface DefaultApiV1CreateProcessedImageSetImageRequest {
|
|
6701
|
+
/**
|
|
6702
|
+
*
|
|
6703
|
+
* @type {V1CreateProcessedImageSetImageRequest}
|
|
6704
|
+
* @memberof DefaultApiV1CreateProcessedImageSetImage
|
|
6705
|
+
*/
|
|
6706
|
+
readonly v1CreateProcessedImageSetImageRequest: V1CreateProcessedImageSetImageRequest;
|
|
6707
|
+
}
|
|
5092
6708
|
/**
|
|
5093
6709
|
* Request parameters for v1CreateTimeWindowedAsset operation in DefaultApi.
|
|
5094
6710
|
* @export
|
|
@@ -5102,6 +6718,19 @@ export interface DefaultApiV1CreateTimeWindowedAssetRequest {
|
|
|
5102
6718
|
*/
|
|
5103
6719
|
readonly v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest;
|
|
5104
6720
|
}
|
|
6721
|
+
/**
|
|
6722
|
+
* Request parameters for v1CustomerGetSuntimes operation in DefaultApi.
|
|
6723
|
+
* @export
|
|
6724
|
+
* @interface DefaultApiV1CustomerGetSuntimesRequest
|
|
6725
|
+
*/
|
|
6726
|
+
export interface DefaultApiV1CustomerGetSuntimesRequest {
|
|
6727
|
+
/**
|
|
6728
|
+
*
|
|
6729
|
+
* @type {string}
|
|
6730
|
+
* @memberof DefaultApiV1CustomerGetSuntimes
|
|
6731
|
+
*/
|
|
6732
|
+
readonly nodeId: string;
|
|
6733
|
+
}
|
|
5105
6734
|
/**
|
|
5106
6735
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
5107
6736
|
* @export
|
|
@@ -5179,6 +6808,19 @@ export interface DefaultApiV1GetAllSkyPredictionRequest {
|
|
|
5179
6808
|
*/
|
|
5180
6809
|
readonly id?: string;
|
|
5181
6810
|
}
|
|
6811
|
+
/**
|
|
6812
|
+
* Request parameters for v1GetFilterWheel operation in DefaultApi.
|
|
6813
|
+
* @export
|
|
6814
|
+
* @interface DefaultApiV1GetFilterWheelRequest
|
|
6815
|
+
*/
|
|
6816
|
+
export interface DefaultApiV1GetFilterWheelRequest {
|
|
6817
|
+
/**
|
|
6818
|
+
*
|
|
6819
|
+
* @type {string}
|
|
6820
|
+
* @memberof DefaultApiV1GetFilterWheel
|
|
6821
|
+
*/
|
|
6822
|
+
readonly id: string;
|
|
6823
|
+
}
|
|
5182
6824
|
/**
|
|
5183
6825
|
* Request parameters for v1GetFocuser operation in DefaultApi.
|
|
5184
6826
|
* @export
|
|
@@ -5313,7 +6955,13 @@ export interface DefaultApiV1GetNodeRequest {
|
|
|
5313
6955
|
* @type {string}
|
|
5314
6956
|
* @memberof DefaultApiV1GetNode
|
|
5315
6957
|
*/
|
|
5316
|
-
readonly lineageId
|
|
6958
|
+
readonly lineageId?: string;
|
|
6959
|
+
/**
|
|
6960
|
+
*
|
|
6961
|
+
* @type {string}
|
|
6962
|
+
* @memberof DefaultApiV1GetNode
|
|
6963
|
+
*/
|
|
6964
|
+
readonly nodeId?: string;
|
|
5317
6965
|
}
|
|
5318
6966
|
/**
|
|
5319
6967
|
* Request parameters for v1GetNodeCommands operation in DefaultApi.
|
|
@@ -5334,19 +6982,6 @@ export interface DefaultApiV1GetNodeCommandsRequest {
|
|
|
5334
6982
|
*/
|
|
5335
6983
|
readonly executableAt: string;
|
|
5336
6984
|
}
|
|
5337
|
-
/**
|
|
5338
|
-
* Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
|
|
5339
|
-
* @export
|
|
5340
|
-
* @interface DefaultApiV1GetNodeControllerReleaseRequest
|
|
5341
|
-
*/
|
|
5342
|
-
export interface DefaultApiV1GetNodeControllerReleaseRequest {
|
|
5343
|
-
/**
|
|
5344
|
-
* lineage id
|
|
5345
|
-
* @type {string}
|
|
5346
|
-
* @memberof DefaultApiV1GetNodeControllerRelease
|
|
5347
|
-
*/
|
|
5348
|
-
readonly lineageId: string;
|
|
5349
|
-
}
|
|
5350
6985
|
/**
|
|
5351
6986
|
* Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
|
|
5352
6987
|
* @export
|
|
@@ -5366,6 +7001,37 @@ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
|
|
|
5366
7001
|
*/
|
|
5367
7002
|
readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>;
|
|
5368
7003
|
}
|
|
7004
|
+
/**
|
|
7005
|
+
* Request parameters for v1GetNodeEventsApexChartsTimeline operation in DefaultApi.
|
|
7006
|
+
* @export
|
|
7007
|
+
* @interface DefaultApiV1GetNodeEventsApexChartsTimelineRequest
|
|
7008
|
+
*/
|
|
7009
|
+
export interface DefaultApiV1GetNodeEventsApexChartsTimelineRequest {
|
|
7010
|
+
/**
|
|
7011
|
+
*
|
|
7012
|
+
* @type {string}
|
|
7013
|
+
* @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
|
|
7014
|
+
*/
|
|
7015
|
+
readonly startTime: string;
|
|
7016
|
+
/**
|
|
7017
|
+
*
|
|
7018
|
+
* @type {string}
|
|
7019
|
+
* @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
|
|
7020
|
+
*/
|
|
7021
|
+
readonly endTime: string;
|
|
7022
|
+
/**
|
|
7023
|
+
*
|
|
7024
|
+
* @type {string}
|
|
7025
|
+
* @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
|
|
7026
|
+
*/
|
|
7027
|
+
readonly nodeId?: string;
|
|
7028
|
+
/**
|
|
7029
|
+
*
|
|
7030
|
+
* @type {string}
|
|
7031
|
+
* @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
|
|
7032
|
+
*/
|
|
7033
|
+
readonly lineageId?: string;
|
|
7034
|
+
}
|
|
5369
7035
|
/**
|
|
5370
7036
|
* Request parameters for v1GetNodeFlare operation in DefaultApi.
|
|
5371
7037
|
* @export
|
|
@@ -5470,6 +7136,32 @@ export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
|
5470
7136
|
*/
|
|
5471
7137
|
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
|
|
5472
7138
|
}
|
|
7139
|
+
/**
|
|
7140
|
+
* Request parameters for v1GetTargetQCOMOTASoftwareReleaseForNode operation in DefaultApi.
|
|
7141
|
+
* @export
|
|
7142
|
+
* @interface DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest
|
|
7143
|
+
*/
|
|
7144
|
+
export interface DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest {
|
|
7145
|
+
/**
|
|
7146
|
+
* lineage id
|
|
7147
|
+
* @type {string}
|
|
7148
|
+
* @memberof DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNode
|
|
7149
|
+
*/
|
|
7150
|
+
readonly lineageId: string;
|
|
7151
|
+
}
|
|
7152
|
+
/**
|
|
7153
|
+
* Request parameters for v1GetTargetSoftwareReleasesForNode operation in DefaultApi.
|
|
7154
|
+
* @export
|
|
7155
|
+
* @interface DefaultApiV1GetTargetSoftwareReleasesForNodeRequest
|
|
7156
|
+
*/
|
|
7157
|
+
export interface DefaultApiV1GetTargetSoftwareReleasesForNodeRequest {
|
|
7158
|
+
/**
|
|
7159
|
+
* lineage id
|
|
7160
|
+
* @type {string}
|
|
7161
|
+
* @memberof DefaultApiV1GetTargetSoftwareReleasesForNode
|
|
7162
|
+
*/
|
|
7163
|
+
readonly lineageId: string;
|
|
7164
|
+
}
|
|
5473
7165
|
/**
|
|
5474
7166
|
* Request parameters for v1GetTimeWindowedAsset operation in DefaultApi.
|
|
5475
7167
|
* @export
|
|
@@ -5509,6 +7201,58 @@ export interface DefaultApiV1MountMatchRequest {
|
|
|
5509
7201
|
*/
|
|
5510
7202
|
readonly model?: string;
|
|
5511
7203
|
}
|
|
7204
|
+
/**
|
|
7205
|
+
* Request parameters for v1NodeCommandV1EnableAutonomousOperation operation in DefaultApi.
|
|
7206
|
+
* @export
|
|
7207
|
+
* @interface DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest
|
|
7208
|
+
*/
|
|
7209
|
+
export interface DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest {
|
|
7210
|
+
/**
|
|
7211
|
+
*
|
|
7212
|
+
* @type {V1EnableAutonomousOperation}
|
|
7213
|
+
* @memberof DefaultApiV1NodeCommandV1EnableAutonomousOperation
|
|
7214
|
+
*/
|
|
7215
|
+
readonly v1EnableAutonomousOperation: V1EnableAutonomousOperation;
|
|
7216
|
+
}
|
|
7217
|
+
/**
|
|
7218
|
+
* Request parameters for v1NodeCommandV1EnableManualOperation operation in DefaultApi.
|
|
7219
|
+
* @export
|
|
7220
|
+
* @interface DefaultApiV1NodeCommandV1EnableManualOperationRequest
|
|
7221
|
+
*/
|
|
7222
|
+
export interface DefaultApiV1NodeCommandV1EnableManualOperationRequest {
|
|
7223
|
+
/**
|
|
7224
|
+
*
|
|
7225
|
+
* @type {V1EnableManualOperation}
|
|
7226
|
+
* @memberof DefaultApiV1NodeCommandV1EnableManualOperation
|
|
7227
|
+
*/
|
|
7228
|
+
readonly v1EnableManualOperation: V1EnableManualOperation;
|
|
7229
|
+
}
|
|
7230
|
+
/**
|
|
7231
|
+
* Request parameters for v1NodeCommandV1RebootSystem operation in DefaultApi.
|
|
7232
|
+
* @export
|
|
7233
|
+
* @interface DefaultApiV1NodeCommandV1RebootSystemRequest
|
|
7234
|
+
*/
|
|
7235
|
+
export interface DefaultApiV1NodeCommandV1RebootSystemRequest {
|
|
7236
|
+
/**
|
|
7237
|
+
*
|
|
7238
|
+
* @type {V1RebootSystem}
|
|
7239
|
+
* @memberof DefaultApiV1NodeCommandV1RebootSystem
|
|
7240
|
+
*/
|
|
7241
|
+
readonly v1RebootSystem: V1RebootSystem;
|
|
7242
|
+
}
|
|
7243
|
+
/**
|
|
7244
|
+
* Request parameters for v1NodeCommandV1SendFlare operation in DefaultApi.
|
|
7245
|
+
* @export
|
|
7246
|
+
* @interface DefaultApiV1NodeCommandV1SendFlareRequest
|
|
7247
|
+
*/
|
|
7248
|
+
export interface DefaultApiV1NodeCommandV1SendFlareRequest {
|
|
7249
|
+
/**
|
|
7250
|
+
*
|
|
7251
|
+
* @type {V1SendFlare}
|
|
7252
|
+
* @memberof DefaultApiV1NodeCommandV1SendFlare
|
|
7253
|
+
*/
|
|
7254
|
+
readonly v1SendFlare: V1SendFlare;
|
|
7255
|
+
}
|
|
5512
7256
|
/**
|
|
5513
7257
|
* Request parameters for v1OpticalTubeMatch operation in DefaultApi.
|
|
5514
7258
|
* @export
|
|
@@ -5547,6 +7291,32 @@ export interface DefaultApiV1RegisterNodeControllerRequest {
|
|
|
5547
7291
|
*/
|
|
5548
7292
|
readonly v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest;
|
|
5549
7293
|
}
|
|
7294
|
+
/**
|
|
7295
|
+
* Request parameters for v1RequestMacAddresses operation in DefaultApi.
|
|
7296
|
+
* @export
|
|
7297
|
+
* @interface DefaultApiV1RequestMacAddressesRequest
|
|
7298
|
+
*/
|
|
7299
|
+
export interface DefaultApiV1RequestMacAddressesRequest {
|
|
7300
|
+
/**
|
|
7301
|
+
*
|
|
7302
|
+
* @type {V1RequestMacAddressesRequest}
|
|
7303
|
+
* @memberof DefaultApiV1RequestMacAddresses
|
|
7304
|
+
*/
|
|
7305
|
+
readonly v1RequestMacAddressesRequest: V1RequestMacAddressesRequest;
|
|
7306
|
+
}
|
|
7307
|
+
/**
|
|
7308
|
+
* Request parameters for v1UpdateMount operation in DefaultApi.
|
|
7309
|
+
* @export
|
|
7310
|
+
* @interface DefaultApiV1UpdateMountRequest
|
|
7311
|
+
*/
|
|
7312
|
+
export interface DefaultApiV1UpdateMountRequest {
|
|
7313
|
+
/**
|
|
7314
|
+
*
|
|
7315
|
+
* @type {V1UpdateMountRequest}
|
|
7316
|
+
* @memberof DefaultApiV1UpdateMount
|
|
7317
|
+
*/
|
|
7318
|
+
readonly v1UpdateMountRequest: V1UpdateMountRequest;
|
|
7319
|
+
}
|
|
5550
7320
|
/**
|
|
5551
7321
|
* Request parameters for v1UpdateNode operation in DefaultApi.
|
|
5552
7322
|
* @export
|
|
@@ -5573,6 +7343,19 @@ export interface DefaultApiV1UpdateNodeComponentsRequest {
|
|
|
5573
7343
|
*/
|
|
5574
7344
|
readonly v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest;
|
|
5575
7345
|
}
|
|
7346
|
+
/**
|
|
7347
|
+
* Request parameters for v1UpdateOpticalTube operation in DefaultApi.
|
|
7348
|
+
* @export
|
|
7349
|
+
* @interface DefaultApiV1UpdateOpticalTubeRequest
|
|
7350
|
+
*/
|
|
7351
|
+
export interface DefaultApiV1UpdateOpticalTubeRequest {
|
|
7352
|
+
/**
|
|
7353
|
+
*
|
|
7354
|
+
* @type {V1UpdateOpticalTubeRequest}
|
|
7355
|
+
* @memberof DefaultApiV1UpdateOpticalTube
|
|
7356
|
+
*/
|
|
7357
|
+
readonly v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest;
|
|
7358
|
+
}
|
|
5576
7359
|
/**
|
|
5577
7360
|
* Request parameters for v2CompleteObservation operation in DefaultApi.
|
|
5578
7361
|
* @export
|
|
@@ -5586,6 +7369,19 @@ export interface DefaultApiV2CompleteObservationRequest {
|
|
|
5586
7369
|
*/
|
|
5587
7370
|
readonly v2CompleteObservationRequest: V2CompleteObservationRequest;
|
|
5588
7371
|
}
|
|
7372
|
+
/**
|
|
7373
|
+
* Request parameters for v2IssueCertificate operation in DefaultApi.
|
|
7374
|
+
* @export
|
|
7375
|
+
* @interface DefaultApiV2IssueCertificateRequest
|
|
7376
|
+
*/
|
|
7377
|
+
export interface DefaultApiV2IssueCertificateRequest {
|
|
7378
|
+
/**
|
|
7379
|
+
*
|
|
7380
|
+
* @type {V1NodeControllerBootstrapRequest}
|
|
7381
|
+
* @memberof DefaultApiV2IssueCertificate
|
|
7382
|
+
*/
|
|
7383
|
+
readonly v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest;
|
|
7384
|
+
}
|
|
5589
7385
|
/**
|
|
5590
7386
|
* DefaultApi - object-oriented interface
|
|
5591
7387
|
* @export
|
|
@@ -5593,6 +7389,14 @@ export interface DefaultApiV2CompleteObservationRequest {
|
|
|
5593
7389
|
* @extends {BaseAPI}
|
|
5594
7390
|
*/
|
|
5595
7391
|
export declare class DefaultApi extends BaseAPI {
|
|
7392
|
+
/**
|
|
7393
|
+
* Get images for a node for display in a camera roll format
|
|
7394
|
+
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
7395
|
+
* @param {*} [options] Override http request option.
|
|
7396
|
+
* @throws {RequiredError}
|
|
7397
|
+
* @memberof DefaultApi
|
|
7398
|
+
*/
|
|
7399
|
+
getCameraRoll(requestParameters?: DefaultApiGetCameraRollRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CameraRollImage[], any>>;
|
|
5596
7400
|
/**
|
|
5597
7401
|
* Get the various tokens used in client applications
|
|
5598
7402
|
* @param {*} [options] Override http request option.
|
|
@@ -5647,6 +7451,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5647
7451
|
* @memberof DefaultApi
|
|
5648
7452
|
*/
|
|
5649
7453
|
v1CreateAutofocusResult(requestParameters: DefaultApiV1CreateAutofocusResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7454
|
+
/**
|
|
7455
|
+
* Create a filter wheel.
|
|
7456
|
+
* @param {DefaultApiV1CreateFilterWheelRequest} requestParameters Request parameters.
|
|
7457
|
+
* @param {*} [options] Override http request option.
|
|
7458
|
+
* @throws {RequiredError}
|
|
7459
|
+
* @memberof DefaultApi
|
|
7460
|
+
*/
|
|
7461
|
+
v1CreateFilterWheel(requestParameters: DefaultApiV1CreateFilterWheelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
5650
7462
|
/**
|
|
5651
7463
|
* Create an focuser.
|
|
5652
7464
|
* @param {DefaultApiV1CreateFocuserRequest} requestParameters Request parameters.
|
|
@@ -5671,6 +7483,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5671
7483
|
* @memberof DefaultApi
|
|
5672
7484
|
*/
|
|
5673
7485
|
v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
|
|
7486
|
+
/**
|
|
7487
|
+
* Create an image set image upload url.
|
|
7488
|
+
* @param {DefaultApiV1CreateImageSetImageUploadUrlRequest} requestParameters Request parameters.
|
|
7489
|
+
* @param {*} [options] Override http request option.
|
|
7490
|
+
* @throws {RequiredError}
|
|
7491
|
+
* @memberof DefaultApi
|
|
7492
|
+
*/
|
|
7493
|
+
v1CreateImageSetImageUploadUrl(requestParameters: DefaultApiV1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageUploadUrlResponse, any>>;
|
|
5674
7494
|
/**
|
|
5675
7495
|
* Create metrics.
|
|
5676
7496
|
* @param {DefaultApiV1CreateMetricsRequest} requestParameters Request parameters.
|
|
@@ -5735,6 +7555,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5735
7555
|
* @memberof DefaultApi
|
|
5736
7556
|
*/
|
|
5737
7557
|
v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7558
|
+
/**
|
|
7559
|
+
* Set metadata and plate solve results for an image.
|
|
7560
|
+
* @param {DefaultApiV1CreateProcessedImageSetImageRequest} requestParameters Request parameters.
|
|
7561
|
+
* @param {*} [options] Override http request option.
|
|
7562
|
+
* @throws {RequiredError}
|
|
7563
|
+
* @memberof DefaultApi
|
|
7564
|
+
*/
|
|
7565
|
+
v1CreateProcessedImageSetImage(requestParameters: DefaultApiV1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
|
|
5738
7566
|
/**
|
|
5739
7567
|
* Create a time windowed asset.
|
|
5740
7568
|
* @param {DefaultApiV1CreateTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
@@ -5743,6 +7571,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5743
7571
|
* @memberof DefaultApi
|
|
5744
7572
|
*/
|
|
5745
7573
|
v1CreateTimeWindowedAsset(requestParameters: DefaultApiV1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateTimeWindowedAssetResponse, any>>;
|
|
7574
|
+
/**
|
|
7575
|
+
* Get the sunrise/sunset times for a specific node by its ID
|
|
7576
|
+
* @param {DefaultApiV1CustomerGetSuntimesRequest} requestParameters Request parameters.
|
|
7577
|
+
* @param {*} [options] Override http request option.
|
|
7578
|
+
* @throws {RequiredError}
|
|
7579
|
+
* @memberof DefaultApi
|
|
7580
|
+
*/
|
|
7581
|
+
v1CustomerGetSuntimes(requestParameters: DefaultApiV1CustomerGetSuntimesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetSuntimesResponse, any>>;
|
|
5746
7582
|
/**
|
|
5747
7583
|
* Delete an image set.
|
|
5748
7584
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -5790,6 +7626,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5790
7626
|
* @memberof DefaultApi
|
|
5791
7627
|
*/
|
|
5792
7628
|
v1GetCameras(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
|
|
7629
|
+
/**
|
|
7630
|
+
* Get a filter wheel.
|
|
7631
|
+
* @param {DefaultApiV1GetFilterWheelRequest} requestParameters Request parameters.
|
|
7632
|
+
* @param {*} [options] Override http request option.
|
|
7633
|
+
* @throws {RequiredError}
|
|
7634
|
+
* @memberof DefaultApi
|
|
7635
|
+
*/
|
|
7636
|
+
v1GetFilterWheel(requestParameters: DefaultApiV1GetFilterWheelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1FilterWheel, any>>;
|
|
5793
7637
|
/**
|
|
5794
7638
|
* Get a focuser.
|
|
5795
7639
|
* @param {DefaultApiV1GetFocuserRequest} requestParameters Request parameters.
|
|
@@ -5863,13 +7707,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5863
7707
|
*/
|
|
5864
7708
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
|
|
5865
7709
|
/**
|
|
5866
|
-
* Get node by lineage id.
|
|
7710
|
+
* Get node by lineage id or node id.
|
|
5867
7711
|
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
5868
7712
|
* @param {*} [options] Override http request option.
|
|
5869
7713
|
* @throws {RequiredError}
|
|
5870
7714
|
* @memberof DefaultApi
|
|
5871
7715
|
*/
|
|
5872
|
-
v1GetNode(requestParameters
|
|
7716
|
+
v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
|
|
5873
7717
|
/**
|
|
5874
7718
|
* Get node commands
|
|
5875
7719
|
* @param {DefaultApiV1GetNodeCommandsRequest} requestParameters Request parameters.
|
|
@@ -5879,21 +7723,21 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5879
7723
|
*/
|
|
5880
7724
|
v1GetNodeCommands(requestParameters: DefaultApiV1GetNodeCommandsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetNodeCommandsResponse, any>>;
|
|
5881
7725
|
/**
|
|
5882
|
-
*
|
|
5883
|
-
* @param {
|
|
7726
|
+
* Get node diagnostic tasks.
|
|
7727
|
+
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
5884
7728
|
* @param {*} [options] Override http request option.
|
|
5885
7729
|
* @throws {RequiredError}
|
|
5886
7730
|
* @memberof DefaultApi
|
|
5887
7731
|
*/
|
|
5888
|
-
|
|
7732
|
+
v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeDiagnosticType[], any>>;
|
|
5889
7733
|
/**
|
|
5890
|
-
* Get node
|
|
5891
|
-
* @param {
|
|
7734
|
+
* Get node events Apex Charts timeline
|
|
7735
|
+
* @param {DefaultApiV1GetNodeEventsApexChartsTimelineRequest} requestParameters Request parameters.
|
|
5892
7736
|
* @param {*} [options] Override http request option.
|
|
5893
7737
|
* @throws {RequiredError}
|
|
5894
7738
|
* @memberof DefaultApi
|
|
5895
7739
|
*/
|
|
5896
|
-
|
|
7740
|
+
v1GetNodeEventsApexChartsTimeline(requestParameters: DefaultApiV1GetNodeEventsApexChartsTimelineRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ApexChartsTimeline, any>>;
|
|
5897
7741
|
/**
|
|
5898
7742
|
* Get a node flare by id.
|
|
5899
7743
|
* @param {DefaultApiV1GetNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -5965,6 +7809,29 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5965
7809
|
* @memberof DefaultApi
|
|
5966
7810
|
*/
|
|
5967
7811
|
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
|
|
7812
|
+
/**
|
|
7813
|
+
* Get satellites for skyAtlas. returns jsonl
|
|
7814
|
+
* @param {*} [options] Override http request option.
|
|
7815
|
+
* @throws {RequiredError}
|
|
7816
|
+
* @memberof DefaultApi
|
|
7817
|
+
*/
|
|
7818
|
+
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
7819
|
+
/**
|
|
7820
|
+
* Get the target QCOM OTA software release for a node
|
|
7821
|
+
* @param {DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest} requestParameters Request parameters.
|
|
7822
|
+
* @param {*} [options] Override http request option.
|
|
7823
|
+
* @throws {RequiredError}
|
|
7824
|
+
* @memberof DefaultApi
|
|
7825
|
+
*/
|
|
7826
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(requestParameters: DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SoftwareRelease, any>>;
|
|
7827
|
+
/**
|
|
7828
|
+
* Get the target software releases for a node
|
|
7829
|
+
* @param {DefaultApiV1GetTargetSoftwareReleasesForNodeRequest} requestParameters Request parameters.
|
|
7830
|
+
* @param {*} [options] Override http request option.
|
|
7831
|
+
* @throws {RequiredError}
|
|
7832
|
+
* @memberof DefaultApi
|
|
7833
|
+
*/
|
|
7834
|
+
v1GetTargetSoftwareReleasesForNode(requestParameters: DefaultApiV1GetTargetSoftwareReleasesForNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SoftwareRelease[], any>>;
|
|
5968
7835
|
/**
|
|
5969
7836
|
* Get a time windowed asset by id.
|
|
5970
7837
|
* @param {DefaultApiV1GetTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
@@ -5996,6 +7863,42 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5996
7863
|
* @memberof DefaultApi
|
|
5997
7864
|
*/
|
|
5998
7865
|
v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount[], any>>;
|
|
7866
|
+
/**
|
|
7867
|
+
* \' V1EnableAutonomousOperation - immediately places the system back under autonomous operation mode. !!CAUTION!! This will immediately begin slewing your system around if conditions are safe. Please ensure your system is prepared to move \'
|
|
7868
|
+
* @param {DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest} requestParameters Request parameters.
|
|
7869
|
+
* @param {*} [options] Override http request option.
|
|
7870
|
+
* @deprecated
|
|
7871
|
+
* @throws {RequiredError}
|
|
7872
|
+
* @memberof DefaultApi
|
|
7873
|
+
*/
|
|
7874
|
+
v1NodeCommandV1EnableAutonomousOperation(requestParameters: DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7875
|
+
/**
|
|
7876
|
+
* \' V1EnableManualOperation- immediately halts all autonomous operation of the system and parks the telescope (including closing the enclosure if present). !!CAUTION!! This is an indefinite halt until V1EnableAutonomousOperation is called. Your system will not respond to weather and safety events! \'
|
|
7877
|
+
* @param {DefaultApiV1NodeCommandV1EnableManualOperationRequest} requestParameters Request parameters.
|
|
7878
|
+
* @param {*} [options] Override http request option.
|
|
7879
|
+
* @deprecated
|
|
7880
|
+
* @throws {RequiredError}
|
|
7881
|
+
* @memberof DefaultApi
|
|
7882
|
+
*/
|
|
7883
|
+
v1NodeCommandV1EnableManualOperation(requestParameters: DefaultApiV1NodeCommandV1EnableManualOperationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7884
|
+
/**
|
|
7885
|
+
* v1 reboot system
|
|
7886
|
+
* @param {DefaultApiV1NodeCommandV1RebootSystemRequest} requestParameters Request parameters.
|
|
7887
|
+
* @param {*} [options] Override http request option.
|
|
7888
|
+
* @deprecated
|
|
7889
|
+
* @throws {RequiredError}
|
|
7890
|
+
* @memberof DefaultApi
|
|
7891
|
+
*/
|
|
7892
|
+
v1NodeCommandV1RebootSystem(requestParameters: DefaultApiV1NodeCommandV1RebootSystemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7893
|
+
/**
|
|
7894
|
+
* v1 send flare
|
|
7895
|
+
* @param {DefaultApiV1NodeCommandV1SendFlareRequest} requestParameters Request parameters.
|
|
7896
|
+
* @param {*} [options] Override http request option.
|
|
7897
|
+
* @deprecated
|
|
7898
|
+
* @throws {RequiredError}
|
|
7899
|
+
* @memberof DefaultApi
|
|
7900
|
+
*/
|
|
7901
|
+
v1NodeCommandV1SendFlare(requestParameters: DefaultApiV1NodeCommandV1SendFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
5999
7902
|
/**
|
|
6000
7903
|
* Match optical tube.
|
|
6001
7904
|
* @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
|
|
@@ -6012,6 +7915,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
6012
7915
|
* @memberof DefaultApi
|
|
6013
7916
|
*/
|
|
6014
7917
|
v1RegisterNodeController(requestParameters: DefaultApiV1RegisterNodeControllerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeController, any>>;
|
|
7918
|
+
/**
|
|
7919
|
+
* Requests mac addresses for the given lineage and interfaces.
|
|
7920
|
+
* @param {DefaultApiV1RequestMacAddressesRequest} requestParameters Request parameters.
|
|
7921
|
+
* @param {*} [options] Override http request option.
|
|
7922
|
+
* @throws {RequiredError}
|
|
7923
|
+
* @memberof DefaultApi
|
|
7924
|
+
*/
|
|
7925
|
+
v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1RequestMacAddressesResponse, any>>;
|
|
7926
|
+
/**
|
|
7927
|
+
* Update a mount.
|
|
7928
|
+
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|
|
7929
|
+
* @param {*} [options] Override http request option.
|
|
7930
|
+
* @throws {RequiredError}
|
|
7931
|
+
* @memberof DefaultApi
|
|
7932
|
+
*/
|
|
7933
|
+
v1UpdateMount(requestParameters: DefaultApiV1UpdateMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
6015
7934
|
/**
|
|
6016
7935
|
* Update a node.
|
|
6017
7936
|
* @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
|
|
@@ -6028,6 +7947,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
6028
7947
|
* @memberof DefaultApi
|
|
6029
7948
|
*/
|
|
6030
7949
|
v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
|
|
7950
|
+
/**
|
|
7951
|
+
* Update an optical tube.
|
|
7952
|
+
* @param {DefaultApiV1UpdateOpticalTubeRequest} requestParameters Request parameters.
|
|
7953
|
+
* @param {*} [options] Override http request option.
|
|
7954
|
+
* @throws {RequiredError}
|
|
7955
|
+
* @memberof DefaultApi
|
|
7956
|
+
*/
|
|
7957
|
+
v1UpdateOpticalTube(requestParameters: DefaultApiV1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
6031
7958
|
/**
|
|
6032
7959
|
* Complete an observation utilizing the async pipeline.
|
|
6033
7960
|
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -6036,4 +7963,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
6036
7963
|
* @memberof DefaultApi
|
|
6037
7964
|
*/
|
|
6038
7965
|
v2CompleteObservation(requestParameters: DefaultApiV2CompleteObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
7966
|
+
/**
|
|
7967
|
+
* V2 Issue Certificate
|
|
7968
|
+
* @param {DefaultApiV2IssueCertificateRequest} requestParameters Request parameters.
|
|
7969
|
+
* @param {*} [options] Override http request option.
|
|
7970
|
+
* @throws {RequiredError}
|
|
7971
|
+
* @memberof DefaultApi
|
|
7972
|
+
*/
|
|
7973
|
+
v2IssueCertificate(requestParameters: DefaultApiV2IssueCertificateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2NodeControllerIssueCertificateResponse, any>>;
|
|
6039
7974
|
}
|