@ourskyai/platform-api 1.3.5667 → 1.3.8106

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -60,6 +60,15 @@ export declare const FilterType: {
60
60
  readonly PHOTO_JOHNSON_V: "PHOTO_JOHNSON_V";
61
61
  readonly PHOTO_COUSINS_R: "PHOTO_COUSINS_R";
62
62
  readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
63
+ readonly PHOTO_SLOAN_U: "PHOTO_SLOAN_U";
64
+ readonly PHOTO_SLOAN_G: "PHOTO_SLOAN_G";
65
+ readonly PHOTO_SLOAN_R: "PHOTO_SLOAN_R";
66
+ readonly PHOTO_SLOAN_I: "PHOTO_SLOAN_I";
67
+ readonly PHOTO_SLOAN_Z: "PHOTO_SLOAN_Z";
68
+ readonly TRIPLE_BAND: "TRIPLE_BAND";
69
+ readonly QUAD_BAND: "QUAD_BAND";
70
+ readonly DARK: "DARK";
71
+ readonly OTHER: "OTHER";
63
72
  };
64
73
  export type FilterType = typeof FilterType[keyof typeof FilterType];
65
74
  /**
@@ -87,6 +96,10 @@ export interface FitsHeader {
87
96
  * @enum {string}
88
97
  */
89
98
  export declare const ImageSetType: {
99
+ readonly ASTRONOMICAL: "ASTRONOMICAL";
100
+ readonly EARTH_ORBITAL: "EARTH_ORBITAL";
101
+ readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
102
+ readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
90
103
  readonly ALL_SKY: "ALL_SKY";
91
104
  };
92
105
  export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
@@ -127,6 +140,16 @@ export declare const MetricType: {
127
140
  readonly EVENT: "EVENT";
128
141
  };
129
142
  export type MetricType = typeof MetricType[keyof typeof MetricType];
143
+ /**
144
+ *
145
+ * @export
146
+ * @enum {string}
147
+ */
148
+ export declare const ModelType: {
149
+ readonly STREAK_MODEL: "STREAK_MODEL";
150
+ readonly ALLSKY_MODEL: "ALLSKY_MODEL";
151
+ };
152
+ export type ModelType = typeof ModelType[keyof typeof ModelType];
130
153
  /**
131
154
  *
132
155
  * @export
@@ -137,6 +160,18 @@ export declare const MountType: {
137
160
  readonly EQUITORIAL: "EQUITORIAL";
138
161
  };
139
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];
140
175
  /**
141
176
  *
142
177
  * @export
@@ -191,6 +226,49 @@ export declare const OrbitType: {
191
226
  readonly UFO: "UFO";
192
227
  };
193
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
+ }
194
272
  /**
195
273
  *
196
274
  * @export
@@ -266,6 +344,129 @@ export declare const UploadPriority: {
266
344
  readonly HIGH: "HIGH";
267
345
  };
268
346
  export type UploadPriority = typeof UploadPriority[keyof typeof UploadPriority];
347
+ /**
348
+ *
349
+ * @export
350
+ * @interface V1AllSkyCameraConfig
351
+ */
352
+ export interface V1AllSkyCameraConfig {
353
+ /**
354
+ *
355
+ * @type {number}
356
+ * @memberof V1AllSkyCameraConfig
357
+ */
358
+ 'saveExposureFrequencySeconds': number;
359
+ /**
360
+ *
361
+ * @type {V1NodeConfigKeyMetadata}
362
+ * @memberof V1AllSkyCameraConfig
363
+ */
364
+ 'metadata'?: V1NodeConfigKeyMetadata;
365
+ }
366
+ /**
367
+ *
368
+ * @export
369
+ * @interface V1AllSkyPrediction
370
+ */
371
+ export interface V1AllSkyPrediction {
372
+ /**
373
+ *
374
+ * @type {string}
375
+ * @memberof V1AllSkyPrediction
376
+ */
377
+ 'id': string;
378
+ /**
379
+ *
380
+ * @type {string}
381
+ * @memberof V1AllSkyPrediction
382
+ */
383
+ 'imageId': string;
384
+ /**
385
+ *
386
+ * @type {V1AllSkyPredictionLabel}
387
+ * @memberof V1AllSkyPrediction
388
+ */
389
+ 'label'?: V1AllSkyPredictionLabel;
390
+ /**
391
+ *
392
+ * @type {number}
393
+ * @memberof V1AllSkyPrediction
394
+ */
395
+ 'confidence': number;
396
+ /**
397
+ *
398
+ * @type {string}
399
+ * @memberof V1AllSkyPrediction
400
+ */
401
+ 'createdAt': string;
402
+ /**
403
+ *
404
+ * @type {string}
405
+ * @memberof V1AllSkyPrediction
406
+ */
407
+ 'updatedAt': string;
408
+ }
409
+ /**
410
+ *
411
+ * @export
412
+ * @enum {string}
413
+ */
414
+ export declare const V1AllSkyPredictionLabel: {
415
+ readonly CLEAR: "CLEAR";
416
+ readonly LIGHT_CLOUDS: "LIGHT_CLOUDS";
417
+ readonly HEAVY_CLOUDS: "HEAVY_CLOUDS";
418
+ readonly PRECIPITATION: "PRECIPITATION";
419
+ readonly UNKNOWN: "UNKNOWN";
420
+ };
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];
269
470
  /**
270
471
  * Autofocus Instruction
271
472
  * @export
@@ -304,6 +505,37 @@ export interface V1AutoFocusInstructionCoordinatesInner {
304
505
  */
305
506
  'declination'?: number;
306
507
  }
508
+ /**
509
+ *
510
+ * @export
511
+ * @interface V1BlackoutBox
512
+ */
513
+ export interface V1BlackoutBox {
514
+ /**
515
+ *
516
+ * @type {number}
517
+ * @memberof V1BlackoutBox
518
+ */
519
+ 'raStartDegrees'?: number;
520
+ /**
521
+ *
522
+ * @type {number}
523
+ * @memberof V1BlackoutBox
524
+ */
525
+ 'raEndDegrees'?: number;
526
+ /**
527
+ *
528
+ * @type {number}
529
+ * @memberof V1BlackoutBox
530
+ */
531
+ 'decStartDegrees'?: number;
532
+ /**
533
+ *
534
+ * @type {number}
535
+ * @memberof V1BlackoutBox
536
+ */
537
+ 'decEndDegrees'?: number;
538
+ }
307
539
  /**
308
540
  * Camera
309
541
  * @export
@@ -395,6 +627,61 @@ export interface V1Camera {
395
627
  */
396
628
  'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
397
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
+ }
398
685
  /**
399
686
  *
400
687
  * @export
@@ -414,6 +701,19 @@ export interface V1ClientToken {
414
701
  */
415
702
  'cesiumToken': string;
416
703
  }
704
+ /**
705
+ *
706
+ * @export
707
+ * @interface V1CompleteNodeFlareRequest
708
+ */
709
+ export interface V1CompleteNodeFlareRequest {
710
+ /**
711
+ *
712
+ * @type {string}
713
+ * @memberof V1CompleteNodeFlareRequest
714
+ */
715
+ 'id': string;
716
+ }
417
717
  /**
418
718
  *
419
719
  * @export
@@ -427,6 +727,31 @@ export interface V1CompleteObservationRequest {
427
727
  */
428
728
  'imageSetId': string;
429
729
  }
730
+ /**
731
+ *
732
+ * @export
733
+ * @interface V1CreateAllSkyPredictionRequest
734
+ */
735
+ export interface V1CreateAllSkyPredictionRequest {
736
+ /**
737
+ *
738
+ * @type {string}
739
+ * @memberof V1CreateAllSkyPredictionRequest
740
+ */
741
+ 'imageId': string;
742
+ /**
743
+ *
744
+ * @type {V1AllSkyPredictionLabel}
745
+ * @memberof V1CreateAllSkyPredictionRequest
746
+ */
747
+ 'label': V1AllSkyPredictionLabel;
748
+ /**
749
+ *
750
+ * @type {number}
751
+ * @memberof V1CreateAllSkyPredictionRequest
752
+ */
753
+ 'confidence': number;
754
+ }
430
755
  /**
431
756
  *
432
757
  * @export
@@ -464,6 +789,19 @@ export interface V1CreateAutofocusResultRequest {
464
789
  */
465
790
  'hfrAfter': number;
466
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
+ }
467
805
  /**
468
806
  *
469
807
  * @export
@@ -495,9 +833,45 @@ export interface V1CreateImageSetImageRequest {
495
833
  * @memberof V1CreateImageSetImageRequest
496
834
  */
497
835
  'imageSetId': string;
836
+ /**
837
+ *
838
+ * @type {V1ImageFileType}
839
+ * @memberof V1CreateImageSetImageRequest
840
+ */
841
+ 'imageFileType'?: V1ImageFileType;
842
+ /**
843
+ *
844
+ * @type {number}
845
+ * @memberof V1CreateImageSetImageRequest
846
+ */
847
+ 'binning'?: number;
848
+ /**
849
+ *
850
+ * @type {number}
851
+ * @memberof V1CreateImageSetImageRequest
852
+ */
853
+ 'exposureLength'?: number;
854
+ /**
855
+ *
856
+ * @type {string}
857
+ * @memberof V1CreateImageSetImageRequest
858
+ */
859
+ 'imageSha'?: string;
860
+ /**
861
+ *
862
+ * @type {number}
863
+ * @memberof V1CreateImageSetImageRequest
864
+ */
865
+ 'imageSizeMb'?: number;
866
+ /**
867
+ *
868
+ * @type {string}
869
+ * @memberof V1CreateImageSetImageRequest
870
+ */
871
+ 'capturedAt'?: string;
498
872
  }
499
873
  /**
500
- *
874
+ * Response from image creation, with image ID and presigned S3 upload URL.
501
875
  * @export
502
876
  * @interface V1CreateImageSetImageResponse
503
877
  */
