@ourskyai/platform-api 1.3.6669 → 1.3.8459
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +3365 -664
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +2141 -223
- package/dist/api.js +1298 -105
- 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 +2141 -223
- package/dist/esm/api.js +1297 -104
- 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/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.8459
|
|
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;
|
|
3962
|
+
/**
|
|
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;
|
|
3014
4016
|
/**
|
|
3015
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
|
|
3181
4227
|
*/
|
|
3182
|
-
'
|
|
4228
|
+
'version': string;
|
|
4229
|
+
/**
|
|
4230
|
+
*
|
|
4231
|
+
* @type {string}
|
|
4232
|
+
* @memberof V1SoftwareRelease
|
|
4233
|
+
*/
|
|
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
|
|
@@ -3559,16 +4669,53 @@ export interface V1UpdateNodeRequest {
|
|
|
3559
4669
|
'slewTiming'?: V1SlewTiming;
|
|
3560
4670
|
/**
|
|
3561
4671
|
*
|
|
3562
|
-
* @type {Location}
|
|
3563
|
-
* @memberof V1UpdateNodeRequest
|
|
4672
|
+
* @type {Location}
|
|
4673
|
+
* @memberof V1UpdateNodeRequest
|
|
4674
|
+
*/
|
|
4675
|
+
'location'?: Location;
|
|
4676
|
+
/**
|
|
4677
|
+
*
|
|
4678
|
+
* @type {NodeState}
|
|
4679
|
+
* @memberof V1UpdateNodeRequest
|
|
4680
|
+
*/
|
|
4681
|
+
'state'?: NodeState;
|
|
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
|
|
3564
4711
|
*/
|
|
3565
|
-
'
|
|
4712
|
+
'apertureMm'?: number;
|
|
3566
4713
|
/**
|
|
3567
4714
|
*
|
|
3568
|
-
* @type {
|
|
3569
|
-
* @memberof
|
|
4715
|
+
* @type {OpticalTubeType}
|
|
4716
|
+
* @memberof V1UpdateOpticalTubeRequest
|
|
3570
4717
|
*/
|
|
3571
|
-
'
|
|
4718
|
+
'type'?: OpticalTubeType;
|
|
3572
4719
|
}
|
|
3573
4720
|
/**
|
|
3574
4721
|
*
|
|
@@ -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
|
|
@@ -3712,6 +4895,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3712
4895
|
* @throws {RequiredError}
|
|
3713
4896
|
*/
|
|
3714
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,25 @@ 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 {*} [options] Override http request option.
|
|
5201
|
+
* @throws {RequiredError}
|
|
5202
|
+
*/
|
|
5203
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5204
|
+
/**
|
|
5205
|
+
* Get the target software releases for a node
|
|
5206
|
+
* @param {string} lineageId lineage id
|
|
5207
|
+
* @param {*} [options] Override http request option.
|
|
5208
|
+
* @throws {RequiredError}
|
|
5209
|
+
*/
|
|
5210
|
+
v1GetTargetSoftwareReleasesForNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3977
5211
|
/**
|
|
3978
5212
|
* Get a time windowed asset by id.
|
|
3979
5213
|
* @param {string} timeWindowedAssetId
|
|
@@ -4001,6 +5235,38 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4001
5235
|
* @throws {RequiredError}
|
|
4002
5236
|
*/
|
|
4003
5237
|
v1MountMatch: (model?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5238
|
+
/**
|
|
5239
|
+
* \' 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 \'
|
|
5240
|
+
* @param {V1EnableAutonomousOperation} v1EnableAutonomousOperation
|
|
5241
|
+
* @param {*} [options] Override http request option.
|
|
5242
|
+
* @deprecated
|
|
5243
|
+
* @throws {RequiredError}
|
|
5244
|
+
*/
|
|
5245
|
+
v1NodeCommandV1EnableAutonomousOperation: (v1EnableAutonomousOperation: V1EnableAutonomousOperation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5246
|
+
/**
|
|
5247
|
+
* \' 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! \'
|
|
5248
|
+
* @param {V1EnableManualOperation} v1EnableManualOperation
|
|
5249
|
+
* @param {*} [options] Override http request option.
|
|
5250
|
+
* @deprecated
|
|
5251
|
+
* @throws {RequiredError}
|
|
5252
|
+
*/
|
|
5253
|
+
v1NodeCommandV1EnableManualOperation: (v1EnableManualOperation: V1EnableManualOperation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5254
|
+
/**
|
|
5255
|
+
* v1 reboot system
|
|
5256
|
+
* @param {V1RebootSystem} v1RebootSystem
|
|
5257
|
+
* @param {*} [options] Override http request option.
|
|
5258
|
+
* @deprecated
|
|
5259
|
+
* @throws {RequiredError}
|
|
5260
|
+
*/
|
|
5261
|
+
v1NodeCommandV1RebootSystem: (v1RebootSystem: V1RebootSystem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5262
|
+
/**
|
|
5263
|
+
* v1 send flare
|
|
5264
|
+
* @param {V1SendFlare} v1SendFlare
|
|
5265
|
+
* @param {*} [options] Override http request option.
|
|
5266
|
+
* @deprecated
|
|
5267
|
+
* @throws {RequiredError}
|
|
5268
|
+
*/
|
|
5269
|
+
v1NodeCommandV1SendFlare: (v1SendFlare: V1SendFlare, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4004
5270
|
/**
|
|
4005
5271
|
* Match optical tube.
|
|
4006
5272
|
* @param {string} [model]
|
|
@@ -4017,6 +5283,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4017
5283
|
* @throws {RequiredError}
|
|
4018
5284
|
*/
|
|
4019
5285
|
v1RegisterNodeController: (v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5286
|
+
/**
|
|
5287
|
+
* Requests mac addresses for the given lineage and interfaces.
|
|
5288
|
+
* @param {V1RequestMacAddressesRequest} v1RequestMacAddressesRequest
|
|
5289
|
+
* @param {*} [options] Override http request option.
|
|
5290
|
+
* @throws {RequiredError}
|
|
5291
|
+
*/
|
|
5292
|
+
v1RequestMacAddresses: (v1RequestMacAddressesRequest: V1RequestMacAddressesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5293
|
+
/**
|
|
5294
|
+
* Update a mount.
|
|
5295
|
+
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
5296
|
+
* @param {*} [options] Override http request option.
|
|
5297
|
+
* @throws {RequiredError}
|
|
5298
|
+
*/
|
|
5299
|
+
v1UpdateMount: (v1UpdateMountRequest: V1UpdateMountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4020
5300
|
/**
|
|
4021
5301
|
* Update a node.
|
|
4022
5302
|
* @param {V1UpdateNodeRequest} v1UpdateNodeRequest
|
|
@@ -4031,6 +5311,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4031
5311
|
* @throws {RequiredError}
|
|
4032
5312
|
*/
|
|
4033
5313
|
v1UpdateNodeComponents: (v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5314
|
+
/**
|
|
5315
|
+
* Update an optical tube.
|
|
5316
|
+
* @param {V1UpdateOpticalTubeRequest} v1UpdateOpticalTubeRequest
|
|
5317
|
+
* @param {*} [options] Override http request option.
|
|
5318
|
+
* @throws {RequiredError}
|
|
5319
|
+
*/
|
|
5320
|
+
v1UpdateOpticalTube: (v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4034
5321
|
/**
|
|
4035
5322
|
* Complete an observation utilizing the async pipeline.
|
|
4036
5323
|
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
@@ -4038,12 +5325,29 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4038
5325
|
* @throws {RequiredError}
|
|
4039
5326
|
*/
|
|
4040
5327
|
v2CompleteObservation: (v2CompleteObservationRequest: V2CompleteObservationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5328
|
+
/**
|
|
5329
|
+
* V2 Issue Certificate
|
|
5330
|
+
* @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
|
|
5331
|
+
* @param {*} [options] Override http request option.
|
|
5332
|
+
* @throws {RequiredError}
|
|
5333
|
+
*/
|
|
5334
|
+
v2IssueCertificate: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4041
5335
|
};
|
|
4042
5336
|
/**
|
|
4043
5337
|
* DefaultApi - functional programming interface
|
|
4044
5338
|
* @export
|
|
4045
5339
|
*/
|
|
4046
5340
|
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
5341
|
+
/**
|
|
5342
|
+
* Get images for a node for display in a camera roll format
|
|
5343
|
+
* @param {string} [nodeId]
|
|
5344
|
+
* @param {string} [lineageId]
|
|
5345
|
+
* @param {string} [before]
|
|
5346
|
+
* @param {string} [types] Comma separated array of [ImageSetType](#model/imagesettype)
|
|
5347
|
+
* @param {*} [options] Override http request option.
|
|
5348
|
+
* @throws {RequiredError}
|
|
5349
|
+
*/
|
|
5350
|
+
getCameraRoll(nodeId?: string, lineageId?: string, before?: string, types?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1CameraRollImage>>>;
|
|
4047
5351
|
/**
|
|
4048
5352
|
* Get the various tokens used in client applications
|
|
4049
5353
|
* @param {*} [options] Override http request option.
|
|
@@ -4098,6 +5402,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4098
5402
|
* @throws {RequiredError}
|
|
4099
5403
|
*/
|
|
4100
5404
|
v1CreateAutofocusResult(v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5405
|
+
/**
|
|
5406
|
+
* Create a filter wheel.
|
|
5407
|
+
* @param {V1CreateFilterWheelRequest} v1CreateFilterWheelRequest
|
|
5408
|
+
* @param {*} [options] Override http request option.
|
|
5409
|
+
* @throws {RequiredError}
|
|
5410
|
+
*/
|
|
5411
|
+
v1CreateFilterWheel(v1CreateFilterWheelRequest: V1CreateFilterWheelRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4101
5412
|
/**
|
|
4102
5413
|
* Create an focuser.
|
|
4103
5414
|
* @param {V1CreateFocuserRequest} v1CreateFocuserRequest
|
|
@@ -4119,6 +5430,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4119
5430
|
* @throws {RequiredError}
|
|
4120
5431
|
*/
|
|
4121
5432
|
v1CreateImageSetImage(v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
|
|
5433
|
+
/**
|
|
5434
|
+
* Create an image set image upload url.
|
|
5435
|
+
* @param {V1CreateImageSetImageUploadUrlRequest} v1CreateImageSetImageUploadUrlRequest
|
|
5436
|
+
* @param {*} [options] Override http request option.
|
|
5437
|
+
* @throws {RequiredError}
|
|
5438
|
+
*/
|
|
5439
|
+
v1CreateImageSetImageUploadUrl(v1CreateImageSetImageUploadUrlRequest: V1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageUploadUrlResponse>>;
|
|
4122
5440
|
/**
|
|
4123
5441
|
* Create metrics.
|
|
4124
5442
|
* @param {Array<V1Metric>} v1Metric
|
|
@@ -4175,6 +5493,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4175
5493
|
* @throws {RequiredError}
|
|
4176
5494
|
*/
|
|
4177
5495
|
v1CreateOpticalTube(v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5496
|
+
/**
|
|
5497
|
+
* Set metadata and plate solve results for an image.
|
|
5498
|
+
* @param {V1CreateProcessedImageSetImageRequest} v1CreateProcessedImageSetImageRequest
|
|
5499
|
+
* @param {*} [options] Override http request option.
|
|
5500
|
+
* @throws {RequiredError}
|
|
5501
|
+
*/
|
|
5502
|
+
v1CreateProcessedImageSetImage(v1CreateProcessedImageSetImageRequest: V1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
|
|
4178
5503
|
/**
|
|
4179
5504
|
* Create a time windowed asset.
|
|
4180
5505
|
* @param {V1CreateTimeWindowedAssetRequest} v1CreateTimeWindowedAssetRequest
|
|
@@ -4182,6 +5507,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4182
5507
|
* @throws {RequiredError}
|
|
4183
5508
|
*/
|
|
4184
5509
|
v1CreateTimeWindowedAsset(v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateTimeWindowedAssetResponse>>;
|
|
5510
|
+
/**
|
|
5511
|
+
* Get the sunrise/sunset times for a specific node by its ID
|
|
5512
|
+
* @param {string} nodeId
|
|
5513
|
+
* @param {*} [options] Override http request option.
|
|
5514
|
+
* @throws {RequiredError}
|
|
5515
|
+
*/
|
|
5516
|
+
v1CustomerGetSuntimes(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSuntimesResponse>>;
|
|
4185
5517
|
/**
|
|
4186
5518
|
* Delete an image set.
|
|
4187
5519
|
* @param {string} id
|
|
@@ -4225,6 +5557,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4225
5557
|
* @throws {RequiredError}
|
|
4226
5558
|
*/
|
|
4227
5559
|
v1GetCameras(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
|
|
5560
|
+
/**
|
|
5561
|
+
* Get a filter wheel.
|
|
5562
|
+
* @param {string} id
|
|
5563
|
+
* @param {*} [options] Override http request option.
|
|
5564
|
+
* @throws {RequiredError}
|
|
5565
|
+
*/
|
|
5566
|
+
v1GetFilterWheel(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1FilterWheel>>;
|
|
4228
5567
|
/**
|
|
4229
5568
|
* Get a focuser.
|
|
4230
5569
|
* @param {string} id
|
|
@@ -4290,12 +5629,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4290
5629
|
*/
|
|
4291
5630
|
v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
|
|
4292
5631
|
/**
|
|
4293
|
-
* Get node by lineage id.
|
|
4294
|
-
* @param {string} lineageId
|
|
5632
|
+
* Get node by lineage id or node id.
|
|
5633
|
+
* @param {string} [lineageId]
|
|
5634
|
+
* @param {string} [nodeId]
|
|
4295
5635
|
* @param {*} [options] Override http request option.
|
|
4296
5636
|
* @throws {RequiredError}
|
|
4297
5637
|
*/
|
|
4298
|
-
v1GetNode(lineageId
|
|
5638
|
+
v1GetNode(lineageId?: string, nodeId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
|
|
4299
5639
|
/**
|
|
4300
5640
|
* Get node commands
|
|
4301
5641
|
* @param {string} nodeId
|
|
@@ -4304,13 +5644,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4304
5644
|
* @throws {RequiredError}
|
|
4305
5645
|
*/
|
|
4306
5646
|
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
5647
|
/**
|
|
4315
5648
|
* Get node diagnostic tasks.
|
|
4316
5649
|
* @param {string} nodeId
|
|
@@ -4319,6 +5652,16 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4319
5652
|
* @throws {RequiredError}
|
|
4320
5653
|
*/
|
|
4321
5654
|
v1GetNodeDiagnosticTasks(nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
|
|
5655
|
+
/**
|
|
5656
|
+
* Get node events Apex Charts timeline
|
|
5657
|
+
* @param {string} startTime
|
|
5658
|
+
* @param {string} endTime
|
|
5659
|
+
* @param {string} [nodeId]
|
|
5660
|
+
* @param {string} [lineageId]
|
|
5661
|
+
* @param {*} [options] Override http request option.
|
|
5662
|
+
* @throws {RequiredError}
|
|
5663
|
+
*/
|
|
5664
|
+
v1GetNodeEventsApexChartsTimeline(startTime: string, endTime: string, nodeId?: string, lineageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ApexChartsTimeline>>;
|
|
4322
5665
|
/**
|
|
4323
5666
|
* Get a node flare by id.
|
|
4324
5667
|
* @param {string} id
|
|
@@ -4381,6 +5724,25 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4381
5724
|
* @throws {RequiredError}
|
|
4382
5725
|
*/
|
|
4383
5726
|
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
|
|
5727
|
+
/**
|
|
5728
|
+
* Get satellites for skyAtlas. returns jsonl
|
|
5729
|
+
* @param {*} [options] Override http request option.
|
|
5730
|
+
* @throws {RequiredError}
|
|
5731
|
+
*/
|
|
5732
|
+
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
5733
|
+
/**
|
|
5734
|
+
* Get the target QCOM OTA software release for a node
|
|
5735
|
+
* @param {*} [options] Override http request option.
|
|
5736
|
+
* @throws {RequiredError}
|
|
5737
|
+
*/
|
|
5738
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SoftwareRelease>>;
|
|
5739
|
+
/**
|
|
5740
|
+
* Get the target software releases for a node
|
|
5741
|
+
* @param {string} lineageId lineage id
|
|
5742
|
+
* @param {*} [options] Override http request option.
|
|
5743
|
+
* @throws {RequiredError}
|
|
5744
|
+
*/
|
|
5745
|
+
v1GetTargetSoftwareReleasesForNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SoftwareRelease>>>;
|
|
4384
5746
|
/**
|
|
4385
5747
|
* Get a time windowed asset by id.
|
|
4386
5748
|
* @param {string} timeWindowedAssetId
|
|
@@ -4408,6 +5770,38 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4408
5770
|
* @throws {RequiredError}
|
|
4409
5771
|
*/
|
|
4410
5772
|
v1MountMatch(model?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>>;
|
|
5773
|
+
/**
|
|
5774
|
+
* \' 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 \'
|
|
5775
|
+
* @param {V1EnableAutonomousOperation} v1EnableAutonomousOperation
|
|
5776
|
+
* @param {*} [options] Override http request option.
|
|
5777
|
+
* @deprecated
|
|
5778
|
+
* @throws {RequiredError}
|
|
5779
|
+
*/
|
|
5780
|
+
v1NodeCommandV1EnableAutonomousOperation(v1EnableAutonomousOperation: V1EnableAutonomousOperation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5781
|
+
/**
|
|
5782
|
+
* \' 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! \'
|
|
5783
|
+
* @param {V1EnableManualOperation} v1EnableManualOperation
|
|
5784
|
+
* @param {*} [options] Override http request option.
|
|
5785
|
+
* @deprecated
|
|
5786
|
+
* @throws {RequiredError}
|
|
5787
|
+
*/
|
|
5788
|
+
v1NodeCommandV1EnableManualOperation(v1EnableManualOperation: V1EnableManualOperation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5789
|
+
/**
|
|
5790
|
+
* v1 reboot system
|
|
5791
|
+
* @param {V1RebootSystem} v1RebootSystem
|
|
5792
|
+
* @param {*} [options] Override http request option.
|
|
5793
|
+
* @deprecated
|
|
5794
|
+
* @throws {RequiredError}
|
|
5795
|
+
*/
|
|
5796
|
+
v1NodeCommandV1RebootSystem(v1RebootSystem: V1RebootSystem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
5797
|
+
/**
|
|
5798
|
+
* v1 send flare
|
|
5799
|
+
* @param {V1SendFlare} v1SendFlare
|
|
5800
|
+
* @param {*} [options] Override http request option.
|
|
5801
|
+
* @deprecated
|
|
5802
|
+
* @throws {RequiredError}
|
|
5803
|
+
*/
|
|
5804
|
+
v1NodeCommandV1SendFlare(v1SendFlare: V1SendFlare, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4411
5805
|
/**
|
|
4412
5806
|
* Match optical tube.
|
|
4413
5807
|
* @param {string} [model]
|
|
@@ -4424,6 +5818,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4424
5818
|
* @throws {RequiredError}
|
|
4425
5819
|
*/
|
|
4426
5820
|
v1RegisterNodeController(v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeController>>;
|
|
5821
|
+
/**
|
|
5822
|
+
* Requests mac addresses for the given lineage and interfaces.
|
|
5823
|
+
* @param {V1RequestMacAddressesRequest} v1RequestMacAddressesRequest
|
|
5824
|
+
* @param {*} [options] Override http request option.
|
|
5825
|
+
* @throws {RequiredError}
|
|
5826
|
+
*/
|
|
5827
|
+
v1RequestMacAddresses(v1RequestMacAddressesRequest: V1RequestMacAddressesRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1RequestMacAddressesResponse>>;
|
|
5828
|
+
/**
|
|
5829
|
+
* Update a mount.
|
|
5830
|
+
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
5831
|
+
* @param {*} [options] Override http request option.
|
|
5832
|
+
* @throws {RequiredError}
|
|
5833
|
+
*/
|
|
5834
|
+
v1UpdateMount(v1UpdateMountRequest: V1UpdateMountRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4427
5835
|
/**
|
|
4428
5836
|
* Update a node.
|
|
4429
5837
|
* @param {V1UpdateNodeRequest} v1UpdateNodeRequest
|
|
@@ -4438,6 +5846,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4438
5846
|
* @throws {RequiredError}
|
|
4439
5847
|
*/
|
|
4440
5848
|
v1UpdateNodeComponents(v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
|
|
5849
|
+
/**
|
|
5850
|
+
* Update an optical tube.
|
|
5851
|
+
* @param {V1UpdateOpticalTubeRequest} v1UpdateOpticalTubeRequest
|
|
5852
|
+
* @param {*} [options] Override http request option.
|
|
5853
|
+
* @throws {RequiredError}
|
|
5854
|
+
*/
|
|
5855
|
+
v1UpdateOpticalTube(v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4441
5856
|
/**
|
|
4442
5857
|
* Complete an observation utilizing the async pipeline.
|
|
4443
5858
|
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
@@ -4445,12 +5860,26 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4445
5860
|
* @throws {RequiredError}
|
|
4446
5861
|
*/
|
|
4447
5862
|
v2CompleteObservation(v2CompleteObservationRequest: V2CompleteObservationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
5863
|
+
/**
|
|
5864
|
+
* V2 Issue Certificate
|
|
5865
|
+
* @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
|
|
5866
|
+
* @param {*} [options] Override http request option.
|
|
5867
|
+
* @throws {RequiredError}
|
|
5868
|
+
*/
|
|
5869
|
+
v2IssueCertificate(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2NodeControllerIssueCertificateResponse>>;
|
|
4448
5870
|
};
|
|
4449
5871
|
/**
|
|
4450
5872
|
* DefaultApi - factory interface
|
|
4451
5873
|
* @export
|
|
4452
5874
|
*/
|
|
4453
5875
|
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5876
|
+
/**
|
|
5877
|
+
* Get images for a node for display in a camera roll format
|
|
5878
|
+
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
5879
|
+
* @param {*} [options] Override http request option.
|
|
5880
|
+
* @throws {RequiredError}
|
|
5881
|
+
*/
|
|
5882
|
+
getCameraRoll(requestParameters?: DefaultApiGetCameraRollRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1CameraRollImage>>;
|
|
4454
5883
|
/**
|
|
4455
5884
|
* Get the various tokens used in client applications
|
|
4456
5885
|
* @param {*} [options] Override http request option.
|
|
@@ -4498,6 +5927,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4498
5927
|
* @throws {RequiredError}
|
|
4499
5928
|
*/
|
|
4500
5929
|
v1CreateAutofocusResult(requestParameters: DefaultApiV1CreateAutofocusResultRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
5930
|
+
/**
|
|
5931
|
+
* Create a filter wheel.
|
|
5932
|
+
* @param {DefaultApiV1CreateFilterWheelRequest} requestParameters Request parameters.
|
|
5933
|
+
* @param {*} [options] Override http request option.
|
|
5934
|
+
* @throws {RequiredError}
|
|
5935
|
+
*/
|
|
5936
|
+
v1CreateFilterWheel(requestParameters: DefaultApiV1CreateFilterWheelRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
4501
5937
|
/**
|
|
4502
5938
|
* Create an focuser.
|
|
4503
5939
|
* @param {DefaultApiV1CreateFocuserRequest} requestParameters Request parameters.
|
|
@@ -4519,6 +5955,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4519
5955
|
* @throws {RequiredError}
|
|
4520
5956
|
*/
|
|
4521
5957
|
v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
|
|
5958
|
+
/**
|
|
5959
|
+
* Create an image set image upload url.
|
|
5960
|
+
* @param {DefaultApiV1CreateImageSetImageUploadUrlRequest} requestParameters Request parameters.
|
|
5961
|
+
* @param {*} [options] Override http request option.
|
|
5962
|
+
* @throws {RequiredError}
|
|
5963
|
+
*/
|
|
5964
|
+
v1CreateImageSetImageUploadUrl(requestParameters: DefaultApiV1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageUploadUrlResponse>;
|
|
4522
5965
|
/**
|
|
4523
5966
|
* Create metrics.
|
|
4524
5967
|
* @param {DefaultApiV1CreateMetricsRequest} requestParameters Request parameters.
|
|
@@ -4575,6 +6018,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4575
6018
|
* @throws {RequiredError}
|
|
4576
6019
|
*/
|
|
4577
6020
|
v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6021
|
+
/**
|
|
6022
|
+
* Set metadata and plate solve results for an image.
|
|
6023
|
+
* @param {DefaultApiV1CreateProcessedImageSetImageRequest} requestParameters Request parameters.
|
|
6024
|
+
* @param {*} [options] Override http request option.
|
|
6025
|
+
* @throws {RequiredError}
|
|
6026
|
+
*/
|
|
6027
|
+
v1CreateProcessedImageSetImage(requestParameters: DefaultApiV1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
|
|
4578
6028
|
/**
|
|
4579
6029
|
* Create a time windowed asset.
|
|
4580
6030
|
* @param {DefaultApiV1CreateTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
@@ -4582,6 +6032,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4582
6032
|
* @throws {RequiredError}
|
|
4583
6033
|
*/
|
|
4584
6034
|
v1CreateTimeWindowedAsset(requestParameters: DefaultApiV1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateTimeWindowedAssetResponse>;
|
|
6035
|
+
/**
|
|
6036
|
+
* Get the sunrise/sunset times for a specific node by its ID
|
|
6037
|
+
* @param {DefaultApiV1CustomerGetSuntimesRequest} requestParameters Request parameters.
|
|
6038
|
+
* @param {*} [options] Override http request option.
|
|
6039
|
+
* @throws {RequiredError}
|
|
6040
|
+
*/
|
|
6041
|
+
v1CustomerGetSuntimes(requestParameters: DefaultApiV1CustomerGetSuntimesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetSuntimesResponse>;
|
|
4585
6042
|
/**
|
|
4586
6043
|
* Delete an image set.
|
|
4587
6044
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4623,6 +6080,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4623
6080
|
* @throws {RequiredError}
|
|
4624
6081
|
*/
|
|
4625
6082
|
v1GetCameras(options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
|
|
6083
|
+
/**
|
|
6084
|
+
* Get a filter wheel.
|
|
6085
|
+
* @param {DefaultApiV1GetFilterWheelRequest} requestParameters Request parameters.
|
|
6086
|
+
* @param {*} [options] Override http request option.
|
|
6087
|
+
* @throws {RequiredError}
|
|
6088
|
+
*/
|
|
6089
|
+
v1GetFilterWheel(requestParameters: DefaultApiV1GetFilterWheelRequest, options?: AxiosRequestConfig): AxiosPromise<V1FilterWheel>;
|
|
4626
6090
|
/**
|
|
4627
6091
|
* Get a focuser.
|
|
4628
6092
|
* @param {DefaultApiV1GetFocuserRequest} requestParameters Request parameters.
|
|
@@ -4687,12 +6151,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4687
6151
|
*/
|
|
4688
6152
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
|
|
4689
6153
|
/**
|
|
4690
|
-
* Get node by lineage id.
|
|
6154
|
+
* Get node by lineage id or node id.
|
|
4691
6155
|
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
4692
6156
|
* @param {*} [options] Override http request option.
|
|
4693
6157
|
* @throws {RequiredError}
|
|
4694
6158
|
*/
|
|
4695
|
-
v1GetNode(requestParameters
|
|
6159
|
+
v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
4696
6160
|
/**
|
|
4697
6161
|
* Get node commands
|
|
4698
6162
|
* @param {DefaultApiV1GetNodeCommandsRequest} requestParameters Request parameters.
|
|
@@ -4701,19 +6165,19 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4701
6165
|
*/
|
|
4702
6166
|
v1GetNodeCommands(requestParameters: DefaultApiV1GetNodeCommandsRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetNodeCommandsResponse>;
|
|
4703
6167
|
/**
|
|
4704
|
-
*
|
|
4705
|
-
* @param {
|
|
6168
|
+
* Get node diagnostic tasks.
|
|
6169
|
+
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
4706
6170
|
* @param {*} [options] Override http request option.
|
|
4707
6171
|
* @throws {RequiredError}
|
|
4708
6172
|
*/
|
|
4709
|
-
|
|
6173
|
+
v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeDiagnosticType>>;
|
|
4710
6174
|
/**
|
|
4711
|
-
* Get node
|
|
4712
|
-
* @param {
|
|
6175
|
+
* Get node events Apex Charts timeline
|
|
6176
|
+
* @param {DefaultApiV1GetNodeEventsApexChartsTimelineRequest} requestParameters Request parameters.
|
|
4713
6177
|
* @param {*} [options] Override http request option.
|
|
4714
6178
|
* @throws {RequiredError}
|
|
4715
6179
|
*/
|
|
4716
|
-
|
|
6180
|
+
v1GetNodeEventsApexChartsTimeline(requestParameters: DefaultApiV1GetNodeEventsApexChartsTimelineRequest, options?: AxiosRequestConfig): AxiosPromise<V1ApexChartsTimeline>;
|
|
4717
6181
|
/**
|
|
4718
6182
|
* Get a node flare by id.
|
|
4719
6183
|
* @param {DefaultApiV1GetNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -4776,6 +6240,25 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4776
6240
|
* @throws {RequiredError}
|
|
4777
6241
|
*/
|
|
4778
6242
|
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
|
|
6243
|
+
/**
|
|
6244
|
+
* Get satellites for skyAtlas. returns jsonl
|
|
6245
|
+
* @param {*} [options] Override http request option.
|
|
6246
|
+
* @throws {RequiredError}
|
|
6247
|
+
*/
|
|
6248
|
+
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
6249
|
+
/**
|
|
6250
|
+
* Get the target QCOM OTA software release for a node
|
|
6251
|
+
* @param {*} [options] Override http request option.
|
|
6252
|
+
* @throws {RequiredError}
|
|
6253
|
+
*/
|
|
6254
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options?: AxiosRequestConfig): AxiosPromise<V1SoftwareRelease>;
|
|
6255
|
+
/**
|
|
6256
|
+
* Get the target software releases for a node
|
|
6257
|
+
* @param {DefaultApiV1GetTargetSoftwareReleasesForNodeRequest} requestParameters Request parameters.
|
|
6258
|
+
* @param {*} [options] Override http request option.
|
|
6259
|
+
* @throws {RequiredError}
|
|
6260
|
+
*/
|
|
6261
|
+
v1GetTargetSoftwareReleasesForNode(requestParameters: DefaultApiV1GetTargetSoftwareReleasesForNodeRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SoftwareRelease>>;
|
|
4779
6262
|
/**
|
|
4780
6263
|
* Get a time windowed asset by id.
|
|
4781
6264
|
* @param {DefaultApiV1GetTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
@@ -4803,6 +6286,38 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4803
6286
|
* @throws {RequiredError}
|
|
4804
6287
|
*/
|
|
4805
6288
|
v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>>;
|
|
6289
|
+
/**
|
|
6290
|
+
* \' 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 \'
|
|
6291
|
+
* @param {DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest} requestParameters Request parameters.
|
|
6292
|
+
* @param {*} [options] Override http request option.
|
|
6293
|
+
* @deprecated
|
|
6294
|
+
* @throws {RequiredError}
|
|
6295
|
+
*/
|
|
6296
|
+
v1NodeCommandV1EnableAutonomousOperation(requestParameters: DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6297
|
+
/**
|
|
6298
|
+
* \' 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! \'
|
|
6299
|
+
* @param {DefaultApiV1NodeCommandV1EnableManualOperationRequest} requestParameters Request parameters.
|
|
6300
|
+
* @param {*} [options] Override http request option.
|
|
6301
|
+
* @deprecated
|
|
6302
|
+
* @throws {RequiredError}
|
|
6303
|
+
*/
|
|
6304
|
+
v1NodeCommandV1EnableManualOperation(requestParameters: DefaultApiV1NodeCommandV1EnableManualOperationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6305
|
+
/**
|
|
6306
|
+
* v1 reboot system
|
|
6307
|
+
* @param {DefaultApiV1NodeCommandV1RebootSystemRequest} requestParameters Request parameters.
|
|
6308
|
+
* @param {*} [options] Override http request option.
|
|
6309
|
+
* @deprecated
|
|
6310
|
+
* @throws {RequiredError}
|
|
6311
|
+
*/
|
|
6312
|
+
v1NodeCommandV1RebootSystem(requestParameters: DefaultApiV1NodeCommandV1RebootSystemRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
6313
|
+
/**
|
|
6314
|
+
* v1 send flare
|
|
6315
|
+
* @param {DefaultApiV1NodeCommandV1SendFlareRequest} requestParameters Request parameters.
|
|
6316
|
+
* @param {*} [options] Override http request option.
|
|
6317
|
+
* @deprecated
|
|
6318
|
+
* @throws {RequiredError}
|
|
6319
|
+
*/
|
|
6320
|
+
v1NodeCommandV1SendFlare(requestParameters: DefaultApiV1NodeCommandV1SendFlareRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
4806
6321
|
/**
|
|
4807
6322
|
* Match optical tube.
|
|
4808
6323
|
* @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
|
|
@@ -4817,6 +6332,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4817
6332
|
* @throws {RequiredError}
|
|
4818
6333
|
*/
|
|
4819
6334
|
v1RegisterNodeController(requestParameters: DefaultApiV1RegisterNodeControllerRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeController>;
|
|
6335
|
+
/**
|
|
6336
|
+
* Requests mac addresses for the given lineage and interfaces.
|
|
6337
|
+
* @param {DefaultApiV1RequestMacAddressesRequest} requestParameters Request parameters.
|
|
6338
|
+
* @param {*} [options] Override http request option.
|
|
6339
|
+
* @throws {RequiredError}
|
|
6340
|
+
*/
|
|
6341
|
+
v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): AxiosPromise<V1RequestMacAddressesResponse>;
|
|
6342
|
+
/**
|
|
6343
|
+
* Update a mount.
|
|
6344
|
+
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|
|
6345
|
+
* @param {*} [options] Override http request option.
|
|
6346
|
+
* @throws {RequiredError}
|
|
6347
|
+
*/
|
|
6348
|
+
v1UpdateMount(requestParameters: DefaultApiV1UpdateMountRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
4820
6349
|
/**
|
|
4821
6350
|
* Update a node.
|
|
4822
6351
|
* @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
|
|
@@ -4830,7 +6359,14 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4830
6359
|
* @param {*} [options] Override http request option.
|
|
4831
6360
|
* @throws {RequiredError}
|
|
4832
6361
|
*/
|
|
4833
|
-
v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
6362
|
+
v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
6363
|
+
/**
|
|
6364
|
+
* Update an optical tube.
|
|
6365
|
+
* @param {DefaultApiV1UpdateOpticalTubeRequest} requestParameters Request parameters.
|
|
6366
|
+
* @param {*} [options] Override http request option.
|
|
6367
|
+
* @throws {RequiredError}
|
|
6368
|
+
*/
|
|
6369
|
+
v1UpdateOpticalTube(requestParameters: DefaultApiV1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
4834
6370
|
/**
|
|
4835
6371
|
* Complete an observation utilizing the async pipeline.
|
|
4836
6372
|
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -4838,7 +6374,45 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4838
6374
|
* @throws {RequiredError}
|
|
4839
6375
|
*/
|
|
4840
6376
|
v2CompleteObservation(requestParameters: DefaultApiV2CompleteObservationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
6377
|
+
/**
|
|
6378
|
+
* V2 Issue Certificate
|
|
6379
|
+
* @param {DefaultApiV2IssueCertificateRequest} requestParameters Request parameters.
|
|
6380
|
+
* @param {*} [options] Override http request option.
|
|
6381
|
+
* @throws {RequiredError}
|
|
6382
|
+
*/
|
|
6383
|
+
v2IssueCertificate(requestParameters: DefaultApiV2IssueCertificateRequest, options?: AxiosRequestConfig): AxiosPromise<V2NodeControllerIssueCertificateResponse>;
|
|
4841
6384
|
};
|
|
6385
|
+
/**
|
|
6386
|
+
* Request parameters for getCameraRoll operation in DefaultApi.
|
|
6387
|
+
* @export
|
|
6388
|
+
* @interface DefaultApiGetCameraRollRequest
|
|
6389
|
+
*/
|
|
6390
|
+
export interface DefaultApiGetCameraRollRequest {
|
|
6391
|
+
/**
|
|
6392
|
+
*
|
|
6393
|
+
* @type {string}
|
|
6394
|
+
* @memberof DefaultApiGetCameraRoll
|
|
6395
|
+
*/
|
|
6396
|
+
readonly nodeId?: string;
|
|
6397
|
+
/**
|
|
6398
|
+
*
|
|
6399
|
+
* @type {string}
|
|
6400
|
+
* @memberof DefaultApiGetCameraRoll
|
|
6401
|
+
*/
|
|
6402
|
+
readonly lineageId?: string;
|
|
6403
|
+
/**
|
|
6404
|
+
*
|
|
6405
|
+
* @type {string}
|
|
6406
|
+
* @memberof DefaultApiGetCameraRoll
|
|
6407
|
+
*/
|
|
6408
|
+
readonly before?: string;
|
|
6409
|
+
/**
|
|
6410
|
+
* Comma separated array of [ImageSetType](#model/imagesettype)
|
|
6411
|
+
* @type {string}
|
|
6412
|
+
* @memberof DefaultApiGetCameraRoll
|
|
6413
|
+
*/
|
|
6414
|
+
readonly types?: string;
|
|
6415
|
+
}
|
|
4842
6416
|
/**
|
|
4843
6417
|
* Request parameters for v1CameraMatch operation in DefaultApi.
|
|
4844
6418
|
* @export
|
|
@@ -4946,6 +6520,19 @@ export interface DefaultApiV1CreateAutofocusResultRequest {
|
|
|
4946
6520
|
*/
|
|
4947
6521
|
readonly v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest;
|
|
4948
6522
|
}
|
|
6523
|
+
/**
|
|
6524
|
+
* Request parameters for v1CreateFilterWheel operation in DefaultApi.
|
|
6525
|
+
* @export
|
|
6526
|
+
* @interface DefaultApiV1CreateFilterWheelRequest
|
|
6527
|
+
*/
|
|
6528
|
+
export interface DefaultApiV1CreateFilterWheelRequest {
|
|
6529
|
+
/**
|
|
6530
|
+
*
|
|
6531
|
+
* @type {V1CreateFilterWheelRequest}
|
|
6532
|
+
* @memberof DefaultApiV1CreateFilterWheel
|
|
6533
|
+
*/
|
|
6534
|
+
readonly v1CreateFilterWheelRequest: V1CreateFilterWheelRequest;
|
|
6535
|
+
}
|
|
4949
6536
|
/**
|
|
4950
6537
|
* Request parameters for v1CreateFocuser operation in DefaultApi.
|
|
4951
6538
|
* @export
|
|
@@ -4985,6 +6572,19 @@ export interface DefaultApiV1CreateImageSetImageRequest {
|
|
|
4985
6572
|
*/
|
|
4986
6573
|
readonly v1CreateImageSetImageRequest: V1CreateImageSetImageRequest;
|
|
4987
6574
|
}
|
|
6575
|
+
/**
|
|
6576
|
+
* Request parameters for v1CreateImageSetImageUploadUrl operation in DefaultApi.
|
|
6577
|
+
* @export
|
|
6578
|
+
* @interface DefaultApiV1CreateImageSetImageUploadUrlRequest
|
|
6579
|
+
*/
|
|
6580
|
+
export interface DefaultApiV1CreateImageSetImageUploadUrlRequest {
|
|
6581
|
+
/**
|
|
6582
|
+
*
|
|
6583
|
+
* @type {V1CreateImageSetImageUploadUrlRequest}
|
|
6584
|
+
* @memberof DefaultApiV1CreateImageSetImageUploadUrl
|
|
6585
|
+
*/
|
|
6586
|
+
readonly v1CreateImageSetImageUploadUrlRequest: V1CreateImageSetImageUploadUrlRequest;
|
|
6587
|
+
}
|
|
4988
6588
|
/**
|
|
4989
6589
|
* Request parameters for v1CreateMetrics operation in DefaultApi.
|
|
4990
6590
|
* @export
|
|
@@ -5089,6 +6689,19 @@ export interface DefaultApiV1CreateOpticalTubeRequest {
|
|
|
5089
6689
|
*/
|
|
5090
6690
|
readonly v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest;
|
|
5091
6691
|
}
|
|
6692
|
+
/**
|
|
6693
|
+
* Request parameters for v1CreateProcessedImageSetImage operation in DefaultApi.
|
|
6694
|
+
* @export
|
|
6695
|
+
* @interface DefaultApiV1CreateProcessedImageSetImageRequest
|
|
6696
|
+
*/
|
|
6697
|
+
export interface DefaultApiV1CreateProcessedImageSetImageRequest {
|
|
6698
|
+
/**
|
|
6699
|
+
*
|
|
6700
|
+
* @type {V1CreateProcessedImageSetImageRequest}
|
|
6701
|
+
* @memberof DefaultApiV1CreateProcessedImageSetImage
|
|
6702
|
+
*/
|
|
6703
|
+
readonly v1CreateProcessedImageSetImageRequest: V1CreateProcessedImageSetImageRequest;
|
|
6704
|
+
}
|
|
5092
6705
|
/**
|
|
5093
6706
|
* Request parameters for v1CreateTimeWindowedAsset operation in DefaultApi.
|
|
5094
6707
|
* @export
|
|
@@ -5102,6 +6715,19 @@ export interface DefaultApiV1CreateTimeWindowedAssetRequest {
|
|
|
5102
6715
|
*/
|
|
5103
6716
|
readonly v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest;
|
|
5104
6717
|
}
|
|
6718
|
+
/**
|
|
6719
|
+
* Request parameters for v1CustomerGetSuntimes operation in DefaultApi.
|
|
6720
|
+
* @export
|
|
6721
|
+
* @interface DefaultApiV1CustomerGetSuntimesRequest
|
|
6722
|
+
*/
|
|
6723
|
+
export interface DefaultApiV1CustomerGetSuntimesRequest {
|
|
6724
|
+
/**
|
|
6725
|
+
*
|
|
6726
|
+
* @type {string}
|
|
6727
|
+
* @memberof DefaultApiV1CustomerGetSuntimes
|
|
6728
|
+
*/
|
|
6729
|
+
readonly nodeId: string;
|
|
6730
|
+
}
|
|
5105
6731
|
/**
|
|
5106
6732
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
5107
6733
|
* @export
|
|
@@ -5179,6 +6805,19 @@ export interface DefaultApiV1GetAllSkyPredictionRequest {
|
|
|
5179
6805
|
*/
|
|
5180
6806
|
readonly id?: string;
|
|
5181
6807
|
}
|
|
6808
|
+
/**
|
|
6809
|
+
* Request parameters for v1GetFilterWheel operation in DefaultApi.
|
|
6810
|
+
* @export
|
|
6811
|
+
* @interface DefaultApiV1GetFilterWheelRequest
|
|
6812
|
+
*/
|
|
6813
|
+
export interface DefaultApiV1GetFilterWheelRequest {
|
|
6814
|
+
/**
|
|
6815
|
+
*
|
|
6816
|
+
* @type {string}
|
|
6817
|
+
* @memberof DefaultApiV1GetFilterWheel
|
|
6818
|
+
*/
|
|
6819
|
+
readonly id: string;
|
|
6820
|
+
}
|
|
5182
6821
|
/**
|
|
5183
6822
|
* Request parameters for v1GetFocuser operation in DefaultApi.
|
|
5184
6823
|
* @export
|
|
@@ -5313,7 +6952,13 @@ export interface DefaultApiV1GetNodeRequest {
|
|
|
5313
6952
|
* @type {string}
|
|
5314
6953
|
* @memberof DefaultApiV1GetNode
|
|
5315
6954
|
*/
|
|
5316
|
-
readonly lineageId
|
|
6955
|
+
readonly lineageId?: string;
|
|
6956
|
+
/**
|
|
6957
|
+
*
|
|
6958
|
+
* @type {string}
|
|
6959
|
+
* @memberof DefaultApiV1GetNode
|
|
6960
|
+
*/
|
|
6961
|
+
readonly nodeId?: string;
|
|
5317
6962
|
}
|
|
5318
6963
|
/**
|
|
5319
6964
|
* Request parameters for v1GetNodeCommands operation in DefaultApi.
|
|
@@ -5334,19 +6979,6 @@ export interface DefaultApiV1GetNodeCommandsRequest {
|
|
|
5334
6979
|
*/
|
|
5335
6980
|
readonly executableAt: string;
|
|
5336
6981
|
}
|
|
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
6982
|
/**
|
|
5351
6983
|
* Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
|
|
5352
6984
|
* @export
|
|
@@ -5366,6 +6998,37 @@ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
|
|
|
5366
6998
|
*/
|
|
5367
6999
|
readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>;
|
|
5368
7000
|
}
|
|
7001
|
+
/**
|
|
7002
|
+
* Request parameters for v1GetNodeEventsApexChartsTimeline operation in DefaultApi.
|
|
7003
|
+
* @export
|
|
7004
|
+
* @interface DefaultApiV1GetNodeEventsApexChartsTimelineRequest
|
|
7005
|
+
*/
|
|
7006
|
+
export interface DefaultApiV1GetNodeEventsApexChartsTimelineRequest {
|
|
7007
|
+
/**
|
|
7008
|
+
*
|
|
7009
|
+
* @type {string}
|
|
7010
|
+
* @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
|
|
7011
|
+
*/
|
|
7012
|
+
readonly startTime: string;
|
|
7013
|
+
/**
|
|
7014
|
+
*
|
|
7015
|
+
* @type {string}
|
|
7016
|
+
* @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
|
|
7017
|
+
*/
|
|
7018
|
+
readonly endTime: string;
|
|
7019
|
+
/**
|
|
7020
|
+
*
|
|
7021
|
+
* @type {string}
|
|
7022
|
+
* @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
|
|
7023
|
+
*/
|
|
7024
|
+
readonly nodeId?: string;
|
|
7025
|
+
/**
|
|
7026
|
+
*
|
|
7027
|
+
* @type {string}
|
|
7028
|
+
* @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
|
|
7029
|
+
*/
|
|
7030
|
+
readonly lineageId?: string;
|
|
7031
|
+
}
|
|
5369
7032
|
/**
|
|
5370
7033
|
* Request parameters for v1GetNodeFlare operation in DefaultApi.
|
|
5371
7034
|
* @export
|
|
@@ -5470,6 +7133,19 @@ export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
|
5470
7133
|
*/
|
|
5471
7134
|
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
|
|
5472
7135
|
}
|
|
7136
|
+
/**
|
|
7137
|
+
* Request parameters for v1GetTargetSoftwareReleasesForNode operation in DefaultApi.
|
|
7138
|
+
* @export
|
|
7139
|
+
* @interface DefaultApiV1GetTargetSoftwareReleasesForNodeRequest
|
|
7140
|
+
*/
|
|
7141
|
+
export interface DefaultApiV1GetTargetSoftwareReleasesForNodeRequest {
|
|
7142
|
+
/**
|
|
7143
|
+
* lineage id
|
|
7144
|
+
* @type {string}
|
|
7145
|
+
* @memberof DefaultApiV1GetTargetSoftwareReleasesForNode
|
|
7146
|
+
*/
|
|
7147
|
+
readonly lineageId: string;
|
|
7148
|
+
}
|
|
5473
7149
|
/**
|
|
5474
7150
|
* Request parameters for v1GetTimeWindowedAsset operation in DefaultApi.
|
|
5475
7151
|
* @export
|
|
@@ -5509,6 +7185,58 @@ export interface DefaultApiV1MountMatchRequest {
|
|
|
5509
7185
|
*/
|
|
5510
7186
|
readonly model?: string;
|
|
5511
7187
|
}
|
|
7188
|
+
/**
|
|
7189
|
+
* Request parameters for v1NodeCommandV1EnableAutonomousOperation operation in DefaultApi.
|
|
7190
|
+
* @export
|
|
7191
|
+
* @interface DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest
|
|
7192
|
+
*/
|
|
7193
|
+
export interface DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest {
|
|
7194
|
+
/**
|
|
7195
|
+
*
|
|
7196
|
+
* @type {V1EnableAutonomousOperation}
|
|
7197
|
+
* @memberof DefaultApiV1NodeCommandV1EnableAutonomousOperation
|
|
7198
|
+
*/
|
|
7199
|
+
readonly v1EnableAutonomousOperation: V1EnableAutonomousOperation;
|
|
7200
|
+
}
|
|
7201
|
+
/**
|
|
7202
|
+
* Request parameters for v1NodeCommandV1EnableManualOperation operation in DefaultApi.
|
|
7203
|
+
* @export
|
|
7204
|
+
* @interface DefaultApiV1NodeCommandV1EnableManualOperationRequest
|
|
7205
|
+
*/
|
|
7206
|
+
export interface DefaultApiV1NodeCommandV1EnableManualOperationRequest {
|
|
7207
|
+
/**
|
|
7208
|
+
*
|
|
7209
|
+
* @type {V1EnableManualOperation}
|
|
7210
|
+
* @memberof DefaultApiV1NodeCommandV1EnableManualOperation
|
|
7211
|
+
*/
|
|
7212
|
+
readonly v1EnableManualOperation: V1EnableManualOperation;
|
|
7213
|
+
}
|
|
7214
|
+
/**
|
|
7215
|
+
* Request parameters for v1NodeCommandV1RebootSystem operation in DefaultApi.
|
|
7216
|
+
* @export
|
|
7217
|
+
* @interface DefaultApiV1NodeCommandV1RebootSystemRequest
|
|
7218
|
+
*/
|
|
7219
|
+
export interface DefaultApiV1NodeCommandV1RebootSystemRequest {
|
|
7220
|
+
/**
|
|
7221
|
+
*
|
|
7222
|
+
* @type {V1RebootSystem}
|
|
7223
|
+
* @memberof DefaultApiV1NodeCommandV1RebootSystem
|
|
7224
|
+
*/
|
|
7225
|
+
readonly v1RebootSystem: V1RebootSystem;
|
|
7226
|
+
}
|
|
7227
|
+
/**
|
|
7228
|
+
* Request parameters for v1NodeCommandV1SendFlare operation in DefaultApi.
|
|
7229
|
+
* @export
|
|
7230
|
+
* @interface DefaultApiV1NodeCommandV1SendFlareRequest
|
|
7231
|
+
*/
|
|
7232
|
+
export interface DefaultApiV1NodeCommandV1SendFlareRequest {
|
|
7233
|
+
/**
|
|
7234
|
+
*
|
|
7235
|
+
* @type {V1SendFlare}
|
|
7236
|
+
* @memberof DefaultApiV1NodeCommandV1SendFlare
|
|
7237
|
+
*/
|
|
7238
|
+
readonly v1SendFlare: V1SendFlare;
|
|
7239
|
+
}
|
|
5512
7240
|
/**
|
|
5513
7241
|
* Request parameters for v1OpticalTubeMatch operation in DefaultApi.
|
|
5514
7242
|
* @export
|
|
@@ -5547,6 +7275,32 @@ export interface DefaultApiV1RegisterNodeControllerRequest {
|
|
|
5547
7275
|
*/
|
|
5548
7276
|
readonly v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest;
|
|
5549
7277
|
}
|
|
7278
|
+
/**
|
|
7279
|
+
* Request parameters for v1RequestMacAddresses operation in DefaultApi.
|
|
7280
|
+
* @export
|
|
7281
|
+
* @interface DefaultApiV1RequestMacAddressesRequest
|
|
7282
|
+
*/
|
|
7283
|
+
export interface DefaultApiV1RequestMacAddressesRequest {
|
|
7284
|
+
/**
|
|
7285
|
+
*
|
|
7286
|
+
* @type {V1RequestMacAddressesRequest}
|
|
7287
|
+
* @memberof DefaultApiV1RequestMacAddresses
|
|
7288
|
+
*/
|
|
7289
|
+
readonly v1RequestMacAddressesRequest: V1RequestMacAddressesRequest;
|
|
7290
|
+
}
|
|
7291
|
+
/**
|
|
7292
|
+
* Request parameters for v1UpdateMount operation in DefaultApi.
|
|
7293
|
+
* @export
|
|
7294
|
+
* @interface DefaultApiV1UpdateMountRequest
|
|
7295
|
+
*/
|
|
7296
|
+
export interface DefaultApiV1UpdateMountRequest {
|
|
7297
|
+
/**
|
|
7298
|
+
*
|
|
7299
|
+
* @type {V1UpdateMountRequest}
|
|
7300
|
+
* @memberof DefaultApiV1UpdateMount
|
|
7301
|
+
*/
|
|
7302
|
+
readonly v1UpdateMountRequest: V1UpdateMountRequest;
|
|
7303
|
+
}
|
|
5550
7304
|
/**
|
|
5551
7305
|
* Request parameters for v1UpdateNode operation in DefaultApi.
|
|
5552
7306
|
* @export
|
|
@@ -5573,6 +7327,19 @@ export interface DefaultApiV1UpdateNodeComponentsRequest {
|
|
|
5573
7327
|
*/
|
|
5574
7328
|
readonly v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest;
|
|
5575
7329
|
}
|
|
7330
|
+
/**
|
|
7331
|
+
* Request parameters for v1UpdateOpticalTube operation in DefaultApi.
|
|
7332
|
+
* @export
|
|
7333
|
+
* @interface DefaultApiV1UpdateOpticalTubeRequest
|
|
7334
|
+
*/
|
|
7335
|
+
export interface DefaultApiV1UpdateOpticalTubeRequest {
|
|
7336
|
+
/**
|
|
7337
|
+
*
|
|
7338
|
+
* @type {V1UpdateOpticalTubeRequest}
|
|
7339
|
+
* @memberof DefaultApiV1UpdateOpticalTube
|
|
7340
|
+
*/
|
|
7341
|
+
readonly v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest;
|
|
7342
|
+
}
|
|
5576
7343
|
/**
|
|
5577
7344
|
* Request parameters for v2CompleteObservation operation in DefaultApi.
|
|
5578
7345
|
* @export
|
|
@@ -5586,6 +7353,19 @@ export interface DefaultApiV2CompleteObservationRequest {
|
|
|
5586
7353
|
*/
|
|
5587
7354
|
readonly v2CompleteObservationRequest: V2CompleteObservationRequest;
|
|
5588
7355
|
}
|
|
7356
|
+
/**
|
|
7357
|
+
* Request parameters for v2IssueCertificate operation in DefaultApi.
|
|
7358
|
+
* @export
|
|
7359
|
+
* @interface DefaultApiV2IssueCertificateRequest
|
|
7360
|
+
*/
|
|
7361
|
+
export interface DefaultApiV2IssueCertificateRequest {
|
|
7362
|
+
/**
|
|
7363
|
+
*
|
|
7364
|
+
* @type {V1NodeControllerBootstrapRequest}
|
|
7365
|
+
* @memberof DefaultApiV2IssueCertificate
|
|
7366
|
+
*/
|
|
7367
|
+
readonly v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest;
|
|
7368
|
+
}
|
|
5589
7369
|
/**
|
|
5590
7370
|
* DefaultApi - object-oriented interface
|
|
5591
7371
|
* @export
|
|
@@ -5593,6 +7373,14 @@ export interface DefaultApiV2CompleteObservationRequest {
|
|
|
5593
7373
|
* @extends {BaseAPI}
|
|
5594
7374
|
*/
|
|
5595
7375
|
export declare class DefaultApi extends BaseAPI {
|
|
7376
|
+
/**
|
|
7377
|
+
* Get images for a node for display in a camera roll format
|
|
7378
|
+
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
7379
|
+
* @param {*} [options] Override http request option.
|
|
7380
|
+
* @throws {RequiredError}
|
|
7381
|
+
* @memberof DefaultApi
|
|
7382
|
+
*/
|
|
7383
|
+
getCameraRoll(requestParameters?: DefaultApiGetCameraRollRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CameraRollImage[], any>>;
|
|
5596
7384
|
/**
|
|
5597
7385
|
* Get the various tokens used in client applications
|
|
5598
7386
|
* @param {*} [options] Override http request option.
|
|
@@ -5647,6 +7435,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5647
7435
|
* @memberof DefaultApi
|
|
5648
7436
|
*/
|
|
5649
7437
|
v1CreateAutofocusResult(requestParameters: DefaultApiV1CreateAutofocusResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7438
|
+
/**
|
|
7439
|
+
* Create a filter wheel.
|
|
7440
|
+
* @param {DefaultApiV1CreateFilterWheelRequest} requestParameters Request parameters.
|
|
7441
|
+
* @param {*} [options] Override http request option.
|
|
7442
|
+
* @throws {RequiredError}
|
|
7443
|
+
* @memberof DefaultApi
|
|
7444
|
+
*/
|
|
7445
|
+
v1CreateFilterWheel(requestParameters: DefaultApiV1CreateFilterWheelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
5650
7446
|
/**
|
|
5651
7447
|
* Create an focuser.
|
|
5652
7448
|
* @param {DefaultApiV1CreateFocuserRequest} requestParameters Request parameters.
|
|
@@ -5671,6 +7467,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5671
7467
|
* @memberof DefaultApi
|
|
5672
7468
|
*/
|
|
5673
7469
|
v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
|
|
7470
|
+
/**
|
|
7471
|
+
* Create an image set image upload url.
|
|
7472
|
+
* @param {DefaultApiV1CreateImageSetImageUploadUrlRequest} requestParameters Request parameters.
|
|
7473
|
+
* @param {*} [options] Override http request option.
|
|
7474
|
+
* @throws {RequiredError}
|
|
7475
|
+
* @memberof DefaultApi
|
|
7476
|
+
*/
|
|
7477
|
+
v1CreateImageSetImageUploadUrl(requestParameters: DefaultApiV1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageUploadUrlResponse, any>>;
|
|
5674
7478
|
/**
|
|
5675
7479
|
* Create metrics.
|
|
5676
7480
|
* @param {DefaultApiV1CreateMetricsRequest} requestParameters Request parameters.
|
|
@@ -5735,6 +7539,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5735
7539
|
* @memberof DefaultApi
|
|
5736
7540
|
*/
|
|
5737
7541
|
v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7542
|
+
/**
|
|
7543
|
+
* Set metadata and plate solve results for an image.
|
|
7544
|
+
* @param {DefaultApiV1CreateProcessedImageSetImageRequest} requestParameters Request parameters.
|
|
7545
|
+
* @param {*} [options] Override http request option.
|
|
7546
|
+
* @throws {RequiredError}
|
|
7547
|
+
* @memberof DefaultApi
|
|
7548
|
+
*/
|
|
7549
|
+
v1CreateProcessedImageSetImage(requestParameters: DefaultApiV1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
|
|
5738
7550
|
/**
|
|
5739
7551
|
* Create a time windowed asset.
|
|
5740
7552
|
* @param {DefaultApiV1CreateTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
@@ -5743,6 +7555,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5743
7555
|
* @memberof DefaultApi
|
|
5744
7556
|
*/
|
|
5745
7557
|
v1CreateTimeWindowedAsset(requestParameters: DefaultApiV1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateTimeWindowedAssetResponse, any>>;
|
|
7558
|
+
/**
|
|
7559
|
+
* Get the sunrise/sunset times for a specific node by its ID
|
|
7560
|
+
* @param {DefaultApiV1CustomerGetSuntimesRequest} requestParameters Request parameters.
|
|
7561
|
+
* @param {*} [options] Override http request option.
|
|
7562
|
+
* @throws {RequiredError}
|
|
7563
|
+
* @memberof DefaultApi
|
|
7564
|
+
*/
|
|
7565
|
+
v1CustomerGetSuntimes(requestParameters: DefaultApiV1CustomerGetSuntimesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetSuntimesResponse, any>>;
|
|
5746
7566
|
/**
|
|
5747
7567
|
* Delete an image set.
|
|
5748
7568
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -5790,6 +7610,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5790
7610
|
* @memberof DefaultApi
|
|
5791
7611
|
*/
|
|
5792
7612
|
v1GetCameras(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
|
|
7613
|
+
/**
|
|
7614
|
+
* Get a filter wheel.
|
|
7615
|
+
* @param {DefaultApiV1GetFilterWheelRequest} requestParameters Request parameters.
|
|
7616
|
+
* @param {*} [options] Override http request option.
|
|
7617
|
+
* @throws {RequiredError}
|
|
7618
|
+
* @memberof DefaultApi
|
|
7619
|
+
*/
|
|
7620
|
+
v1GetFilterWheel(requestParameters: DefaultApiV1GetFilterWheelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1FilterWheel, any>>;
|
|
5793
7621
|
/**
|
|
5794
7622
|
* Get a focuser.
|
|
5795
7623
|
* @param {DefaultApiV1GetFocuserRequest} requestParameters Request parameters.
|
|
@@ -5863,13 +7691,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5863
7691
|
*/
|
|
5864
7692
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
|
|
5865
7693
|
/**
|
|
5866
|
-
* Get node by lineage id.
|
|
7694
|
+
* Get node by lineage id or node id.
|
|
5867
7695
|
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
5868
7696
|
* @param {*} [options] Override http request option.
|
|
5869
7697
|
* @throws {RequiredError}
|
|
5870
7698
|
* @memberof DefaultApi
|
|
5871
7699
|
*/
|
|
5872
|
-
v1GetNode(requestParameters
|
|
7700
|
+
v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
|
|
5873
7701
|
/**
|
|
5874
7702
|
* Get node commands
|
|
5875
7703
|
* @param {DefaultApiV1GetNodeCommandsRequest} requestParameters Request parameters.
|
|
@@ -5879,21 +7707,21 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5879
7707
|
*/
|
|
5880
7708
|
v1GetNodeCommands(requestParameters: DefaultApiV1GetNodeCommandsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetNodeCommandsResponse, any>>;
|
|
5881
7709
|
/**
|
|
5882
|
-
*
|
|
5883
|
-
* @param {
|
|
7710
|
+
* Get node diagnostic tasks.
|
|
7711
|
+
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
5884
7712
|
* @param {*} [options] Override http request option.
|
|
5885
7713
|
* @throws {RequiredError}
|
|
5886
7714
|
* @memberof DefaultApi
|
|
5887
7715
|
*/
|
|
5888
|
-
|
|
7716
|
+
v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeDiagnosticType[], any>>;
|
|
5889
7717
|
/**
|
|
5890
|
-
* Get node
|
|
5891
|
-
* @param {
|
|
7718
|
+
* Get node events Apex Charts timeline
|
|
7719
|
+
* @param {DefaultApiV1GetNodeEventsApexChartsTimelineRequest} requestParameters Request parameters.
|
|
5892
7720
|
* @param {*} [options] Override http request option.
|
|
5893
7721
|
* @throws {RequiredError}
|
|
5894
7722
|
* @memberof DefaultApi
|
|
5895
7723
|
*/
|
|
5896
|
-
|
|
7724
|
+
v1GetNodeEventsApexChartsTimeline(requestParameters: DefaultApiV1GetNodeEventsApexChartsTimelineRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ApexChartsTimeline, any>>;
|
|
5897
7725
|
/**
|
|
5898
7726
|
* Get a node flare by id.
|
|
5899
7727
|
* @param {DefaultApiV1GetNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -5965,6 +7793,28 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5965
7793
|
* @memberof DefaultApi
|
|
5966
7794
|
*/
|
|
5967
7795
|
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
|
|
7796
|
+
/**
|
|
7797
|
+
* Get satellites for skyAtlas. returns jsonl
|
|
7798
|
+
* @param {*} [options] Override http request option.
|
|
7799
|
+
* @throws {RequiredError}
|
|
7800
|
+
* @memberof DefaultApi
|
|
7801
|
+
*/
|
|
7802
|
+
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
7803
|
+
/**
|
|
7804
|
+
* Get the target QCOM OTA software release for a node
|
|
7805
|
+
* @param {*} [options] Override http request option.
|
|
7806
|
+
* @throws {RequiredError}
|
|
7807
|
+
* @memberof DefaultApi
|
|
7808
|
+
*/
|
|
7809
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SoftwareRelease, any>>;
|
|
7810
|
+
/**
|
|
7811
|
+
* Get the target software releases for a node
|
|
7812
|
+
* @param {DefaultApiV1GetTargetSoftwareReleasesForNodeRequest} requestParameters Request parameters.
|
|
7813
|
+
* @param {*} [options] Override http request option.
|
|
7814
|
+
* @throws {RequiredError}
|
|
7815
|
+
* @memberof DefaultApi
|
|
7816
|
+
*/
|
|
7817
|
+
v1GetTargetSoftwareReleasesForNode(requestParameters: DefaultApiV1GetTargetSoftwareReleasesForNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SoftwareRelease[], any>>;
|
|
5968
7818
|
/**
|
|
5969
7819
|
* Get a time windowed asset by id.
|
|
5970
7820
|
* @param {DefaultApiV1GetTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
@@ -5996,6 +7846,42 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5996
7846
|
* @memberof DefaultApi
|
|
5997
7847
|
*/
|
|
5998
7848
|
v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount[], any>>;
|
|
7849
|
+
/**
|
|
7850
|
+
* \' 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 \'
|
|
7851
|
+
* @param {DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest} requestParameters Request parameters.
|
|
7852
|
+
* @param {*} [options] Override http request option.
|
|
7853
|
+
* @deprecated
|
|
7854
|
+
* @throws {RequiredError}
|
|
7855
|
+
* @memberof DefaultApi
|
|
7856
|
+
*/
|
|
7857
|
+
v1NodeCommandV1EnableAutonomousOperation(requestParameters: DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7858
|
+
/**
|
|
7859
|
+
* \' 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! \'
|
|
7860
|
+
* @param {DefaultApiV1NodeCommandV1EnableManualOperationRequest} requestParameters Request parameters.
|
|
7861
|
+
* @param {*} [options] Override http request option.
|
|
7862
|
+
* @deprecated
|
|
7863
|
+
* @throws {RequiredError}
|
|
7864
|
+
* @memberof DefaultApi
|
|
7865
|
+
*/
|
|
7866
|
+
v1NodeCommandV1EnableManualOperation(requestParameters: DefaultApiV1NodeCommandV1EnableManualOperationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7867
|
+
/**
|
|
7868
|
+
* v1 reboot system
|
|
7869
|
+
* @param {DefaultApiV1NodeCommandV1RebootSystemRequest} requestParameters Request parameters.
|
|
7870
|
+
* @param {*} [options] Override http request option.
|
|
7871
|
+
* @deprecated
|
|
7872
|
+
* @throws {RequiredError}
|
|
7873
|
+
* @memberof DefaultApi
|
|
7874
|
+
*/
|
|
7875
|
+
v1NodeCommandV1RebootSystem(requestParameters: DefaultApiV1NodeCommandV1RebootSystemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
7876
|
+
/**
|
|
7877
|
+
* v1 send flare
|
|
7878
|
+
* @param {DefaultApiV1NodeCommandV1SendFlareRequest} requestParameters Request parameters.
|
|
7879
|
+
* @param {*} [options] Override http request option.
|
|
7880
|
+
* @deprecated
|
|
7881
|
+
* @throws {RequiredError}
|
|
7882
|
+
* @memberof DefaultApi
|
|
7883
|
+
*/
|
|
7884
|
+
v1NodeCommandV1SendFlare(requestParameters: DefaultApiV1NodeCommandV1SendFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
5999
7885
|
/**
|
|
6000
7886
|
* Match optical tube.
|
|
6001
7887
|
* @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
|
|
@@ -6012,6 +7898,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
6012
7898
|
* @memberof DefaultApi
|
|
6013
7899
|
*/
|
|
6014
7900
|
v1RegisterNodeController(requestParameters: DefaultApiV1RegisterNodeControllerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeController, any>>;
|
|
7901
|
+
/**
|
|
7902
|
+
* Requests mac addresses for the given lineage and interfaces.
|
|
7903
|
+
* @param {DefaultApiV1RequestMacAddressesRequest} requestParameters Request parameters.
|
|
7904
|
+
* @param {*} [options] Override http request option.
|
|
7905
|
+
* @throws {RequiredError}
|
|
7906
|
+
* @memberof DefaultApi
|
|
7907
|
+
*/
|
|
7908
|
+
v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1RequestMacAddressesResponse, any>>;
|
|
7909
|
+
/**
|
|
7910
|
+
* Update a mount.
|
|
7911
|
+
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|
|
7912
|
+
* @param {*} [options] Override http request option.
|
|
7913
|
+
* @throws {RequiredError}
|
|
7914
|
+
* @memberof DefaultApi
|
|
7915
|
+
*/
|
|
7916
|
+
v1UpdateMount(requestParameters: DefaultApiV1UpdateMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
6015
7917
|
/**
|
|
6016
7918
|
* Update a node.
|
|
6017
7919
|
* @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
|
|
@@ -6028,6 +7930,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
6028
7930
|
* @memberof DefaultApi
|
|
6029
7931
|
*/
|
|
6030
7932
|
v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
|
|
7933
|
+
/**
|
|
7934
|
+
* Update an optical tube.
|
|
7935
|
+
* @param {DefaultApiV1UpdateOpticalTubeRequest} requestParameters Request parameters.
|
|
7936
|
+
* @param {*} [options] Override http request option.
|
|
7937
|
+
* @throws {RequiredError}
|
|
7938
|
+
* @memberof DefaultApi
|
|
7939
|
+
*/
|
|
7940
|
+
v1UpdateOpticalTube(requestParameters: DefaultApiV1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
6031
7941
|
/**
|
|
6032
7942
|
* Complete an observation utilizing the async pipeline.
|
|
6033
7943
|
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -6036,4 +7946,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
6036
7946
|
* @memberof DefaultApi
|
|
6037
7947
|
*/
|
|
6038
7948
|
v2CompleteObservation(requestParameters: DefaultApiV2CompleteObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
7949
|
+
/**
|
|
7950
|
+
* V2 Issue Certificate
|
|
7951
|
+
* @param {DefaultApiV2IssueCertificateRequest} requestParameters Request parameters.
|
|
7952
|
+
* @param {*} [options] Override http request option.
|
|
7953
|
+
* @throws {RequiredError}
|
|
7954
|
+
* @memberof DefaultApi
|
|
7955
|
+
*/
|
|
7956
|
+
v2IssueCertificate(requestParameters: DefaultApiV2IssueCertificateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2NodeControllerIssueCertificateResponse, any>>;
|
|
6039
7957
|
}
|