@ourskyai/astro-api 1.3.1734

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts ADDED
@@ -0,0 +1,3120 @@
1
+ /**
2
+ * OurSky Astro
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.3.1734
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from './configuration';
13
+ import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
+ import type { RequestArgs } from './base';
15
+ import { BaseAPI } from './base';
16
+ /**
17
+ * asset file type
18
+ * @export
19
+ * @enum {string}
20
+ */
21
+ export declare const AssetFileType: {
22
+ readonly FITS: "FITS";
23
+ readonly TIFF: "TIFF";
24
+ readonly PNG: "PNG";
25
+ readonly JPEG: "JPEG";
26
+ readonly JSON: "JSON";
27
+ readonly TXT: "TXT";
28
+ };
29
+ export type AssetFileType = typeof AssetFileType[keyof typeof AssetFileType];
30
+ /**
31
+ * asset type
32
+ * @export
33
+ * @enum {string}
34
+ */
35
+ export declare const AssetType: {
36
+ readonly STACK_RESULT: "STACK_RESULT";
37
+ readonly PROJECT_UNBEAUTIFIED: "PROJECT_UNBEAUTIFIED";
38
+ readonly PROJECT_BEAUTIFIED: "PROJECT_BEAUTIFIED";
39
+ readonly IMAGE_THUMBNAIL: "IMAGE_THUMBNAIL";
40
+ readonly PROJECT_BEAUTIFIED_THUMBNAIL: "PROJECT_BEAUTIFIED_THUMBNAIL";
41
+ };
42
+ export type AssetType = typeof AssetType[keyof typeof AssetType];
43
+ /**
44
+ * successful create
45
+ * @export
46
+ * @interface CalibrationMasterCreateResponse
47
+ */
48
+ export interface CalibrationMasterCreateResponse {
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof CalibrationMasterCreateResponse
53
+ */
54
+ 'id': string;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof CalibrationMasterCreateResponse
59
+ */
60
+ 'uploadUrl': string;
61
+ }
62
+ /**
63
+ *
64
+ * @export
65
+ * @enum {string}
66
+ */
67
+ export declare const CalibrationMasterType: {
68
+ readonly FLAT: "FLAT";
69
+ readonly DARK: "DARK";
70
+ readonly BIAS: "BIAS";
71
+ };
72
+ export type CalibrationMasterType = typeof CalibrationMasterType[keyof typeof CalibrationMasterType];
73
+ /**
74
+ * successful action
75
+ * @export
76
+ * @interface EmptySuccess
77
+ */
78
+ export interface EmptySuccess {
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof EmptySuccess
83
+ */
84
+ 'message'?: string;
85
+ }
86
+ /**
87
+ *
88
+ * @export
89
+ * @enum {string}
90
+ */
91
+ export declare const FilterType: {
92
+ readonly NONE: "NONE";
93
+ readonly RED: "RED";
94
+ readonly BLUE: "BLUE";
95
+ readonly GREEN: "GREEN";
96
+ readonly UV: "UV";
97
+ readonly IR: "IR";
98
+ readonly LUMINANCE: "LUMINANCE";
99
+ readonly ENHANCED_LUMINANCE: "ENHANCED_LUMINANCE";
100
+ readonly H_ALPHA: "H_ALPHA";
101
+ readonly H_BETA: "H_BETA";
102
+ readonly S_II: "S_II";
103
+ readonly O_III: "O_III";
104
+ readonly DUAL_BAND: "DUAL_BAND";
105
+ readonly PHOTO_JOHNSON_U: "PHOTO_JOHNSON_U";
106
+ readonly PHOTO_JOHNSON_B: "PHOTO_JOHNSON_B";
107
+ readonly PHOTO_JOHNSON_V: "PHOTO_JOHNSON_V";
108
+ readonly PHOTO_COUSINS_R: "PHOTO_COUSINS_R";
109
+ readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
110
+ };
111
+ export type FilterType = typeof FilterType[keyof typeof FilterType];
112
+ /**
113
+ *
114
+ * @export
115
+ * @interface Location
116
+ */
117
+ export interface Location {
118
+ /**
119
+ *
120
+ * @type {number}
121
+ * @memberof Location
122
+ */
123
+ 'latitude': number;
124
+ /**
125
+ *
126
+ * @type {number}
127
+ * @memberof Location
128
+ */
129
+ 'longitude': number;
130
+ /**
131
+ *
132
+ * @type {number}
133
+ * @memberof Location
134
+ */
135
+ 'altitude': number;
136
+ }
137
+ /**
138
+ * The type of mount
139
+ * @export
140
+ * @enum {string}
141
+ */
142
+ export declare const MountType: {
143
+ readonly ALT_AZ: "ALT_AZ";
144
+ readonly EQUITORIAL: "EQUITORIAL";
145
+ };
146
+ export type MountType = typeof MountType[keyof typeof MountType];
147
+ /**
148
+ * possible states for a node
149
+ * @export
150
+ * @enum {string}
151
+ */
152
+ export declare const NodeState: {
153
+ readonly READY: "READY";
154
+ readonly PENDING: "PENDING";
155
+ readonly OFFLINE: "OFFLINE";
156
+ readonly UNAVAILABLE: "UNAVAILABLE";
157
+ readonly UNKNOWN: "UNKNOWN";
158
+ readonly SUPERSEDED: "SUPERSEDED";
159
+ };
160
+ export type NodeState = typeof NodeState[keyof typeof NodeState];
161
+ /**
162
+ * optical tube types
163
+ * @export
164
+ * @enum {string}
165
+ */
166
+ export declare const OpticalTubeType: {
167
+ readonly NEWTONIAN: "NEWTONIAN";
168
+ readonly SCT: "SCT";
169
+ readonly MCT: "MCT";
170
+ readonly RC: "RC";
171
+ readonly REFRACTOR: "REFRACTOR";
172
+ };
173
+ export type OpticalTubeType = typeof OpticalTubeType[keyof typeof OpticalTubeType];
174
+ /**
175
+ * shutter type
176
+ * @export
177
+ * @enum {string}
178
+ */
179
+ export declare const ShutterType: {
180
+ readonly ROLLING: "ROLLING";
181
+ readonly GLOBAL: "GLOBAL";
182
+ };
183
+ export type ShutterType = typeof ShutterType[keyof typeof ShutterType];
184
+ /**
185
+ * successful create
186
+ * @export
187
+ * @interface SuccessfulCreate
188
+ */
189
+ export interface SuccessfulCreate {
190
+ /**
191
+ *
192
+ * @type {string}
193
+ * @memberof SuccessfulCreate
194
+ */
195
+ 'id': string;
196
+ }
197
+ /**
198
+ * target tracking type
199
+ * @export
200
+ * @enum {string}
201
+ */
202
+ export declare const TrackingType: {
203
+ readonly SIDEREAL: "SIDEREAL";
204
+ readonly TARGET_RATE: "TARGET_RATE";
205
+ };
206
+ export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
207
+ /**
208
+ * get an astro project asset
209
+ * @export
210
+ * @interface V1AstroProjectAsset
211
+ */
212
+ export interface V1AstroProjectAsset {
213
+ /**
214
+ *
215
+ * @type {string}
216
+ * @memberof V1AstroProjectAsset
217
+ */
218
+ 'id': string;
219
+ /**
220
+ *
221
+ * @type {AssetType}
222
+ * @memberof V1AstroProjectAsset
223
+ */
224
+ 'assetType': AssetType;
225
+ /**
226
+ *
227
+ * @type {Array<FilterType>}
228
+ * @memberof V1AstroProjectAsset
229
+ */
230
+ 'filterType'?: Array<FilterType>;
231
+ /**
232
+ *
233
+ * @type {V1AstroProjectAssetMetadata}
234
+ * @memberof V1AstroProjectAsset
235
+ */
236
+ 'metadata'?: V1AstroProjectAssetMetadata;
237
+ /**
238
+ *
239
+ * @type {string}
240
+ * @memberof V1AstroProjectAsset
241
+ */
242
+ 'url': string;
243
+ /**
244
+ *
245
+ * @type {number}
246
+ * @memberof V1AstroProjectAsset
247
+ */
248
+ 'fileSizeMb'?: number;
249
+ /**
250
+ *
251
+ * @type {AssetFileType}
252
+ * @memberof V1AstroProjectAsset
253
+ */
254
+ 'fileType'?: AssetFileType;
255
+ /**
256
+ *
257
+ * @type {string}
258
+ * @memberof V1AstroProjectAsset
259
+ */
260
+ 'createdAt': string;
261
+ /**
262
+ *
263
+ * @type {string}
264
+ * @memberof V1AstroProjectAsset
265
+ */
266
+ 'createdBy': string;
267
+ /**
268
+ *
269
+ * @type {number}
270
+ * @memberof V1AstroProjectAsset
271
+ */
272
+ 'numberOfCombinedImages'?: number;
273
+ /**
274
+ *
275
+ * @type {number}
276
+ * @memberof V1AstroProjectAsset
277
+ */
278
+ 'combinedExposureSeconds'?: number;
279
+ }
280
+ /**
281
+ *
282
+ * @export
283
+ * @interface V1AstroProjectAssetMetadata
284
+ */
285
+ export interface V1AstroProjectAssetMetadata {
286
+ /**
287
+ *
288
+ * @type {V1AstroProjectAssetMetadataColorCombination}
289
+ * @memberof V1AstroProjectAssetMetadata
290
+ */
291
+ 'colorCombination'?: V1AstroProjectAssetMetadataColorCombination;
292
+ }
293
+ /**
294
+ *
295
+ * @export
296
+ * @interface V1AstroProjectAssetMetadataColorCombination
297
+ */
298
+ export interface V1AstroProjectAssetMetadataColorCombination {
299
+ /**
300
+ *
301
+ * @type {Array<FilterType>}
302
+ * @memberof V1AstroProjectAssetMetadataColorCombination
303
+ */
304
+ 'red'?: Array<FilterType>;
305
+ /**
306
+ *
307
+ * @type {Array<FilterType>}
308
+ * @memberof V1AstroProjectAssetMetadataColorCombination
309
+ */
310
+ 'green'?: Array<FilterType>;
311
+ /**
312
+ *
313
+ * @type {Array<FilterType>}
314
+ * @memberof V1AstroProjectAssetMetadataColorCombination
315
+ */
316
+ 'blue'?: Array<FilterType>;
317
+ }
318
+ /**
319
+ * astro target
320
+ * @export
321
+ * @interface V1AstroTarget
322
+ */
323
+ export interface V1AstroTarget {
324
+ /**
325
+ *
326
+ * @type {string}
327
+ * @memberof V1AstroTarget
328
+ */
329
+ 'id': string;
330
+ /**
331
+ *
332
+ * @type {string}
333
+ * @memberof V1AstroTarget
334
+ */
335
+ 'ngc_id'?: string;
336
+ /**
337
+ *
338
+ * @type {string}
339
+ * @memberof V1AstroTarget
340
+ */
341
+ 'ic_id'?: string;
342
+ /**
343
+ *
344
+ * @type {string}
345
+ * @memberof V1AstroTarget
346
+ */
347
+ 'name'?: string;
348
+ /**
349
+ *
350
+ * @type {number}
351
+ * @memberof V1AstroTarget
352
+ */
353
+ 'ra': number;
354
+ /**
355
+ *
356
+ * @type {number}
357
+ * @memberof V1AstroTarget
358
+ */
359
+ 'dec': number;
360
+ }
361
+ /**
362
+ * calibration master
363
+ * @export
364
+ * @interface V1CalibrationMaster
365
+ */
366
+ export interface V1CalibrationMaster {
367
+ /**
368
+ *
369
+ * @type {string}
370
+ * @memberof V1CalibrationMaster
371
+ */
372
+ 'id': string;
373
+ /**
374
+ *
375
+ * @type {CalibrationMasterType}
376
+ * @memberof V1CalibrationMaster
377
+ */
378
+ 'calibrationMasterType': CalibrationMasterType;
379
+ /**
380
+ *
381
+ * @type {FilterType}
382
+ * @memberof V1CalibrationMaster
383
+ */
384
+ 'filterType'?: FilterType;
385
+ /**
386
+ *
387
+ * @type {number}
388
+ * @memberof V1CalibrationMaster
389
+ */
390
+ 'binXY': number;
391
+ /**
392
+ *
393
+ * @type {number}
394
+ * @memberof V1CalibrationMaster
395
+ */
396
+ 'gain'?: number;
397
+ /**
398
+ *
399
+ * @type {number}
400
+ * @memberof V1CalibrationMaster
401
+ */
402
+ 'gainMode'?: number;
403
+ /**
404
+ * temperature in degrees celsius
405
+ * @type {number}
406
+ * @memberof V1CalibrationMaster
407
+ */
408
+ 'temperature'?: number;
409
+ /**
410
+ *
411
+ * @type {number}
412
+ * @memberof V1CalibrationMaster
413
+ */
414
+ 'exposureTime': number;
415
+ /**
416
+ *
417
+ * @type {string}
418
+ * @memberof V1CalibrationMaster
419
+ */
420
+ 'createdAt': string;
421
+ /**
422
+ *
423
+ * @type {string}
424
+ * @memberof V1CalibrationMaster
425
+ */
426
+ 'createdBy': string;
427
+ }
428
+ /**
429
+ * v1Camera
430
+ * @export
431
+ * @interface V1Camera
432
+ */
433
+ export interface V1Camera {
434
+ /**
435
+ *
436
+ * @type {string}
437
+ * @memberof V1Camera
438
+ */
439
+ 'id': string;
440
+ /**
441
+ *
442
+ * @type {string}
443
+ * @memberof V1Camera
444
+ */
445
+ 'model': string;
446
+ /**
447
+ *
448
+ * @type {number}
449
+ * @memberof V1Camera
450
+ */
451
+ 'pixelSizeMicrons': number;
452
+ /**
453
+ *
454
+ * @type {number}
455
+ * @memberof V1Camera
456
+ */
457
+ 'pixelsX'?: number;
458
+ /**
459
+ *
460
+ * @type {number}
461
+ * @memberof V1Camera
462
+ */
463
+ 'pixelsY'?: number;
464
+ /**
465
+ *
466
+ * @type {number}
467
+ * @memberof V1Camera
468
+ */
469
+ 'megapixels': number;
470
+ /**
471
+ *
472
+ * @type {boolean}
473
+ * @memberof V1Camera
474
+ */
475
+ 'chilled': boolean;
476
+ /**
477
+ *
478
+ * @type {number}
479
+ * @memberof V1Camera
480
+ */
481
+ 'adcBitDepth': number;
482
+ /**
483
+ *
484
+ * @type {boolean}
485
+ * @memberof V1Camera
486
+ */
487
+ 'gpsTimestamps': boolean;
488
+ /**
489
+ *
490
+ * @type {ShutterType}
491
+ * @memberof V1Camera
492
+ */
493
+ 'shutterType': ShutterType;
494
+ /**
495
+ *
496
+ * @type {number}
497
+ * @memberof V1Camera
498
+ */
499
+ 'fullWellCapacity'?: number;
500
+ /**
501
+ *
502
+ * @type {Array<V1SetupAction>}
503
+ * @memberof V1Camera
504
+ */
505
+ 'setupActions'?: Array<V1SetupAction>;
506
+ /**
507
+ *
508
+ * @type {boolean}
509
+ * @memberof V1Camera
510
+ */
511
+ 'isColor': boolean;
512
+ }
513
+ /**
514
+ * create an astro project
515
+ * @export
516
+ * @interface V1CreateAstroProject
517
+ */
518
+ export interface V1CreateAstroProject {
519
+ /**
520
+ *
521
+ * @type {string}
522
+ * @memberof V1CreateAstroProject
523
+ */
524
+ 'name'?: string;
525
+ /**
526
+ *
527
+ * @type {string}
528
+ * @memberof V1CreateAstroProject
529
+ */
530
+ 'targetId'?: string;
531
+ /**
532
+ *
533
+ * @type {number}
534
+ * @memberof V1CreateAstroProject
535
+ */
536
+ 'ra'?: number;
537
+ /**
538
+ *
539
+ * @type {number}
540
+ * @memberof V1CreateAstroProject
541
+ */
542
+ 'dec'?: number;
543
+ /**
544
+ *
545
+ * @type {string}
546
+ * @memberof V1CreateAstroProject
547
+ */
548
+ 'nodeId': string;
549
+ /**
550
+ *
551
+ * @type {FilterType}
552
+ * @memberof V1CreateAstroProject
553
+ */
554
+ 'filterType'?: FilterType;
555
+ }
556
+ /**
557
+ * create a project image set
558
+ * @export
559
+ * @interface V1CreateAstroProjectImageSet
560
+ */
561
+ export interface V1CreateAstroProjectImageSet {
562
+ /**
563
+ *
564
+ * @type {string}
565
+ * @memberof V1CreateAstroProjectImageSet
566
+ */
567
+ 'projectId': string;
568
+ /**
569
+ *
570
+ * @type {string}
571
+ * @memberof V1CreateAstroProjectImageSet
572
+ */
573
+ 'nodeId': string;
574
+ /**
575
+ *
576
+ * @type {string}
577
+ * @memberof V1CreateAstroProjectImageSet
578
+ * @deprecated
579
+ */
580
+ 'ourskyPluginVersion'?: string;
581
+ /**
582
+ *
583
+ * @type {FilterType}
584
+ * @memberof V1CreateAstroProjectImageSet
585
+ */
586
+ 'filterType'?: FilterType;
587
+ }
588
+ /**
589
+ * create astro response
590
+ * @export
591
+ * @interface V1CreateAstroProjectResponse
592
+ */
593
+ export interface V1CreateAstroProjectResponse {
594
+ /**
595
+ *
596
+ * @type {string}
597
+ * @memberof V1CreateAstroProjectResponse
598
+ */
599
+ 'id': string;
600
+ /**
601
+ *
602
+ * @type {string}
603
+ * @memberof V1CreateAstroProjectResponse
604
+ */
605
+ 'imageSetId': string;
606
+ }
607
+ /**
608
+ * create calibration master
609
+ * @export
610
+ * @interface V1CreateCalibrationMaster
611
+ */
612
+ export interface V1CreateCalibrationMaster {
613
+ /**
614
+ *
615
+ * @type {string}
616
+ * @memberof V1CreateCalibrationMaster
617
+ */
618
+ 'nodeId': string;
619
+ /**
620
+ *
621
+ * @type {CalibrationMasterType}
622
+ * @memberof V1CreateCalibrationMaster
623
+ */
624
+ 'calibrationMasterType': CalibrationMasterType;
625
+ /**
626
+ *
627
+ * @type {FilterType}
628
+ * @memberof V1CreateCalibrationMaster
629
+ */
630
+ 'filterType'?: FilterType;
631
+ /**
632
+ *
633
+ * @type {number}
634
+ * @memberof V1CreateCalibrationMaster
635
+ */
636
+ 'binXY': number;
637
+ /**
638
+ *
639
+ * @type {number}
640
+ * @memberof V1CreateCalibrationMaster
641
+ */
642
+ 'gain'?: number;
643
+ /**
644
+ *
645
+ * @type {number}
646
+ * @memberof V1CreateCalibrationMaster
647
+ */
648
+ 'gainMode'?: number;
649
+ /**
650
+ * temperature in degrees celsius
651
+ * @type {number}
652
+ * @memberof V1CreateCalibrationMaster
653
+ */
654
+ 'temperature'?: number;
655
+ /**
656
+ *
657
+ * @type {number}
658
+ * @memberof V1CreateCalibrationMaster
659
+ */
660
+ 'exposureTime': number;
661
+ /**
662
+ *
663
+ * @type {boolean}
664
+ * @memberof V1CreateCalibrationMaster
665
+ */
666
+ 'overwrite'?: boolean;
667
+ }
668
+ /**
669
+ * create a camera
670
+ * @export
671
+ * @interface V1CreateCamera
672
+ */
673
+ export interface V1CreateCamera {
674
+ /**
675
+ *
676
+ * @type {string}
677
+ * @memberof V1CreateCamera
678
+ */
679
+ 'model': string;
680
+ /**
681
+ *
682
+ * @type {number}
683
+ * @memberof V1CreateCamera
684
+ */
685
+ 'pixelSizeMicrons': number;
686
+ /**
687
+ *
688
+ * @type {number}
689
+ * @memberof V1CreateCamera
690
+ */
691
+ 'fullWellCapacity'?: number;
692
+ /**
693
+ *
694
+ * @type {number}
695
+ * @memberof V1CreateCamera
696
+ */
697
+ 'pixelsX': number;
698
+ /**
699
+ *
700
+ * @type {number}
701
+ * @memberof V1CreateCamera
702
+ */
703
+ 'pixelsY': number;
704
+ /**
705
+ *
706
+ * @type {number}
707
+ * @memberof V1CreateCamera
708
+ */
709
+ 'megapixels': number;
710
+ /**
711
+ *
712
+ * @type {boolean}
713
+ * @memberof V1CreateCamera
714
+ */
715
+ 'chilled'?: boolean;
716
+ /**
717
+ *
718
+ * @type {ShutterType}
719
+ * @memberof V1CreateCamera
720
+ */
721
+ 'shutterType': ShutterType;
722
+ /**
723
+ *
724
+ * @type {boolean}
725
+ * @memberof V1CreateCamera
726
+ */
727
+ 'gpsTimestamps': boolean;
728
+ /**
729
+ *
730
+ * @type {number}
731
+ * @memberof V1CreateCamera
732
+ */
733
+ 'sensorXmm': number;
734
+ /**
735
+ *
736
+ * @type {number}
737
+ * @memberof V1CreateCamera
738
+ */
739
+ 'sensorYmm': number;
740
+ /**
741
+ * the gain level where e-/ADU = 1
742
+ * @type {number}
743
+ * @memberof V1CreateCamera
744
+ */
745
+ 'unityGain': number;
746
+ /**
747
+ *
748
+ * @type {number}
749
+ * @memberof V1CreateCamera
750
+ */
751
+ 'optimalNighttimeGain': number;
752
+ /**
753
+ *
754
+ * @type {number}
755
+ * @memberof V1CreateCamera
756
+ */
757
+ 'optimalNighttimeGainOffset': number;
758
+ /**
759
+ *
760
+ * @type {number}
761
+ * @memberof V1CreateCamera
762
+ */
763
+ 'optimalNighttimeGainMode': number;
764
+ /**
765
+ * whether the camera supports video mode
766
+ * @type {boolean}
767
+ * @memberof V1CreateCamera
768
+ */
769
+ 'supportsVideoMode': boolean;
770
+ /**
771
+ *
772
+ * @type {number}
773
+ * @memberof V1CreateCamera
774
+ */
775
+ 'adcBitDepth': number;
776
+ /**
777
+ *
778
+ * @type {number}
779
+ * @memberof V1CreateCamera
780
+ */
781
+ 'quantumEfficiency': number;
782
+ /**
783
+ * gain curves for the camera
784
+ * @type {Array<V1GainCurve>}
785
+ * @memberof V1CreateCamera
786
+ */
787
+ 'gainCurves'?: Array<V1GainCurve>;
788
+ /**
789
+ *
790
+ * @type {Array<V1SetupAction>}
791
+ * @memberof V1CreateCamera
792
+ */
793
+ 'setupActions'?: Array<V1SetupAction>;
794
+ /**
795
+ * whether the camera is monochrome or color (OSC)
796
+ * @type {boolean}
797
+ * @memberof V1CreateCamera
798
+ */
799
+ 'isColor': boolean;
800
+ }
801
+ /**
802
+ * create image set
803
+ * @export
804
+ * @interface V1CreateImageSet
805
+ */
806
+ export interface V1CreateImageSet {
807
+ /**
808
+ *
809
+ * @type {string}
810
+ * @memberof V1CreateImageSet
811
+ */
812
+ 'targetId': string;
813
+ /**
814
+ *
815
+ * @type {string}
816
+ * @memberof V1CreateImageSet
817
+ */
818
+ 'nodeId': string;
819
+ /**
820
+ *
821
+ * @type {string}
822
+ * @memberof V1CreateImageSet
823
+ */
824
+ 'observationId'?: string;
825
+ /**
826
+ *
827
+ * @type {string}
828
+ * @memberof V1CreateImageSet
829
+ * @deprecated
830
+ */
831
+ 'ourskyPluginVersion'?: string;
832
+ /**
833
+ *
834
+ * @type {TrackingType}
835
+ * @memberof V1CreateImageSet
836
+ */
837
+ 'trackingType'?: TrackingType;
838
+ /**
839
+ *
840
+ * @type {FilterType}
841
+ * @memberof V1CreateImageSet
842
+ */
843
+ 'filterType'?: FilterType;
844
+ }
845
+ /**
846
+ * create image set image
847
+ * @export
848
+ * @interface V1CreateImageSetImage
849
+ */
850
+ export interface V1CreateImageSetImage {
851
+ /**
852
+ *
853
+ * @type {string}
854
+ * @memberof V1CreateImageSetImage
855
+ */
856
+ 'imageSetId': string;
857
+ }
858
+ /**
859
+ * successful create of image set image
860
+ * @export
861
+ * @interface V1CreateImageSetImageResponse
862
+ */
863
+ export interface V1CreateImageSetImageResponse {
864
+ /**
865
+ *
866
+ * @type {string}
867
+ * @memberof V1CreateImageSetImageResponse
868
+ */
869
+ 'id': string;
870
+ /**
871
+ *
872
+ * @type {string}
873
+ * @memberof V1CreateImageSetImageResponse
874
+ */
875
+ 'uploadUrl': string;
876
+ }
877
+ /**
878
+ * create a mount
879
+ * @export
880
+ * @interface V1CreateMount
881
+ */
882
+ export interface V1CreateMount {
883
+ /**
884
+ *
885
+ * @type {string}
886
+ * @memberof V1CreateMount
887
+ */
888
+ 'model': string;
889
+ /**
890
+ *
891
+ * @type {MountType}
892
+ * @memberof V1CreateMount
893
+ */
894
+ 'mountType': MountType;
895
+ /**
896
+ *
897
+ * @type {number}
898
+ * @memberof V1CreateMount
899
+ */
900
+ 'slewRate': number;
901
+ }
902
+ /**
903
+ * create node
904
+ * @export
905
+ * @interface V1CreateNode
906
+ */
907
+ export interface V1CreateNode {
908
+ /**
909
+ *
910
+ * @type {string}
911
+ * @memberof V1CreateNode
912
+ */
913
+ 'name': string;
914
+ /**
915
+ *
916
+ * @type {string}
917
+ * @memberof V1CreateNode
918
+ */
919
+ 'observatoryId'?: string;
920
+ /**
921
+ *
922
+ * @type {string}
923
+ * @memberof V1CreateNode
924
+ */
925
+ 'cameraId': string;
926
+ /**
927
+ *
928
+ * @type {string}
929
+ * @memberof V1CreateNode
930
+ */
931
+ 'opticalTubeId': string;
932
+ /**
933
+ *
934
+ * @type {string}
935
+ * @memberof V1CreateNode
936
+ */
937
+ 'mountId': string;
938
+ /**
939
+ *
940
+ * @type {string}
941
+ * @memberof V1CreateNode
942
+ */
943
+ 'filterWheelId'?: string;
944
+ /**
945
+ *
946
+ * @type {number}
947
+ * @memberof V1CreateNode
948
+ */
949
+ 'maxAltitude': number;
950
+ /**
951
+ *
952
+ * @type {Location}
953
+ * @memberof V1CreateNode
954
+ */
955
+ 'location': Location;
956
+ }
957
+ /**
958
+ * create an optical tube
959
+ * @export
960
+ * @interface V1CreateOpticalTube
961
+ */
962
+ export interface V1CreateOpticalTube {
963
+ /**
964
+ *
965
+ * @type {string}
966
+ * @memberof V1CreateOpticalTube
967
+ */
968
+ 'model': string;
969
+ /**
970
+ *
971
+ * @type {number}
972
+ * @memberof V1CreateOpticalTube
973
+ */
974
+ 'focalLengthMm': number;
975
+ /**
976
+ *
977
+ * @type {number}
978
+ * @memberof V1CreateOpticalTube
979
+ */
980
+ 'apertureMm': number;
981
+ /**
982
+ *
983
+ * @type {OpticalTubeType}
984
+ * @memberof V1CreateOpticalTube
985
+ */
986
+ 'type'?: OpticalTubeType;
987
+ }
988
+ /**
989
+ * v1GainCurve
990
+ * @export
991
+ * @interface V1GainCurve
992
+ */
993
+ export interface V1GainCurve {
994
+ /**
995
+ *
996
+ * @type {number}
997
+ * @memberof V1GainCurve
998
+ */
999
+ 'gainMode': number;
1000
+ /**
1001
+ *
1002
+ * @type {Array<V1GainCurvePoint>}
1003
+ * @memberof V1GainCurve
1004
+ */
1005
+ 'gainCurve': Array<V1GainCurvePoint>;
1006
+ /**
1007
+ *
1008
+ * @type {Array<V1ReadNoisePoint>}
1009
+ * @memberof V1GainCurve
1010
+ */
1011
+ 'readoutNoiseCurve'?: Array<V1ReadNoisePoint>;
1012
+ }
1013
+ /**
1014
+ *
1015
+ * @export
1016
+ * @interface V1GainCurvePoint
1017
+ */
1018
+ export interface V1GainCurvePoint {
1019
+ /**
1020
+ *
1021
+ * @type {number}
1022
+ * @memberof V1GainCurvePoint
1023
+ */
1024
+ 'gain': number;
1025
+ /**
1026
+ *
1027
+ * @type {number}
1028
+ * @memberof V1GainCurvePoint
1029
+ */
1030
+ 'eADU': number;
1031
+ }
1032
+ /**
1033
+ * get astro platform credit balance
1034
+ * @export
1035
+ * @interface V1GetAstroPlatformCreditBalanceResponse
1036
+ */
1037
+ export interface V1GetAstroPlatformCreditBalanceResponse {
1038
+ /**
1039
+ *
1040
+ * @type {number}
1041
+ * @memberof V1GetAstroPlatformCreditBalanceResponse
1042
+ */
1043
+ 'amount': number;
1044
+ }
1045
+ /**
1046
+ * get an astro project
1047
+ * @export
1048
+ * @interface V1GetAstroProject
1049
+ */
1050
+ export interface V1GetAstroProject {
1051
+ /**
1052
+ *
1053
+ * @type {string}
1054
+ * @memberof V1GetAstroProject
1055
+ */
1056
+ 'id': string;
1057
+ /**
1058
+ *
1059
+ * @type {string}
1060
+ * @memberof V1GetAstroProject
1061
+ */
1062
+ 'name': string;
1063
+ /**
1064
+ *
1065
+ * @type {string}
1066
+ * @memberof V1GetAstroProject
1067
+ */
1068
+ 'targetId'?: string;
1069
+ /**
1070
+ *
1071
+ * @type {number}
1072
+ * @memberof V1GetAstroProject
1073
+ */
1074
+ 'ra'?: number;
1075
+ /**
1076
+ *
1077
+ * @type {number}
1078
+ * @memberof V1GetAstroProject
1079
+ */
1080
+ 'dec'?: number;
1081
+ /**
1082
+ *
1083
+ * @type {string}
1084
+ * @memberof V1GetAstroProject
1085
+ */
1086
+ 'cameraId': string;
1087
+ /**
1088
+ *
1089
+ * @type {string}
1090
+ * @memberof V1GetAstroProject
1091
+ */
1092
+ 'otaId': string;
1093
+ /**
1094
+ *
1095
+ * @type {Array<string>}
1096
+ * @memberof V1GetAstroProject
1097
+ */
1098
+ 'imageSets'?: Array<string>;
1099
+ /**
1100
+ *
1101
+ * @type {string}
1102
+ * @memberof V1GetAstroProject
1103
+ */
1104
+ 'createdAt': string;
1105
+ /**
1106
+ *
1107
+ * @type {string}
1108
+ * @memberof V1GetAstroProject
1109
+ */
1110
+ 'updatedAt'?: string;
1111
+ }
1112
+ /**
1113
+ * v1GetNodes
1114
+ * @export
1115
+ * @interface V1GetNodes
1116
+ */
1117
+ export interface V1GetNodes {
1118
+ /**
1119
+ *
1120
+ * @type {Array<V1NodeWithLocation>}
1121
+ * @memberof V1GetNodes
1122
+ */
1123
+ 'nodes': Array<V1NodeWithLocation>;
1124
+ }
1125
+ /**
1126
+ * v1GetImageSet
1127
+ * @export
1128
+ * @interface V1ImageSet
1129
+ */
1130
+ export interface V1ImageSet {
1131
+ /**
1132
+ *
1133
+ * @type {string}
1134
+ * @memberof V1ImageSet
1135
+ */
1136
+ 'id': string;
1137
+ /**
1138
+ *
1139
+ * @type {string}
1140
+ * @memberof V1ImageSet
1141
+ */
1142
+ 'targetId'?: string;
1143
+ /**
1144
+ *
1145
+ * @type {number}
1146
+ * @memberof V1ImageSet
1147
+ */
1148
+ 'ra'?: number;
1149
+ /**
1150
+ *
1151
+ * @type {number}
1152
+ * @memberof V1ImageSet
1153
+ */
1154
+ 'dec'?: number;
1155
+ /**
1156
+ *
1157
+ * @type {string}
1158
+ * @memberof V1ImageSet
1159
+ */
1160
+ 'nodeId': string;
1161
+ /**
1162
+ *
1163
+ * @type {string}
1164
+ * @memberof V1ImageSet
1165
+ */
1166
+ 'observationId'?: string;
1167
+ /**
1168
+ *
1169
+ * @type {TrackingType}
1170
+ * @memberof V1ImageSet
1171
+ */
1172
+ 'trackingType': TrackingType;
1173
+ /**
1174
+ *
1175
+ * @type {FilterType}
1176
+ * @memberof V1ImageSet
1177
+ */
1178
+ 'filterType'?: FilterType;
1179
+ /**
1180
+ *
1181
+ * @type {string}
1182
+ * @memberof V1ImageSet
1183
+ */
1184
+ 'createdAt': string;
1185
+ /**
1186
+ *
1187
+ * @type {string}
1188
+ * @memberof V1ImageSet
1189
+ */
1190
+ 'updatedAt'?: string;
1191
+ /**
1192
+ *
1193
+ * @type {string}
1194
+ * @memberof V1ImageSet
1195
+ */
1196
+ 'ourskyPluginVersion'?: string;
1197
+ }
1198
+ /**
1199
+ * v1GetImageSetImage
1200
+ * @export
1201
+ * @interface V1ImageSetImage
1202
+ */
1203
+ export interface V1ImageSetImage {
1204
+ /**
1205
+ *
1206
+ * @type {string}
1207
+ * @memberof V1ImageSetImage
1208
+ */
1209
+ 'id': string;
1210
+ /**
1211
+ *
1212
+ * @type {string}
1213
+ * @memberof V1ImageSetImage
1214
+ */
1215
+ 'thumbnailUrl'?: string;
1216
+ /**
1217
+ *
1218
+ * @type {string}
1219
+ * @memberof V1ImageSetImage
1220
+ */
1221
+ 'imageUrl': string;
1222
+ /**
1223
+ *
1224
+ * @type {string}
1225
+ * @memberof V1ImageSetImage
1226
+ */
1227
+ 'nodeId': string;
1228
+ /**
1229
+ *
1230
+ * @type {string}
1231
+ * @memberof V1ImageSetImage
1232
+ */
1233
+ 'targetId'?: string;
1234
+ /**
1235
+ *
1236
+ * @type {number}
1237
+ * @memberof V1ImageSetImage
1238
+ */
1239
+ 'ra'?: number;
1240
+ /**
1241
+ *
1242
+ * @type {number}
1243
+ * @memberof V1ImageSetImage
1244
+ */
1245
+ 'dec'?: number;
1246
+ /**
1247
+ *
1248
+ * @type {string}
1249
+ * @memberof V1ImageSetImage
1250
+ */
1251
+ 'imageSetId': string;
1252
+ /**
1253
+ *
1254
+ * @type {boolean}
1255
+ * @memberof V1ImageSetImage
1256
+ */
1257
+ 'darkCalibrated': boolean;
1258
+ /**
1259
+ *
1260
+ * @type {boolean}
1261
+ * @memberof V1ImageSetImage
1262
+ */
1263
+ 'flatCalibrated': boolean;
1264
+ /**
1265
+ *
1266
+ * @type {boolean}
1267
+ * @memberof V1ImageSetImage
1268
+ */
1269
+ 'biasCalibrated': boolean;
1270
+ /**
1271
+ *
1272
+ * @type {number}
1273
+ * @memberof V1ImageSetImage
1274
+ */
1275
+ 'fwhmAverage'?: number;
1276
+ /**
1277
+ *
1278
+ * @type {number}
1279
+ * @memberof V1ImageSetImage
1280
+ */
1281
+ 'fwhmStdDev'?: number;
1282
+ /**
1283
+ *
1284
+ * @type {number}
1285
+ * @memberof V1ImageSetImage
1286
+ */
1287
+ 'fwhmAngle'?: number;
1288
+ /**
1289
+ *
1290
+ * @type {number}
1291
+ * @memberof V1ImageSetImage
1292
+ */
1293
+ 'raOffset'?: number;
1294
+ /**
1295
+ *
1296
+ * @type {number}
1297
+ * @memberof V1ImageSetImage
1298
+ */
1299
+ 'decOffset'?: number;
1300
+ /**
1301
+ *
1302
+ * @type {number}
1303
+ * @memberof V1ImageSetImage
1304
+ */
1305
+ 'totalOffset'?: number;
1306
+ /**
1307
+ *
1308
+ * @type {number}
1309
+ * @memberof V1ImageSetImage
1310
+ */
1311
+ 'totalOffsetStdDev'?: number;
1312
+ /**
1313
+ *
1314
+ * @type {number}
1315
+ * @memberof V1ImageSetImage
1316
+ */
1317
+ 'totalOffsetRMS'?: number;
1318
+ /**
1319
+ *
1320
+ * @type {string}
1321
+ * @memberof V1ImageSetImage
1322
+ */
1323
+ 'capturedAt': string;
1324
+ /**
1325
+ *
1326
+ * @type {string}
1327
+ * @memberof V1ImageSetImage
1328
+ */
1329
+ 'createdAt': string;
1330
+ /**
1331
+ *
1332
+ * @type {number}
1333
+ * @memberof V1ImageSetImage
1334
+ */
1335
+ 'binning'?: number;
1336
+ /**
1337
+ *
1338
+ * @type {number}
1339
+ * @memberof V1ImageSetImage
1340
+ */
1341
+ 'exposureLength': number;
1342
+ }
1343
+ /**
1344
+ * v1Mount
1345
+ * @export
1346
+ * @interface V1Mount
1347
+ */
1348
+ export interface V1Mount {
1349
+ /**
1350
+ *
1351
+ * @type {string}
1352
+ * @memberof V1Mount
1353
+ */
1354
+ 'id': string;
1355
+ /**
1356
+ *
1357
+ * @type {string}
1358
+ * @memberof V1Mount
1359
+ */
1360
+ 'model': string;
1361
+ }
1362
+ /**
1363
+ * v1Node
1364
+ * @export
1365
+ * @interface V1Node
1366
+ */
1367
+ export interface V1Node {
1368
+ /**
1369
+ *
1370
+ * @type {string}
1371
+ * @memberof V1Node
1372
+ */
1373
+ 'name': string;
1374
+ /**
1375
+ *
1376
+ * @type {string}
1377
+ * @memberof V1Node
1378
+ */
1379
+ 'observatoryId'?: string;
1380
+ /**
1381
+ *
1382
+ * @type {string}
1383
+ * @memberof V1Node
1384
+ */
1385
+ 'organizationId': string;
1386
+ /**
1387
+ *
1388
+ * @type {string}
1389
+ * @memberof V1Node
1390
+ */
1391
+ 'cameraId': string;
1392
+ /**
1393
+ *
1394
+ * @type {string}
1395
+ * @memberof V1Node
1396
+ */
1397
+ 'opticalTubeId': string;
1398
+ /**
1399
+ *
1400
+ * @type {string}
1401
+ * @memberof V1Node
1402
+ */
1403
+ 'mountId': string;
1404
+ /**
1405
+ *
1406
+ * @type {string}
1407
+ * @memberof V1Node
1408
+ */
1409
+ 'filterWheelId'?: string;
1410
+ /**
1411
+ *
1412
+ * @type {number}
1413
+ * @memberof V1Node
1414
+ */
1415
+ 'minAltitude': number;
1416
+ /**
1417
+ *
1418
+ * @type {string}
1419
+ * @memberof V1Node
1420
+ */
1421
+ 'createdAt': string;
1422
+ /**
1423
+ *
1424
+ * @type {string}
1425
+ * @memberof V1Node
1426
+ */
1427
+ 'updatedAt'?: string;
1428
+ /**
1429
+ *
1430
+ * @type {NodeState}
1431
+ * @memberof V1Node
1432
+ */
1433
+ 'state'?: NodeState;
1434
+ /**
1435
+ *
1436
+ * @type {string}
1437
+ * @memberof V1Node
1438
+ */
1439
+ 'id': string;
1440
+ }
1441
+ /**
1442
+ * v1NodeWithLocation
1443
+ * @export
1444
+ * @interface V1NodeWithLocation
1445
+ */
1446
+ export interface V1NodeWithLocation {
1447
+ /**
1448
+ *
1449
+ * @type {V1Node}
1450
+ * @memberof V1NodeWithLocation
1451
+ */
1452
+ 'node': V1Node;
1453
+ /**
1454
+ *
1455
+ * @type {Location}
1456
+ * @memberof V1NodeWithLocation
1457
+ */
1458
+ 'location': Location;
1459
+ }
1460
+ /**
1461
+ * v1OpticalTube
1462
+ * @export
1463
+ * @interface V1OpticalTube
1464
+ */
1465
+ export interface V1OpticalTube {
1466
+ /**
1467
+ *
1468
+ * @type {string}
1469
+ * @memberof V1OpticalTube
1470
+ */
1471
+ 'id': string;
1472
+ /**
1473
+ *
1474
+ * @type {string}
1475
+ * @memberof V1OpticalTube
1476
+ */
1477
+ 'model': string;
1478
+ /**
1479
+ *
1480
+ * @type {number}
1481
+ * @memberof V1OpticalTube
1482
+ */
1483
+ 'focalLengthMm': number;
1484
+ /**
1485
+ *
1486
+ * @type {number}
1487
+ * @memberof V1OpticalTube
1488
+ */
1489
+ 'apertureMm': number;
1490
+ }
1491
+ /**
1492
+ * platform credit
1493
+ * @export
1494
+ * @interface V1PlatformCredit
1495
+ */
1496
+ export interface V1PlatformCredit {
1497
+ /**
1498
+ *
1499
+ * @type {string}
1500
+ * @memberof V1PlatformCredit
1501
+ */
1502
+ 'id': string;
1503
+ /**
1504
+ *
1505
+ * @type {string}
1506
+ * @memberof V1PlatformCredit
1507
+ */
1508
+ 'organization'?: string;
1509
+ /**
1510
+ *
1511
+ * @type {V1PlatformCreditType}
1512
+ * @memberof V1PlatformCredit
1513
+ */
1514
+ 'type': V1PlatformCreditType;
1515
+ /**
1516
+ *
1517
+ * @type {V1PlatformCreditUnit}
1518
+ * @memberof V1PlatformCredit
1519
+ */
1520
+ 'unit': V1PlatformCreditUnit;
1521
+ /**
1522
+ *
1523
+ * @type {V1PlatformCreditSource}
1524
+ * @memberof V1PlatformCredit
1525
+ */
1526
+ 'source': V1PlatformCreditSource;
1527
+ /**
1528
+ *
1529
+ * @type {number}
1530
+ * @memberof V1PlatformCredit
1531
+ */
1532
+ 'amount': number;
1533
+ /**
1534
+ *
1535
+ * @type {string}
1536
+ * @memberof V1PlatformCredit
1537
+ */
1538
+ 'createdBy': string;
1539
+ /**
1540
+ *
1541
+ * @type {string}
1542
+ * @memberof V1PlatformCredit
1543
+ */
1544
+ 'createdAt': string;
1545
+ /**
1546
+ *
1547
+ * @type {string}
1548
+ * @memberof V1PlatformCredit
1549
+ */
1550
+ 'updatedAt': string;
1551
+ }
1552
+ /**
1553
+ * platform credit source
1554
+ * @export
1555
+ * @enum {string}
1556
+ */
1557
+ export declare const V1PlatformCreditSource: {
1558
+ readonly SIGNUP: "SIGNUP";
1559
+ readonly OSR_CONTRIBUTION: "OSR_CONTRIBUTION";
1560
+ readonly STACKING: "STACKING";
1561
+ readonly ADMIN: "ADMIN";
1562
+ };
1563
+ export type V1PlatformCreditSource = typeof V1PlatformCreditSource[keyof typeof V1PlatformCreditSource];
1564
+ /**
1565
+ * platform credit type
1566
+ * @export
1567
+ * @enum {string}
1568
+ */
1569
+ export declare const V1PlatformCreditType: {
1570
+ readonly ASTRO_PLATFORM_USAGE: "ASTRO_PLATFORM_USAGE";
1571
+ };
1572
+ export type V1PlatformCreditType = typeof V1PlatformCreditType[keyof typeof V1PlatformCreditType];
1573
+ /**
1574
+ * platform credit unit
1575
+ * @export
1576
+ * @enum {string}
1577
+ */
1578
+ export declare const V1PlatformCreditUnit: {
1579
+ readonly MEGABYTE: "MEGABYTE";
1580
+ };
1581
+ export type V1PlatformCreditUnit = typeof V1PlatformCreditUnit[keyof typeof V1PlatformCreditUnit];
1582
+ /**
1583
+ * stack an astro project
1584
+ * @export
1585
+ * @interface V1PutStackAstroProject
1586
+ */
1587
+ export interface V1PutStackAstroProject {
1588
+ /**
1589
+ *
1590
+ * @type {string}
1591
+ * @memberof V1PutStackAstroProject
1592
+ */
1593
+ 'projectId': string;
1594
+ }
1595
+ /**
1596
+ *
1597
+ * @export
1598
+ * @interface V1ReadNoisePoint
1599
+ */
1600
+ export interface V1ReadNoisePoint {
1601
+ /**
1602
+ *
1603
+ * @type {number}
1604
+ * @memberof V1ReadNoisePoint
1605
+ */
1606
+ 'gain': number;
1607
+ /**
1608
+ *
1609
+ * @type {number}
1610
+ * @memberof V1ReadNoisePoint
1611
+ */
1612
+ 'eRMS': number;
1613
+ }
1614
+ /**
1615
+ * v1SetupAction
1616
+ * @export
1617
+ * @interface V1SetupAction
1618
+ */
1619
+ export interface V1SetupAction {
1620
+ /**
1621
+ *
1622
+ * @type {string}
1623
+ * @memberof V1SetupAction
1624
+ */
1625
+ 'action': string;
1626
+ /**
1627
+ *
1628
+ * @type {Array<string>}
1629
+ * @memberof V1SetupAction
1630
+ */
1631
+ 'arguments'?: Array<string>;
1632
+ }
1633
+ /**
1634
+ * update node
1635
+ * @export
1636
+ * @interface V1UpdateNode
1637
+ */
1638
+ export interface V1UpdateNode {
1639
+ /**
1640
+ *
1641
+ * @type {string}
1642
+ * @memberof V1UpdateNode
1643
+ */
1644
+ 'nodeId': string;
1645
+ /**
1646
+ *
1647
+ * @type {string}
1648
+ * @memberof V1UpdateNode
1649
+ */
1650
+ 'name'?: string;
1651
+ /**
1652
+ *
1653
+ * @type {string}
1654
+ * @memberof V1UpdateNode
1655
+ */
1656
+ 'observatoryId'?: string;
1657
+ /**
1658
+ *
1659
+ * @type {string}
1660
+ * @memberof V1UpdateNode
1661
+ */
1662
+ 'cameraId'?: string;
1663
+ /**
1664
+ *
1665
+ * @type {string}
1666
+ * @memberof V1UpdateNode
1667
+ */
1668
+ 'opticalTubeId'?: string;
1669
+ /**
1670
+ *
1671
+ * @type {string}
1672
+ * @memberof V1UpdateNode
1673
+ */
1674
+ 'mountId'?: string;
1675
+ /**
1676
+ *
1677
+ * @type {string}
1678
+ * @memberof V1UpdateNode
1679
+ */
1680
+ 'filterWheelId'?: string;
1681
+ /**
1682
+ *
1683
+ * @type {number}
1684
+ * @memberof V1UpdateNode
1685
+ */
1686
+ 'maxAltitude'?: number;
1687
+ /**
1688
+ *
1689
+ * @type {Location}
1690
+ * @memberof V1UpdateNode
1691
+ */
1692
+ 'location'?: Location;
1693
+ /**
1694
+ *
1695
+ * @type {NodeState}
1696
+ * @memberof V1UpdateNode
1697
+ */
1698
+ 'state'?: NodeState;
1699
+ }
1700
+ /**
1701
+ * DefaultApi - axios parameter creator
1702
+ * @export
1703
+ */
1704
+ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
1705
+ /**
1706
+ * match camera
1707
+ * @param {string} [model]
1708
+ * @param {number} [pixelSizeMicrons]
1709
+ * @param {number} [pixelsX]
1710
+ * @param {number} [pixelsY]
1711
+ * @param {number} [megapixels]
1712
+ * @param {boolean} [chilled]
1713
+ * @param {number} [adcBitDepth]
1714
+ * @param {boolean} [isColor]
1715
+ * @param {*} [options] Override http request option.
1716
+ * @throws {RequiredError}
1717
+ */
1718
+ v1CameraMatch: (model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1719
+ /**
1720
+ * create an astro user camera
1721
+ * @param {V1CreateCamera} v1CreateCamera request to create an camera
1722
+ * @param {*} [options] Override http request option.
1723
+ * @throws {RequiredError}
1724
+ */
1725
+ v1CreateAstroCamera: (v1CreateCamera: V1CreateCamera, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1726
+ /**
1727
+ * create an astro user mount
1728
+ * @param {V1CreateMount} v1CreateMount request to create a mount
1729
+ * @param {*} [options] Override http request option.
1730
+ * @throws {RequiredError}
1731
+ */
1732
+ v1CreateAstroMount: (v1CreateMount: V1CreateMount, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1733
+ /**
1734
+ * create an optical tube for an astro user
1735
+ * @param {V1CreateOpticalTube} v1CreateOpticalTube request to create an optical tube
1736
+ * @param {*} [options] Override http request option.
1737
+ * @throws {RequiredError}
1738
+ */
1739
+ v1CreateAstroOpticalTube: (v1CreateOpticalTube: V1CreateOpticalTube, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1740
+ /**
1741
+ * create an astro project
1742
+ * @param {V1CreateAstroProject} v1CreateAstroProject request to create an astro project
1743
+ * @param {*} [options] Override http request option.
1744
+ * @throws {RequiredError}
1745
+ */
1746
+ v1CreateAstroProject: (v1CreateAstroProject: V1CreateAstroProject, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1747
+ /**
1748
+ * create a project image set
1749
+ * @param {V1CreateAstroProjectImageSet} v1CreateAstroProjectImageSet request to create a project image Set
1750
+ * @param {*} [options] Override http request option.
1751
+ * @throws {RequiredError}
1752
+ */
1753
+ v1CreateAstroProjectImageSet: (v1CreateAstroProjectImageSet: V1CreateAstroProjectImageSet, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1754
+ /**
1755
+ * create an calibration master
1756
+ * @param {V1CreateCalibrationMaster} v1CreateCalibrationMaster request to create the calibration master
1757
+ * @param {*} [options] Override http request option.
1758
+ * @throws {RequiredError}
1759
+ */
1760
+ v1CreateCalibrationMaster: (v1CreateCalibrationMaster: V1CreateCalibrationMaster, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1761
+ /**
1762
+ * create an image set
1763
+ * @param {V1CreateImageSet} v1CreateImageSet request to create the Image Set
1764
+ * @param {*} [options] Override http request option.
1765
+ * @throws {RequiredError}
1766
+ */
1767
+ v1CreateImageSet: (v1CreateImageSet: V1CreateImageSet, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1768
+ /**
1769
+ * create an image set image
1770
+ * @param {V1CreateImageSetImage} v1CreateImageSetImage request to create an image set image
1771
+ * @param {*} [options] Override http request option.
1772
+ * @throws {RequiredError}
1773
+ */
1774
+ v1CreateImageSetImage: (v1CreateImageSetImage: V1CreateImageSetImage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1775
+ /**
1776
+ * create a node
1777
+ * @param {V1CreateNode} v1CreateNode request to create a node
1778
+ * @param {*} [options] Override http request option.
1779
+ * @throws {RequiredError}
1780
+ */
1781
+ v1CreateNode: (v1CreateNode: V1CreateNode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1782
+ /**
1783
+ * get an astro camera
1784
+ * @param {string} id
1785
+ * @param {*} [options] Override http request option.
1786
+ * @throws {RequiredError}
1787
+ */
1788
+ v1GetAstroCamera: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1789
+ /**
1790
+ * get an astro mount
1791
+ * @param {string} id
1792
+ * @param {*} [options] Override http request option.
1793
+ * @throws {RequiredError}
1794
+ */
1795
+ v1GetAstroMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1796
+ /**
1797
+ * get an optical tube
1798
+ * @param {string} id
1799
+ * @param {*} [options] Override http request option.
1800
+ * @throws {RequiredError}
1801
+ */
1802
+ v1GetAstroOpticalTube: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1803
+ /**
1804
+ * get astro platform credit balance
1805
+ * @param {*} [options] Override http request option.
1806
+ * @throws {RequiredError}
1807
+ */
1808
+ v1GetAstroPlatformCreditBalance: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1809
+ /**
1810
+ * get an astro project
1811
+ * @param {string} astroProjectId
1812
+ * @param {*} [options] Override http request option.
1813
+ * @throws {RequiredError}
1814
+ */
1815
+ v1GetAstroProject: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1816
+ /**
1817
+ * get all assets for an astro project
1818
+ * @param {string} astroProjectId
1819
+ * @param {*} [options] Override http request option.
1820
+ * @throws {RequiredError}
1821
+ */
1822
+ v1GetAstroProjectAssets: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1823
+ /**
1824
+ * get all astro projects
1825
+ * @param {*} [options] Override http request option.
1826
+ * @throws {RequiredError}
1827
+ */
1828
+ v1GetAstroProjects: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1829
+ /**
1830
+ * Get an astro targets. pass in an ID, an NGC ID or an IC ID
1831
+ * @param {string} [id]
1832
+ * @param {string} [ngcId]
1833
+ * @param {string} [icId]
1834
+ * @param {*} [options] Override http request option.
1835
+ * @throws {RequiredError}
1836
+ */
1837
+ v1GetAstroTarget: (id?: string, ngcId?: string, icId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1838
+ /**
1839
+ * Get all astro targets. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
1840
+ * @param {string} [lastId]
1841
+ * @param {string} [catalogId]
1842
+ * @param {number} [ra]
1843
+ * @param {number} [dec]
1844
+ * @param {*} [options] Override http request option.
1845
+ * @throws {RequiredError}
1846
+ */
1847
+ v1GetAstroTargets: (lastId?: string, catalogId?: string, ra?: number, dec?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1848
+ /**
1849
+ * get all calibration masters for a node
1850
+ * @param {string} nodeId
1851
+ * @param {*} [options] Override http request option.
1852
+ * @throws {RequiredError}
1853
+ */
1854
+ v1GetCalibrationMasters: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1855
+ /**
1856
+ * get all cameras
1857
+ * @param {*} [options] Override http request option.
1858
+ * @throws {RequiredError}
1859
+ */
1860
+ v1GetCameras: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1861
+ /**
1862
+ * get an image set
1863
+ * @param {string} id
1864
+ * @param {*} [options] Override http request option.
1865
+ * @throws {RequiredError}
1866
+ */
1867
+ v1GetImageSet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1868
+ /**
1869
+ * get an image
1870
+ * @param {string} imageId
1871
+ * @param {*} [options] Override http request option.
1872
+ * @throws {RequiredError}
1873
+ */
1874
+ v1GetImageSetImage: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1875
+ /**
1876
+ * get image set images
1877
+ * @param {Array<string>} imageSets
1878
+ * @param {*} [options] Override http request option.
1879
+ * @throws {RequiredError}
1880
+ */
1881
+ v1GetImageSetImages: (imageSets: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1882
+ /**
1883
+ * get image sets for targets observed for your organization
1884
+ * @param {*} [options] Override http request option.
1885
+ * @throws {RequiredError}
1886
+ */
1887
+ v1GetImageSets: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1888
+ /**
1889
+ * get mounts
1890
+ * @param {*} [options] Override http request option.
1891
+ * @throws {RequiredError}
1892
+ */
1893
+ v1GetMounts: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1894
+ /**
1895
+ * get all nodes
1896
+ * @param {*} [options] Override http request option.
1897
+ * @throws {RequiredError}
1898
+ */
1899
+ v1GetNodes: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1900
+ /**
1901
+ * get platform credits
1902
+ * @param {*} [options] Override http request option.
1903
+ * @throws {RequiredError}
1904
+ */
1905
+ v1GetPlatformCredits: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1906
+ /**
1907
+ * search for an astro project with certain properties
1908
+ * @param {string} targetId
1909
+ * @param {string} cameraId
1910
+ * @param {string} otaId
1911
+ * @param {*} [options] Override http request option.
1912
+ * @throws {RequiredError}
1913
+ */
1914
+ v1MatchAstroProject: (targetId: string, cameraId: string, otaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1915
+ /**
1916
+ * match mount
1917
+ * @param {string} [model]
1918
+ * @param {*} [options] Override http request option.
1919
+ * @throws {RequiredError}
1920
+ */
1921
+ v1MountMatch: (model?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1922
+ /**
1923
+ * match optical tube
1924
+ * @param {string} [model]
1925
+ * @param {number} [focalLengthMm]
1926
+ * @param {number} [apertureMm]
1927
+ * @param {*} [options] Override http request option.
1928
+ * @throws {RequiredError}
1929
+ */
1930
+ v1OpticalTubeMatch: (model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1931
+ /**
1932
+ * stack an astro project
1933
+ * @param {V1PutStackAstroProject} v1PutStackAstroProject request to stack an astro project
1934
+ * @param {*} [options] Override http request option.
1935
+ * @throws {RequiredError}
1936
+ */
1937
+ v1PutStackAstroProject: (v1PutStackAstroProject: V1PutStackAstroProject, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1938
+ /**
1939
+ * update a node
1940
+ * @param {V1UpdateNode} v1UpdateNode request to update a node
1941
+ * @param {*} [options] Override http request option.
1942
+ * @throws {RequiredError}
1943
+ */
1944
+ v1UpdateNode: (v1UpdateNode: V1UpdateNode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1945
+ };
1946
+ /**
1947
+ * DefaultApi - functional programming interface
1948
+ * @export
1949
+ */
1950
+ export declare const DefaultApiFp: (configuration?: Configuration) => {
1951
+ /**
1952
+ * match camera
1953
+ * @param {string} [model]
1954
+ * @param {number} [pixelSizeMicrons]
1955
+ * @param {number} [pixelsX]
1956
+ * @param {number} [pixelsY]
1957
+ * @param {number} [megapixels]
1958
+ * @param {boolean} [chilled]
1959
+ * @param {number} [adcBitDepth]
1960
+ * @param {boolean} [isColor]
1961
+ * @param {*} [options] Override http request option.
1962
+ * @throws {RequiredError}
1963
+ */
1964
+ v1CameraMatch(model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
1965
+ /**
1966
+ * create an astro user camera
1967
+ * @param {V1CreateCamera} v1CreateCamera request to create an camera
1968
+ * @param {*} [options] Override http request option.
1969
+ * @throws {RequiredError}
1970
+ */
1971
+ v1CreateAstroCamera(v1CreateCamera: V1CreateCamera, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1972
+ /**
1973
+ * create an astro user mount
1974
+ * @param {V1CreateMount} v1CreateMount request to create a mount
1975
+ * @param {*} [options] Override http request option.
1976
+ * @throws {RequiredError}
1977
+ */
1978
+ v1CreateAstroMount(v1CreateMount: V1CreateMount, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1979
+ /**
1980
+ * create an optical tube for an astro user
1981
+ * @param {V1CreateOpticalTube} v1CreateOpticalTube request to create an optical tube
1982
+ * @param {*} [options] Override http request option.
1983
+ * @throws {RequiredError}
1984
+ */
1985
+ v1CreateAstroOpticalTube(v1CreateOpticalTube: V1CreateOpticalTube, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1986
+ /**
1987
+ * create an astro project
1988
+ * @param {V1CreateAstroProject} v1CreateAstroProject request to create an astro project
1989
+ * @param {*} [options] Override http request option.
1990
+ * @throws {RequiredError}
1991
+ */
1992
+ v1CreateAstroProject(v1CreateAstroProject: V1CreateAstroProject, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateAstroProjectResponse>>;
1993
+ /**
1994
+ * create a project image set
1995
+ * @param {V1CreateAstroProjectImageSet} v1CreateAstroProjectImageSet request to create a project image Set
1996
+ * @param {*} [options] Override http request option.
1997
+ * @throws {RequiredError}
1998
+ */
1999
+ v1CreateAstroProjectImageSet(v1CreateAstroProjectImageSet: V1CreateAstroProjectImageSet, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2000
+ /**
2001
+ * create an calibration master
2002
+ * @param {V1CreateCalibrationMaster} v1CreateCalibrationMaster request to create the calibration master
2003
+ * @param {*} [options] Override http request option.
2004
+ * @throws {RequiredError}
2005
+ */
2006
+ v1CreateCalibrationMaster(v1CreateCalibrationMaster: V1CreateCalibrationMaster, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalibrationMasterCreateResponse>>;
2007
+ /**
2008
+ * create an image set
2009
+ * @param {V1CreateImageSet} v1CreateImageSet request to create the Image Set
2010
+ * @param {*} [options] Override http request option.
2011
+ * @throws {RequiredError}
2012
+ */
2013
+ v1CreateImageSet(v1CreateImageSet: V1CreateImageSet, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2014
+ /**
2015
+ * create an image set image
2016
+ * @param {V1CreateImageSetImage} v1CreateImageSetImage request to create an image set image
2017
+ * @param {*} [options] Override http request option.
2018
+ * @throws {RequiredError}
2019
+ */
2020
+ v1CreateImageSetImage(v1CreateImageSetImage: V1CreateImageSetImage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
2021
+ /**
2022
+ * create a node
2023
+ * @param {V1CreateNode} v1CreateNode request to create a node
2024
+ * @param {*} [options] Override http request option.
2025
+ * @throws {RequiredError}
2026
+ */
2027
+ v1CreateNode(v1CreateNode: V1CreateNode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2028
+ /**
2029
+ * get an astro camera
2030
+ * @param {string} id
2031
+ * @param {*} [options] Override http request option.
2032
+ * @throws {RequiredError}
2033
+ */
2034
+ v1GetAstroCamera(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Camera>>;
2035
+ /**
2036
+ * get an astro mount
2037
+ * @param {string} id
2038
+ * @param {*} [options] Override http request option.
2039
+ * @throws {RequiredError}
2040
+ */
2041
+ v1GetAstroMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
2042
+ /**
2043
+ * get an optical tube
2044
+ * @param {string} id
2045
+ * @param {*} [options] Override http request option.
2046
+ * @throws {RequiredError}
2047
+ */
2048
+ v1GetAstroOpticalTube(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OpticalTube>>;
2049
+ /**
2050
+ * get astro platform credit balance
2051
+ * @param {*} [options] Override http request option.
2052
+ * @throws {RequiredError}
2053
+ */
2054
+ v1GetAstroPlatformCreditBalance(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetAstroPlatformCreditBalanceResponse>>;
2055
+ /**
2056
+ * get an astro project
2057
+ * @param {string} astroProjectId
2058
+ * @param {*} [options] Override http request option.
2059
+ * @throws {RequiredError}
2060
+ */
2061
+ v1GetAstroProject(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetAstroProject>>;
2062
+ /**
2063
+ * get all assets for an astro project
2064
+ * @param {string} astroProjectId
2065
+ * @param {*} [options] Override http request option.
2066
+ * @throws {RequiredError}
2067
+ */
2068
+ v1GetAstroProjectAssets(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1AstroProjectAsset>>>;
2069
+ /**
2070
+ * get all astro projects
2071
+ * @param {*} [options] Override http request option.
2072
+ * @throws {RequiredError}
2073
+ */
2074
+ v1GetAstroProjects(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1GetAstroProject>>>;
2075
+ /**
2076
+ * Get an astro targets. pass in an ID, an NGC ID or an IC ID
2077
+ * @param {string} [id]
2078
+ * @param {string} [ngcId]
2079
+ * @param {string} [icId]
2080
+ * @param {*} [options] Override http request option.
2081
+ * @throws {RequiredError}
2082
+ */
2083
+ v1GetAstroTarget(id?: string, ngcId?: string, icId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1AstroTarget>>;
2084
+ /**
2085
+ * Get all astro targets. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
2086
+ * @param {string} [lastId]
2087
+ * @param {string} [catalogId]
2088
+ * @param {number} [ra]
2089
+ * @param {number} [dec]
2090
+ * @param {*} [options] Override http request option.
2091
+ * @throws {RequiredError}
2092
+ */
2093
+ v1GetAstroTargets(lastId?: string, catalogId?: string, ra?: number, dec?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1AstroTarget>>>;
2094
+ /**
2095
+ * get all calibration masters for a node
2096
+ * @param {string} nodeId
2097
+ * @param {*} [options] Override http request option.
2098
+ * @throws {RequiredError}
2099
+ */
2100
+ v1GetCalibrationMasters(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1CalibrationMaster>>>;
2101
+ /**
2102
+ * get all cameras
2103
+ * @param {*} [options] Override http request option.
2104
+ * @throws {RequiredError}
2105
+ */
2106
+ v1GetCameras(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
2107
+ /**
2108
+ * get an image set
2109
+ * @param {string} id
2110
+ * @param {*} [options] Override http request option.
2111
+ * @throws {RequiredError}
2112
+ */
2113
+ v1GetImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageSet>>;
2114
+ /**
2115
+ * get an image
2116
+ * @param {string} imageId
2117
+ * @param {*} [options] Override http request option.
2118
+ * @throws {RequiredError}
2119
+ */
2120
+ v1GetImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageSetImage>>;
2121
+ /**
2122
+ * get image set images
2123
+ * @param {Array<string>} imageSets
2124
+ * @param {*} [options] Override http request option.
2125
+ * @throws {RequiredError}
2126
+ */
2127
+ v1GetImageSetImages(imageSets: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ImageSetImage>>>;
2128
+ /**
2129
+ * get image sets for targets observed for your organization
2130
+ * @param {*} [options] Override http request option.
2131
+ * @throws {RequiredError}
2132
+ */
2133
+ v1GetImageSets(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ImageSet>>>;
2134
+ /**
2135
+ * get mounts
2136
+ * @param {*} [options] Override http request option.
2137
+ * @throws {RequiredError}
2138
+ */
2139
+ v1GetMounts(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>>;
2140
+ /**
2141
+ * get all nodes
2142
+ * @param {*} [options] Override http request option.
2143
+ * @throws {RequiredError}
2144
+ */
2145
+ v1GetNodes(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetNodes>>;
2146
+ /**
2147
+ * get platform credits
2148
+ * @param {*} [options] Override http request option.
2149
+ * @throws {RequiredError}
2150
+ */
2151
+ v1GetPlatformCredits(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlatformCredit>>>;
2152
+ /**
2153
+ * search for an astro project with certain properties
2154
+ * @param {string} targetId
2155
+ * @param {string} cameraId
2156
+ * @param {string} otaId
2157
+ * @param {*} [options] Override http request option.
2158
+ * @throws {RequiredError}
2159
+ */
2160
+ v1MatchAstroProject(targetId: string, cameraId: string, otaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1GetAstroProject>>>;
2161
+ /**
2162
+ * match mount
2163
+ * @param {string} [model]
2164
+ * @param {*} [options] Override http request option.
2165
+ * @throws {RequiredError}
2166
+ */
2167
+ v1MountMatch(model?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>>;
2168
+ /**
2169
+ * match optical tube
2170
+ * @param {string} [model]
2171
+ * @param {number} [focalLengthMm]
2172
+ * @param {number} [apertureMm]
2173
+ * @param {*} [options] Override http request option.
2174
+ * @throws {RequiredError}
2175
+ */
2176
+ v1OpticalTubeMatch(model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1OpticalTube>>>;
2177
+ /**
2178
+ * stack an astro project
2179
+ * @param {V1PutStackAstroProject} v1PutStackAstroProject request to stack an astro project
2180
+ * @param {*} [options] Override http request option.
2181
+ * @throws {RequiredError}
2182
+ */
2183
+ v1PutStackAstroProject(v1PutStackAstroProject: V1PutStackAstroProject, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2184
+ /**
2185
+ * update a node
2186
+ * @param {V1UpdateNode} v1UpdateNode request to update a node
2187
+ * @param {*} [options] Override http request option.
2188
+ * @throws {RequiredError}
2189
+ */
2190
+ v1UpdateNode(v1UpdateNode: V1UpdateNode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2191
+ };
2192
+ /**
2193
+ * DefaultApi - factory interface
2194
+ * @export
2195
+ */
2196
+ export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2197
+ /**
2198
+ * match camera
2199
+ * @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
2200
+ * @param {*} [options] Override http request option.
2201
+ * @throws {RequiredError}
2202
+ */
2203
+ v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
2204
+ /**
2205
+ * create an astro user camera
2206
+ * @param {DefaultApiV1CreateAstroCameraRequest} requestParameters Request parameters.
2207
+ * @param {*} [options] Override http request option.
2208
+ * @throws {RequiredError}
2209
+ */
2210
+ v1CreateAstroCamera(requestParameters: DefaultApiV1CreateAstroCameraRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2211
+ /**
2212
+ * create an astro user mount
2213
+ * @param {DefaultApiV1CreateAstroMountRequest} requestParameters Request parameters.
2214
+ * @param {*} [options] Override http request option.
2215
+ * @throws {RequiredError}
2216
+ */
2217
+ v1CreateAstroMount(requestParameters: DefaultApiV1CreateAstroMountRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2218
+ /**
2219
+ * create an optical tube for an astro user
2220
+ * @param {DefaultApiV1CreateAstroOpticalTubeRequest} requestParameters Request parameters.
2221
+ * @param {*} [options] Override http request option.
2222
+ * @throws {RequiredError}
2223
+ */
2224
+ v1CreateAstroOpticalTube(requestParameters: DefaultApiV1CreateAstroOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2225
+ /**
2226
+ * create an astro project
2227
+ * @param {DefaultApiV1CreateAstroProjectRequest} requestParameters Request parameters.
2228
+ * @param {*} [options] Override http request option.
2229
+ * @throws {RequiredError}
2230
+ */
2231
+ v1CreateAstroProject(requestParameters: DefaultApiV1CreateAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateAstroProjectResponse>;
2232
+ /**
2233
+ * create a project image set
2234
+ * @param {DefaultApiV1CreateAstroProjectImageSetRequest} requestParameters Request parameters.
2235
+ * @param {*} [options] Override http request option.
2236
+ * @throws {RequiredError}
2237
+ */
2238
+ v1CreateAstroProjectImageSet(requestParameters: DefaultApiV1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2239
+ /**
2240
+ * create an calibration master
2241
+ * @param {DefaultApiV1CreateCalibrationMasterRequest} requestParameters Request parameters.
2242
+ * @param {*} [options] Override http request option.
2243
+ * @throws {RequiredError}
2244
+ */
2245
+ v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<CalibrationMasterCreateResponse>;
2246
+ /**
2247
+ * create an image set
2248
+ * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
2249
+ * @param {*} [options] Override http request option.
2250
+ * @throws {RequiredError}
2251
+ */
2252
+ v1CreateImageSet(requestParameters: DefaultApiV1CreateImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2253
+ /**
2254
+ * create an image set image
2255
+ * @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
2256
+ * @param {*} [options] Override http request option.
2257
+ * @throws {RequiredError}
2258
+ */
2259
+ v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
2260
+ /**
2261
+ * create a node
2262
+ * @param {DefaultApiV1CreateNodeRequest} requestParameters Request parameters.
2263
+ * @param {*} [options] Override http request option.
2264
+ * @throws {RequiredError}
2265
+ */
2266
+ v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2267
+ /**
2268
+ * get an astro camera
2269
+ * @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
2270
+ * @param {*} [options] Override http request option.
2271
+ * @throws {RequiredError}
2272
+ */
2273
+ v1GetAstroCamera(requestParameters: DefaultApiV1GetAstroCameraRequest, options?: AxiosRequestConfig): AxiosPromise<V1Camera>;
2274
+ /**
2275
+ * get an astro mount
2276
+ * @param {DefaultApiV1GetAstroMountRequest} requestParameters Request parameters.
2277
+ * @param {*} [options] Override http request option.
2278
+ * @throws {RequiredError}
2279
+ */
2280
+ v1GetAstroMount(requestParameters: DefaultApiV1GetAstroMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
2281
+ /**
2282
+ * get an optical tube
2283
+ * @param {DefaultApiV1GetAstroOpticalTubeRequest} requestParameters Request parameters.
2284
+ * @param {*} [options] Override http request option.
2285
+ * @throws {RequiredError}
2286
+ */
2287
+ v1GetAstroOpticalTube(requestParameters: DefaultApiV1GetAstroOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube>;
2288
+ /**
2289
+ * get astro platform credit balance
2290
+ * @param {*} [options] Override http request option.
2291
+ * @throws {RequiredError}
2292
+ */
2293
+ v1GetAstroPlatformCreditBalance(options?: AxiosRequestConfig): AxiosPromise<V1GetAstroPlatformCreditBalanceResponse>;
2294
+ /**
2295
+ * get an astro project
2296
+ * @param {DefaultApiV1GetAstroProjectRequest} requestParameters Request parameters.
2297
+ * @param {*} [options] Override http request option.
2298
+ * @throws {RequiredError}
2299
+ */
2300
+ v1GetAstroProject(requestParameters: DefaultApiV1GetAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetAstroProject>;
2301
+ /**
2302
+ * get all assets for an astro project
2303
+ * @param {DefaultApiV1GetAstroProjectAssetsRequest} requestParameters Request parameters.
2304
+ * @param {*} [options] Override http request option.
2305
+ * @throws {RequiredError}
2306
+ */
2307
+ v1GetAstroProjectAssets(requestParameters: DefaultApiV1GetAstroProjectAssetsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1AstroProjectAsset>>;
2308
+ /**
2309
+ * get all astro projects
2310
+ * @param {*} [options] Override http request option.
2311
+ * @throws {RequiredError}
2312
+ */
2313
+ v1GetAstroProjects(options?: AxiosRequestConfig): AxiosPromise<Array<V1GetAstroProject>>;
2314
+ /**
2315
+ * Get an astro targets. pass in an ID, an NGC ID or an IC ID
2316
+ * @param {DefaultApiV1GetAstroTargetRequest} requestParameters Request parameters.
2317
+ * @param {*} [options] Override http request option.
2318
+ * @throws {RequiredError}
2319
+ */
2320
+ v1GetAstroTarget(requestParameters?: DefaultApiV1GetAstroTargetRequest, options?: AxiosRequestConfig): AxiosPromise<V1AstroTarget>;
2321
+ /**
2322
+ * Get all astro targets. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
2323
+ * @param {DefaultApiV1GetAstroTargetsRequest} requestParameters Request parameters.
2324
+ * @param {*} [options] Override http request option.
2325
+ * @throws {RequiredError}
2326
+ */
2327
+ v1GetAstroTargets(requestParameters?: DefaultApiV1GetAstroTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1AstroTarget>>;
2328
+ /**
2329
+ * get all calibration masters for a node
2330
+ * @param {DefaultApiV1GetCalibrationMastersRequest} requestParameters Request parameters.
2331
+ * @param {*} [options] Override http request option.
2332
+ * @throws {RequiredError}
2333
+ */
2334
+ v1GetCalibrationMasters(requestParameters: DefaultApiV1GetCalibrationMastersRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1CalibrationMaster>>;
2335
+ /**
2336
+ * get all cameras
2337
+ * @param {*} [options] Override http request option.
2338
+ * @throws {RequiredError}
2339
+ */
2340
+ v1GetCameras(options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
2341
+ /**
2342
+ * get an image set
2343
+ * @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
2344
+ * @param {*} [options] Override http request option.
2345
+ * @throws {RequiredError}
2346
+ */
2347
+ v1GetImageSet(requestParameters: DefaultApiV1GetImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageSet>;
2348
+ /**
2349
+ * get an image
2350
+ * @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
2351
+ * @param {*} [options] Override http request option.
2352
+ * @throws {RequiredError}
2353
+ */
2354
+ v1GetImageSetImage(requestParameters: DefaultApiV1GetImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageSetImage>;
2355
+ /**
2356
+ * get image set images
2357
+ * @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
2358
+ * @param {*} [options] Override http request option.
2359
+ * @throws {RequiredError}
2360
+ */
2361
+ v1GetImageSetImages(requestParameters: DefaultApiV1GetImageSetImagesRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1ImageSetImage>>;
2362
+ /**
2363
+ * get image sets for targets observed for your organization
2364
+ * @param {*} [options] Override http request option.
2365
+ * @throws {RequiredError}
2366
+ */
2367
+ v1GetImageSets(options?: AxiosRequestConfig): AxiosPromise<Array<V1ImageSet>>;
2368
+ /**
2369
+ * get mounts
2370
+ * @param {*} [options] Override http request option.
2371
+ * @throws {RequiredError}
2372
+ */
2373
+ v1GetMounts(options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>>;
2374
+ /**
2375
+ * get all nodes
2376
+ * @param {*} [options] Override http request option.
2377
+ * @throws {RequiredError}
2378
+ */
2379
+ v1GetNodes(options?: AxiosRequestConfig): AxiosPromise<V1GetNodes>;
2380
+ /**
2381
+ * get platform credits
2382
+ * @param {*} [options] Override http request option.
2383
+ * @throws {RequiredError}
2384
+ */
2385
+ v1GetPlatformCredits(options?: AxiosRequestConfig): AxiosPromise<Array<V1PlatformCredit>>;
2386
+ /**
2387
+ * search for an astro project with certain properties
2388
+ * @param {DefaultApiV1MatchAstroProjectRequest} requestParameters Request parameters.
2389
+ * @param {*} [options] Override http request option.
2390
+ * @throws {RequiredError}
2391
+ */
2392
+ v1MatchAstroProject(requestParameters: DefaultApiV1MatchAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1GetAstroProject>>;
2393
+ /**
2394
+ * match mount
2395
+ * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
2396
+ * @param {*} [options] Override http request option.
2397
+ * @throws {RequiredError}
2398
+ */
2399
+ v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>>;
2400
+ /**
2401
+ * match optical tube
2402
+ * @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
2403
+ * @param {*} [options] Override http request option.
2404
+ * @throws {RequiredError}
2405
+ */
2406
+ v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1OpticalTube>>;
2407
+ /**
2408
+ * stack an astro project
2409
+ * @param {DefaultApiV1PutStackAstroProjectRequest} requestParameters Request parameters.
2410
+ * @param {*} [options] Override http request option.
2411
+ * @throws {RequiredError}
2412
+ */
2413
+ v1PutStackAstroProject(requestParameters: DefaultApiV1PutStackAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2414
+ /**
2415
+ * update a node
2416
+ * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
2417
+ * @param {*} [options] Override http request option.
2418
+ * @throws {RequiredError}
2419
+ */
2420
+ v1UpdateNode(requestParameters: DefaultApiV1UpdateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
2421
+ };
2422
+ /**
2423
+ * Request parameters for v1CameraMatch operation in DefaultApi.
2424
+ * @export
2425
+ * @interface DefaultApiV1CameraMatchRequest
2426
+ */
2427
+ export interface DefaultApiV1CameraMatchRequest {
2428
+ /**
2429
+ *
2430
+ * @type {string}
2431
+ * @memberof DefaultApiV1CameraMatch
2432
+ */
2433
+ readonly model?: string;
2434
+ /**
2435
+ *
2436
+ * @type {number}
2437
+ * @memberof DefaultApiV1CameraMatch
2438
+ */
2439
+ readonly pixelSizeMicrons?: number;
2440
+ /**
2441
+ *
2442
+ * @type {number}
2443
+ * @memberof DefaultApiV1CameraMatch
2444
+ */
2445
+ readonly pixelsX?: number;
2446
+ /**
2447
+ *
2448
+ * @type {number}
2449
+ * @memberof DefaultApiV1CameraMatch
2450
+ */
2451
+ readonly pixelsY?: number;
2452
+ /**
2453
+ *
2454
+ * @type {number}
2455
+ * @memberof DefaultApiV1CameraMatch
2456
+ */
2457
+ readonly megapixels?: number;
2458
+ /**
2459
+ *
2460
+ * @type {boolean}
2461
+ * @memberof DefaultApiV1CameraMatch
2462
+ */
2463
+ readonly chilled?: boolean;
2464
+ /**
2465
+ *
2466
+ * @type {number}
2467
+ * @memberof DefaultApiV1CameraMatch
2468
+ */
2469
+ readonly adcBitDepth?: number;
2470
+ /**
2471
+ *
2472
+ * @type {boolean}
2473
+ * @memberof DefaultApiV1CameraMatch
2474
+ */
2475
+ readonly isColor?: boolean;
2476
+ }
2477
+ /**
2478
+ * Request parameters for v1CreateAstroCamera operation in DefaultApi.
2479
+ * @export
2480
+ * @interface DefaultApiV1CreateAstroCameraRequest
2481
+ */
2482
+ export interface DefaultApiV1CreateAstroCameraRequest {
2483
+ /**
2484
+ * request to create an camera
2485
+ * @type {V1CreateCamera}
2486
+ * @memberof DefaultApiV1CreateAstroCamera
2487
+ */
2488
+ readonly v1CreateCamera: V1CreateCamera;
2489
+ }
2490
+ /**
2491
+ * Request parameters for v1CreateAstroMount operation in DefaultApi.
2492
+ * @export
2493
+ * @interface DefaultApiV1CreateAstroMountRequest
2494
+ */
2495
+ export interface DefaultApiV1CreateAstroMountRequest {
2496
+ /**
2497
+ * request to create a mount
2498
+ * @type {V1CreateMount}
2499
+ * @memberof DefaultApiV1CreateAstroMount
2500
+ */
2501
+ readonly v1CreateMount: V1CreateMount;
2502
+ }
2503
+ /**
2504
+ * Request parameters for v1CreateAstroOpticalTube operation in DefaultApi.
2505
+ * @export
2506
+ * @interface DefaultApiV1CreateAstroOpticalTubeRequest
2507
+ */
2508
+ export interface DefaultApiV1CreateAstroOpticalTubeRequest {
2509
+ /**
2510
+ * request to create an optical tube
2511
+ * @type {V1CreateOpticalTube}
2512
+ * @memberof DefaultApiV1CreateAstroOpticalTube
2513
+ */
2514
+ readonly v1CreateOpticalTube: V1CreateOpticalTube;
2515
+ }
2516
+ /**
2517
+ * Request parameters for v1CreateAstroProject operation in DefaultApi.
2518
+ * @export
2519
+ * @interface DefaultApiV1CreateAstroProjectRequest
2520
+ */
2521
+ export interface DefaultApiV1CreateAstroProjectRequest {
2522
+ /**
2523
+ * request to create an astro project
2524
+ * @type {V1CreateAstroProject}
2525
+ * @memberof DefaultApiV1CreateAstroProject
2526
+ */
2527
+ readonly v1CreateAstroProject: V1CreateAstroProject;
2528
+ }
2529
+ /**
2530
+ * Request parameters for v1CreateAstroProjectImageSet operation in DefaultApi.
2531
+ * @export
2532
+ * @interface DefaultApiV1CreateAstroProjectImageSetRequest
2533
+ */
2534
+ export interface DefaultApiV1CreateAstroProjectImageSetRequest {
2535
+ /**
2536
+ * request to create a project image Set
2537
+ * @type {V1CreateAstroProjectImageSet}
2538
+ * @memberof DefaultApiV1CreateAstroProjectImageSet
2539
+ */
2540
+ readonly v1CreateAstroProjectImageSet: V1CreateAstroProjectImageSet;
2541
+ }
2542
+ /**
2543
+ * Request parameters for v1CreateCalibrationMaster operation in DefaultApi.
2544
+ * @export
2545
+ * @interface DefaultApiV1CreateCalibrationMasterRequest
2546
+ */
2547
+ export interface DefaultApiV1CreateCalibrationMasterRequest {
2548
+ /**
2549
+ * request to create the calibration master
2550
+ * @type {V1CreateCalibrationMaster}
2551
+ * @memberof DefaultApiV1CreateCalibrationMaster
2552
+ */
2553
+ readonly v1CreateCalibrationMaster: V1CreateCalibrationMaster;
2554
+ }
2555
+ /**
2556
+ * Request parameters for v1CreateImageSet operation in DefaultApi.
2557
+ * @export
2558
+ * @interface DefaultApiV1CreateImageSetRequest
2559
+ */
2560
+ export interface DefaultApiV1CreateImageSetRequest {
2561
+ /**
2562
+ * request to create the Image Set
2563
+ * @type {V1CreateImageSet}
2564
+ * @memberof DefaultApiV1CreateImageSet
2565
+ */
2566
+ readonly v1CreateImageSet: V1CreateImageSet;
2567
+ }
2568
+ /**
2569
+ * Request parameters for v1CreateImageSetImage operation in DefaultApi.
2570
+ * @export
2571
+ * @interface DefaultApiV1CreateImageSetImageRequest
2572
+ */
2573
+ export interface DefaultApiV1CreateImageSetImageRequest {
2574
+ /**
2575
+ * request to create an image set image
2576
+ * @type {V1CreateImageSetImage}
2577
+ * @memberof DefaultApiV1CreateImageSetImage
2578
+ */
2579
+ readonly v1CreateImageSetImage: V1CreateImageSetImage;
2580
+ }
2581
+ /**
2582
+ * Request parameters for v1CreateNode operation in DefaultApi.
2583
+ * @export
2584
+ * @interface DefaultApiV1CreateNodeRequest
2585
+ */
2586
+ export interface DefaultApiV1CreateNodeRequest {
2587
+ /**
2588
+ * request to create a node
2589
+ * @type {V1CreateNode}
2590
+ * @memberof DefaultApiV1CreateNode
2591
+ */
2592
+ readonly v1CreateNode: V1CreateNode;
2593
+ }
2594
+ /**
2595
+ * Request parameters for v1GetAstroCamera operation in DefaultApi.
2596
+ * @export
2597
+ * @interface DefaultApiV1GetAstroCameraRequest
2598
+ */
2599
+ export interface DefaultApiV1GetAstroCameraRequest {
2600
+ /**
2601
+ *
2602
+ * @type {string}
2603
+ * @memberof DefaultApiV1GetAstroCamera
2604
+ */
2605
+ readonly id: string;
2606
+ }
2607
+ /**
2608
+ * Request parameters for v1GetAstroMount operation in DefaultApi.
2609
+ * @export
2610
+ * @interface DefaultApiV1GetAstroMountRequest
2611
+ */
2612
+ export interface DefaultApiV1GetAstroMountRequest {
2613
+ /**
2614
+ *
2615
+ * @type {string}
2616
+ * @memberof DefaultApiV1GetAstroMount
2617
+ */
2618
+ readonly id: string;
2619
+ }
2620
+ /**
2621
+ * Request parameters for v1GetAstroOpticalTube operation in DefaultApi.
2622
+ * @export
2623
+ * @interface DefaultApiV1GetAstroOpticalTubeRequest
2624
+ */
2625
+ export interface DefaultApiV1GetAstroOpticalTubeRequest {
2626
+ /**
2627
+ *
2628
+ * @type {string}
2629
+ * @memberof DefaultApiV1GetAstroOpticalTube
2630
+ */
2631
+ readonly id: string;
2632
+ }
2633
+ /**
2634
+ * Request parameters for v1GetAstroProject operation in DefaultApi.
2635
+ * @export
2636
+ * @interface DefaultApiV1GetAstroProjectRequest
2637
+ */
2638
+ export interface DefaultApiV1GetAstroProjectRequest {
2639
+ /**
2640
+ *
2641
+ * @type {string}
2642
+ * @memberof DefaultApiV1GetAstroProject
2643
+ */
2644
+ readonly astroProjectId: string;
2645
+ }
2646
+ /**
2647
+ * Request parameters for v1GetAstroProjectAssets operation in DefaultApi.
2648
+ * @export
2649
+ * @interface DefaultApiV1GetAstroProjectAssetsRequest
2650
+ */
2651
+ export interface DefaultApiV1GetAstroProjectAssetsRequest {
2652
+ /**
2653
+ *
2654
+ * @type {string}
2655
+ * @memberof DefaultApiV1GetAstroProjectAssets
2656
+ */
2657
+ readonly astroProjectId: string;
2658
+ }
2659
+ /**
2660
+ * Request parameters for v1GetAstroTarget operation in DefaultApi.
2661
+ * @export
2662
+ * @interface DefaultApiV1GetAstroTargetRequest
2663
+ */
2664
+ export interface DefaultApiV1GetAstroTargetRequest {
2665
+ /**
2666
+ *
2667
+ * @type {string}
2668
+ * @memberof DefaultApiV1GetAstroTarget
2669
+ */
2670
+ readonly id?: string;
2671
+ /**
2672
+ *
2673
+ * @type {string}
2674
+ * @memberof DefaultApiV1GetAstroTarget
2675
+ */
2676
+ readonly ngcId?: string;
2677
+ /**
2678
+ *
2679
+ * @type {string}
2680
+ * @memberof DefaultApiV1GetAstroTarget
2681
+ */
2682
+ readonly icId?: string;
2683
+ }
2684
+ /**
2685
+ * Request parameters for v1GetAstroTargets operation in DefaultApi.
2686
+ * @export
2687
+ * @interface DefaultApiV1GetAstroTargetsRequest
2688
+ */
2689
+ export interface DefaultApiV1GetAstroTargetsRequest {
2690
+ /**
2691
+ *
2692
+ * @type {string}
2693
+ * @memberof DefaultApiV1GetAstroTargets
2694
+ */
2695
+ readonly lastId?: string;
2696
+ /**
2697
+ *
2698
+ * @type {string}
2699
+ * @memberof DefaultApiV1GetAstroTargets
2700
+ */
2701
+ readonly catalogId?: string;
2702
+ /**
2703
+ *
2704
+ * @type {number}
2705
+ * @memberof DefaultApiV1GetAstroTargets
2706
+ */
2707
+ readonly ra?: number;
2708
+ /**
2709
+ *
2710
+ * @type {number}
2711
+ * @memberof DefaultApiV1GetAstroTargets
2712
+ */
2713
+ readonly dec?: number;
2714
+ }
2715
+ /**
2716
+ * Request parameters for v1GetCalibrationMasters operation in DefaultApi.
2717
+ * @export
2718
+ * @interface DefaultApiV1GetCalibrationMastersRequest
2719
+ */
2720
+ export interface DefaultApiV1GetCalibrationMastersRequest {
2721
+ /**
2722
+ *
2723
+ * @type {string}
2724
+ * @memberof DefaultApiV1GetCalibrationMasters
2725
+ */
2726
+ readonly nodeId: string;
2727
+ }
2728
+ /**
2729
+ * Request parameters for v1GetImageSet operation in DefaultApi.
2730
+ * @export
2731
+ * @interface DefaultApiV1GetImageSetRequest
2732
+ */
2733
+ export interface DefaultApiV1GetImageSetRequest {
2734
+ /**
2735
+ *
2736
+ * @type {string}
2737
+ * @memberof DefaultApiV1GetImageSet
2738
+ */
2739
+ readonly id: string;
2740
+ }
2741
+ /**
2742
+ * Request parameters for v1GetImageSetImage operation in DefaultApi.
2743
+ * @export
2744
+ * @interface DefaultApiV1GetImageSetImageRequest
2745
+ */
2746
+ export interface DefaultApiV1GetImageSetImageRequest {
2747
+ /**
2748
+ *
2749
+ * @type {string}
2750
+ * @memberof DefaultApiV1GetImageSetImage
2751
+ */
2752
+ readonly imageId: string;
2753
+ }
2754
+ /**
2755
+ * Request parameters for v1GetImageSetImages operation in DefaultApi.
2756
+ * @export
2757
+ * @interface DefaultApiV1GetImageSetImagesRequest
2758
+ */
2759
+ export interface DefaultApiV1GetImageSetImagesRequest {
2760
+ /**
2761
+ *
2762
+ * @type {Array<string>}
2763
+ * @memberof DefaultApiV1GetImageSetImages
2764
+ */
2765
+ readonly imageSets: Array<string>;
2766
+ }
2767
+ /**
2768
+ * Request parameters for v1MatchAstroProject operation in DefaultApi.
2769
+ * @export
2770
+ * @interface DefaultApiV1MatchAstroProjectRequest
2771
+ */
2772
+ export interface DefaultApiV1MatchAstroProjectRequest {
2773
+ /**
2774
+ *
2775
+ * @type {string}
2776
+ * @memberof DefaultApiV1MatchAstroProject
2777
+ */
2778
+ readonly targetId: string;
2779
+ /**
2780
+ *
2781
+ * @type {string}
2782
+ * @memberof DefaultApiV1MatchAstroProject
2783
+ */
2784
+ readonly cameraId: string;
2785
+ /**
2786
+ *
2787
+ * @type {string}
2788
+ * @memberof DefaultApiV1MatchAstroProject
2789
+ */
2790
+ readonly otaId: string;
2791
+ }
2792
+ /**
2793
+ * Request parameters for v1MountMatch operation in DefaultApi.
2794
+ * @export
2795
+ * @interface DefaultApiV1MountMatchRequest
2796
+ */
2797
+ export interface DefaultApiV1MountMatchRequest {
2798
+ /**
2799
+ *
2800
+ * @type {string}
2801
+ * @memberof DefaultApiV1MountMatch
2802
+ */
2803
+ readonly model?: string;
2804
+ }
2805
+ /**
2806
+ * Request parameters for v1OpticalTubeMatch operation in DefaultApi.
2807
+ * @export
2808
+ * @interface DefaultApiV1OpticalTubeMatchRequest
2809
+ */
2810
+ export interface DefaultApiV1OpticalTubeMatchRequest {
2811
+ /**
2812
+ *
2813
+ * @type {string}
2814
+ * @memberof DefaultApiV1OpticalTubeMatch
2815
+ */
2816
+ readonly model?: string;
2817
+ /**
2818
+ *
2819
+ * @type {number}
2820
+ * @memberof DefaultApiV1OpticalTubeMatch
2821
+ */
2822
+ readonly focalLengthMm?: number;
2823
+ /**
2824
+ *
2825
+ * @type {number}
2826
+ * @memberof DefaultApiV1OpticalTubeMatch
2827
+ */
2828
+ readonly apertureMm?: number;
2829
+ }
2830
+ /**
2831
+ * Request parameters for v1PutStackAstroProject operation in DefaultApi.
2832
+ * @export
2833
+ * @interface DefaultApiV1PutStackAstroProjectRequest
2834
+ */
2835
+ export interface DefaultApiV1PutStackAstroProjectRequest {
2836
+ /**
2837
+ * request to stack an astro project
2838
+ * @type {V1PutStackAstroProject}
2839
+ * @memberof DefaultApiV1PutStackAstroProject
2840
+ */
2841
+ readonly v1PutStackAstroProject: V1PutStackAstroProject;
2842
+ }
2843
+ /**
2844
+ * Request parameters for v1UpdateNode operation in DefaultApi.
2845
+ * @export
2846
+ * @interface DefaultApiV1UpdateNodeRequest
2847
+ */
2848
+ export interface DefaultApiV1UpdateNodeRequest {
2849
+ /**
2850
+ * request to update a node
2851
+ * @type {V1UpdateNode}
2852
+ * @memberof DefaultApiV1UpdateNode
2853
+ */
2854
+ readonly v1UpdateNode: V1UpdateNode;
2855
+ }
2856
+ /**
2857
+ * DefaultApi - object-oriented interface
2858
+ * @export
2859
+ * @class DefaultApi
2860
+ * @extends {BaseAPI}
2861
+ */
2862
+ export declare class DefaultApi extends BaseAPI {
2863
+ /**
2864
+ * match camera
2865
+ * @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
2866
+ * @param {*} [options] Override http request option.
2867
+ * @throws {RequiredError}
2868
+ * @memberof DefaultApi
2869
+ */
2870
+ v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
2871
+ /**
2872
+ * create an astro user camera
2873
+ * @param {DefaultApiV1CreateAstroCameraRequest} requestParameters Request parameters.
2874
+ * @param {*} [options] Override http request option.
2875
+ * @throws {RequiredError}
2876
+ * @memberof DefaultApi
2877
+ */
2878
+ v1CreateAstroCamera(requestParameters: DefaultApiV1CreateAstroCameraRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2879
+ /**
2880
+ * create an astro user mount
2881
+ * @param {DefaultApiV1CreateAstroMountRequest} requestParameters Request parameters.
2882
+ * @param {*} [options] Override http request option.
2883
+ * @throws {RequiredError}
2884
+ * @memberof DefaultApi
2885
+ */
2886
+ v1CreateAstroMount(requestParameters: DefaultApiV1CreateAstroMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2887
+ /**
2888
+ * create an optical tube for an astro user
2889
+ * @param {DefaultApiV1CreateAstroOpticalTubeRequest} requestParameters Request parameters.
2890
+ * @param {*} [options] Override http request option.
2891
+ * @throws {RequiredError}
2892
+ * @memberof DefaultApi
2893
+ */
2894
+ v1CreateAstroOpticalTube(requestParameters: DefaultApiV1CreateAstroOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2895
+ /**
2896
+ * create an astro project
2897
+ * @param {DefaultApiV1CreateAstroProjectRequest} requestParameters Request parameters.
2898
+ * @param {*} [options] Override http request option.
2899
+ * @throws {RequiredError}
2900
+ * @memberof DefaultApi
2901
+ */
2902
+ v1CreateAstroProject(requestParameters: DefaultApiV1CreateAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateAstroProjectResponse, any>>;
2903
+ /**
2904
+ * create a project image set
2905
+ * @param {DefaultApiV1CreateAstroProjectImageSetRequest} requestParameters Request parameters.
2906
+ * @param {*} [options] Override http request option.
2907
+ * @throws {RequiredError}
2908
+ * @memberof DefaultApi
2909
+ */
2910
+ v1CreateAstroProjectImageSet(requestParameters: DefaultApiV1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2911
+ /**
2912
+ * create an calibration master
2913
+ * @param {DefaultApiV1CreateCalibrationMasterRequest} requestParameters Request parameters.
2914
+ * @param {*} [options] Override http request option.
2915
+ * @throws {RequiredError}
2916
+ * @memberof DefaultApi
2917
+ */
2918
+ v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalibrationMasterCreateResponse, any>>;
2919
+ /**
2920
+ * create an image set
2921
+ * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
2922
+ * @param {*} [options] Override http request option.
2923
+ * @throws {RequiredError}
2924
+ * @memberof DefaultApi
2925
+ */
2926
+ v1CreateImageSet(requestParameters: DefaultApiV1CreateImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2927
+ /**
2928
+ * create an image set image
2929
+ * @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
2930
+ * @param {*} [options] Override http request option.
2931
+ * @throws {RequiredError}
2932
+ * @memberof DefaultApi
2933
+ */
2934
+ v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
2935
+ /**
2936
+ * create a node
2937
+ * @param {DefaultApiV1CreateNodeRequest} requestParameters Request parameters.
2938
+ * @param {*} [options] Override http request option.
2939
+ * @throws {RequiredError}
2940
+ * @memberof DefaultApi
2941
+ */
2942
+ v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2943
+ /**
2944
+ * get an astro camera
2945
+ * @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
2946
+ * @param {*} [options] Override http request option.
2947
+ * @throws {RequiredError}
2948
+ * @memberof DefaultApi
2949
+ */
2950
+ v1GetAstroCamera(requestParameters: DefaultApiV1GetAstroCameraRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera, any>>;
2951
+ /**
2952
+ * get an astro mount
2953
+ * @param {DefaultApiV1GetAstroMountRequest} requestParameters Request parameters.
2954
+ * @param {*} [options] Override http request option.
2955
+ * @throws {RequiredError}
2956
+ * @memberof DefaultApi
2957
+ */
2958
+ v1GetAstroMount(requestParameters: DefaultApiV1GetAstroMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
2959
+ /**
2960
+ * get an optical tube
2961
+ * @param {DefaultApiV1GetAstroOpticalTubeRequest} requestParameters Request parameters.
2962
+ * @param {*} [options] Override http request option.
2963
+ * @throws {RequiredError}
2964
+ * @memberof DefaultApi
2965
+ */
2966
+ v1GetAstroOpticalTube(requestParameters: DefaultApiV1GetAstroOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube, any>>;
2967
+ /**
2968
+ * get astro platform credit balance
2969
+ * @param {*} [options] Override http request option.
2970
+ * @throws {RequiredError}
2971
+ * @memberof DefaultApi
2972
+ */
2973
+ v1GetAstroPlatformCreditBalance(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetAstroPlatformCreditBalanceResponse, any>>;
2974
+ /**
2975
+ * get an astro project
2976
+ * @param {DefaultApiV1GetAstroProjectRequest} requestParameters Request parameters.
2977
+ * @param {*} [options] Override http request option.
2978
+ * @throws {RequiredError}
2979
+ * @memberof DefaultApi
2980
+ */
2981
+ v1GetAstroProject(requestParameters: DefaultApiV1GetAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetAstroProject, any>>;
2982
+ /**
2983
+ * get all assets for an astro project
2984
+ * @param {DefaultApiV1GetAstroProjectAssetsRequest} requestParameters Request parameters.
2985
+ * @param {*} [options] Override http request option.
2986
+ * @throws {RequiredError}
2987
+ * @memberof DefaultApi
2988
+ */
2989
+ v1GetAstroProjectAssets(requestParameters: DefaultApiV1GetAstroProjectAssetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroProjectAsset[], any>>;
2990
+ /**
2991
+ * get all astro projects
2992
+ * @param {*} [options] Override http request option.
2993
+ * @throws {RequiredError}
2994
+ * @memberof DefaultApi
2995
+ */
2996
+ v1GetAstroProjects(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetAstroProject[], any>>;
2997
+ /**
2998
+ * Get an astro targets. pass in an ID, an NGC ID or an IC ID
2999
+ * @param {DefaultApiV1GetAstroTargetRequest} requestParameters Request parameters.
3000
+ * @param {*} [options] Override http request option.
3001
+ * @throws {RequiredError}
3002
+ * @memberof DefaultApi
3003
+ */
3004
+ v1GetAstroTarget(requestParameters?: DefaultApiV1GetAstroTargetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroTarget, any>>;
3005
+ /**
3006
+ * Get all astro targets. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
3007
+ * @param {DefaultApiV1GetAstroTargetsRequest} requestParameters Request parameters.
3008
+ * @param {*} [options] Override http request option.
3009
+ * @throws {RequiredError}
3010
+ * @memberof DefaultApi
3011
+ */
3012
+ v1GetAstroTargets(requestParameters?: DefaultApiV1GetAstroTargetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroTarget[], any>>;
3013
+ /**
3014
+ * get all calibration masters for a node
3015
+ * @param {DefaultApiV1GetCalibrationMastersRequest} requestParameters Request parameters.
3016
+ * @param {*} [options] Override http request option.
3017
+ * @throws {RequiredError}
3018
+ * @memberof DefaultApi
3019
+ */
3020
+ v1GetCalibrationMasters(requestParameters: DefaultApiV1GetCalibrationMastersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CalibrationMaster[], any>>;
3021
+ /**
3022
+ * get all cameras
3023
+ * @param {*} [options] Override http request option.
3024
+ * @throws {RequiredError}
3025
+ * @memberof DefaultApi
3026
+ */
3027
+ v1GetCameras(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
3028
+ /**
3029
+ * get an image set
3030
+ * @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
3031
+ * @param {*} [options] Override http request option.
3032
+ * @throws {RequiredError}
3033
+ * @memberof DefaultApi
3034
+ */
3035
+ v1GetImageSet(requestParameters: DefaultApiV1GetImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSet, any>>;
3036
+ /**
3037
+ * get an image
3038
+ * @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
3039
+ * @param {*} [options] Override http request option.
3040
+ * @throws {RequiredError}
3041
+ * @memberof DefaultApi
3042
+ */
3043
+ v1GetImageSetImage(requestParameters: DefaultApiV1GetImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSetImage, any>>;
3044
+ /**
3045
+ * get image set images
3046
+ * @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
3047
+ * @param {*} [options] Override http request option.
3048
+ * @throws {RequiredError}
3049
+ * @memberof DefaultApi
3050
+ */
3051
+ v1GetImageSetImages(requestParameters: DefaultApiV1GetImageSetImagesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSetImage[], any>>;
3052
+ /**
3053
+ * get image sets for targets observed for your organization
3054
+ * @param {*} [options] Override http request option.
3055
+ * @throws {RequiredError}
3056
+ * @memberof DefaultApi
3057
+ */
3058
+ v1GetImageSets(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSet[], any>>;
3059
+ /**
3060
+ * get mounts
3061
+ * @param {*} [options] Override http request option.
3062
+ * @throws {RequiredError}
3063
+ * @memberof DefaultApi
3064
+ */
3065
+ v1GetMounts(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount[], any>>;
3066
+ /**
3067
+ * get all nodes
3068
+ * @param {*} [options] Override http request option.
3069
+ * @throws {RequiredError}
3070
+ * @memberof DefaultApi
3071
+ */
3072
+ v1GetNodes(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetNodes, any>>;
3073
+ /**
3074
+ * get platform credits
3075
+ * @param {*} [options] Override http request option.
3076
+ * @throws {RequiredError}
3077
+ * @memberof DefaultApi
3078
+ */
3079
+ v1GetPlatformCredits(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlatformCredit[], any>>;
3080
+ /**
3081
+ * search for an astro project with certain properties
3082
+ * @param {DefaultApiV1MatchAstroProjectRequest} requestParameters Request parameters.
3083
+ * @param {*} [options] Override http request option.
3084
+ * @throws {RequiredError}
3085
+ * @memberof DefaultApi
3086
+ */
3087
+ v1MatchAstroProject(requestParameters: DefaultApiV1MatchAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetAstroProject[], any>>;
3088
+ /**
3089
+ * match mount
3090
+ * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
3091
+ * @param {*} [options] Override http request option.
3092
+ * @throws {RequiredError}
3093
+ * @memberof DefaultApi
3094
+ */
3095
+ v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount[], any>>;
3096
+ /**
3097
+ * match optical tube
3098
+ * @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
3099
+ * @param {*} [options] Override http request option.
3100
+ * @throws {RequiredError}
3101
+ * @memberof DefaultApi
3102
+ */
3103
+ v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube[], any>>;
3104
+ /**
3105
+ * stack an astro project
3106
+ * @param {DefaultApiV1PutStackAstroProjectRequest} requestParameters Request parameters.
3107
+ * @param {*} [options] Override http request option.
3108
+ * @throws {RequiredError}
3109
+ * @memberof DefaultApi
3110
+ */
3111
+ v1PutStackAstroProject(requestParameters: DefaultApiV1PutStackAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3112
+ /**
3113
+ * update a node
3114
+ * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
3115
+ * @param {*} [options] Override http request option.
3116
+ * @throws {RequiredError}
3117
+ * @memberof DefaultApi
3118
+ */
3119
+ v1UpdateNode(requestParameters: DefaultApiV1UpdateNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
3120
+ }