@@ -518,19 +892,63 @@ export interface V1CreateImageSetImageResponse {
518
892
  /**
519
893
  *
520
894
  * @export
521
- * @interface V1CreateImageSetRequest
895
+ * @interface V1CreateImageSetImageUploadUrlRequest
522
896
  */
523
- export interface V1CreateImageSetRequest {
897
+ export interface V1CreateImageSetImageUploadUrlRequest {
524
898
  /**
525
899
  *
526
900
  * @type {string}
527
- * @memberof V1CreateImageSetRequest
901
+ * @memberof V1CreateImageSetImageUploadUrlRequest
528
902
  */
529
- 'nodeId': string;
903
+ 'imageSetId': string;
530
904
  /**
531
905
  *
532
906
  * @type {string}
533
- * @memberof V1CreateImageSetRequest
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
+ }
936
+ /**
937
+ *
938
+ * @export
939
+ * @interface V1CreateImageSetRequest
940
+ */
941
+ export interface V1CreateImageSetRequest {
942
+ /**
943
+ *
944
+ * @type {string}
945
+ * @memberof V1CreateImageSetRequest
946
+ */
947
+ 'nodeId': string;
948
+ /**
949
+ *
950
+ * @type {string}
951
+ * @memberof V1CreateImageSetRequest
534
952
  */
535
953
  'observationId'?: string;
536
954
  /**
@@ -684,6 +1102,44 @@ export interface V1CreateNodeEventsRequest {
684
1102
  */
685
1103
  'events': Array<V1CreateNodeEvent>;
686
1104
  }
1105
+ /**
1106
+ *
1107
+ * @export
1108
+ * @interface V1CreateNodeFlareRequest
1109
+ */
1110
+ export interface V1CreateNodeFlareRequest {
1111
+ /**
1112
+ *
1113
+ * @type {string}
1114
+ * @memberof V1CreateNodeFlareRequest
1115
+ */
1116
+ 'fileSha': string;
1117
+ /**
1118
+ *
1119
+ * @type {number}
1120
+ * @memberof V1CreateNodeFlareRequest
1121
+ */
1122
+ 'fileSizeMb': number;
1123
+ }
1124
+ /**
1125
+ *
1126
+ * @export
1127
+ * @interface V1CreateNodeFlareResponse
1128
+ */
1129
+ export interface V1CreateNodeFlareResponse {
1130
+ /**
1131
+ *
1132
+ * @type {string}
1133
+ * @memberof V1CreateNodeFlareResponse
1134
+ */
1135
+ 'id': string;
1136
+ /**
1137
+ *
1138
+ * @type {string}
1139
+ * @memberof V1CreateNodeFlareResponse
1140
+ */
1141
+ 'uploadUrl': string;
1142
+ }
687
1143
  /**
688
1144
  * Create Node
689
1145
  * @export
@@ -777,244 +1233,558 @@ export interface V1CreateOpticalTubeRequest {
777
1233
  'type'?: OpticalTubeType;
778
1234
  }
779
1235
  /**
780
- * Diagnostic Instruction
1236
+ * Data needed to create a complete image set image and its extracted data.
781
1237
  * @export
782
- * @interface V1DiagnosticInstruction
1238
+ * @interface V1CreateProcessedImageSetImageRequest
783
1239
  */
784
- export interface V1DiagnosticInstruction {
1240
+ export interface V1CreateProcessedImageSetImageRequest {
785
1241
  /**
786
1242
  *
787
- * @type {V1NodeDiagnosticType}
788
- * @memberof V1DiagnosticInstruction
1243
+ * @type {string}
1244
+ * @memberof V1CreateProcessedImageSetImageRequest
789
1245
  */
790
- 'diagnosticType': V1NodeDiagnosticType;
791
- }
792
- /**
793
- *
794
- * @export
795
- * @interface V1DurationMeasured
796
- */
797
- export interface V1DurationMeasured {
1246
+ 'imageSetId': string;
798
1247
  /**
799
1248
  *
800
- * @type {string}
801
- * @memberof V1DurationMeasured
1249
+ * @type {number}
1250
+ * @memberof V1CreateProcessedImageSetImageRequest
802
1251
  */
803
- 'name': string;
1252
+ 'binning': number;
804
1253
  /**
805
1254
  *
806
- * @type {string}
807
- * @memberof V1DurationMeasured
1255
+ * @type {number}
1256
+ * @memberof V1CreateProcessedImageSetImageRequest
808
1257
  */
809
- 'startedAt': string;
1258
+ 'exposureLength': number;
810
1259
  /**
811
1260
  *
812
1261
  * @type {string}
813
- * @memberof V1DurationMeasured
1262
+ * @memberof V1CreateProcessedImageSetImageRequest
814
1263
  */
815
- 'endedAt': string;
816
- }
817
- /**
818
- * Elevation Mask Point
819
- * @export
820
- * @interface V1ElevationMaskPoint
821
- */
822
- export interface V1ElevationMaskPoint {
1264
+ 'imageSha'?: string;
823
1265
  /**
824
1266
  *
825
1267
  * @type {number}
826
- * @memberof V1ElevationMaskPoint
1268
+ * @memberof V1CreateProcessedImageSetImageRequest
827
1269
  */
828
- 'azimuthDegrees': number;
1270
+ 'imageSizeMb'?: number;
829
1271
  /**
830
1272
  *
831
- * @type {number}
832
- * @memberof V1ElevationMaskPoint
1273
+ * @type {string}
1274
+ * @memberof V1CreateProcessedImageSetImageRequest
833
1275
  */
834
- 'minAltitudeDegrees': number;
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;
835
1289
  /**
836
1290
  *
837
1291
  * @type {number}
838
- * @memberof V1ElevationMaskPoint
1292
+ * @memberof V1CreateProcessedImageSetImageRequest
839
1293
  */
840
- 'maxAltitudeDegrees': number;
841
- }
842
- /**
843
- *
844
- * @export
845
- * @enum {string}
846
- */
847
- export declare const V1FileType: {
848
- readonly ZIP: "ZIP";
849
- };
850
- export type V1FileType = typeof V1FileType[keyof typeof V1FileType];
851
- /**
852
- * Optical Tube
853
- * @export
854
- * @interface V1Focuser
855
- */
856
- export interface V1Focuser {
1294
+ 'fwhmAverage'?: number;
857
1295
  /**
858
1296
  *
859
- * @type {string}
860
- * @memberof V1Focuser
1297
+ * @type {number}
1298
+ * @memberof V1CreateProcessedImageSetImageRequest
861
1299
  */
862
- 'id': string;
1300
+ 'fwhmStdDev'?: number;
863
1301
  /**
864
1302
  *
865
- * @type {string}
866
- * @memberof V1Focuser
1303
+ * @type {number}
1304
+ * @memberof V1CreateProcessedImageSetImageRequest
867
1305
  */
868
- 'model': string;
1306
+ 'raDegrees'?: number;
869
1307
  /**
870
1308
  *
871
1309
  * @type {number}
872
- * @memberof V1Focuser
1310
+ * @memberof V1CreateProcessedImageSetImageRequest
873
1311
  */
874
- 'travelDistanceMm': number;
875
- }
876
- /**
877
- * Gain Curve
878
- * @export
879
- * @interface V1GainCurve
880
- */
881
- export interface V1GainCurve {
1312
+ 'decDegrees'?: number;
882
1313
  /**
883
1314
  *
884
1315
  * @type {number}
885
- * @memberof V1GainCurve
1316
+ * @memberof V1CreateProcessedImageSetImageRequest
886
1317
  */
887
- 'gainMode': number;
1318
+ 'raOffset'?: number;
888
1319
  /**
889
1320
  *
890
- * @type {Array<V1GainCurvePoint>}
891
- * @memberof V1GainCurve
1321
+ * @type {number}
1322
+ * @memberof V1CreateProcessedImageSetImageRequest
892
1323
  */
893
- 'gainCurve': Array<V1GainCurvePoint>;
1324
+ 'decOffset'?: number;
894
1325
  /**
895
1326
  *
896
- * @type {Array<V1ReadNoisePoint>}
897
- * @memberof V1GainCurve
1327
+ * @type {number}
1328
+ * @memberof V1CreateProcessedImageSetImageRequest
898
1329
  */
899
- 'readoutNoiseCurve'?: Array<V1ReadNoisePoint>;
900
- }
901
- /**
902
- *
903
- * @export
904
- * @interface V1GainCurvePoint
905
- */
906
- export interface V1GainCurvePoint {
1330
+ 'totalOffset'?: number;
907
1331
  /**
908
1332
  *
909
1333
  * @type {number}
910
- * @memberof V1GainCurvePoint
1334
+ * @memberof V1CreateProcessedImageSetImageRequest
911
1335
  */
912
- 'gain': number;
1336
+ 'totalOffsetStdDev'?: number;
913
1337
  /**
914
1338
  *
915
1339
  * @type {number}
916
- * @memberof V1GainCurvePoint
1340
+ * @memberof V1CreateProcessedImageSetImageRequest
917
1341
  */
918
- 'eADU': number;
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>;
919
1361
  }
920
1362
  /**
921
1363
  *
922
1364
  * @export
923
- * @interface V1GetInstructionRequest
1365
+ * @interface V1CreateTimeWindowedAssetRequest
924
1366
  */
925
- export interface V1GetInstructionRequest {
1367
+ export interface V1CreateTimeWindowedAssetRequest {
926
1368
  /**
927
1369
  *
928
1370
  * @type {string}
929
- * @memberof V1GetInstructionRequest
1371
+ * @memberof V1CreateTimeWindowedAssetRequest
930
1372
  */
931
1373
  'nodeId': string;
932
1374
  /**
933
1375
  *
934
- * @type {Array<V1NodeDiagnosticType>}
935
- * @memberof V1GetInstructionRequest
1376
+ * @type {V1TimeWindowedAssetType}
1377
+ * @memberof V1CreateTimeWindowedAssetRequest
936
1378
  */
937
- 'supportedDiagnostics': Array<V1NodeDiagnosticType>;
1379
+ 'assetType': V1TimeWindowedAssetType;
938
1380
  /**
939
1381
  *
940
- * @type {number}
941
- * @memberof V1GetInstructionRequest
1382
+ * @type {string}
1383
+ * @memberof V1CreateTimeWindowedAssetRequest
942
1384
  */
943
- 'altitude'?: number;
1385
+ 'description': string;
944
1386
  /**
945
1387
  *
946
- * @type {number}
947
- * @memberof V1GetInstructionRequest
1388
+ * @type {string}
1389
+ * @memberof V1CreateTimeWindowedAssetRequest
948
1390
  */
949
- 'azimuth'?: number;
1391
+ 'assetStartTime': string;
950
1392
  /**
951
1393
  *
952
- * @type {V1GetInstructionRequestUploadHealth}
953
- * @memberof V1GetInstructionRequest
1394
+ * @type {string}
1395
+ * @memberof V1CreateTimeWindowedAssetRequest
954
1396
  */
955
- 'uploadHealth'?: V1GetInstructionRequestUploadHealth;
1397
+ 'assetEndTime': string;
1398
+ /**
1399
+ *
1400
+ * @type {string}
1401
+ * @memberof V1CreateTimeWindowedAssetRequest
1402
+ */
1403
+ 'fileSha': string;
1404
+ /**
1405
+ *
1406
+ * @type {number}
1407
+ * @memberof V1CreateTimeWindowedAssetRequest
1408
+ */
1409
+ 'fileSizeMb': number;
956
1410
  }
957
1411
  /**
958
1412
  *
959
1413
  * @export
960
- * @interface V1GetInstructionRequestUploadHealth
1414
+ * @interface V1CreateTimeWindowedAssetResponse
961
1415
  */
962
- export interface V1GetInstructionRequestUploadHealth {
963
- /**
964
- *
965
- * @type {number}
966
- * @memberof V1GetInstructionRequestUploadHealth
967
- */
968
- 'queueSize'?: number;
1416
+ export interface V1CreateTimeWindowedAssetResponse {
969
1417
  /**
970
1418
  *
971
1419
  * @type {string}
972
- * @memberof V1GetInstructionRequestUploadHealth
1420
+ * @memberof V1CreateTimeWindowedAssetResponse
973
1421
  */
974
- 'lastUploadTime'?: string;
1422
+ 'id': string;
975
1423
  /**
976
1424
  *
977
- * @type {number}
978
- * @memberof V1GetInstructionRequestUploadHealth
1425
+ * @type {string}
1426
+ * @memberof V1CreateTimeWindowedAssetResponse
979
1427
  */
980
- 'averageUploadDurationSeconds'?: number;
1428
+ 'uploadUrl': string;
981
1429
  }
982
1430
  /**
983
- *
1431
+ * Diagnostic Instruction
984
1432
  * @export
985
- * @interface V1GetNodeCommandsResponse
1433
+ * @interface V1DiagnosticInstruction
986
1434
  */
987
- export interface V1GetNodeCommandsResponse {
1435
+ export interface V1DiagnosticInstruction {
988
1436
  /**
989
1437
  *
990
- * @type {Array<V1NodeCommand>}
991
- * @memberof V1GetNodeCommandsResponse
1438
+ * @type {V1NodeDiagnosticType}
1439
+ * @memberof V1DiagnosticInstruction
992
1440
  */
993
- 'nodeCommands': Array<V1NodeCommand>;
1441
+ 'diagnosticType': V1NodeDiagnosticType;
994
1442
  }
995
1443
  /**
996
1444
  *
997
1445
  * @export
998
- * @interface V1GetNodes
1446
+ * @interface V1DisableDebugServices
999
1447
  */
1000
- export interface V1GetNodes {
1448
+ export interface V1DisableDebugServices {
1001
1449
  /**
1002
1450
  *
1003
- * @type {Array<V1NodeWithLocation>}
1004
- * @memberof V1GetNodes
1451
+ * @type {string}
1452
+ * @memberof V1DisableDebugServices
1005
1453
  */
1006
- 'nodes': Array<V1NodeWithLocation>;
1454
+ 'nodeId': string;
1455
+ /**
1456
+ *
1457
+ * @type {string}
1458
+ * @memberof V1DisableDebugServices
1459
+ */
1460
+ 'executableAt'?: string;
1007
1461
  }
1008
1462
  /**
1009
1463
  *
1010
1464
  * @export
1011
- * @interface V1GetOrCreateCameraRequest
1465
+ * @interface V1DurationMeasured
1012
1466
  */
1013
- export interface V1GetOrCreateCameraRequest {
1467
+ export interface V1DurationMeasured {
1014
1468
  /**
1015
1469
  *
1016
1470
  * @type {string}
1017
- * @memberof V1GetOrCreateCameraRequest
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;
1486
+ }
1487
+ /**
1488
+ * Elevation Mask Point
1489
+ * @export
1490
+ * @interface V1ElevationMaskPoint
1491
+ */
1492
+ export interface V1ElevationMaskPoint {
1493
+ /**
1494
+ *
1495
+ * @type {number}
1496
+ * @memberof V1ElevationMaskPoint
1497
+ */
1498
+ 'azimuthDegrees': number;
1499
+ /**
1500
+ *
1501
+ * @type {number}
1502
+ * @memberof V1ElevationMaskPoint
1503
+ */
1504
+ 'minAltitudeDegrees': number;
1505
+ /**
1506
+ *
1507
+ * @type {number}
1508
+ * @memberof V1ElevationMaskPoint
1509
+ */
1510
+ 'maxAltitudeDegrees': number;
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
+ }
1581
+ /**
1582
+ *
1583
+ * @export
1584
+ * @enum {string}
1585
+ */
1586
+ export declare const V1FileType: {
1587
+ readonly ZIP: "ZIP";
1588
+ };
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
+ }
1621
+ /**
1622
+ * Focuser
1623
+ * @export
1624
+ * @interface V1Focuser
1625
+ */
1626
+ export interface V1Focuser {
1627
+ /**
1628
+ *
1629
+ * @type {string}
1630
+ * @memberof V1Focuser
1631
+ */
1632
+ 'id': string;
1633
+ /**
1634
+ *
1635
+ * @type {string}
1636
+ * @memberof V1Focuser
1637
+ */
1638
+ 'model': string;
1639
+ /**
1640
+ *
1641
+ * @type {number}
1642
+ * @memberof V1Focuser
1643
+ */
1644
+ 'travelDistanceMm': number;
1645
+ }
1646
+ /**
1647
+ * Gain Curve
1648
+ * @export
1649
+ * @interface V1GainCurve
1650
+ */
1651
+ export interface V1GainCurve {
1652
+ /**
1653
+ *
1654
+ * @type {number}
1655
+ * @memberof V1GainCurve
1656
+ */
1657
+ 'gainMode': number;
1658
+ /**
1659
+ *
1660
+ * @type {Array<V1GainCurvePoint>}
1661
+ * @memberof V1GainCurve
1662
+ */
1663
+ 'gainCurve': Array<V1GainCurvePoint>;
1664
+ /**
1665
+ *
1666
+ * @type {Array<V1ReadNoisePoint>}
1667
+ * @memberof V1GainCurve
1668
+ */
1669
+ 'readoutNoiseCurve'?: Array<V1ReadNoisePoint>;
1670
+ }
1671
+ /**
1672
+ *
1673
+ * @export
1674
+ * @interface V1GainCurvePoint
1675
+ */
1676
+ export interface V1GainCurvePoint {
1677
+ /**
1678
+ *
1679
+ * @type {number}
1680
+ * @memberof V1GainCurvePoint
1681
+ */
1682
+ 'gain': number;
1683
+ /**
1684
+ *
1685
+ * @type {number}
1686
+ * @memberof V1GainCurvePoint
1687
+ */
1688
+ 'eADU': number;
1689
+ }
1690
+ /**
1691
+ *
1692
+ * @export
1693
+ * @interface V1GetInstructionRequest
1694
+ */
1695
+ export interface V1GetInstructionRequest {
1696
+ /**
1697
+ *
1698
+ * @type {string}
1699
+ * @memberof V1GetInstructionRequest
1700
+ */
1701
+ 'nodeId': string;
1702
+ /**
1703
+ *
1704
+ * @type {Array<V1NodeDiagnosticType>}
1705
+ * @memberof V1GetInstructionRequest
1706
+ */
1707
+ 'supportedDiagnostics': Array<V1NodeDiagnosticType>;
1708
+ /**
1709
+ *
1710
+ * @type {number}
1711
+ * @memberof V1GetInstructionRequest
1712
+ */
1713
+ 'altitude'?: number;
1714
+ /**
1715
+ *
1716
+ * @type {number}
1717
+ * @memberof V1GetInstructionRequest
1718
+ */
1719
+ 'azimuth'?: number;
1720
+ /**
1721
+ *
1722
+ * @type {V1GetInstructionRequestUploadHealth}
1723
+ * @memberof V1GetInstructionRequest
1724
+ */
1725
+ 'uploadHealth'?: V1GetInstructionRequestUploadHealth;
1726
+ }
1727
+ /**
1728
+ *
1729
+ * @export
1730
+ * @interface V1GetInstructionRequestUploadHealth
1731
+ */
1732
+ export interface V1GetInstructionRequestUploadHealth {
1733
+ /**
1734
+ *
1735
+ * @type {number}
1736
+ * @memberof V1GetInstructionRequestUploadHealth
1737
+ */
1738
+ 'queueSize'?: number;
1739
+ /**
1740
+ *
1741
+ * @type {string}
1742
+ * @memberof V1GetInstructionRequestUploadHealth
1743
+ */
1744
+ 'lastUploadTime'?: string;
1745
+ /**
1746
+ *
1747
+ * @type {number}
1748
+ * @memberof V1GetInstructionRequestUploadHealth
1749
+ */
1750
+ 'averageUploadDurationSeconds'?: number;
1751
+ }
1752
+ /**
1753
+ *
1754
+ * @export
1755
+ * @interface V1GetNodeCommandsResponse
1756
+ */
1757
+ export interface V1GetNodeCommandsResponse {
1758
+ /**
1759
+ *
1760
+ * @type {Array<V1NodeCommand>}
1761
+ * @memberof V1GetNodeCommandsResponse
1762
+ */
1763
+ 'nodeCommands': Array<V1NodeCommand>;
1764
+ }
1765
+ /**
1766
+ *
1767
+ * @export
1768
+ * @interface V1GetNodes
1769
+ */
1770
+ export interface V1GetNodes {
1771
+ /**
1772
+ *
1773
+ * @type {Array<V1NodeWithLocation>}
1774
+ * @memberof V1GetNodes
1775
+ */
1776
+ 'nodes': Array<V1NodeWithLocation>;
1777
+ }
1778
+ /**
1779
+ *
1780
+ * @export
1781
+ * @interface V1GetOrCreateCameraRequest
1782
+ */
1783
+ export interface V1GetOrCreateCameraRequest {
1784
+ /**
1785
+ *
1786
+ * @type {string}
1787
+ * @memberof V1GetOrCreateCameraRequest
1018
1788
  */
1019
1789
  'model'?: string;
1020
1790
  /**
@@ -1174,51 +1944,112 @@ export interface V1GetOrCreateMountRequest {
1174
1944
  * @type {MountType}
1175
1945
  * @memberof V1GetOrCreateMountRequest
1176
1946
  */
1177
- 'type'?: MountType;
1178
- }
1179
- /**
1180
- *
1181
- * @export
1182
- * @interface V1GetOrCreateOpticalTubeRequest
1183
- */
1184
- export interface V1GetOrCreateOpticalTubeRequest {
1947
+ 'type'?: MountType;
1948
+ }
1949
+ /**
1950
+ *
1951
+ * @export
1952
+ * @interface V1GetOrCreateOpticalTubeRequest
1953
+ */
1954
+ export interface V1GetOrCreateOpticalTubeRequest {
1955
+ /**
1956
+ *
1957
+ * @type {string}
1958
+ * @memberof V1GetOrCreateOpticalTubeRequest
1959
+ */
1960
+ 'model'?: string;
1961
+ /**
1962
+ *
1963
+ * @type {number}
1964
+ * @memberof V1GetOrCreateOpticalTubeRequest
1965
+ */
1966
+ 'focalLengthMm'?: number;
1967
+ /**
1968
+ *
1969
+ * @type {number}
1970
+ * @memberof V1GetOrCreateOpticalTubeRequest
1971
+ */
1972
+ 'apertureMm'?: number;
1973
+ /**
1974
+ *
1975
+ * @type {OpticalTubeType}
1976
+ * @memberof V1GetOrCreateOpticalTubeRequest
1977
+ */
1978
+ 'type'?: OpticalTubeType;
1979
+ }
1980
+ /**
1981
+ *
1982
+ * @export
1983
+ * @interface V1GetPlateSolveCatalogDiffRequest
1984
+ */
1985
+ export interface V1GetPlateSolveCatalogDiffRequest {
1986
+ /**
1987
+ *
1988
+ * @type {Array<V1PlateSolveCatalogFile>}
1989
+ * @memberof V1GetPlateSolveCatalogDiffRequest
1990
+ */
1991
+ 'existingFiles': Array<V1PlateSolveCatalogFile>;
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;
1185
2023
  /**
1186
2024
  *
1187
2025
  * @type {string}
1188
- * @memberof V1GetOrCreateOpticalTubeRequest
2026
+ * @memberof V1GetSuntimesResponse
1189
2027
  */
1190
- 'model'?: string;
2028
+ 'civilSet'?: string;
1191
2029
  /**
1192
2030
  *
1193
- * @type {number}
1194
- * @memberof V1GetOrCreateOpticalTubeRequest
2031
+ * @type {string}
2032
+ * @memberof V1GetSuntimesResponse
1195
2033
  */
1196
- 'focalLengthMm'?: number;
2034
+ 'nauticalRise'?: string;
1197
2035
  /**
1198
2036
  *
1199
- * @type {number}
1200
- * @memberof V1GetOrCreateOpticalTubeRequest
2037
+ * @type {string}
2038
+ * @memberof V1GetSuntimesResponse
1201
2039
  */
1202
- 'apertureMm'?: number;
2040
+ 'nauticalSet'?: string;
1203
2041
  /**
1204
2042
  *
1205
- * @type {OpticalTubeType}
1206
- * @memberof V1GetOrCreateOpticalTubeRequest
2043
+ * @type {string}
2044
+ * @memberof V1GetSuntimesResponse
1207
2045
  */
1208
- 'type'?: OpticalTubeType;
1209
- }
1210
- /**
1211
- *
1212
- * @export
1213
- * @interface V1GetPlateSolveCatalogDiffRequest
1214
- */
1215
- export interface V1GetPlateSolveCatalogDiffRequest {
2046
+ 'astronomicalRise'?: string;
1216
2047
  /**
1217
2048
  *
1218
- * @type {Array<V1PlateSolveCatalogFile>}
1219
- * @memberof V1GetPlateSolveCatalogDiffRequest
2049
+ * @type {string}
2050
+ * @memberof V1GetSuntimesResponse
1220
2051
  */
1221
- 'existingFiles': Array<V1PlateSolveCatalogFile>;
2052
+ 'astronomicalSet'?: string;
1222
2053
  }
1223
2054
  /**
1224
2055
  *
@@ -1308,16 +2139,47 @@ export interface V1GroundStationParticipant {
1308
2139
  /**
1309
2140
  *
1310
2141
  * @export
1311
- * @interface V1Halt
2142
+ * @enum {string}
1312
2143
  */
1313
- export interface V1Halt {
1314
- /**
1315
- *
1316
- * @type {boolean}
1317
- * @memberof V1Halt
1318
- */
1319
- 'placeholder'?: boolean;
1320
- }
2144
+ export declare const V1ImageFileType: {
2145
+ readonly FITS: "FITS";
2146
+ readonly JPG: "JPG";
2147
+ };
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];
1321
2183
  /**
1322
2184
  * An image set represents a contiguous set of observations of the same target captured by the same node.
1323
2185
  * @export
@@ -1350,209 +2212,415 @@ export interface V1ImageSet {
1350
2212
  'dec'?: number;
1351
2213
  /**
1352
2214
  *
1353
- * @type {string}
1354
- * @memberof V1ImageSet
2215
+ * @type {string}
2216
+ * @memberof V1ImageSet
2217
+ */
2218
+ 'nodeId': string;
2219
+ /**
2220
+ *
2221
+ * @type {string}
2222
+ * @memberof V1ImageSet
2223
+ */
2224
+ 'observationId'?: string;
2225
+ /**
2226
+ *
2227
+ * @type {TrackingType}
2228
+ * @memberof V1ImageSet
2229
+ */
2230
+ 'trackingType': TrackingType;
2231
+ /**
2232
+ *
2233
+ * @type {FilterType}
2234
+ * @memberof V1ImageSet
2235
+ */
2236
+ 'filterType'?: FilterType;
2237
+ /**
2238
+ *
2239
+ * @type {string}
2240
+ * @memberof V1ImageSet
2241
+ */
2242
+ 'createdAt': string;
2243
+ /**
2244
+ *
2245
+ * @type {string}
2246
+ * @memberof V1ImageSet
2247
+ */
2248
+ 'updatedAt'?: string;
2249
+ /**
2250
+ *
2251
+ * @type {string}
2252
+ * @memberof V1ImageSet
2253
+ */
2254
+ 'ourskyPluginVersion'?: string;
2255
+ }
2256
+ /**
2257
+ * Image Set Image
2258
+ * @export
2259
+ * @interface V1ImageSetImage
2260
+ */
2261
+ export interface V1ImageSetImage {
2262
+ /**
2263
+ *
2264
+ * @type {string}
2265
+ * @memberof V1ImageSetImage
2266
+ */
2267
+ 'id': string;
2268
+ /**
2269
+ *
2270
+ * @type {string}
2271
+ * @memberof V1ImageSetImage
2272
+ */
2273
+ 'thumbnailUrl'?: string;
2274
+ /**
2275
+ *
2276
+ * @type {string}
2277
+ * @memberof V1ImageSetImage
2278
+ */
2279
+ 'imageUrl': string;
2280
+ /**
2281
+ *
2282
+ * @type {string}
2283
+ * @memberof V1ImageSetImage
2284
+ */
2285
+ 'fullJpgUrl'?: string;
2286
+ /**
2287
+ *
2288
+ * @type {string}
2289
+ * @memberof V1ImageSetImage
2290
+ */
2291
+ 'nodeId': string;
2292
+ /**
2293
+ *
2294
+ * @type {string}
2295
+ * @memberof V1ImageSetImage
2296
+ */
2297
+ 'targetId'?: string;
2298
+ /**
2299
+ *
2300
+ * @type {number}
2301
+ * @memberof V1ImageSetImage
2302
+ */
2303
+ 'ra'?: number;
2304
+ /**
2305
+ *
2306
+ * @type {number}
2307
+ * @memberof V1ImageSetImage
2308
+ */
2309
+ 'dec'?: number;
2310
+ /**
2311
+ *
2312
+ * @type {string}
2313
+ * @memberof V1ImageSetImage
2314
+ */
2315
+ 'imageSetId': string;
2316
+ /**
2317
+ *
2318
+ * @type {boolean}
2319
+ * @memberof V1ImageSetImage
2320
+ */
2321
+ 'darkCalibrated': boolean;
2322
+ /**
2323
+ *
2324
+ * @type {boolean}
2325
+ * @memberof V1ImageSetImage
2326
+ */
2327
+ 'flatCalibrated': boolean;
2328
+ /**
2329
+ *
2330
+ * @type {boolean}
2331
+ * @memberof V1ImageSetImage
2332
+ */
2333
+ 'biasCalibrated': boolean;
2334
+ /**
2335
+ *
2336
+ * @type {number}
2337
+ * @memberof V1ImageSetImage
2338
+ */
2339
+ 'fwhmAverage'?: number;
2340
+ /**
2341
+ *
2342
+ * @type {number}
2343
+ * @memberof V1ImageSetImage
2344
+ */
2345
+ 'fwhmStdDev'?: number;
2346
+ /**
2347
+ *
2348
+ * @type {number}
2349
+ * @memberof V1ImageSetImage
2350
+ */
2351
+ 'fwhmAngle'?: number;
2352
+ /**
2353
+ *
2354
+ * @type {number}
2355
+ * @memberof V1ImageSetImage
2356
+ */
2357
+ 'raOffset'?: number;
2358
+ /**
2359
+ *
2360
+ * @type {number}
2361
+ * @memberof V1ImageSetImage
2362
+ */
2363
+ 'decOffset'?: number;
2364
+ /**
2365
+ *
2366
+ * @type {number}
2367
+ * @memberof V1ImageSetImage
2368
+ */
2369
+ 'totalOffset'?: number;
2370
+ /**
2371
+ *
2372
+ * @type {number}
2373
+ * @memberof V1ImageSetImage
2374
+ */
2375
+ 'totalOffsetStdDev'?: number;
2376
+ /**
2377
+ *
2378
+ * @type {number}
2379
+ * @memberof V1ImageSetImage
2380
+ */
2381
+ 'totalOffsetRMS'?: number;
2382
+ /**
2383
+ *
2384
+ * @type {string}
2385
+ * @memberof V1ImageSetImage
2386
+ */
2387
+ 'capturedAt': string;
2388
+ /**
2389
+ *
2390
+ * @type {string}
2391
+ * @memberof V1ImageSetImage
2392
+ */
2393
+ 'createdAt': string;
2394
+ /**
2395
+ *
2396
+ * @type {number}
2397
+ * @memberof V1ImageSetImage
2398
+ */
2399
+ 'binning'?: number;
2400
+ /**
2401
+ *
2402
+ * @type {number}
2403
+ * @memberof V1ImageSetImage
2404
+ */
2405
+ 'exposureLength': number;
2406
+ /**
2407
+ *
2408
+ * @type {Array<FitsHeader>}
2409
+ * @memberof V1ImageSetImage
2410
+ */
2411
+ 'fitsHeaders': Array<FitsHeader>;
2412
+ /**
2413
+ *
2414
+ * @type {V1PredictedStreakLocation}
2415
+ * @memberof V1ImageSetImage
2416
+ */
2417
+ 'predictedStreakLocation'?: V1PredictedStreakLocation;
2418
+ }
2419
+ /**
2420
+ * Data related to the extraction of a dot from an image.
2421
+ * @export
2422
+ * @interface V1ImageSetImageDot
2423
+ */
2424
+ export interface V1ImageSetImageDot {
2425
+ /**
2426
+ *
2427
+ * @type {number}
2428
+ * @memberof V1ImageSetImageDot
1355
2429
  */
1356
- 'nodeId': string;
2430
+ 'centroidRa': number;
1357
2431
  /**
1358
2432
  *
1359
- * @type {string}
1360
- * @memberof V1ImageSet
2433
+ * @type {number}
2434
+ * @memberof V1ImageSetImageDot
1361
2435
  */
1362
- 'observationId'?: string;
2436
+ 'centroidDec': number;
1363
2437
  /**
1364
2438
  *
1365
- * @type {TrackingType}
1366
- * @memberof V1ImageSet
2439
+ * @type {number}
2440
+ * @memberof V1ImageSetImageDot
1367
2441
  */
1368
- 'trackingType': TrackingType;
2442
+ 'calibratedCentroidRa': number;
1369
2443
  /**
1370
2444
  *
1371
- * @type {FilterType}
1372
- * @memberof V1ImageSet
2445
+ * @type {number}
2446
+ * @memberof V1ImageSetImageDot
1373
2447
  */
1374
- 'filterType'?: FilterType;
2448
+ 'calibratedCentroidDec': number;
1375
2449
  /**
1376
2450
  *
1377
2451
  * @type {string}
1378
- * @memberof V1ImageSet
2452
+ * @memberof V1ImageSetImageDot
1379
2453
  */
1380
- 'createdAt': string;
2454
+ 'centroidTime': string;
1381
2455
  /**
1382
2456
  *
1383
- * @type {string}
1384
- * @memberof V1ImageSet
2457
+ * @type {boolean}
2458
+ * @memberof V1ImageSetImageDot
1385
2459
  */
1386
- 'updatedAt'?: string;
2460
+ 'centroidTimeIsGps': boolean;
1387
2461
  /**
1388
2462
  *
1389
- * @type {string}
1390
- * @memberof V1ImageSet
2463
+ * @type {number}
2464
+ * @memberof V1ImageSetImageDot
1391
2465
  */
1392
- 'ourskyPluginVersion'?: string;
1393
- }
1394
- /**
1395
- * Image Set Image
1396
- * @export
1397
- * @interface V1ImageSetImage
1398
- */
1399
- export interface V1ImageSetImage {
2466
+ 'centroidX': number;
1400
2467
  /**
1401
2468
  *
1402
- * @type {string}
1403
- * @memberof V1ImageSetImage
2469
+ * @type {number}
2470
+ * @memberof V1ImageSetImageDot
1404
2471
  */
1405
- 'id': string;
2472
+ 'centroidY': number;
1406
2473
  /**
1407
2474
  *
1408
- * @type {string}
1409
- * @memberof V1ImageSetImage
2475
+ * @type {number}
2476
+ * @memberof V1ImageSetImageDot
1410
2477
  */
1411
- 'thumbnailUrl'?: string;
2478
+ 'snr': number;
1412
2479
  /**
1413
2480
  *
1414
- * @type {string}
1415
- * @memberof V1ImageSetImage
2481
+ * @type {number}
2482
+ * @memberof V1ImageSetImageDot
1416
2483
  */
1417
- 'imageUrl': string;
2484
+ 'magnitude': number;
1418
2485
  /**
1419
2486
  *
1420
- * @type {string}
1421
- * @memberof V1ImageSetImage
2487
+ * @type {number}
2488
+ * @memberof V1ImageSetImageDot
1422
2489
  */
1423
- 'fullJpgUrl'?: string;
2490
+ 'magnitudeError': number;
1424
2491
  /**
1425
2492
  *
1426
- * @type {string}
1427
- * @memberof V1ImageSetImage
2493
+ * @type {boolean}
2494
+ * @memberof V1ImageSetImageDot
1428
2495
  */
1429
- 'nodeId': string;
2496
+ 'magnitudeIsAbsolute': boolean;
1430
2497
  /**
1431
2498
  *
1432
- * @type {string}
1433
- * @memberof V1ImageSetImage
2499
+ * @type {boolean}
2500
+ * @memberof V1ImageSetImageDot
1434
2501
  */
1435
- 'targetId'?: string;
2502
+ 'magntiudeIsAccurate': boolean;
2503
+ }
2504
+ /**
2505
+ * Data related to the extraction of a streak from an image.
2506
+ * @export
2507
+ * @interface V1ImageSetImageStreak
2508
+ */
2509
+ export interface V1ImageSetImageStreak {
1436
2510
  /**
1437
2511
  *
1438
2512
  * @type {number}
1439
- * @memberof V1ImageSetImage
2513
+ * @memberof V1ImageSetImageStreak
1440
2514
  */
1441
- 'ra'?: number;
2515
+ 'centerRa': number;
1442
2516
  /**
1443
2517
  *
1444
2518
  * @type {number}
1445
- * @memberof V1ImageSetImage
2519
+ * @memberof V1ImageSetImageStreak
1446
2520
  */
1447
- 'dec'?: number;
2521
+ 'centerDec': number;
1448
2522
  /**
1449
2523
  *
1450
- * @type {string}
1451
- * @memberof V1ImageSetImage
2524
+ * @type {number}
2525
+ * @memberof V1ImageSetImageStreak
1452
2526
  */
1453
- 'imageSetId': string;
2527
+ 'calibratedCenterRa': number;
1454
2528
  /**
1455
2529
  *
1456
- * @type {boolean}
1457
- * @memberof V1ImageSetImage
2530
+ * @type {number}
2531
+ * @memberof V1ImageSetImageStreak
1458
2532
  */
1459
- 'darkCalibrated': boolean;
2533
+ 'calibratedCenterDec': number;
1460
2534
  /**
1461
2535
  *
1462
- * @type {boolean}
1463
- * @memberof V1ImageSetImage
2536
+ * @type {string}
2537
+ * @memberof V1ImageSetImageStreak
1464
2538
  */
1465
- 'flatCalibrated': boolean;
2539
+ 'centerTime': string;
1466
2540
  /**
1467
2541
  *
1468
2542
  * @type {boolean}
1469
- * @memberof V1ImageSetImage
2543
+ * @memberof V1ImageSetImageStreak
1470
2544
  */
1471
- 'biasCalibrated': boolean;
2545
+ 'centerTimeIsGps': boolean;
1472
2546
  /**
1473
2547
  *
1474
2548
  * @type {number}
1475
- * @memberof V1ImageSetImage
2549
+ * @memberof V1ImageSetImageStreak
1476
2550
  */
1477
- 'fwhmAverage'?: number;
2551
+ 'startX': number;
1478
2552
  /**
1479
2553
  *
1480
2554
  * @type {number}
1481
- * @memberof V1ImageSetImage
2555
+ * @memberof V1ImageSetImageStreak
1482
2556
  */
1483
- 'fwhmStdDev'?: number;
2557
+ 'startY': number;
1484
2558
  /**
1485
2559
  *
1486
2560
  * @type {number}
1487
- * @memberof V1ImageSetImage
2561
+ * @memberof V1ImageSetImageStreak
1488
2562
  */
1489
- 'fwhmAngle'?: number;
2563
+ 'endX': number;
1490
2564
  /**
1491
2565
  *
1492
2566
  * @type {number}
1493
- * @memberof V1ImageSetImage
2567
+ * @memberof V1ImageSetImageStreak
1494
2568
  */
1495
- 'raOffset'?: number;
2569
+ 'endY': number;
1496
2570
  /**
1497
2571
  *
1498
2572
  * @type {number}
1499
- * @memberof V1ImageSetImage
2573
+ * @memberof V1ImageSetImageStreak
1500
2574
  */
1501
- 'decOffset'?: number;
2575
+ 'startRa': number;
1502
2576
  /**
1503
2577
  *
1504
2578
  * @type {number}
1505
- * @memberof V1ImageSetImage
2579
+ * @memberof V1ImageSetImageStreak
1506
2580
  */
1507
- 'totalOffset'?: number;
2581
+ 'startDec': number;
1508
2582
  /**
1509
2583
  *
1510
2584
  * @type {number}
1511
- * @memberof V1ImageSetImage
2585
+ * @memberof V1ImageSetImageStreak
1512
2586
  */
1513
- 'totalOffsetStdDev'?: number;
2587
+ 'endRa': number;
1514
2588
  /**
1515
2589
  *
1516
2590
  * @type {number}
1517
- * @memberof V1ImageSetImage
1518
- */
1519
- 'totalOffsetRMS'?: number;
1520
- /**
1521
- *
1522
- * @type {string}
1523
- * @memberof V1ImageSetImage
2591
+ * @memberof V1ImageSetImageStreak
1524
2592
  */
1525
- 'capturedAt': string;
2593
+ 'endDec': number;
1526
2594
  /**
1527
2595
  *
1528
- * @type {string}
1529
- * @memberof V1ImageSetImage
2596
+ * @type {number}
2597
+ * @memberof V1ImageSetImageStreak
1530
2598
  */
1531
- 'createdAt': string;
2599
+ 'snr': number;
1532
2600
  /**
1533
2601
  *
1534
2602
  * @type {number}
1535
- * @memberof V1ImageSetImage
2603
+ * @memberof V1ImageSetImageStreak
1536
2604
  */
1537
- 'binning'?: number;
2605
+ 'magnitude': number;
1538
2606
  /**
1539
2607
  *
1540
2608
  * @type {number}
1541
- * @memberof V1ImageSetImage
2609
+ * @memberof V1ImageSetImageStreak
1542
2610
  */
1543
- 'exposureLength': number;
2611
+ 'magnitudeError': number;
1544
2612
  /**
1545
2613
  *
1546
- * @type {Array<FitsHeader>}
1547
- * @memberof V1ImageSetImage
2614
+ * @type {boolean}
2615
+ * @memberof V1ImageSetImageStreak
1548
2616
  */
1549
- 'fitsHeaders': Array<FitsHeader>;
2617
+ 'magnitudeIsAbsolute': boolean;
1550
2618
  /**
1551
2619
  *
1552
- * @type {V1PredictedStreakLocation}
1553
- * @memberof V1ImageSetImage
2620
+ * @type {boolean}
2621
+ * @memberof V1ImageSetImageStreak
1554
2622
  */
1555
- 'predictedStreakLocation'?: V1PredictedStreakLocation;
2623
+ 'magntiudeIsAccurate': boolean;
1556
2624
  }
1557
2625
  /**
1558
2626
  * Instruction
@@ -1578,6 +2646,12 @@ export interface V1Instruction {
1578
2646
  * @memberof V1Instruction
1579
2647
  */
1580
2648
  'search'?: Array<V1ObservationInstruction>;
2649
+ /**
2650
+ *
2651
+ * @type {V1ResolvedInstruction}
2652
+ * @memberof V1Instruction
2653
+ */
2654
+ 'resolved'?: V1ResolvedInstruction;
1581
2655
  /**
1582
2656
  *
1583
2657
  * @type {V1AutoFocusInstruction}
@@ -1648,6 +2722,49 @@ export interface V1LogRecorded {
1648
2722
  */
1649
2723
  'log': string;
1650
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;
2767
+ }
1651
2768
  /**
1652
2769
  *
1653
2770
  * @export
@@ -1667,7 +2784,7 @@ export interface V1Metric {
1667
2784
  */
1668
2785
  'value': number;
1669
2786
  /**
1670
- *
2787
+ * List of colon separated key value pairs, i.e. [\"tag1:value1\",\"tag2:value2\"]
1671
2788
  * @type {Array<string>}
1672
2789
  * @memberof V1Metric
1673
2790
  */
@@ -1800,6 +2917,12 @@ export interface V1Node {
1800
2917
  * @memberof V1Node
1801
2918
  */
1802
2919
  'id': string;
2920
+ /**
2921
+ *
2922
+ * @type {string}
2923
+ * @memberof V1Node
2924
+ */
2925
+ 'lineageId': string;
1803
2926
  /**
1804
2927
  *
1805
2928
  * @type {Location}
@@ -1821,16 +2944,40 @@ export interface V1NodeCommand {
1821
2944
  'id': string;
1822
2945
  /**
1823
2946
  *
1824
- * @type {V1NodeCommandType}
2947
+ * @type {V1EnableManualOperation}
1825
2948
  * @memberof V1NodeCommand
1826
2949
  */
1827
- 'type': V1NodeCommandType;
2950
+ 'V1EnableManualOperation'?: V1EnableManualOperation;
1828
2951
  /**
1829
2952
  *
1830
- * @type {V1NodeCommandBody}
2953
+ * @type {V1EnableAutonomousOperation}
1831
2954
  * @memberof V1NodeCommand
1832
2955
  */
1833
- 'body': V1NodeCommandBody;
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}
2972
+ * @memberof V1NodeCommand
2973
+ */
2974
+ 'V1EnableDebugServices'?: V1EnableDebugServices;
2975
+ /**
2976
+ *
2977
+ * @type {V1DisableDebugServices}
2978
+ * @memberof V1NodeCommand
2979
+ */
2980
+ 'V1DisableDebugServices'?: V1DisableDebugServices;
1834
2981
  /**
1835
2982
  *
1836
2983
  * @type {string}
@@ -1838,24 +2985,6 @@ export interface V1NodeCommand {
1838
2985
  */
1839
2986
  'executableAt'?: string;
1840
2987
  }
1841
- /**
1842
- * @type V1NodeCommandBody
1843
- * @export
1844
- */
1845
- export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
1846
- /**
1847
- *
1848
- * @export
1849
- * @enum {string}
1850
- */
1851
- export declare const V1NodeCommandType: {
1852
- readonly V1_START_PERPETUAL_INSTRUCTION_LOOP: "V1_START_PERPETUAL_INSTRUCTION_LOOP";
1853
- readonly V1_STOP_PERPETUAL_INSTRUCTION_LOOP: "V1_STOP_PERPETUAL_INSTRUCTION_LOOP";
1854
- readonly V1_HALT: "V1_HALT";
1855
- readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
1856
- readonly V1_RESTART_ADB: "V1_RESTART_ADB";
1857
- };
1858
- export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
1859
2988
  /**
1860
2989
  *
1861
2990
  * @export
@@ -1873,6 +3002,61 @@ export declare const V1NodeComponentType: {
1873
3002
  readonly WEATHER_STATION: "WEATHER_STATION";
1874
3003
  };
1875
3004
  export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
3005
+ /**
3006
+ *
3007
+ * @export
3008
+ * @interface V1NodeConfigBody
3009
+ */
3010
+ export interface V1NodeConfigBody {
3011
+ /**
3012
+ *
3013
+ * @type {V1AllSkyCameraConfig}
3014
+ * @memberof V1NodeConfigBody
3015
+ */
3016
+ 'allSkyCamera'?: V1AllSkyCameraConfig;
3017
+ }
3018
+ /**
3019
+ *
3020
+ * @export
3021
+ * @interface V1NodeConfigKeyMetadata
3022
+ */
3023
+ export interface V1NodeConfigKeyMetadata {
3024
+ /**
3025
+ *
3026
+ * @type {string}
3027
+ * @memberof V1NodeConfigKeyMetadata
3028
+ */
3029
+ 'updatedAt'?: string;
3030
+ /**
3031
+ *
3032
+ * @type {string}
3033
+ * @memberof V1NodeConfigKeyMetadata
3034
+ */
3035
+ 'updatedBy'?: string;
3036
+ /**
3037
+ *
3038
+ * @type {V1NodeConfigScopeType}
3039
+ * @memberof V1NodeConfigKeyMetadata
3040
+ */
3041
+ 'scopeType'?: V1NodeConfigScopeType;
3042
+ /**
3043
+ *
3044
+ * @type {string}
3045
+ * @memberof V1NodeConfigKeyMetadata
3046
+ */
3047
+ 'scopeId'?: string;
3048
+ }
3049
+ /**
3050
+ *
3051
+ * @export
3052
+ * @enum {string}
3053
+ */
3054
+ export declare const V1NodeConfigScopeType: {
3055
+ readonly GLOBAL: "GLOBAL";
3056
+ readonly ORGANIZATION: "ORGANIZATION";
3057
+ readonly NODE: "NODE";
3058
+ };
3059
+ export type V1NodeConfigScopeType = typeof V1NodeConfigScopeType[keyof typeof V1NodeConfigScopeType];
1876
3060
  /**
1877
3061
  *
1878
3062
  * @export
@@ -1897,6 +3081,12 @@ export interface V1NodeController {
1897
3081
  * @memberof V1NodeController
1898
3082
  */
1899
3083
  'chipSerialNumber'?: number;
3084
+ /**
3085
+ *
3086
+ * @type {Array<V1NodeControllerMacAddressesInner>}
3087
+ * @memberof V1NodeController
3088
+ */
3089
+ 'macAddresses'?: Array<V1NodeControllerMacAddressesInner>;
1900
3090
  /**
1901
3091
  *
1902
3092
  * @type {V1NodeControllerStatus}
@@ -1969,9 +3159,59 @@ export interface V1NodeControllerIssueCertificateResponse {
1969
3159
  /**
1970
3160
  * Type of the private key, e.g., RSA, ECC
1971
3161
  * @type {string}
1972
- * @memberof V1NodeControllerIssueCertificateResponse
3162
+ * @memberof V1NodeControllerIssueCertificateResponse
3163
+ */
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
1973
3207
  */
1974
- 'privateKeyType': string;
3208
+ 'macAddress': string;
3209
+ /**
3210
+ *
3211
+ * @type {NetworkInterface}
3212
+ * @memberof V1NodeControllerMacAddressesInner
3213
+ */
3214
+ 'interface': NetworkInterface;
1975
3215
  }
1976
3216
  /**
1977
3217
  * The status of the bootstrapping process.
@@ -1999,6 +3239,7 @@ export declare const V1NodeDiagnosticType: {
1999
3239
  readonly MOUNT_CHECKED: "MOUNT_CHECKED";
2000
3240
  readonly OPTICAL_TUBE_CHECKED: "OPTICAL_TUBE_CHECKED";
2001
3241
  readonly ELEVATION_MASK_CHECKED: "ELEVATION_MASK_CHECKED";
3242
+ readonly TOTAL_DISK_BYTES: "TOTAL_DISK_BYTES";
2002
3243
  readonly AVAILABLE_DISK_BYTES: "AVAILABLE_DISK_BYTES";
2003
3244
  readonly AVAILABLE_MEMORY_BYTES: "AVAILABLE_MEMORY_BYTES";
2004
3245
  readonly NTP_TIME_DRIFT_MS: "NTP_TIME_DRIFT_MS";
@@ -2043,8 +3284,36 @@ export declare const V1NodeEventType: {
2043
3284
  readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
2044
3285
  readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
2045
3286
  readonly V1_PROPAGATION_TARGET_SELECTED: "V1_PROPAGATION_TARGET_SELECTED";
3287
+ readonly V1_HYPOTHESIS_OBSERVATION_TASKED: "V1_HYPOTHESIS_OBSERVATION_TASKED";
3288
+ readonly V1_NETWORK_STATUS: "V1_NETWORK_STATUS";
3289
+ readonly V1_RESOLVED_IMAGE_INSTRUCTION_TASKED: "V1_RESOLVED_IMAGE_INSTRUCTION_TASKED";
2046
3290
  };
2047
3291
  export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
3292
+ /**
3293
+ * V1NodeFlare
3294
+ * @export
3295
+ * @interface V1NodeFlare
3296
+ */
3297
+ export interface V1NodeFlare {
3298
+ /**
3299
+ *
3300
+ * @type {string}
3301
+ * @memberof V1NodeFlare
3302
+ */
3303
+ 'id': string;
3304
+ /**
3305
+ *
3306
+ * @type {string}
3307
+ * @memberof V1NodeFlare
3308
+ */
3309
+ 'url': string;
3310
+ /**
3311
+ *
3312
+ * @type {string}
3313
+ * @memberof V1NodeFlare
3314
+ */
3315
+ 'createdAt': string;
3316
+ }
2048
3317
  /**
2049
3318
  * Node with location
2050
3319
  * @export
@@ -2208,6 +3477,12 @@ export interface V1ObservationInstruction {
2208
3477
  * @memberof V1ObservationInstruction
2209
3478
  */
2210
3479
  'tleOffsetRa'?: number;
3480
+ /**
3481
+ *
3482
+ * @type {Array<V1BlackoutBox>}
3483
+ * @memberof V1ObservationInstruction
3484
+ */
3485
+ 'blackoutBoxes'?: Array<V1BlackoutBox>;
2211
3486
  /**
2212
3487
  *
2213
3488
  * @type {PlateSolveParameters}
@@ -2451,136 +3726,415 @@ export type V1PlateSolveCatalogFileDownloadActionEnum = typeof V1PlateSolveCatal
2451
3726
  export interface V1PredictedStreakLocation {
2452
3727
  /**
2453
3728
  *
2454
- * @type {number}
2455
- * @memberof V1PredictedStreakLocation
3729
+ * @type {number}
3730
+ * @memberof V1PredictedStreakLocation
3731
+ */
3732
+ 'startX'?: number;
3733
+ /**
3734
+ *
3735
+ * @type {number}
3736
+ * @memberof V1PredictedStreakLocation
3737
+ */
3738
+ 'startY'?: number;
3739
+ /**
3740
+ *
3741
+ * @type {number}
3742
+ * @memberof V1PredictedStreakLocation
3743
+ */
3744
+ 'endX'?: number;
3745
+ /**
3746
+ *
3747
+ * @type {number}
3748
+ * @memberof V1PredictedStreakLocation
3749
+ */
3750
+ 'endY'?: number;
3751
+ }
3752
+ /**
3753
+ *
3754
+ * @export
3755
+ * @interface V1ReadNoisePoint
3756
+ */
3757
+ export interface V1ReadNoisePoint {
3758
+ /**
3759
+ *
3760
+ * @type {number}
3761
+ * @memberof V1ReadNoisePoint
3762
+ */
3763
+ 'gain': number;
3764
+ /**
3765
+ *
3766
+ * @type {number}
3767
+ * @memberof V1ReadNoisePoint
3768
+ */
3769
+ 'eRMS': number;
3770
+ }
3771
+ /**
3772
+ *
3773
+ * @export
3774
+ * @interface V1RebootSystem
3775
+ */
3776
+ export interface V1RebootSystem {
3777
+ /**
3778
+ *
3779
+ * @type {string}
3780
+ * @memberof V1RebootSystem
3781
+ */
3782
+ 'nodeId': string;
3783
+ /**
3784
+ *
3785
+ * @type {string}
3786
+ * @memberof V1RebootSystem
3787
+ */
3788
+ 'executableAt'?: string;
3789
+ }
3790
+ /**
3791
+ *
3792
+ * @export
3793
+ * @interface V1RegisterNodeControllerRequest
3794
+ */
3795
+ export interface V1RegisterNodeControllerRequest {
3796
+ /**
3797
+ *
3798
+ * @type {number}
3799
+ * @memberof V1RegisterNodeControllerRequest
3800
+ */
3801
+ 'chipSerialNumber': number;
3802
+ /**
3803
+ *
3804
+ * @type {Array<NetworkInterface>}
3805
+ * @memberof V1RegisterNodeControllerRequest
3806
+ */
3807
+ 'interfaces'?: Array<NetworkInterface>;
3808
+ }
3809
+ /**
3810
+ *
3811
+ * @export
3812
+ * @interface V1RequestMacAddressesRequest
3813
+ */
3814
+ export interface V1RequestMacAddressesRequest {
3815
+ /**
3816
+ *
3817
+ * @type {string}
3818
+ * @memberof V1RequestMacAddressesRequest
3819
+ */
3820
+ 'lineageId': string;
3821
+ /**
3822
+ *
3823
+ * @type {Array<NetworkInterface>}
3824
+ * @memberof V1RequestMacAddressesRequest
3825
+ */
3826
+ 'interfaces': Array<NetworkInterface>;
3827
+ }
3828
+ /**
3829
+ *
3830
+ * @export
3831
+ * @interface V1RequestMacAddressesResponse
3832
+ */
3833
+ export interface V1RequestMacAddressesResponse {
3834
+ /**
3835
+ *
3836
+ * @type {Array<V1RequestMacAddressesResponseMacAddressesInner>}
3837
+ * @memberof V1RequestMacAddressesResponse
3838
+ */
3839
+ 'macAddresses': Array<V1RequestMacAddressesResponseMacAddressesInner>;
3840
+ }
3841
+ /**
3842
+ *
3843
+ * @export
3844
+ * @interface V1RequestMacAddressesResponseMacAddressesInner
3845
+ */
3846
+ export interface V1RequestMacAddressesResponseMacAddressesInner {
3847
+ /**
3848
+ * The MAC address of the node controller.
3849
+ * @type {string}
3850
+ * @memberof V1RequestMacAddressesResponseMacAddressesInner
3851
+ */
3852
+ 'macAddress': string;
3853
+ /**
3854
+ *
3855
+ * @type {NetworkInterface}
3856
+ * @memberof V1RequestMacAddressesResponseMacAddressesInner
3857
+ */
3858
+ 'interface': NetworkInterface;
3859
+ }
3860
+ /**
3861
+ * Resolved Observation Instruction with additional resolution fields
3862
+ * @export
3863
+ * @interface V1ResolvedInstruction
3864
+ */
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
2456
4008
  */
2457
- 'startX'?: number;
4009
+ 'blackoutBoxes'?: Array<V1BlackoutBox>;
2458
4010
  /**
2459
4011
  *
2460
- * @type {number}
2461
- * @memberof V1PredictedStreakLocation
4012
+ * @type {PlateSolveParameters}
4013
+ * @memberof V1ResolvedInstruction
2462
4014
  */
2463
- 'startY'?: number;
4015
+ 'plateSolveParameters'?: PlateSolveParameters;
2464
4016
  /**
2465
4017
  *
2466
- * @type {number}
2467
- * @memberof V1PredictedStreakLocation
4018
+ * @type {UploadPriority}
4019
+ * @memberof V1ResolvedInstruction
2468
4020
  */
2469
- 'endX'?: number;
4021
+ 'uploadPriority'?: UploadPriority;
2470
4022
  /**
2471
4023
  *
2472
- * @type {number}
2473
- * @memberof V1PredictedStreakLocation
4024
+ * @type {Array<V1ObservationInstructionSatellitePassEphemerisInner>}
4025
+ * @memberof V1ResolvedInstruction
2474
4026
  */
2475
- 'endY'?: number;
2476
- }
2477
- /**
2478
- *
2479
- * @export
2480
- * @interface V1ReadNoisePoint
2481
- */
2482
- export interface V1ReadNoisePoint {
4027
+ 'satellitePassEphemeris'?: Array<V1ObservationInstructionSatellitePassEphemerisInner>;
2483
4028
  /**
2484
4029
  *
4030
+ * @type {V1ObservationInstructionAscomAxisRates}
4031
+ * @memberof V1ResolvedInstruction
4032
+ */
4033
+ 'ascomAxisRates'?: V1ObservationInstructionAscomAxisRates;
4034
+ /**
4035
+ * x size of the square cropped area, in pixels
2485
4036
  * @type {number}
2486
- * @memberof V1ReadNoisePoint
4037
+ * @memberof V1ResolvedInstruction
2487
4038
  */
2488
- 'gain': number;
4039
+ 'cropSizeWidthPx'?: number;
2489
4040
  /**
2490
- *
4041
+ * y size of the square cropped area, in pixels
2491
4042
  * @type {number}
2492
- * @memberof V1ReadNoisePoint
4043
+ * @memberof V1ResolvedInstruction
2493
4044
  */
2494
- 'eRMS': number;
4045
+ 'cropSizeHeightPx'?: number;
4046
+ /**
4047
+ * Whether the resolved image should be auto-exposed
4048
+ * @type {boolean}
4049
+ * @memberof V1ResolvedInstruction
4050
+ */
4051
+ 'resolvedImageAutoExposure': boolean;
2495
4052
  }
2496
4053
  /**
2497
4054
  *
2498
4055
  * @export
2499
- * @interface V1RebootSystem
4056
+ * @interface V1SafetyStatusUpdated
2500
4057
  */
2501
- export interface V1RebootSystem {
4058
+ export interface V1SafetyStatusUpdated {
2502
4059
  /**
2503
4060
  *
2504
4061
  * @type {boolean}
2505
- * @memberof V1RebootSystem
4062
+ * @memberof V1SafetyStatusUpdated
2506
4063
  */
2507
- 'placeholder'?: boolean;
4064
+ 'isSafe': boolean;
2508
4065
  }
2509
4066
  /**
2510
4067
  *
2511
4068
  * @export
2512
- * @interface V1RegisterNodeControllerRequest
4069
+ * @interface V1SendFlare
2513
4070
  */
2514
- export interface V1RegisterNodeControllerRequest {
4071
+ export interface V1SendFlare {
4072
+ /**
4073
+ *
4074
+ * @type {string}
4075
+ * @memberof V1SendFlare
4076
+ */
4077
+ 'nodeId': string;
2515
4078
  /**
2516
4079
  *
2517
4080
  * @type {number}
2518
- * @memberof V1RegisterNodeControllerRequest
4081
+ * @memberof V1SendFlare
2519
4082
  */
2520
- 'chipSerialNumber': number;
2521
- }
2522
- /**
2523
- * Node Controller Release
2524
- * @export
2525
- * @interface V1Release
2526
- */
2527
- export interface V1Release {
4083
+ 'journalSizeLimitBytes'?: number;
2528
4084
  /**
2529
4085
  *
2530
- * @type {string}
2531
- * @memberof V1Release
4086
+ * @type {boolean}
4087
+ * @memberof V1SendFlare
2532
4088
  */
2533
- 'id': string;
4089
+ 'diagnoseMount'?: boolean;
2534
4090
  /**
2535
- * Semantic version 2.0 of this release.
2536
- * @type {string}
2537
- * @memberof V1Release
4091
+ *
4092
+ * @type {boolean}
4093
+ * @memberof V1SendFlare
2538
4094
  */
2539
- 'version': string;
4095
+ 'diagnoseAstroCamera'?: boolean;
2540
4096
  /**
2541
4097
  *
2542
- * @type {string}
2543
- * @memberof V1Release
4098
+ * @type {boolean}
4099
+ * @memberof V1SendFlare
2544
4100
  */
2545
- 'url': string;
4101
+ 'diagnoseAllSkyCamera'?: boolean;
2546
4102
  /**
2547
- * SHA256 checksum of the file
2548
- * @type {string}
2549
- * @memberof V1Release
4103
+ *
4104
+ * @type {boolean}
4105
+ * @memberof V1SendFlare
2550
4106
  */
2551
- 'checksum': string;
4107
+ 'diagnoseFocuser'?: boolean;
2552
4108
  /**
2553
4109
  *
2554
- * @type {V1FileType}
2555
- * @memberof V1Release
4110
+ * @type {boolean}
4111
+ * @memberof V1SendFlare
2556
4112
  */
2557
- 'fileType': V1FileType;
2558
- }
2559
- /**
2560
- *
2561
- * @export
2562
- * @interface V1RestartAdb
2563
- */
2564
- export interface V1RestartAdb {
4113
+ 'diagnoseWeatherStation'?: boolean;
2565
4114
  /**
2566
4115
  *
2567
4116
  * @type {boolean}
2568
- * @memberof V1RestartAdb
4117
+ * @memberof V1SendFlare
2569
4118
  */
2570
- 'placeholder'?: boolean;
2571
- }
2572
- /**
2573
- *
2574
- * @export
2575
- * @interface V1SafetyStatusUpdated
2576
- */
2577
- export interface V1SafetyStatusUpdated {
4119
+ 'diagnoseRelays'?: boolean;
2578
4120
  /**
2579
4121
  *
2580
4122
  * @type {boolean}
2581
- * @memberof V1SafetyStatusUpdated
4123
+ * @memberof V1SendFlare
2582
4124
  */
2583
- 'isSafe': boolean;
4125
+ 'diagnoseRoof'?: boolean;
4126
+ /**
4127
+ *
4128
+ * @type {boolean}
4129
+ * @memberof V1SendFlare
4130
+ */
4131
+ 'diagnosePlatformConnection'?: boolean;
4132
+ /**
4133
+ *
4134
+ * @type {string}
4135
+ * @memberof V1SendFlare
4136
+ */
4137
+ 'executableAt'?: string;
2584
4138
  }
2585
4139
  /**
2586
4140
  * Setup Action
@@ -2648,28 +4202,159 @@ export interface V1SlewTimingInterval {
2648
4202
  /**
2649
4203
  *
2650
4204
  * @export
2651
- * @interface V1StartPerpetualInstructionLoop
4205
+ * @enum {string}
4206
+ */
4207
+ export declare const V1SoftwarePackageType: {
4208
+ readonly QCOM_OTA: "QCOM_OTA";
4209
+ };
4210
+ export type V1SoftwarePackageType = typeof V1SoftwarePackageType[keyof typeof V1SoftwarePackageType];
4211
+ /**
4212
+ *
4213
+ * @export
4214
+ * @interface V1SoftwareRelease
2652
4215
  */
2653
- export interface V1StartPerpetualInstructionLoop {
4216
+ export interface V1SoftwareRelease {
2654
4217
  /**
2655
4218
  *
2656
- * @type {boolean}
2657
- * @memberof V1StartPerpetualInstructionLoop
4219
+ * @type {string}
4220
+ * @memberof V1SoftwareRelease
4221
+ */
4222
+ 'id': string;
4223
+ /**
4224
+ * Semantic version 2.0 of this release.
4225
+ * @type {string}
4226
+ * @memberof V1SoftwareRelease
4227
+ */
4228
+ 'version': string;
4229
+ /**
4230
+ *
4231
+ * @type {string}
4232
+ * @memberof V1SoftwareRelease
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
2658
4257
  */
2659
- 'placeholder'?: boolean;
4258
+ 'runtimeEnvironmentTypes': Array<V1SoftwareRuntimeEnvironmentType>;
2660
4259
  }
2661
4260
  /**
2662
4261
  *
2663
4262
  * @export
2664
- * @interface V1StopPerpetualInstructionLoop
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];
4269
+ /**
4270
+ * V1TimeWindowedAsset
4271
+ * @export
4272
+ * @interface V1TimeWindowedAsset
2665
4273
  */
2666
- export interface V1StopPerpetualInstructionLoop {
4274
+ export interface V1TimeWindowedAsset {
2667
4275
  /**
2668
4276
  *
2669
- * @type {boolean}
2670
- * @memberof V1StopPerpetualInstructionLoop
4277
+ * @type {string}
4278
+ * @memberof V1TimeWindowedAsset
4279
+ */
4280
+ 'id': string;
4281
+ /**
4282
+ *
4283
+ * @type {string}
4284
+ * @memberof V1TimeWindowedAsset
4285
+ */
4286
+ 'description': string;
4287
+ /**
4288
+ *
4289
+ * @type {string}
4290
+ * @memberof V1TimeWindowedAsset
4291
+ */
4292
+ 'url': string;
4293
+ /**
4294
+ *
4295
+ * @type {string}
4296
+ * @memberof V1TimeWindowedAsset
4297
+ */
4298
+ 'nodeId': string;
4299
+ /**
4300
+ *
4301
+ * @type {V1TimeWindowedAssetType}
4302
+ * @memberof V1TimeWindowedAsset
4303
+ */
4304
+ 'assetType': V1TimeWindowedAssetType;
4305
+ /**
4306
+ *
4307
+ * @type {string}
4308
+ * @memberof V1TimeWindowedAsset
4309
+ */
4310
+ 'assetStartTime': string;
4311
+ /**
4312
+ *
4313
+ * @type {string}
4314
+ * @memberof V1TimeWindowedAsset
4315
+ */
4316
+ 'assetEndTime': string;
4317
+ /**
4318
+ *
4319
+ * @type {string}
4320
+ * @memberof V1TimeWindowedAsset
4321
+ */
4322
+ 'createdAt': string;
4323
+ }
4324
+ /**
4325
+ *
4326
+ * @export
4327
+ * @enum {string}
4328
+ */
4329
+ export declare const V1TimeWindowedAssetType: {
4330
+ readonly TIMELAPSE: "TIMELAPSE";
4331
+ readonly KEOGRAM: "KEOGRAM";
4332
+ };
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
2671
4356
  */
2672
- 'placeholder'?: boolean;
4357
+ 'mountType'?: MountType;
2673
4358
  }
2674
4359
  /**
2675
4360
  *
@@ -2995,6 +4680,43 @@ export interface V1UpdateNodeRequest {
2995
4680
  */
2996
4681
  'state'?: NodeState;
2997
4682
  }
4683
+ /**
4684
+ *
4685
+ * @export
4686
+ * @interface V1UpdateOpticalTubeRequest
4687
+ */
4688
+ export interface V1UpdateOpticalTubeRequest {
4689
+ /**
4690
+ *
4691
+ * @type {string}
4692
+ * @memberof V1UpdateOpticalTubeRequest
4693
+ */
4694
+ 'id': string;
4695
+ /**
4696
+ *
4697
+ * @type {string}
4698
+ * @memberof V1UpdateOpticalTubeRequest
4699
+ */
4700
+ 'model'?: string;
4701
+ /**
4702
+ *
4703
+ * @type {number}
4704
+ * @memberof V1UpdateOpticalTubeRequest
4705
+ */
4706
+ 'focalLengthMm'?: number;
4707
+ /**
4708
+ *
4709
+ * @type {number}
4710
+ * @memberof V1UpdateOpticalTubeRequest
4711
+ */
4712
+ 'apertureMm'?: number;
4713
+ /**
4714
+ *
4715
+ * @type {OpticalTubeType}
4716
+ * @memberof V1UpdateOpticalTubeRequest
4717
+ */
4718
+ 'type'?: OpticalTubeType;
4719
+ }
2998
4720
  /**
2999
4721
  *
3000
4722
  * @export
@@ -3057,11 +4779,40 @@ export interface V2CompleteObservationRequest {
3057
4779
  */
3058
4780
  'metrics'?: V1ObservationMetrics;
3059
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
+ }
3060
4801
  /**
3061
4802
  * DefaultApi - axios parameter creator
3062
4803
  * @export
3063
4804
  */
3064
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>;
3065
4816
  /**
3066
4817
  * Get the various tokens used in client applications
3067
4818
  * @param {*} [options] Override http request option.
@@ -3088,6 +4839,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3088
4839
  * @throws {RequiredError}
3089
4840
  */
3090
4841
  v1CompleteBootstrap: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
4842
+ /**
4843
+ * Complete a node flare.
4844
+ * @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
4845
+ * @param {*} [options] Override http request option.
4846
+ * @throws {RequiredError}
4847
+ */
4848
+ v1CompleteNodeFlare: (v1CompleteNodeFlareRequest: V1CompleteNodeFlareRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3091
4849
  /**
3092
4850
  * Complete an observation.
3093
4851
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3095,6 +4853,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3095
4853
  * @throws {RequiredError}
3096
4854
  */
3097
4855
  v1CompleteObservation: (v1CompleteObservationRequest: V1CompleteObservationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4856
+ /**
4857
+ * Create a new all sky prediction
4858
+ * @param {V1CreateAllSkyPredictionRequest} v1CreateAllSkyPredictionRequest
4859
+ * @param {*} [options] Override http request option.
4860
+ * @throws {RequiredError}
4861
+ */
4862
+ v1CreateAllSkyPrediction: (v1CreateAllSkyPredictionRequest: V1CreateAllSkyPredictionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3098
4863
  /**
3099
4864
  * Create an autofocus result.
3100
4865
  * @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
@@ -3102,6 +4867,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3102
4867
  * @throws {RequiredError}
3103
4868
  */
3104
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>;
3105
4877
  /**
3106
4878
  * Create an focuser.
3107
4879
  * @param {V1CreateFocuserRequest} v1CreateFocuserRequest
@@ -3123,6 +4895,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3123
4895
  * @throws {RequiredError}
3124
4896
  */
3125
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>;
3126
4905
  /**
3127
4906
  * Create metrics.
3128
4907
  * @param {Array<V1Metric>} v1Metric
@@ -3165,6 +4944,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3165
4944
  * @throws {RequiredError}
3166
4945
  */
3167
4946
  v1CreateNodeEvents: (v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4947
+ /**
4948
+ * Create a node flare.
4949
+ * @param {V1CreateNodeFlareRequest} v1CreateNodeFlareRequest
4950
+ * @param {*} [options] Override http request option.
4951
+ * @throws {RequiredError}
4952
+ */
4953
+ v1CreateNodeFlare: (v1CreateNodeFlareRequest: V1CreateNodeFlareRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3168
4954
  /**
3169
4955
  * Create an optical tube.
3170
4956
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -3172,6 +4958,27 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3172
4958
  * @throws {RequiredError}
3173
4959
  */
3174
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>;
4968
+ /**
4969
+ * Create a time windowed asset.
4970
+ * @param {V1CreateTimeWindowedAssetRequest} v1CreateTimeWindowedAssetRequest
4971
+ * @param {*} [options] Override http request option.
4972
+ * @throws {RequiredError}
4973
+ */
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>;
3175
4982
  /**
3176
4983
  * Delete an image set.
3177
4984
  * @param {string} id
@@ -3201,12 +5008,27 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3201
5008
  * @throws {RequiredError}
3202
5009
  */
3203
5010
  v1FocuserMatch: (model?: string, travelDistanceMm?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5011
+ /**
5012
+ * Get an all sky prediction by ID or image id
5013
+ * @param {string} [imageId]
5014
+ * @param {string} [id]
5015
+ * @param {*} [options] Override http request option.
5016
+ * @throws {RequiredError}
5017
+ */
5018
+ v1GetAllSkyPrediction: (imageId?: string, id?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3204
5019
  /**
3205
5020
  * Get cameras.
3206
5021
  * @param {*} [options] Override http request option.
3207
5022
  * @throws {RequiredError}
3208
5023
  */
3209
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>;
3210
5032
  /**
3211
5033
  * Get a focuser.
3212
5034
  * @param {string} id
@@ -3249,6 +5071,21 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3249
5071
  * @throws {RequiredError}
3250
5072
  */
3251
5073
  v1GetLatestHfr: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5074
+ /**
5075
+ * GetLatestModel
5076
+ * @param {ModelType} modelType
5077
+ * @param {string} lineageId
5078
+ * @param {*} [options] Override http request option.
5079
+ * @throws {RequiredError}
5080
+ */
5081
+ v1GetLatestModel: (modelType: ModelType, lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5082
+ /**
5083
+ * Get merged node config body
5084
+ * @param {string} nodeId
5085
+ * @param {*} [options] Override http request option.
5086
+ * @throws {RequiredError}
5087
+ */
5088
+ v1GetMergedNodeConfigBody: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3252
5089
  /**
3253
5090
  * Get a mount.
3254
5091
  * @param {string} id
@@ -3257,12 +5094,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3257
5094
  */
3258
5095
  v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3259
5096
  /**
3260
- * Get node by lineage id.
3261
- * @param {string} lineageId
5097
+ * Get node by lineage id or node id.
5098
+ * @param {string} [lineageId]
5099
+ * @param {string} [nodeId]
3262
5100
  * @param {*} [options] Override http request option.
3263
5101
  * @throws {RequiredError}
3264
5102
  */
3265
- v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5103
+ v1GetNode: (lineageId?: string, nodeId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3266
5104
  /**
3267
5105
  * Get node commands
3268
5106
  * @param {string} nodeId
@@ -3271,13 +5109,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3271
5109
  * @throws {RequiredError}
3272
5110
  */
3273
5111
  v1GetNodeCommands: (nodeId: string, executableAt: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3274
- /**
3275
- * returns the current release for the node
3276
- * @param {string} lineageId lineage id
3277
- * @param {*} [options] Override http request option.
3278
- * @throws {RequiredError}
3279
- */
3280
- v1GetNodeControllerRelease: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3281
5112
  /**
3282
5113
  * Get node diagnostic tasks.
3283
5114
  * @param {string} nodeId
@@ -3286,6 +5117,23 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3286
5117
  * @throws {RequiredError}
3287
5118
  */
3288
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>;
5130
+ /**
5131
+ * Get a node flare by id.
5132
+ * @param {string} id
5133
+ * @param {*} [options] Override http request option.
5134
+ * @throws {RequiredError}
5135
+ */
5136
+ v1GetNodeFlare: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3289
5137
  /**
3290
5138
  * Get node properties.
3291
5139
  * @param {string} nodeId
@@ -3341,6 +5189,33 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3341
5189
  * @throws {RequiredError}
3342
5190
  */
3343
5191
  v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5192
+ /**
5193
+ * Get satellites for skyAtlas. returns jsonl
5194
+ * @param {*} [options] Override http request option.
5195
+ * @throws {RequiredError}
5196
+ */
5197
+ v1GetSkyAtlasSatellites: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
5198
+ /**
5199
+ * Get the target QCOM OTA software release for a node
5200
+ * @param {string} lineageId lineage id
5201
+ * @param {*} [options] Override http request option.
5202
+ * @throws {RequiredError}
5203
+ */
5204
+ v1GetTargetQCOMOTASoftwareReleaseForNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5205
+ /**
5206
+ * Get the target software releases for a node
5207
+ * @param {string} lineageId lineage id
5208
+ * @param {*} [options] Override http request option.
5209
+ * @throws {RequiredError}
5210
+ */
5211
+ v1GetTargetSoftwareReleasesForNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5212
+ /**
5213
+ * Get a time windowed asset by id.
5214
+ * @param {string} timeWindowedAssetId
5215
+ * @param {*} [options] Override http request option.
5216
+ * @throws {RequiredError}
5217
+ */
5218
+ v1GetTimeWindowedAsset: (timeWindowedAssetId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3344
5219
  /**
3345
5220
  * issueCertificate
3346
5221
  * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
@@ -3348,6 +5223,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3348
5223
  * @throws {RequiredError}
3349
5224
  */
3350
5225
  v1IssueCertificate: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5226
+ /**
5227
+ * User initiated logout - revokes existing _user_ access tokens for the principal
5228
+ * @param {*} [options] Override http request option.
5229
+ * @throws {RequiredError}
5230
+ */
5231
+ v1Logout: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3351
5232
  /**
3352
5233
  * Match mount.
3353
5234
  * @param {string} [model]
@@ -3355,6 +5236,38 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3355
5236
  * @throws {RequiredError}
3356
5237
  */
3357
5238
  v1MountMatch: (model?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5239
+ /**
5240
+ * \' V1EnableAutonomousOperation - immediately places the system back under autonomous operation mode. !!CAUTION!! This will immediately begin slewing your system around if conditions are safe. Please ensure your system is prepared to move \'
5241
+ * @param {V1EnableAutonomousOperation} v1EnableAutonomousOperation
5242
+ * @param {*} [options] Override http request option.
5243
+ * @deprecated
5244
+ * @throws {RequiredError}
5245
+ */
5246
+ v1NodeCommandV1EnableAutonomousOperation: (v1EnableAutonomousOperation: V1EnableAutonomousOperation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5247
+ /**
5248
+ * \' V1EnableManualOperation- immediately halts all autonomous operation of the system and parks the telescope (including closing the enclosure if present). !!CAUTION!! This is an indefinite halt until V1EnableAutonomousOperation is called. Your system will not respond to weather and safety events! \'
5249
+ * @param {V1EnableManualOperation} v1EnableManualOperation
5250
+ * @param {*} [options] Override http request option.
5251
+ * @deprecated
5252
+ * @throws {RequiredError}
5253
+ */
5254
+ v1NodeCommandV1EnableManualOperation: (v1EnableManualOperation: V1EnableManualOperation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5255
+ /**
5256
+ * v1 reboot system
5257
+ * @param {V1RebootSystem} v1RebootSystem
5258
+ * @param {*} [options] Override http request option.
5259
+ * @deprecated
5260
+ * @throws {RequiredError}
5261
+ */
5262
+ v1NodeCommandV1RebootSystem: (v1RebootSystem: V1RebootSystem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5263
+ /**
5264
+ * v1 send flare
5265
+ * @param {V1SendFlare} v1SendFlare
5266
+ * @param {*} [options] Override http request option.
5267
+ * @deprecated
5268
+ * @throws {RequiredError}
5269
+ */
5270
+ v1NodeCommandV1SendFlare: (v1SendFlare: V1SendFlare, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3358
5271
  /**
3359
5272
  * Match optical tube.
3360
5273
  * @param {string} [model]
@@ -3371,6 +5284,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3371
5284
  * @throws {RequiredError}
3372
5285
  */
3373
5286
  v1RegisterNodeController: (v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5287
+ /**
5288
+ * Requests mac addresses for the given lineage and interfaces.
5289
+ * @param {V1RequestMacAddressesRequest} v1RequestMacAddressesRequest
5290
+ * @param {*} [options] Override http request option.
5291
+ * @throws {RequiredError}
5292
+ */
5293
+ v1RequestMacAddresses: (v1RequestMacAddressesRequest: V1RequestMacAddressesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5294
+ /**
5295
+ * Update a mount.
5296
+ * @param {V1UpdateMountRequest} v1UpdateMountRequest
5297
+ * @param {*} [options] Override http request option.
5298
+ * @throws {RequiredError}
5299
+ */
5300
+ v1UpdateMount: (v1UpdateMountRequest: V1UpdateMountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3374
5301
  /**
3375
5302
  * Update a node.
3376
5303
  * @param {V1UpdateNodeRequest} v1UpdateNodeRequest
@@ -3385,6 +5312,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3385
5312
  * @throws {RequiredError}
3386
5313
  */
3387
5314
  v1UpdateNodeComponents: (v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5315
+ /**
5316
+ * Update an optical tube.
5317
+ * @param {V1UpdateOpticalTubeRequest} v1UpdateOpticalTubeRequest
5318
+ * @param {*} [options] Override http request option.
5319
+ * @throws {RequiredError}
5320
+ */
5321
+ v1UpdateOpticalTube: (v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3388
5322
  /**
3389
5323
  * Complete an observation utilizing the async pipeline.
3390
5324
  * @param {V2CompleteObservationRequest} v2CompleteObservationRequest
@@ -3392,12 +5326,29 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3392
5326
  * @throws {RequiredError}
3393
5327
  */
3394
5328
  v2CompleteObservation: (v2CompleteObservationRequest: V2CompleteObservationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5329
+ /**
5330
+ * V2 Issue Certificate
5331
+ * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
5332
+ * @param {*} [options] Override http request option.
5333
+ * @throws {RequiredError}
5334
+ */
5335
+ v2IssueCertificate: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3395
5336
  };
3396
5337
  /**
3397
5338
  * DefaultApi - functional programming interface
3398
5339
  * @export
3399
5340
  */
3400
5341
  export declare const DefaultApiFp: (configuration?: Configuration) => {
5342
+ /**
5343
+ * Get images for a node for display in a camera roll format
5344
+ * @param {string} [nodeId]
5345
+ * @param {string} [lineageId]
5346
+ * @param {string} [before]
5347
+ * @param {string} [types] Comma separated array of [ImageSetType](#model/imagesettype)
5348
+ * @param {*} [options] Override http request option.
5349
+ * @throws {RequiredError}
5350
+ */
5351
+ getCameraRoll(nodeId?: string, lineageId?: string, before?: string, types?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1CameraRollImage>>>;
3401
5352
  /**
3402
5353
  * Get the various tokens used in client applications
3403
5354
  * @param {*} [options] Override http request option.
@@ -3424,6 +5375,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3424
5375
  * @throws {RequiredError}
3425
5376
  */
3426
5377
  v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
5378
+ /**
5379
+ * Complete a node flare.
5380
+ * @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
5381
+ * @param {*} [options] Override http request option.
5382
+ * @throws {RequiredError}
5383
+ */
5384
+ v1CompleteNodeFlare(v1CompleteNodeFlareRequest: V1CompleteNodeFlareRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3427
5385
  /**
3428
5386
  * Complete an observation.
3429
5387
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3431,6 +5389,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3431
5389
  * @throws {RequiredError}
3432
5390
  */
3433
5391
  v1CompleteObservation(v1CompleteObservationRequest: V1CompleteObservationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
5392
+ /**
5393
+ * Create a new all sky prediction
5394
+ * @param {V1CreateAllSkyPredictionRequest} v1CreateAllSkyPredictionRequest
5395
+ * @param {*} [options] Override http request option.
5396
+ * @throws {RequiredError}
5397
+ */
5398
+ v1CreateAllSkyPrediction(v1CreateAllSkyPredictionRequest: V1CreateAllSkyPredictionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1AllSkyPrediction>>;
3434
5399
  /**
3435
5400
  * Create an autofocus result.
3436
5401
  * @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
@@ -3438,6 +5403,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3438
5403
  * @throws {RequiredError}
3439
5404
  */
3440
5405
  v1CreateAutofocusResult(v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
5406
+ /**
5407
+ * Create a filter wheel.
5408
+ * @param {V1CreateFilterWheelRequest} v1CreateFilterWheelRequest
5409
+ * @param {*} [options] Override http request option.
5410
+ * @throws {RequiredError}
5411
+ */
5412
+ v1CreateFilterWheel(v1CreateFilterWheelRequest: V1CreateFilterWheelRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
3441
5413
  /**
3442
5414
  * Create an focuser.
3443
5415
  * @param {V1CreateFocuserRequest} v1CreateFocuserRequest
@@ -3459,6 +5431,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3459
5431
  * @throws {RequiredError}
3460
5432
  */
3461
5433
  v1CreateImageSetImage(v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
5434
+ /**
5435
+ * Create an image set image upload url.
5436
+ * @param {V1CreateImageSetImageUploadUrlRequest} v1CreateImageSetImageUploadUrlRequest
5437
+ * @param {*} [options] Override http request option.
5438
+ * @throws {RequiredError}
5439
+ */
5440
+ v1CreateImageSetImageUploadUrl(v1CreateImageSetImageUploadUrlRequest: V1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageUploadUrlResponse>>;
3462
5441
  /**
3463
5442
  * Create metrics.
3464
5443
  * @param {Array<V1Metric>} v1Metric
@@ -3501,6 +5480,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3501
5480
  * @throws {RequiredError}
3502
5481
  */
3503
5482
  v1CreateNodeEvents(v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
5483
+ /**
5484
+ * Create a node flare.
5485
+ * @param {V1CreateNodeFlareRequest} v1CreateNodeFlareRequest
5486
+ * @param {*} [options] Override http request option.
5487
+ * @throws {RequiredError}
5488
+ */
5489
+ v1CreateNodeFlare(v1CreateNodeFlareRequest: V1CreateNodeFlareRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateNodeFlareResponse>>;
3504
5490
  /**
3505
5491
  * Create an optical tube.
3506
5492
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -3508,6 +5494,27 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3508
5494
  * @throws {RequiredError}
3509
5495
  */
3510
5496
  v1CreateOpticalTube(v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
5497
+ /**
5498
+ * Set metadata and plate solve results for an image.
5499
+ * @param {V1CreateProcessedImageSetImageRequest} v1CreateProcessedImageSetImageRequest
5500
+ * @param {*} [options] Override http request option.
5501
+ * @throws {RequiredError}
5502
+ */
5503
+ v1CreateProcessedImageSetImage(v1CreateProcessedImageSetImageRequest: V1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
5504
+ /**
5505
+ * Create a time windowed asset.
5506
+ * @param {V1CreateTimeWindowedAssetRequest} v1CreateTimeWindowedAssetRequest
5507
+ * @param {*} [options] Override http request option.
5508
+ * @throws {RequiredError}
5509
+ */
5510
+ v1CreateTimeWindowedAsset(v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateTimeWindowedAssetResponse>>;
5511
+ /**
5512
+ * Get the sunrise/sunset times for a specific node by its ID
5513
+ * @param {string} nodeId
5514
+ * @param {*} [options] Override http request option.
5515
+ * @throws {RequiredError}
5516
+ */
5517
+ v1CustomerGetSuntimes(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetSuntimesResponse>>;
3511
5518
  /**
3512
5519
  * Delete an image set.
3513
5520
  * @param {string} id
@@ -3537,12 +5544,27 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3537
5544
  * @throws {RequiredError}
3538
5545
  */
3539
5546
  v1FocuserMatch(model?: string, travelDistanceMm?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Focuser>>>;
5547
+ /**
5548
+ * Get an all sky prediction by ID or image id
5549
+ * @param {string} [imageId]
5550
+ * @param {string} [id]
5551
+ * @param {*} [options] Override http request option.
5552
+ * @throws {RequiredError}
5553
+ */
5554
+ v1GetAllSkyPrediction(imageId?: string, id?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1AllSkyPrediction>>;
3540
5555
  /**
3541
5556
  * Get cameras.
3542
5557
  * @param {*} [options] Override http request option.
3543
5558
  * @throws {RequiredError}
3544
5559
  */
3545
5560
  v1GetCameras(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
5561
+ /**
5562
+ * Get a filter wheel.
5563
+ * @param {string} id
5564
+ * @param {*} [options] Override http request option.
5565
+ * @throws {RequiredError}
5566
+ */
5567
+ v1GetFilterWheel(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1FilterWheel>>;
3546
5568
  /**
3547
5569
  * Get a focuser.
3548
5570
  * @param {string} id
@@ -3585,6 +5607,21 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3585
5607
  * @throws {RequiredError}
3586
5608
  */
3587
5609
  v1GetLatestHfr(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1LatestHfrResponse>>;
5610
+ /**
5611
+ * GetLatestModel
5612
+ * @param {ModelType} modelType
5613
+ * @param {string} lineageId
5614
+ * @param {*} [options] Override http request option.
5615
+ * @throws {RequiredError}
5616
+ */
5617
+ v1GetLatestModel(modelType: ModelType, lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1MLModel>>;
5618
+ /**
5619
+ * Get merged node config body
5620
+ * @param {string} nodeId
5621
+ * @param {*} [options] Override http request option.
5622
+ * @throws {RequiredError}
5623
+ */
5624
+ v1GetMergedNodeConfigBody(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeConfigBody>>;
3588
5625
  /**
3589
5626
  * Get a mount.
3590
5627
  * @param {string} id
@@ -3593,12 +5630,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3593
5630
  */
3594
5631
  v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
3595
5632
  /**
3596
- * Get node by lineage id.
3597
- * @param {string} lineageId
5633
+ * Get node by lineage id or node id.
5634
+ * @param {string} [lineageId]
5635
+ * @param {string} [nodeId]
3598
5636
  * @param {*} [options] Override http request option.
3599
5637
  * @throws {RequiredError}
3600
5638
  */
3601
- v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
5639
+ v1GetNode(lineageId?: string, nodeId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
3602
5640
  /**
3603
5641
  * Get node commands
3604
5642
  * @param {string} nodeId
@@ -3607,13 +5645,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3607
5645
  * @throws {RequiredError}
3608
5646
  */
3609
5647
  v1GetNodeCommands(nodeId: string, executableAt: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetNodeCommandsResponse>>;
3610
- /**
3611
- * returns the current release for the node
3612
- * @param {string} lineageId lineage id
3613
- * @param {*} [options] Override http request option.
3614
- * @throws {RequiredError}
3615
- */
3616
- v1GetNodeControllerRelease(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Release>>;
3617
5648
  /**
3618
5649
  * Get node diagnostic tasks.
3619
5650
  * @param {string} nodeId
@@ -3622,6 +5653,23 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3622
5653
  * @throws {RequiredError}
3623
5654
  */
3624
5655
  v1GetNodeDiagnosticTasks(nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
5656
+ /**
5657
+ * Get node events Apex Charts timeline
5658
+ * @param {string} startTime
5659
+ * @param {string} endTime
5660
+ * @param {string} [nodeId]
5661
+ * @param {string} [lineageId]
5662
+ * @param {*} [options] Override http request option.
5663
+ * @throws {RequiredError}
5664
+ */
5665
+ v1GetNodeEventsApexChartsTimeline(startTime: string, endTime: string, nodeId?: string, lineageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ApexChartsTimeline>>;
5666
+ /**
5667
+ * Get a node flare by id.
5668
+ * @param {string} id
5669
+ * @param {*} [options] Override http request option.
5670
+ * @throws {RequiredError}
5671
+ */
5672
+ v1GetNodeFlare(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeFlare>>;
3625
5673
  /**
3626
5674
  * Get node properties.
3627
5675
  * @param {string} nodeId
@@ -3677,6 +5725,33 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3677
5725
  * @throws {RequiredError}
3678
5726
  */
3679
5727
  v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
5728
+ /**
5729
+ * Get satellites for skyAtlas. returns jsonl
5730
+ * @param {*} [options] Override http request option.
5731
+ * @throws {RequiredError}
5732
+ */
5733
+ v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
5734
+ /**
5735
+ * Get the target QCOM OTA software release for a node
5736
+ * @param {string} lineageId lineage id
5737
+ * @param {*} [options] Override http request option.
5738
+ * @throws {RequiredError}
5739
+ */
5740
+ v1GetTargetQCOMOTASoftwareReleaseForNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SoftwareRelease>>;
5741
+ /**
5742
+ * Get the target software releases for a node
5743
+ * @param {string} lineageId lineage id
5744
+ * @param {*} [options] Override http request option.
5745
+ * @throws {RequiredError}
5746
+ */
5747
+ v1GetTargetSoftwareReleasesForNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1SoftwareRelease>>>;
5748
+ /**
5749
+ * Get a time windowed asset by id.
5750
+ * @param {string} timeWindowedAssetId
5751
+ * @param {*} [options] Override http request option.
5752
+ * @throws {RequiredError}
5753
+ */
5754
+ v1GetTimeWindowedAsset(timeWindowedAssetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1TimeWindowedAsset>>;
3680
5755
  /**
3681
5756
  * issueCertificate
3682
5757
  * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
@@ -3684,6 +5759,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3684
5759
  * @throws {RequiredError}
3685
5760
  */
3686
5761
  v1IssueCertificate(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeControllerIssueCertificateResponse>>;
5762
+ /**
5763
+ * User initiated logout - revokes existing _user_ access tokens for the principal
5764
+ * @param {*} [options] Override http request option.
5765
+ * @throws {RequiredError}
5766
+ */
5767
+ v1Logout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3687
5768
  /**
3688
5769
  * Match mount.
3689
5770
  * @param {string} [model]
@@ -3691,6 +5772,38 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3691
5772
  * @throws {RequiredError}
3692
5773
  */
3693
5774
  v1MountMatch(model?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>>;
5775
+ /**
5776
+ * \' V1EnableAutonomousOperation - immediately places the system back under autonomous operation mode. !!CAUTION!! This will immediately begin slewing your system around if conditions are safe. Please ensure your system is prepared to move \'
5777
+ * @param {V1EnableAutonomousOperation} v1EnableAutonomousOperation
5778
+ * @param {*} [options] Override http request option.
5779
+ * @deprecated
5780
+ * @throws {RequiredError}
5781
+ */
5782
+ v1NodeCommandV1EnableAutonomousOperation(v1EnableAutonomousOperation: V1EnableAutonomousOperation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
5783
+ /**
5784
+ * \' V1EnableManualOperation- immediately halts all autonomous operation of the system and parks the telescope (including closing the enclosure if present). !!CAUTION!! This is an indefinite halt until V1EnableAutonomousOperation is called. Your system will not respond to weather and safety events! \'
5785
+ * @param {V1EnableManualOperation} v1EnableManualOperation
5786
+ * @param {*} [options] Override http request option.
5787
+ * @deprecated
5788
+ * @throws {RequiredError}
5789
+ */
5790
+ v1NodeCommandV1EnableManualOperation(v1EnableManualOperation: V1EnableManualOperation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
5791
+ /**
5792
+ * v1 reboot system
5793
+ * @param {V1RebootSystem} v1RebootSystem
5794
+ * @param {*} [options] Override http request option.
5795
+ * @deprecated
5796
+ * @throws {RequiredError}
5797
+ */
5798
+ v1NodeCommandV1RebootSystem(v1RebootSystem: V1RebootSystem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
5799
+ /**
5800
+ * v1 send flare
5801
+ * @param {V1SendFlare} v1SendFlare
5802
+ * @param {*} [options] Override http request option.
5803
+ * @deprecated
5804
+ * @throws {RequiredError}
5805
+ */
5806
+ v1NodeCommandV1SendFlare(v1SendFlare: V1SendFlare, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
3694
5807
  /**
3695
5808
  * Match optical tube.
3696
5809
  * @param {string} [model]
@@ -3707,6 +5820,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3707
5820
  * @throws {RequiredError}
3708
5821
  */
3709
5822
  v1RegisterNodeController(v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeController>>;
5823
+ /**
5824
+ * Requests mac addresses for the given lineage and interfaces.
5825
+ * @param {V1RequestMacAddressesRequest} v1RequestMacAddressesRequest
5826
+ * @param {*} [options] Override http request option.
5827
+ * @throws {RequiredError}
5828
+ */
5829
+ v1RequestMacAddresses(v1RequestMacAddressesRequest: V1RequestMacAddressesRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1RequestMacAddressesResponse>>;
5830
+ /**
5831
+ * Update a mount.
5832
+ * @param {V1UpdateMountRequest} v1UpdateMountRequest
5833
+ * @param {*} [options] Override http request option.
5834
+ * @throws {RequiredError}
5835
+ */
5836
+ v1UpdateMount(v1UpdateMountRequest: V1UpdateMountRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
3710
5837
  /**
3711
5838
  * Update a node.
3712
5839
  * @param {V1UpdateNodeRequest} v1UpdateNodeRequest
@@ -3721,6 +5848,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3721
5848
  * @throws {RequiredError}
3722
5849
  */
3723
5850
  v1UpdateNodeComponents(v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
5851
+ /**
5852
+ * Update an optical tube.
5853
+ * @param {V1UpdateOpticalTubeRequest} v1UpdateOpticalTubeRequest
5854
+ * @param {*} [options] Override http request option.
5855
+ * @throws {RequiredError}
5856
+ */
5857
+ v1UpdateOpticalTube(v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
3724
5858
  /**
3725
5859
  * Complete an observation utilizing the async pipeline.
3726
5860
  * @param {V2CompleteObservationRequest} v2CompleteObservationRequest
@@ -3728,12 +5862,26 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3728
5862
  * @throws {RequiredError}
3729
5863
  */
3730
5864
  v2CompleteObservation(v2CompleteObservationRequest: V2CompleteObservationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
5865
+ /**
5866
+ * V2 Issue Certificate
5867
+ * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
5868
+ * @param {*} [options] Override http request option.
5869
+ * @throws {RequiredError}
5870
+ */
5871
+ v2IssueCertificate(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2NodeControllerIssueCertificateResponse>>;
3731
5872
  };
3732
5873
  /**
3733
5874
  * DefaultApi - factory interface
3734
5875
  * @export
3735
5876
  */
3736
5877
  export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5878
+ /**
5879
+ * Get images for a node for display in a camera roll format
5880
+ * @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
5881
+ * @param {*} [options] Override http request option.
5882
+ * @throws {RequiredError}
5883
+ */
5884
+ getCameraRoll(requestParameters?: DefaultApiGetCameraRollRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1CameraRollImage>>;
3737
5885
  /**
3738
5886
  * Get the various tokens used in client applications
3739
5887
  * @param {*} [options] Override http request option.
@@ -3753,6 +5901,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3753
5901
  * @throws {RequiredError}
3754
5902
  */
3755
5903
  v1CompleteBootstrap(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
5904
+ /**
5905
+ * Complete a node flare.
5906
+ * @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
5907
+ * @param {*} [options] Override http request option.
5908
+ * @throws {RequiredError}
5909
+ */
5910
+ v1CompleteNodeFlare(requestParameters: DefaultApiV1CompleteNodeFlareRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3756
5911
  /**
3757
5912
  * Complete an observation.
3758
5913
  * @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
@@ -3760,6 +5915,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3760
5915
  * @throws {RequiredError}
3761
5916
  */
3762
5917
  v1CompleteObservation(requestParameters: DefaultApiV1CompleteObservationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
5918
+ /**
5919
+ * Create a new all sky prediction
5920
+ * @param {DefaultApiV1CreateAllSkyPredictionRequest} requestParameters Request parameters.
5921
+ * @param {*} [options] Override http request option.
5922
+ * @throws {RequiredError}
5923
+ */
5924
+ v1CreateAllSkyPrediction(requestParameters: DefaultApiV1CreateAllSkyPredictionRequest, options?: AxiosRequestConfig): AxiosPromise<V1AllSkyPrediction>;
3763
5925
  /**
3764
5926
  * Create an autofocus result.
3765
5927
  * @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
@@ -3767,6 +5929,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3767
5929
  * @throws {RequiredError}
3768
5930
  */
3769
5931
  v1CreateAutofocusResult(requestParameters: DefaultApiV1CreateAutofocusResultRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
5932
+ /**
5933
+ * Create a filter wheel.
5934
+ * @param {DefaultApiV1CreateFilterWheelRequest} requestParameters Request parameters.
5935
+ * @param {*} [options] Override http request option.
5936
+ * @throws {RequiredError}
5937
+ */
5938
+ v1CreateFilterWheel(requestParameters: DefaultApiV1CreateFilterWheelRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
3770
5939
  /**
3771
5940
  * Create an focuser.
3772
5941
  * @param {DefaultApiV1CreateFocuserRequest} requestParameters Request parameters.
@@ -3788,6 +5957,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3788
5957
  * @throws {RequiredError}
3789
5958
  */
3790
5959
  v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
5960
+ /**
5961
+ * Create an image set image upload url.
5962
+ * @param {DefaultApiV1CreateImageSetImageUploadUrlRequest} requestParameters Request parameters.
5963
+ * @param {*} [options] Override http request option.
5964
+ * @throws {RequiredError}
5965
+ */
5966
+ v1CreateImageSetImageUploadUrl(requestParameters: DefaultApiV1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageUploadUrlResponse>;
3791
5967
  /**
3792
5968
  * Create metrics.
3793
5969
  * @param {DefaultApiV1CreateMetricsRequest} requestParameters Request parameters.
@@ -3830,6 +6006,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3830
6006
  * @throws {RequiredError}
3831
6007
  */
3832
6008
  v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
6009
+ /**
6010
+ * Create a node flare.
6011
+ * @param {DefaultApiV1CreateNodeFlareRequest} requestParameters Request parameters.
6012
+ * @param {*} [options] Override http request option.
6013
+ * @throws {RequiredError}
6014
+ */
6015
+ v1CreateNodeFlare(requestParameters: DefaultApiV1CreateNodeFlareRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateNodeFlareResponse>;
3833
6016
  /**
3834
6017
  * Create an optical tube.
3835
6018
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -3837,6 +6020,27 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3837
6020
  * @throws {RequiredError}
3838
6021
  */
3839
6022
  v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
6023
+ /**
6024
+ * Set metadata and plate solve results for an image.
6025
+ * @param {DefaultApiV1CreateProcessedImageSetImageRequest} requestParameters Request parameters.
6026
+ * @param {*} [options] Override http request option.
6027
+ * @throws {RequiredError}
6028
+ */
6029
+ v1CreateProcessedImageSetImage(requestParameters: DefaultApiV1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
6030
+ /**
6031
+ * Create a time windowed asset.
6032
+ * @param {DefaultApiV1CreateTimeWindowedAssetRequest} requestParameters Request parameters.
6033
+ * @param {*} [options] Override http request option.
6034
+ * @throws {RequiredError}
6035
+ */
6036
+ v1CreateTimeWindowedAsset(requestParameters: DefaultApiV1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateTimeWindowedAssetResponse>;
6037
+ /**
6038
+ * Get the sunrise/sunset times for a specific node by its ID
6039
+ * @param {DefaultApiV1CustomerGetSuntimesRequest} requestParameters Request parameters.
6040
+ * @param {*} [options] Override http request option.
6041
+ * @throws {RequiredError}
6042
+ */
6043
+ v1CustomerGetSuntimes(requestParameters: DefaultApiV1CustomerGetSuntimesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetSuntimesResponse>;
3840
6044
  /**
3841
6045
  * Delete an image set.
3842
6046
  * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
@@ -3865,12 +6069,26 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3865
6069
  * @throws {RequiredError}
3866
6070
  */
3867
6071
  v1FocuserMatch(requestParameters?: DefaultApiV1FocuserMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Focuser>>;
6072
+ /**
6073
+ * Get an all sky prediction by ID or image id
6074
+ * @param {DefaultApiV1GetAllSkyPredictionRequest} requestParameters Request parameters.
6075
+ * @param {*} [options] Override http request option.
6076
+ * @throws {RequiredError}
6077
+ */
6078
+ v1GetAllSkyPrediction(requestParameters?: DefaultApiV1GetAllSkyPredictionRequest, options?: AxiosRequestConfig): AxiosPromise<V1AllSkyPrediction>;
3868
6079
  /**
3869
6080
  * Get cameras.
3870
6081
  * @param {*} [options] Override http request option.
3871
6082
  * @throws {RequiredError}
3872
6083
  */
3873
6084
  v1GetCameras(options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
6085
+ /**
6086
+ * Get a filter wheel.
6087
+ * @param {DefaultApiV1GetFilterWheelRequest} requestParameters Request parameters.
6088
+ * @param {*} [options] Override http request option.
6089
+ * @throws {RequiredError}
6090
+ */
6091
+ v1GetFilterWheel(requestParameters: DefaultApiV1GetFilterWheelRequest, options?: AxiosRequestConfig): AxiosPromise<V1FilterWheel>;
3874
6092
  /**
3875
6093
  * Get a focuser.
3876
6094
  * @param {DefaultApiV1GetFocuserRequest} requestParameters Request parameters.
@@ -3913,6 +6131,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3913
6131
  * @throws {RequiredError}
3914
6132
  */
3915
6133
  v1GetLatestHfr(requestParameters: DefaultApiV1GetLatestHfrRequest, options?: AxiosRequestConfig): AxiosPromise<V1LatestHfrResponse>;
6134
+ /**
6135
+ * GetLatestModel
6136
+ * @param {DefaultApiV1GetLatestModelRequest} requestParameters Request parameters.
6137
+ * @param {*} [options] Override http request option.
6138
+ * @throws {RequiredError}
6139
+ */
6140
+ v1GetLatestModel(requestParameters: DefaultApiV1GetLatestModelRequest, options?: AxiosRequestConfig): AxiosPromise<V1MLModel>;
6141
+ /**
6142
+ * Get merged node config body
6143
+ * @param {DefaultApiV1GetMergedNodeConfigBodyRequest} requestParameters Request parameters.
6144
+ * @param {*} [options] Override http request option.
6145
+ * @throws {RequiredError}
6146
+ */
6147
+ v1GetMergedNodeConfigBody(requestParameters: DefaultApiV1GetMergedNodeConfigBodyRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeConfigBody>;
3916
6148
  /**
3917
6149
  * Get a mount.
3918
6150
  * @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
@@ -3921,12 +6153,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3921
6153
  */
3922
6154
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
3923
6155
  /**
3924
- * Get node by lineage id.
6156
+ * Get node by lineage id or node id.
3925
6157
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3926
6158
  * @param {*} [options] Override http request option.
3927
6159
  * @throws {RequiredError}
3928
6160
  */
3929
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
6161
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3930
6162
  /**
3931
6163
  * Get node commands
3932
6164
  * @param {DefaultApiV1GetNodeCommandsRequest} requestParameters Request parameters.
@@ -3935,19 +6167,26 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3935
6167
  */
3936
6168
  v1GetNodeCommands(requestParameters: DefaultApiV1GetNodeCommandsRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetNodeCommandsResponse>;
3937
6169
  /**
3938
- * returns the current release for the node
3939
- * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
6170
+ * Get node diagnostic tasks.
6171
+ * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
3940
6172
  * @param {*} [options] Override http request option.
3941
6173
  * @throws {RequiredError}
3942
6174
  */
3943
- v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): AxiosPromise<V1Release>;
6175
+ v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeDiagnosticType>>;
3944
6176
  /**
3945
- * Get node diagnostic tasks.
3946
- * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
6177
+ * Get node events Apex Charts timeline
6178
+ * @param {DefaultApiV1GetNodeEventsApexChartsTimelineRequest} requestParameters Request parameters.
3947
6179
  * @param {*} [options] Override http request option.
3948
6180
  * @throws {RequiredError}
3949
6181
  */
3950
- v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeDiagnosticType>>;
6182
+ v1GetNodeEventsApexChartsTimeline(requestParameters: DefaultApiV1GetNodeEventsApexChartsTimelineRequest, options?: AxiosRequestConfig): AxiosPromise<V1ApexChartsTimeline>;
6183
+ /**
6184
+ * Get a node flare by id.
6185
+ * @param {DefaultApiV1GetNodeFlareRequest} requestParameters Request parameters.
6186
+ * @param {*} [options] Override http request option.
6187
+ * @throws {RequiredError}
6188
+ */
6189
+ v1GetNodeFlare(requestParameters: DefaultApiV1GetNodeFlareRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeFlare>;
3951
6190
  /**
3952
6191
  * Get node properties.
3953
6192
  * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
@@ -4003,6 +6242,33 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4003
6242
  * @throws {RequiredError}
4004
6243
  */
4005
6244
  v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
6245
+ /**
6246
+ * Get satellites for skyAtlas. returns jsonl
6247
+ * @param {*} [options] Override http request option.
6248
+ * @throws {RequiredError}
6249
+ */
6250
+ v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): AxiosPromise<File>;
6251
+ /**
6252
+ * Get the target QCOM OTA software release for a node
6253
+ * @param {DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest} requestParameters Request parameters.
6254
+ * @param {*} [options] Override http request option.
6255
+ * @throws {RequiredError}
6256
+ */
6257
+ v1GetTargetQCOMOTASoftwareReleaseForNode(requestParameters: DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1SoftwareRelease>;
6258
+ /**
6259
+ * Get the target software releases for a node
6260
+ * @param {DefaultApiV1GetTargetSoftwareReleasesForNodeRequest} requestParameters Request parameters.
6261
+ * @param {*} [options] Override http request option.
6262
+ * @throws {RequiredError}
6263
+ */
6264
+ v1GetTargetSoftwareReleasesForNode(requestParameters: DefaultApiV1GetTargetSoftwareReleasesForNodeRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1SoftwareRelease>>;
6265
+ /**
6266
+ * Get a time windowed asset by id.
6267
+ * @param {DefaultApiV1GetTimeWindowedAssetRequest} requestParameters Request parameters.
6268
+ * @param {*} [options] Override http request option.
6269
+ * @throws {RequiredError}
6270
+ */
6271
+ v1GetTimeWindowedAsset(requestParameters: DefaultApiV1GetTimeWindowedAssetRequest, options?: AxiosRequestConfig): AxiosPromise<V1TimeWindowedAsset>;
4006
6272
  /**
4007
6273
  * issueCertificate
4008
6274
  * @param {DefaultApiV1IssueCertificateRequest} requestParameters Request parameters.
@@ -4010,6 +6276,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4010
6276
  * @throws {RequiredError}
4011
6277
  */
4012
6278
  v1IssueCertificate(requestParameters: DefaultApiV1IssueCertificateRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeControllerIssueCertificateResponse>;
6279
+ /**
6280
+ * User initiated logout - revokes existing _user_ access tokens for the principal
6281
+ * @param {*} [options] Override http request option.
6282
+ * @throws {RequiredError}
6283
+ */
6284
+ v1Logout(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
4013
6285
  /**
4014
6286
  * Match mount.
4015
6287
  * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
@@ -4017,6 +6289,38 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4017
6289
  * @throws {RequiredError}
4018
6290
  */
4019
6291
  v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>>;
6292
+ /**
6293
+ * \' V1EnableAutonomousOperation - immediately places the system back under autonomous operation mode. !!CAUTION!! This will immediately begin slewing your system around if conditions are safe. Please ensure your system is prepared to move \'
6294
+ * @param {DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest} requestParameters Request parameters.
6295
+ * @param {*} [options] Override http request option.
6296
+ * @deprecated
6297
+ * @throws {RequiredError}
6298
+ */
6299
+ v1NodeCommandV1EnableAutonomousOperation(requestParameters: DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
6300
+ /**
6301
+ * \' V1EnableManualOperation- immediately halts all autonomous operation of the system and parks the telescope (including closing the enclosure if present). !!CAUTION!! This is an indefinite halt until V1EnableAutonomousOperation is called. Your system will not respond to weather and safety events! \'
6302
+ * @param {DefaultApiV1NodeCommandV1EnableManualOperationRequest} requestParameters Request parameters.
6303
+ * @param {*} [options] Override http request option.
6304
+ * @deprecated
6305
+ * @throws {RequiredError}
6306
+ */
6307
+ v1NodeCommandV1EnableManualOperation(requestParameters: DefaultApiV1NodeCommandV1EnableManualOperationRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
6308
+ /**
6309
+ * v1 reboot system
6310
+ * @param {DefaultApiV1NodeCommandV1RebootSystemRequest} requestParameters Request parameters.
6311
+ * @param {*} [options] Override http request option.
6312
+ * @deprecated
6313
+ * @throws {RequiredError}
6314
+ */
6315
+ v1NodeCommandV1RebootSystem(requestParameters: DefaultApiV1NodeCommandV1RebootSystemRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
6316
+ /**
6317
+ * v1 send flare
6318
+ * @param {DefaultApiV1NodeCommandV1SendFlareRequest} requestParameters Request parameters.
6319
+ * @param {*} [options] Override http request option.
6320
+ * @deprecated
6321
+ * @throws {RequiredError}
6322
+ */
6323
+ v1NodeCommandV1SendFlare(requestParameters: DefaultApiV1NodeCommandV1SendFlareRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
4020
6324
  /**
4021
6325
  * Match optical tube.
4022
6326
  * @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
@@ -4031,6 +6335,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4031
6335
  * @throws {RequiredError}
4032
6336
  */
4033
6337
  v1RegisterNodeController(requestParameters: DefaultApiV1RegisterNodeControllerRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeController>;
6338
+ /**
6339
+ * Requests mac addresses for the given lineage and interfaces.
6340
+ * @param {DefaultApiV1RequestMacAddressesRequest} requestParameters Request parameters.
6341
+ * @param {*} [options] Override http request option.
6342
+ * @throws {RequiredError}
6343
+ */
6344
+ v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): AxiosPromise<V1RequestMacAddressesResponse>;
6345
+ /**
6346
+ * Update a mount.
6347
+ * @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
6348
+ * @param {*} [options] Override http request option.
6349
+ * @throws {RequiredError}
6350
+ */
6351
+ v1UpdateMount(requestParameters: DefaultApiV1UpdateMountRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
4034
6352
  /**
4035
6353
  * Update a node.
4036
6354
  * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
@@ -4045,6 +6363,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4045
6363
  * @throws {RequiredError}
4046
6364
  */
4047
6365
  v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
6366
+ /**
6367
+ * Update an optical tube.
6368
+ * @param {DefaultApiV1UpdateOpticalTubeRequest} requestParameters Request parameters.
6369
+ * @param {*} [options] Override http request option.
6370
+ * @throws {RequiredError}
6371
+ */
6372
+ v1UpdateOpticalTube(requestParameters: DefaultApiV1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
4048
6373
  /**
4049
6374
  * Complete an observation utilizing the async pipeline.
4050
6375
  * @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
@@ -4052,7 +6377,45 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4052
6377
  * @throws {RequiredError}
4053
6378
  */
4054
6379
  v2CompleteObservation(requestParameters: DefaultApiV2CompleteObservationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
6380
+ /**
6381
+ * V2 Issue Certificate
6382
+ * @param {DefaultApiV2IssueCertificateRequest} requestParameters Request parameters.
6383
+ * @param {*} [options] Override http request option.
6384
+ * @throws {RequiredError}
6385
+ */
6386
+ v2IssueCertificate(requestParameters: DefaultApiV2IssueCertificateRequest, options?: AxiosRequestConfig): AxiosPromise<V2NodeControllerIssueCertificateResponse>;
4055
6387
  };
6388
+ /**
6389
+ * Request parameters for getCameraRoll operation in DefaultApi.
6390
+ * @export
6391
+ * @interface DefaultApiGetCameraRollRequest
6392
+ */
6393
+ export interface DefaultApiGetCameraRollRequest {
6394
+ /**
6395
+ *
6396
+ * @type {string}
6397
+ * @memberof DefaultApiGetCameraRoll
6398
+ */
6399
+ readonly nodeId?: string;
6400
+ /**
6401
+ *
6402
+ * @type {string}
6403
+ * @memberof DefaultApiGetCameraRoll
6404
+ */
6405
+ readonly lineageId?: string;
6406
+ /**
6407
+ *
6408
+ * @type {string}
6409
+ * @memberof DefaultApiGetCameraRoll
6410
+ */
6411
+ readonly before?: string;
6412
+ /**
6413
+ * Comma separated array of [ImageSetType](#model/imagesettype)
6414
+ * @type {string}
6415
+ * @memberof DefaultApiGetCameraRoll
6416
+ */
6417
+ readonly types?: string;
6418
+ }
4056
6419
  /**
4057
6420
  * Request parameters for v1CameraMatch operation in DefaultApi.
4058
6421
  * @export
@@ -4108,6 +6471,19 @@ export interface DefaultApiV1CameraMatchRequest {
4108
6471
  */
4109
6472
  readonly isColor?: boolean;
4110
6473
  }
6474
+ /**
6475
+ * Request parameters for v1CompleteNodeFlare operation in DefaultApi.
6476
+ * @export
6477
+ * @interface DefaultApiV1CompleteNodeFlareRequest
6478
+ */
6479
+ export interface DefaultApiV1CompleteNodeFlareRequest {
6480
+ /**
6481
+ *
6482
+ * @type {V1CompleteNodeFlareRequest}
6483
+ * @memberof DefaultApiV1CompleteNodeFlare
6484
+ */
6485
+ readonly v1CompleteNodeFlareRequest: V1CompleteNodeFlareRequest;
6486
+ }
4111
6487
  /**
4112
6488
  * Request parameters for v1CompleteObservation operation in DefaultApi.
4113
6489
  * @export
@@ -4121,6 +6497,19 @@ export interface DefaultApiV1CompleteObservationRequest {
4121
6497
  */
4122
6498
  readonly v1CompleteObservationRequest: V1CompleteObservationRequest;
4123
6499
  }
6500
+ /**
6501
+ * Request parameters for v1CreateAllSkyPrediction operation in DefaultApi.
6502
+ * @export
6503
+ * @interface DefaultApiV1CreateAllSkyPredictionRequest
6504
+ */
6505
+ export interface DefaultApiV1CreateAllSkyPredictionRequest {
6506
+ /**
6507
+ *
6508
+ * @type {V1CreateAllSkyPredictionRequest}
6509
+ * @memberof DefaultApiV1CreateAllSkyPrediction
6510
+ */
6511
+ readonly v1CreateAllSkyPredictionRequest: V1CreateAllSkyPredictionRequest;
6512
+ }
4124
6513
  /**
4125
6514
  * Request parameters for v1CreateAutofocusResult operation in DefaultApi.
4126
6515
  * @export
@@ -4134,6 +6523,19 @@ export interface DefaultApiV1CreateAutofocusResultRequest {
4134
6523
  */
4135
6524
  readonly v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest;
4136
6525
  }
6526
+ /**
6527
+ * Request parameters for v1CreateFilterWheel operation in DefaultApi.
6528
+ * @export
6529
+ * @interface DefaultApiV1CreateFilterWheelRequest
6530
+ */
6531
+ export interface DefaultApiV1CreateFilterWheelRequest {
6532
+ /**
6533
+ *
6534
+ * @type {V1CreateFilterWheelRequest}
6535
+ * @memberof DefaultApiV1CreateFilterWheel
6536
+ */
6537
+ readonly v1CreateFilterWheelRequest: V1CreateFilterWheelRequest;
6538
+ }
4137
6539
  /**
4138
6540
  * Request parameters for v1CreateFocuser operation in DefaultApi.
4139
6541
  * @export
@@ -4173,6 +6575,19 @@ export interface DefaultApiV1CreateImageSetImageRequest {
4173
6575
  */
4174
6576
  readonly v1CreateImageSetImageRequest: V1CreateImageSetImageRequest;
4175
6577
  }
6578
+ /**
6579
+ * Request parameters for v1CreateImageSetImageUploadUrl operation in DefaultApi.
6580
+ * @export
6581
+ * @interface DefaultApiV1CreateImageSetImageUploadUrlRequest
6582
+ */
6583
+ export interface DefaultApiV1CreateImageSetImageUploadUrlRequest {
6584
+ /**
6585
+ *
6586
+ * @type {V1CreateImageSetImageUploadUrlRequest}
6587
+ * @memberof DefaultApiV1CreateImageSetImageUploadUrl
6588
+ */
6589
+ readonly v1CreateImageSetImageUploadUrlRequest: V1CreateImageSetImageUploadUrlRequest;
6590
+ }
4176
6591
  /**
4177
6592
  * Request parameters for v1CreateMetrics operation in DefaultApi.
4178
6593
  * @export
@@ -4251,6 +6666,19 @@ export interface DefaultApiV1CreateNodeEventsRequest {
4251
6666
  */
4252
6667
  readonly v1CreateNodeEventsRequest: V1CreateNodeEventsRequest;
4253
6668
  }
6669
+ /**
6670
+ * Request parameters for v1CreateNodeFlare operation in DefaultApi.
6671
+ * @export
6672
+ * @interface DefaultApiV1CreateNodeFlareRequest
6673
+ */
6674
+ export interface DefaultApiV1CreateNodeFlareRequest {
6675
+ /**
6676
+ *
6677
+ * @type {V1CreateNodeFlareRequest}
6678
+ * @memberof DefaultApiV1CreateNodeFlare
6679
+ */
6680
+ readonly v1CreateNodeFlareRequest: V1CreateNodeFlareRequest;
6681
+ }
4254
6682
  /**
4255
6683
  * Request parameters for v1CreateOpticalTube operation in DefaultApi.
4256
6684
  * @export
@@ -4264,6 +6692,45 @@ export interface DefaultApiV1CreateOpticalTubeRequest {
4264
6692
  */
4265
6693
  readonly v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest;
4266
6694
  }
6695
+ /**
6696
+ * Request parameters for v1CreateProcessedImageSetImage operation in DefaultApi.
6697
+ * @export
6698
+ * @interface DefaultApiV1CreateProcessedImageSetImageRequest
6699
+ */
6700
+ export interface DefaultApiV1CreateProcessedImageSetImageRequest {
6701
+ /**
6702
+ *
6703
+ * @type {V1CreateProcessedImageSetImageRequest}
6704
+ * @memberof DefaultApiV1CreateProcessedImageSetImage
6705
+ */
6706
+ readonly v1CreateProcessedImageSetImageRequest: V1CreateProcessedImageSetImageRequest;
6707
+ }
6708
+ /**
6709
+ * Request parameters for v1CreateTimeWindowedAsset operation in DefaultApi.
6710
+ * @export
6711
+ * @interface DefaultApiV1CreateTimeWindowedAssetRequest
6712
+ */
6713
+ export interface DefaultApiV1CreateTimeWindowedAssetRequest {
6714
+ /**
6715
+ *
6716
+ * @type {V1CreateTimeWindowedAssetRequest}
6717
+ * @memberof DefaultApiV1CreateTimeWindowedAsset
6718
+ */
6719
+ readonly v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest;
6720
+ }
6721
+ /**
6722
+ * Request parameters for v1CustomerGetSuntimes operation in DefaultApi.
6723
+ * @export
6724
+ * @interface DefaultApiV1CustomerGetSuntimesRequest
6725
+ */
6726
+ export interface DefaultApiV1CustomerGetSuntimesRequest {
6727
+ /**
6728
+ *
6729
+ * @type {string}
6730
+ * @memberof DefaultApiV1CustomerGetSuntimes
6731
+ */
6732
+ readonly nodeId: string;
6733
+ }
4267
6734
  /**
4268
6735
  * Request parameters for v1DeleteImageSet operation in DefaultApi.
4269
6736
  * @export
@@ -4322,6 +6789,38 @@ export interface DefaultApiV1FocuserMatchRequest {
4322
6789
  */
4323
6790
  readonly travelDistanceMm?: number;
4324
6791
  }
6792
+ /**
6793
+ * Request parameters for v1GetAllSkyPrediction operation in DefaultApi.
6794
+ * @export
6795
+ * @interface DefaultApiV1GetAllSkyPredictionRequest
6796
+ */
6797
+ export interface DefaultApiV1GetAllSkyPredictionRequest {
6798
+ /**
6799
+ *
6800
+ * @type {string}
6801
+ * @memberof DefaultApiV1GetAllSkyPrediction
6802
+ */
6803
+ readonly imageId?: string;
6804
+ /**
6805
+ *
6806
+ * @type {string}
6807
+ * @memberof DefaultApiV1GetAllSkyPrediction
6808
+ */
6809
+ readonly id?: string;
6810
+ }
6811
+ /**
6812
+ * Request parameters for v1GetFilterWheel operation in DefaultApi.
6813
+ * @export
6814
+ * @interface DefaultApiV1GetFilterWheelRequest
6815
+ */
6816
+ export interface DefaultApiV1GetFilterWheelRequest {
6817
+ /**
6818
+ *
6819
+ * @type {string}
6820
+ * @memberof DefaultApiV1GetFilterWheel
6821
+ */
6822
+ readonly id: string;
6823
+ }
4325
6824
  /**
4326
6825
  * Request parameters for v1GetFocuser operation in DefaultApi.
4327
6826
  * @export
@@ -4400,6 +6899,38 @@ export interface DefaultApiV1GetLatestHfrRequest {
4400
6899
  */
4401
6900
  readonly nodeId: string;
4402
6901
  }
6902
+ /**
6903
+ * Request parameters for v1GetLatestModel operation in DefaultApi.
6904
+ * @export
6905
+ * @interface DefaultApiV1GetLatestModelRequest
6906
+ */
6907
+ export interface DefaultApiV1GetLatestModelRequest {
6908
+ /**
6909
+ *
6910
+ * @type {ModelType}
6911
+ * @memberof DefaultApiV1GetLatestModel
6912
+ */
6913
+ readonly modelType: ModelType;
6914
+ /**
6915
+ *
6916
+ * @type {string}
6917
+ * @memberof DefaultApiV1GetLatestModel
6918
+ */
6919
+ readonly lineageId: string;
6920
+ }
6921
+ /**
6922
+ * Request parameters for v1GetMergedNodeConfigBody operation in DefaultApi.
6923
+ * @export
6924
+ * @interface DefaultApiV1GetMergedNodeConfigBodyRequest
6925
+ */
6926
+ export interface DefaultApiV1GetMergedNodeConfigBodyRequest {
6927
+ /**
6928
+ *
6929
+ * @type {string}
6930
+ * @memberof DefaultApiV1GetMergedNodeConfigBody
6931
+ */
6932
+ readonly nodeId: string;
6933
+ }
4403
6934
  /**
4404
6935
  * Request parameters for v1GetMount operation in DefaultApi.
4405
6936
  * @export
@@ -4424,58 +6955,95 @@ export interface DefaultApiV1GetNodeRequest {
4424
6955
  * @type {string}
4425
6956
  * @memberof DefaultApiV1GetNode
4426
6957
  */
4427
- readonly lineageId: string;
6958
+ readonly lineageId?: string;
6959
+ /**
6960
+ *
6961
+ * @type {string}
6962
+ * @memberof DefaultApiV1GetNode
6963
+ */
6964
+ readonly nodeId?: string;
6965
+ }
6966
+ /**
6967
+ * Request parameters for v1GetNodeCommands operation in DefaultApi.
6968
+ * @export
6969
+ * @interface DefaultApiV1GetNodeCommandsRequest
6970
+ */
6971
+ export interface DefaultApiV1GetNodeCommandsRequest {
6972
+ /**
6973
+ *
6974
+ * @type {string}
6975
+ * @memberof DefaultApiV1GetNodeCommands
6976
+ */
6977
+ readonly nodeId: string;
6978
+ /**
6979
+ *
6980
+ * @type {string}
6981
+ * @memberof DefaultApiV1GetNodeCommands
6982
+ */
6983
+ readonly executableAt: string;
6984
+ }
6985
+ /**
6986
+ * Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
6987
+ * @export
6988
+ * @interface DefaultApiV1GetNodeDiagnosticTasksRequest
6989
+ */
6990
+ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
6991
+ /**
6992
+ *
6993
+ * @type {string}
6994
+ * @memberof DefaultApiV1GetNodeDiagnosticTasks
6995
+ */
6996
+ readonly nodeId: string;
6997
+ /**
6998
+ *
6999
+ * @type {Array<V1NodeDiagnosticType>}
7000
+ * @memberof DefaultApiV1GetNodeDiagnosticTasks
7001
+ */
7002
+ readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>;
4428
7003
  }
4429
7004
  /**
4430
- * Request parameters for v1GetNodeCommands operation in DefaultApi.
7005
+ * Request parameters for v1GetNodeEventsApexChartsTimeline operation in DefaultApi.
4431
7006
  * @export
4432
- * @interface DefaultApiV1GetNodeCommandsRequest
7007
+ * @interface DefaultApiV1GetNodeEventsApexChartsTimelineRequest
4433
7008
  */
4434
- export interface DefaultApiV1GetNodeCommandsRequest {
7009
+ export interface DefaultApiV1GetNodeEventsApexChartsTimelineRequest {
4435
7010
  /**
4436
7011
  *
4437
7012
  * @type {string}
4438
- * @memberof DefaultApiV1GetNodeCommands
7013
+ * @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
4439
7014
  */
4440
- readonly nodeId: string;
7015
+ readonly startTime: string;
4441
7016
  /**
4442
7017
  *
4443
7018
  * @type {string}
4444
- * @memberof DefaultApiV1GetNodeCommands
7019
+ * @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
4445
7020
  */
4446
- readonly executableAt: string;
4447
- }
4448
- /**
4449
- * Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
4450
- * @export
4451
- * @interface DefaultApiV1GetNodeControllerReleaseRequest
4452
- */
4453
- export interface DefaultApiV1GetNodeControllerReleaseRequest {
7021
+ readonly endTime: string;
4454
7022
  /**
4455
- * lineage id
7023
+ *
4456
7024
  * @type {string}
4457
- * @memberof DefaultApiV1GetNodeControllerRelease
7025
+ * @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
4458
7026
  */
4459
- readonly lineageId: string;
7027
+ readonly nodeId?: string;
7028
+ /**
7029
+ *
7030
+ * @type {string}
7031
+ * @memberof DefaultApiV1GetNodeEventsApexChartsTimeline
7032
+ */
7033
+ readonly lineageId?: string;
4460
7034
  }
4461
7035
  /**
4462
- * Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
7036
+ * Request parameters for v1GetNodeFlare operation in DefaultApi.
4463
7037
  * @export
4464
- * @interface DefaultApiV1GetNodeDiagnosticTasksRequest
7038
+ * @interface DefaultApiV1GetNodeFlareRequest
4465
7039
  */
4466
- export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
7040
+ export interface DefaultApiV1GetNodeFlareRequest {
4467
7041
  /**
4468
7042
  *
4469
7043
  * @type {string}
4470
- * @memberof DefaultApiV1GetNodeDiagnosticTasks
4471
- */
4472
- readonly nodeId: string;
4473
- /**
4474
- *
4475
- * @type {Array<V1NodeDiagnosticType>}
4476
- * @memberof DefaultApiV1GetNodeDiagnosticTasks
7044
+ * @memberof DefaultApiV1GetNodeFlare
4477
7045
  */
4478
- readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>;
7046
+ readonly id: string;
4479
7047
  }
4480
7048
  /**
4481
7049
  * Request parameters for v1GetNodeProperties operation in DefaultApi.
@@ -4568,6 +7136,45 @@ export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
4568
7136
  */
4569
7137
  readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
4570
7138
  }
7139
+ /**
7140
+ * Request parameters for v1GetTargetQCOMOTASoftwareReleaseForNode operation in DefaultApi.
7141
+ * @export
7142
+ * @interface DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest
7143
+ */
7144
+ export interface DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest {
7145
+ /**
7146
+ * lineage id
7147
+ * @type {string}
7148
+ * @memberof DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNode
7149
+ */
7150
+ readonly lineageId: string;
7151
+ }
7152
+ /**
7153
+ * Request parameters for v1GetTargetSoftwareReleasesForNode operation in DefaultApi.
7154
+ * @export
7155
+ * @interface DefaultApiV1GetTargetSoftwareReleasesForNodeRequest
7156
+ */
7157
+ export interface DefaultApiV1GetTargetSoftwareReleasesForNodeRequest {
7158
+ /**
7159
+ * lineage id
7160
+ * @type {string}
7161
+ * @memberof DefaultApiV1GetTargetSoftwareReleasesForNode
7162
+ */
7163
+ readonly lineageId: string;
7164
+ }
7165
+ /**
7166
+ * Request parameters for v1GetTimeWindowedAsset operation in DefaultApi.
7167
+ * @export
7168
+ * @interface DefaultApiV1GetTimeWindowedAssetRequest
7169
+ */
7170
+ export interface DefaultApiV1GetTimeWindowedAssetRequest {
7171
+ /**
7172
+ *
7173
+ * @type {string}
7174
+ * @memberof DefaultApiV1GetTimeWindowedAsset
7175
+ */
7176
+ readonly timeWindowedAssetId: string;
7177
+ }
4571
7178
  /**
4572
7179
  * Request parameters for v1IssueCertificate operation in DefaultApi.
4573
7180
  * @export
@@ -4594,6 +7201,58 @@ export interface DefaultApiV1MountMatchRequest {
4594
7201
  */
4595
7202
  readonly model?: string;
4596
7203
  }
7204
+ /**
7205
+ * Request parameters for v1NodeCommandV1EnableAutonomousOperation operation in DefaultApi.
7206
+ * @export
7207
+ * @interface DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest
7208
+ */
7209
+ export interface DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest {
7210
+ /**
7211
+ *
7212
+ * @type {V1EnableAutonomousOperation}
7213
+ * @memberof DefaultApiV1NodeCommandV1EnableAutonomousOperation
7214
+ */
7215
+ readonly v1EnableAutonomousOperation: V1EnableAutonomousOperation;
7216
+ }
7217
+ /**
7218
+ * Request parameters for v1NodeCommandV1EnableManualOperation operation in DefaultApi.
7219
+ * @export
7220
+ * @interface DefaultApiV1NodeCommandV1EnableManualOperationRequest
7221
+ */
7222
+ export interface DefaultApiV1NodeCommandV1EnableManualOperationRequest {
7223
+ /**
7224
+ *
7225
+ * @type {V1EnableManualOperation}
7226
+ * @memberof DefaultApiV1NodeCommandV1EnableManualOperation
7227
+ */
7228
+ readonly v1EnableManualOperation: V1EnableManualOperation;
7229
+ }
7230
+ /**
7231
+ * Request parameters for v1NodeCommandV1RebootSystem operation in DefaultApi.
7232
+ * @export
7233
+ * @interface DefaultApiV1NodeCommandV1RebootSystemRequest
7234
+ */
7235
+ export interface DefaultApiV1NodeCommandV1RebootSystemRequest {
7236
+ /**
7237
+ *
7238
+ * @type {V1RebootSystem}
7239
+ * @memberof DefaultApiV1NodeCommandV1RebootSystem
7240
+ */
7241
+ readonly v1RebootSystem: V1RebootSystem;
7242
+ }
7243
+ /**
7244
+ * Request parameters for v1NodeCommandV1SendFlare operation in DefaultApi.
7245
+ * @export
7246
+ * @interface DefaultApiV1NodeCommandV1SendFlareRequest
7247
+ */
7248
+ export interface DefaultApiV1NodeCommandV1SendFlareRequest {
7249
+ /**
7250
+ *
7251
+ * @type {V1SendFlare}
7252
+ * @memberof DefaultApiV1NodeCommandV1SendFlare
7253
+ */
7254
+ readonly v1SendFlare: V1SendFlare;
7255
+ }
4597
7256
  /**
4598
7257
  * Request parameters for v1OpticalTubeMatch operation in DefaultApi.
4599
7258
  * @export
@@ -4632,6 +7291,32 @@ export interface DefaultApiV1RegisterNodeControllerRequest {
4632
7291
  */
4633
7292
  readonly v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest;
4634
7293
  }
7294
+ /**
7295
+ * Request parameters for v1RequestMacAddresses operation in DefaultApi.
7296
+ * @export
7297
+ * @interface DefaultApiV1RequestMacAddressesRequest
7298
+ */
7299
+ export interface DefaultApiV1RequestMacAddressesRequest {
7300
+ /**
7301
+ *
7302
+ * @type {V1RequestMacAddressesRequest}
7303
+ * @memberof DefaultApiV1RequestMacAddresses
7304
+ */
7305
+ readonly v1RequestMacAddressesRequest: V1RequestMacAddressesRequest;
7306
+ }
7307
+ /**
7308
+ * Request parameters for v1UpdateMount operation in DefaultApi.
7309
+ * @export
7310
+ * @interface DefaultApiV1UpdateMountRequest
7311
+ */
7312
+ export interface DefaultApiV1UpdateMountRequest {
7313
+ /**
7314
+ *
7315
+ * @type {V1UpdateMountRequest}
7316
+ * @memberof DefaultApiV1UpdateMount
7317
+ */
7318
+ readonly v1UpdateMountRequest: V1UpdateMountRequest;
7319
+ }
4635
7320
  /**
4636
7321
  * Request parameters for v1UpdateNode operation in DefaultApi.
4637
7322
  * @export
@@ -4658,6 +7343,19 @@ export interface DefaultApiV1UpdateNodeComponentsRequest {
4658
7343
  */
4659
7344
  readonly v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest;
4660
7345
  }
7346
+ /**
7347
+ * Request parameters for v1UpdateOpticalTube operation in DefaultApi.
7348
+ * @export
7349
+ * @interface DefaultApiV1UpdateOpticalTubeRequest
7350
+ */
7351
+ export interface DefaultApiV1UpdateOpticalTubeRequest {
7352
+ /**
7353
+ *
7354
+ * @type {V1UpdateOpticalTubeRequest}
7355
+ * @memberof DefaultApiV1UpdateOpticalTube
7356
+ */
7357
+ readonly v1UpdateOpticalTubeRequest: V1UpdateOpticalTubeRequest;
7358
+ }
4661
7359
  /**
4662
7360
  * Request parameters for v2CompleteObservation operation in DefaultApi.
4663
7361
  * @export
@@ -4671,6 +7369,19 @@ export interface DefaultApiV2CompleteObservationRequest {
4671
7369
  */
4672
7370
  readonly v2CompleteObservationRequest: V2CompleteObservationRequest;
4673
7371
  }
7372
+ /**
7373
+ * Request parameters for v2IssueCertificate operation in DefaultApi.
7374
+ * @export
7375
+ * @interface DefaultApiV2IssueCertificateRequest
7376
+ */
7377
+ export interface DefaultApiV2IssueCertificateRequest {
7378
+ /**
7379
+ *
7380
+ * @type {V1NodeControllerBootstrapRequest}
7381
+ * @memberof DefaultApiV2IssueCertificate
7382
+ */
7383
+ readonly v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest;
7384
+ }
4674
7385
  /**
4675
7386
  * DefaultApi - object-oriented interface
4676
7387
  * @export
@@ -4678,6 +7389,14 @@ export interface DefaultApiV2CompleteObservationRequest {
4678
7389
  * @extends {BaseAPI}
4679
7390
  */
4680
7391
  export declare class DefaultApi extends BaseAPI {
7392
+ /**
7393
+ * Get images for a node for display in a camera roll format
7394
+ * @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
7395
+ * @param {*} [options] Override http request option.
7396
+ * @throws {RequiredError}
7397
+ * @memberof DefaultApi
7398
+ */
7399
+ getCameraRoll(requestParameters?: DefaultApiGetCameraRollRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CameraRollImage[], any>>;
4681
7400
  /**
4682
7401
  * Get the various tokens used in client applications
4683
7402
  * @param {*} [options] Override http request option.
@@ -4700,6 +7419,14 @@ export declare class DefaultApi extends BaseAPI {
4700
7419
  * @memberof DefaultApi
4701
7420
  */
4702
7421
  v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
7422
+ /**
7423
+ * Complete a node flare.
7424
+ * @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
7425
+ * @param {*} [options] Override http request option.
7426
+ * @throws {RequiredError}
7427
+ * @memberof DefaultApi
7428
+ */
7429
+ v1CompleteNodeFlare(requestParameters: DefaultApiV1CompleteNodeFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4703
7430
  /**
4704
7431
  * Complete an observation.
4705
7432
  * @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
@@ -4708,6 +7435,14 @@ export declare class DefaultApi extends BaseAPI {
4708
7435
  * @memberof DefaultApi
4709
7436
  */
4710
7437
  v1CompleteObservation(requestParameters: DefaultApiV1CompleteObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
7438
+ /**
7439
+ * Create a new all sky prediction
7440
+ * @param {DefaultApiV1CreateAllSkyPredictionRequest} requestParameters Request parameters.
7441
+ * @param {*} [options] Override http request option.
7442
+ * @throws {RequiredError}
7443
+ * @memberof DefaultApi
7444
+ */
7445
+ v1CreateAllSkyPrediction(requestParameters: DefaultApiV1CreateAllSkyPredictionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AllSkyPrediction, any>>;
4711
7446
  /**
4712
7447
  * Create an autofocus result.
4713
7448
  * @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
@@ -4716,6 +7451,14 @@ export declare class DefaultApi extends BaseAPI {
4716
7451
  * @memberof DefaultApi
4717
7452
  */
4718
7453
  v1CreateAutofocusResult(requestParameters: DefaultApiV1CreateAutofocusResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
7454
+ /**
7455
+ * Create a filter wheel.
7456
+ * @param {DefaultApiV1CreateFilterWheelRequest} requestParameters Request parameters.
7457
+ * @param {*} [options] Override http request option.
7458
+ * @throws {RequiredError}
7459
+ * @memberof DefaultApi
7460
+ */
7461
+ v1CreateFilterWheel(requestParameters: DefaultApiV1CreateFilterWheelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
4719
7462
  /**
4720
7463
  * Create an focuser.
4721
7464
  * @param {DefaultApiV1CreateFocuserRequest} requestParameters Request parameters.
@@ -4740,6 +7483,14 @@ export declare class DefaultApi extends BaseAPI {
4740
7483
  * @memberof DefaultApi
4741
7484
  */
4742
7485
  v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
7486
+ /**
7487
+ * Create an image set image upload url.
7488
+ * @param {DefaultApiV1CreateImageSetImageUploadUrlRequest} requestParameters Request parameters.
7489
+ * @param {*} [options] Override http request option.
7490
+ * @throws {RequiredError}
7491
+ * @memberof DefaultApi
7492
+ */
7493
+ v1CreateImageSetImageUploadUrl(requestParameters: DefaultApiV1CreateImageSetImageUploadUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageUploadUrlResponse, any>>;
4743
7494
  /**
4744
7495
  * Create metrics.
4745
7496
  * @param {DefaultApiV1CreateMetricsRequest} requestParameters Request parameters.
@@ -4788,6 +7539,14 @@ export declare class DefaultApi extends BaseAPI {
4788
7539
  * @memberof DefaultApi
4789
7540
  */
4790
7541
  v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
7542
+ /**
7543
+ * Create a node flare.
7544
+ * @param {DefaultApiV1CreateNodeFlareRequest} requestParameters Request parameters.
7545
+ * @param {*} [options] Override http request option.
7546
+ * @throws {RequiredError}
7547
+ * @memberof DefaultApi
7548
+ */
7549
+ v1CreateNodeFlare(requestParameters: DefaultApiV1CreateNodeFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateNodeFlareResponse, any>>;
4791
7550
  /**
4792
7551
  * Create an optical tube.
4793
7552
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -4796,6 +7555,30 @@ export declare class DefaultApi extends BaseAPI {
4796
7555
  * @memberof DefaultApi
4797
7556
  */
4798
7557
  v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
7558
+ /**
7559
+ * Set metadata and plate solve results for an image.
7560
+ * @param {DefaultApiV1CreateProcessedImageSetImageRequest} requestParameters Request parameters.
7561
+ * @param {*} [options] Override http request option.
7562
+ * @throws {RequiredError}
7563
+ * @memberof DefaultApi
7564
+ */
7565
+ v1CreateProcessedImageSetImage(requestParameters: DefaultApiV1CreateProcessedImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
7566
+ /**
7567
+ * Create a time windowed asset.
7568
+ * @param {DefaultApiV1CreateTimeWindowedAssetRequest} requestParameters Request parameters.
7569
+ * @param {*} [options] Override http request option.
7570
+ * @throws {RequiredError}
7571
+ * @memberof DefaultApi
7572
+ */
7573
+ v1CreateTimeWindowedAsset(requestParameters: DefaultApiV1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateTimeWindowedAssetResponse, any>>;
7574
+ /**
7575
+ * Get the sunrise/sunset times for a specific node by its ID
7576
+ * @param {DefaultApiV1CustomerGetSuntimesRequest} requestParameters Request parameters.
7577
+ * @param {*} [options] Override http request option.
7578
+ * @throws {RequiredError}
7579
+ * @memberof DefaultApi
7580
+ */
7581
+ v1CustomerGetSuntimes(requestParameters: DefaultApiV1CustomerGetSuntimesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetSuntimesResponse, any>>;
4799
7582
  /**
4800
7583
  * Delete an image set.
4801
7584
  * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
@@ -4828,6 +7611,14 @@ export declare class DefaultApi extends BaseAPI {
4828
7611
  * @memberof DefaultApi
4829
7612
  */
4830
7613
  v1FocuserMatch(requestParameters?: DefaultApiV1FocuserMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Focuser[], any>>;
7614
+ /**
7615
+ * Get an all sky prediction by ID or image id
7616
+ * @param {DefaultApiV1GetAllSkyPredictionRequest} requestParameters Request parameters.
7617
+ * @param {*} [options] Override http request option.
7618
+ * @throws {RequiredError}
7619
+ * @memberof DefaultApi
7620
+ */
7621
+ v1GetAllSkyPrediction(requestParameters?: DefaultApiV1GetAllSkyPredictionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AllSkyPrediction, any>>;
4831
7622
  /**
4832
7623
  * Get cameras.
4833
7624
  * @param {*} [options] Override http request option.
@@ -4835,6 +7626,14 @@ export declare class DefaultApi extends BaseAPI {
4835
7626
  * @memberof DefaultApi
4836
7627
  */
4837
7628
  v1GetCameras(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
7629
+ /**
7630
+ * Get a filter wheel.
7631
+ * @param {DefaultApiV1GetFilterWheelRequest} requestParameters Request parameters.
7632
+ * @param {*} [options] Override http request option.
7633
+ * @throws {RequiredError}
7634
+ * @memberof DefaultApi
7635
+ */
7636
+ v1GetFilterWheel(requestParameters: DefaultApiV1GetFilterWheelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1FilterWheel, any>>;
4838
7637
  /**
4839
7638
  * Get a focuser.
4840
7639
  * @param {DefaultApiV1GetFocuserRequest} requestParameters Request parameters.
@@ -4883,6 +7682,22 @@ export declare class DefaultApi extends BaseAPI {
4883
7682
  * @memberof DefaultApi
4884
7683
  */
4885
7684
  v1GetLatestHfr(requestParameters: DefaultApiV1GetLatestHfrRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1LatestHfrResponse, any>>;
7685
+ /**
7686
+ * GetLatestModel
7687
+ * @param {DefaultApiV1GetLatestModelRequest} requestParameters Request parameters.
7688
+ * @param {*} [options] Override http request option.
7689
+ * @throws {RequiredError}
7690
+ * @memberof DefaultApi
7691
+ */
7692
+ v1GetLatestModel(requestParameters: DefaultApiV1GetLatestModelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1MLModel, any>>;
7693
+ /**
7694
+ * Get merged node config body
7695
+ * @param {DefaultApiV1GetMergedNodeConfigBodyRequest} requestParameters Request parameters.
7696
+ * @param {*} [options] Override http request option.
7697
+ * @throws {RequiredError}
7698
+ * @memberof DefaultApi
7699
+ */
7700
+ v1GetMergedNodeConfigBody(requestParameters: DefaultApiV1GetMergedNodeConfigBodyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeConfigBody, any>>;
4886
7701
  /**
4887
7702
  * Get a mount.
4888
7703
  * @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
@@ -4892,13 +7707,13 @@ export declare class DefaultApi extends BaseAPI {
4892
7707
  */
4893
7708
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
4894
7709
  /**
4895
- * Get node by lineage id.
7710
+ * Get node by lineage id or node id.
4896
7711
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
4897
7712
  * @param {*} [options] Override http request option.
4898
7713
  * @throws {RequiredError}
4899
7714
  * @memberof DefaultApi
4900
7715
  */
4901
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
7716
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4902
7717
  /**
4903
7718
  * Get node commands
4904
7719
  * @param {DefaultApiV1GetNodeCommandsRequest} requestParameters Request parameters.
@@ -4908,21 +7723,29 @@ export declare class DefaultApi extends BaseAPI {
4908
7723
  */
4909
7724
  v1GetNodeCommands(requestParameters: DefaultApiV1GetNodeCommandsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetNodeCommandsResponse, any>>;
4910
7725
  /**
4911
- * returns the current release for the node
4912
- * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
7726
+ * Get node diagnostic tasks.
7727
+ * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
4913
7728
  * @param {*} [options] Override http request option.
4914
7729
  * @throws {RequiredError}
4915
7730
  * @memberof DefaultApi
4916
7731
  */
4917
- v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Release, any>>;
7732
+ v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeDiagnosticType[], any>>;
4918
7733
  /**
4919
- * Get node diagnostic tasks.
4920
- * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
7734
+ * Get node events Apex Charts timeline
7735
+ * @param {DefaultApiV1GetNodeEventsApexChartsTimelineRequest} requestParameters Request parameters.
4921
7736
  * @param {*} [options] Override http request option.
4922
7737
  * @throws {RequiredError}
4923
7738
  * @memberof DefaultApi
4924
7739
  */
4925
- v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeDiagnosticType[], any>>;
7740
+ v1GetNodeEventsApexChartsTimeline(requestParameters: DefaultApiV1GetNodeEventsApexChartsTimelineRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ApexChartsTimeline, any>>;
7741
+ /**
7742
+ * Get a node flare by id.
7743
+ * @param {DefaultApiV1GetNodeFlareRequest} requestParameters Request parameters.
7744
+ * @param {*} [options] Override http request option.
7745
+ * @throws {RequiredError}
7746
+ * @memberof DefaultApi
7747
+ */
7748
+ v1GetNodeFlare(requestParameters: DefaultApiV1GetNodeFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeFlare, any>>;
4926
7749
  /**
4927
7750
  * Get node properties.
4928
7751
  * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
@@ -4986,6 +7809,37 @@ export declare class DefaultApi extends BaseAPI {
4986
7809
  * @memberof DefaultApi
4987
7810
  */
4988
7811
  v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
7812
+ /**
7813
+ * Get satellites for skyAtlas. returns jsonl
7814
+ * @param {*} [options] Override http request option.
7815
+ * @throws {RequiredError}
7816
+ * @memberof DefaultApi
7817
+ */
7818
+ v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
7819
+ /**
7820
+ * Get the target QCOM OTA software release for a node
7821
+ * @param {DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest} requestParameters Request parameters.
7822
+ * @param {*} [options] Override http request option.
7823
+ * @throws {RequiredError}
7824
+ * @memberof DefaultApi
7825
+ */
7826
+ v1GetTargetQCOMOTASoftwareReleaseForNode(requestParameters: DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SoftwareRelease, any>>;
7827
+ /**
7828
+ * Get the target software releases for a node
7829
+ * @param {DefaultApiV1GetTargetSoftwareReleasesForNodeRequest} requestParameters Request parameters.
7830
+ * @param {*} [options] Override http request option.
7831
+ * @throws {RequiredError}
7832
+ * @memberof DefaultApi
7833
+ */
7834
+ v1GetTargetSoftwareReleasesForNode(requestParameters: DefaultApiV1GetTargetSoftwareReleasesForNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SoftwareRelease[], any>>;
7835
+ /**
7836
+ * Get a time windowed asset by id.
7837
+ * @param {DefaultApiV1GetTimeWindowedAssetRequest} requestParameters Request parameters.
7838
+ * @param {*} [options] Override http request option.
7839
+ * @throws {RequiredError}
7840
+ * @memberof DefaultApi
7841
+ */
7842
+ v1GetTimeWindowedAsset(requestParameters: DefaultApiV1GetTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1TimeWindowedAsset, any>>;
4989
7843
  /**
4990
7844
  * issueCertificate
4991
7845
  * @param {DefaultApiV1IssueCertificateRequest} requestParameters Request parameters.
@@ -4994,6 +7848,13 @@ export declare class DefaultApi extends BaseAPI {
4994
7848
  * @memberof DefaultApi
4995
7849
  */
4996
7850
  v1IssueCertificate(requestParameters: DefaultApiV1IssueCertificateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeControllerIssueCertificateResponse, any>>;
7851
+ /**
7852
+ * User initiated logout - revokes existing _user_ access tokens for the principal
7853
+ * @param {*} [options] Override http request option.
7854
+ * @throws {RequiredError}
7855
+ * @memberof DefaultApi
7856
+ */
7857
+ v1Logout(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4997
7858
  /**
4998
7859
  * Match mount.
4999
7860
  * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
@@ -5002,6 +7863,42 @@ export declare class DefaultApi extends BaseAPI {
5002
7863
  * @memberof DefaultApi
5003
7864
  */
5004
7865
  v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount[], any>>;
7866
+ /**
7867
+ * \' V1EnableAutonomousOperation - immediately places the system back under autonomous operation mode. !!CAUTION!! This will immediately begin slewing your system around if conditions are safe. Please ensure your system is prepared to move \'
7868
+ * @param {DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest} requestParameters Request parameters.
7869
+ * @param {*} [options] Override http request option.
7870
+ * @deprecated
7871
+ * @throws {RequiredError}
7872
+ * @memberof DefaultApi
7873
+ */
7874
+ v1NodeCommandV1EnableAutonomousOperation(requestParameters: DefaultApiV1NodeCommandV1EnableAutonomousOperationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
7875
+ /**
7876
+ * \' V1EnableManualOperation- immediately halts all autonomous operation of the system and parks the telescope (including closing the enclosure if present). !!CAUTION!! This is an indefinite halt until V1EnableAutonomousOperation is called. Your system will not respond to weather and safety events! \'
7877
+ * @param {DefaultApiV1NodeCommandV1EnableManualOperationRequest} requestParameters Request parameters.
7878
+ * @param {*} [options] Override http request option.
7879
+ * @deprecated
7880
+ * @throws {RequiredError}
7881
+ * @memberof DefaultApi
7882
+ */
7883
+ v1NodeCommandV1EnableManualOperation(requestParameters: DefaultApiV1NodeCommandV1EnableManualOperationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
7884
+ /**
7885
+ * v1 reboot system
7886
+ * @param {DefaultApiV1NodeCommandV1RebootSystemRequest} requestParameters Request parameters.
7887
+ * @param {*} [options] Override http request option.
7888
+ * @deprecated
7889
+ * @throws {RequiredError}
7890
+ * @memberof DefaultApi
7891
+ */
7892
+ v1NodeCommandV1RebootSystem(requestParameters: DefaultApiV1NodeCommandV1RebootSystemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
7893
+ /**
7894
+ * v1 send flare
7895
+ * @param {DefaultApiV1NodeCommandV1SendFlareRequest} requestParameters Request parameters.
7896
+ * @param {*} [options] Override http request option.
7897
+ * @deprecated
7898
+ * @throws {RequiredError}
7899
+ * @memberof DefaultApi
7900
+ */
7901
+ v1NodeCommandV1SendFlare(requestParameters: DefaultApiV1NodeCommandV1SendFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
5005
7902
  /**
5006
7903
  * Match optical tube.
5007
7904
  * @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
@@ -5018,6 +7915,22 @@ export declare class DefaultApi extends BaseAPI {
5018
7915
  * @memberof DefaultApi
5019
7916
  */
5020
7917
  v1RegisterNodeController(requestParameters: DefaultApiV1RegisterNodeControllerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeController, any>>;
7918
+ /**
7919
+ * Requests mac addresses for the given lineage and interfaces.
7920
+ * @param {DefaultApiV1RequestMacAddressesRequest} requestParameters Request parameters.
7921
+ * @param {*} [options] Override http request option.
7922
+ * @throws {RequiredError}
7923
+ * @memberof DefaultApi
7924
+ */
7925
+ v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1RequestMacAddressesResponse, any>>;
7926
+ /**
7927
+ * Update a mount.
7928
+ * @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
7929
+ * @param {*} [options] Override http request option.
7930
+ * @throws {RequiredError}
7931
+ * @memberof DefaultApi
7932
+ */
7933
+ v1UpdateMount(requestParameters: DefaultApiV1UpdateMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
5021
7934
  /**
5022
7935
  * Update a node.
5023
7936
  * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
@@ -5034,6 +7947,14 @@ export declare class DefaultApi extends BaseAPI {
5034
7947
  * @memberof DefaultApi
5035
7948
  */
5036
7949
  v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
7950
+ /**
7951
+ * Update an optical tube.
7952
+ * @param {DefaultApiV1UpdateOpticalTubeRequest} requestParameters Request parameters.
7953
+ * @param {*} [options] Override http request option.
7954
+ * @throws {RequiredError}
7955
+ * @memberof DefaultApi
7956
+ */
7957
+ v1UpdateOpticalTube(requestParameters: DefaultApiV1UpdateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
5037
7958
  /**
5038
7959
  * Complete an observation utilizing the async pipeline.
5039
7960
  * @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
@@ -5042,4 +7963,12 @@ export declare class DefaultApi extends BaseAPI {
5042
7963
  * @memberof DefaultApi
5043
7964
  */
5044
7965
  v2CompleteObservation(requestParameters: DefaultApiV2CompleteObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
7966
+ /**
7967
+ * V2 Issue Certificate
7968
+ * @param {DefaultApiV2IssueCertificateRequest} requestParameters Request parameters.
7969
+ * @param {*} [options] Override http request option.
7970
+ * @throws {RequiredError}
7971
+ * @memberof DefaultApi
7972
+ */
7973
+ v2IssueCertificate(requestParameters: DefaultApiV2IssueCertificateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2NodeControllerIssueCertificateResponse, any>>;
5045
7974
  }