@ourskyai/astro-api 1.3.1741 → 1.3.1767

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/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky Astro
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.1741
5
+ * The version of the OpenAPI document: 1.3.1767
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,7 +14,7 @@ import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
16
  /**
17
- * asset file type
17
+ *
18
18
  * @export
19
19
  * @enum {string}
20
20
  */
@@ -28,7 +28,7 @@ export declare const AssetFileType: {
28
28
  };
29
29
  export type AssetFileType = typeof AssetFileType[keyof typeof AssetFileType];
30
30
  /**
31
- * asset type
31
+ *
32
32
  * @export
33
33
  * @enum {string}
34
34
  */
@@ -40,25 +40,6 @@ export declare const AssetType: {
40
40
  readonly PROJECT_BEAUTIFIED_THUMBNAIL: "PROJECT_BEAUTIFIED_THUMBNAIL";
41
41
  };
42
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
43
  /**
63
44
  *
64
45
  * @export
@@ -71,7 +52,7 @@ export declare const CalibrationMasterType: {
71
52
  };
72
53
  export type CalibrationMasterType = typeof CalibrationMasterType[keyof typeof CalibrationMasterType];
73
54
  /**
74
- * successful action
55
+ *
75
56
  * @export
76
57
  * @interface EmptySuccess
77
58
  */
@@ -135,7 +116,7 @@ export interface Location {
135
116
  'altitude': number;
136
117
  }
137
118
  /**
138
- * The type of mount
119
+ *
139
120
  * @export
140
121
  * @enum {string}
141
122
  */
@@ -145,7 +126,7 @@ export declare const MountType: {
145
126
  };
146
127
  export type MountType = typeof MountType[keyof typeof MountType];
147
128
  /**
148
- * possible states for a node
129
+ *
149
130
  * @export
150
131
  * @enum {string}
151
132
  */
@@ -159,7 +140,7 @@ export declare const NodeState: {
159
140
  };
160
141
  export type NodeState = typeof NodeState[keyof typeof NodeState];
161
142
  /**
162
- * optical tube types
143
+ *
163
144
  * @export
164
145
  * @enum {string}
165
146
  */
@@ -172,7 +153,7 @@ export declare const OpticalTubeType: {
172
153
  };
173
154
  export type OpticalTubeType = typeof OpticalTubeType[keyof typeof OpticalTubeType];
174
155
  /**
175
- * shutter type
156
+ *
176
157
  * @export
177
158
  * @enum {string}
178
159
  */
@@ -182,7 +163,7 @@ export declare const ShutterType: {
182
163
  };
183
164
  export type ShutterType = typeof ShutterType[keyof typeof ShutterType];
184
165
  /**
185
- * successful create
166
+ *
186
167
  * @export
187
168
  * @interface SuccessfulCreate
188
169
  */
@@ -195,7 +176,7 @@ export interface SuccessfulCreate {
195
176
  'id': string;
196
177
  }
197
178
  /**
198
- * target tracking type
179
+ *
199
180
  * @export
200
181
  * @enum {string}
201
182
  */
@@ -205,7 +186,74 @@ export declare const TrackingType: {
205
186
  };
206
187
  export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
207
188
  /**
208
- * get an astro project asset
189
+ * Astro Project
190
+ * @export
191
+ * @interface V1AstroProject
192
+ */
193
+ export interface V1AstroProject {
194
+ /**
195
+ *
196
+ * @type {string}
197
+ * @memberof V1AstroProject
198
+ */
199
+ 'id': string;
200
+ /**
201
+ *
202
+ * @type {string}
203
+ * @memberof V1AstroProject
204
+ */
205
+ 'name': string;
206
+ /**
207
+ *
208
+ * @type {string}
209
+ * @memberof V1AstroProject
210
+ */
211
+ 'targetId'?: string;
212
+ /**
213
+ *
214
+ * @type {number}
215
+ * @memberof V1AstroProject
216
+ */
217
+ 'ra'?: number;
218
+ /**
219
+ *
220
+ * @type {number}
221
+ * @memberof V1AstroProject
222
+ */
223
+ 'dec'?: number;
224
+ /**
225
+ *
226
+ * @type {string}
227
+ * @memberof V1AstroProject
228
+ */
229
+ 'cameraId': string;
230
+ /**
231
+ *
232
+ * @type {string}
233
+ * @memberof V1AstroProject
234
+ */
235
+ 'otaId': string;
236
+ /**
237
+ *
238
+ * @type {Array<string>}
239
+ * @memberof V1AstroProject
240
+ */
241
+ 'imageSets'?: Array<string>;
242
+ /**
243
+ *
244
+ * @type {string}
245
+ * @memberof V1AstroProject
246
+ */
247
+ 'createdAt': string;
248
+ /**
249
+ *
250
+ * @type {string}
251
+ * @memberof V1AstroProject
252
+ */
253
+ 'updatedAt'?: string;
254
+ }
255
+ /**
256
+ * Astro Project Asset
209
257
  * @export
210
258
  * @interface V1AstroProjectAsset
211
259
  */
@@ -316,7 +364,7 @@ export interface V1AstroProjectAssetMetadataColorCombination {
316
364
  'blue'?: Array<FilterType>;
317
365
  }
318
366
  /**
319
- * astro target
367
+ * Astro Target
320
368
  * @export
321
369
  * @interface V1AstroTarget
322
370
  */
@@ -359,7 +407,7 @@ export interface V1AstroTarget {
359
407
  'dec': number;
360
408
  }
361
409
  /**
362
- * calibration master
410
+ * Calibration Master
363
411
  * @export
364
412
  * @interface V1CalibrationMaster
365
413
  */
@@ -426,7 +474,7 @@ export interface V1CalibrationMaster {
426
474
  'createdBy': string;
427
475
  }
428
476
  /**
429
- * v1Camera
477
+ * Camera
430
478
  * @export
431
479
  * @interface V1Camera
432
480
  */
@@ -511,82 +559,75 @@ export interface V1Camera {
511
559
  'isColor': boolean;
512
560
  }
513
561
  /**
514
- * create an astro project
562
+ *
515
563
  * @export
516
- * @interface V1CreateAstroProject
564
+ * @interface V1CreateAstroProjectImageSetRequest
517
565
  */
518
- export interface V1CreateAstroProject {
519
- /**
520
- *
521
- * @type {string}
522
- * @memberof V1CreateAstroProject
523
- */
524
- 'name'?: string;
566
+ export interface V1CreateAstroProjectImageSetRequest {
525
567
  /**
526
568
  *
527
569
  * @type {string}
528
- * @memberof V1CreateAstroProject
529
- */
530
- 'targetId'?: string;
531
- /**
532
- *
533
- * @type {number}
534
- * @memberof V1CreateAstroProject
570
+ * @memberof V1CreateAstroProjectImageSetRequest
535
571
  */
536
- 'ra'?: number;
537
- /**
538
- *
539
- * @type {number}
540
- * @memberof V1CreateAstroProject
541
- */
542
- 'dec'?: number;
572
+ 'projectId': string;
543
573
  /**
544
574
  *
545
575
  * @type {string}
546
- * @memberof V1CreateAstroProject
576
+ * @memberof V1CreateAstroProjectImageSetRequest
547
577
  */
548
578
  'nodeId': string;
549
579
  /**
550
580
  *
551
581
  * @type {FilterType}
552
- * @memberof V1CreateAstroProject
582
+ * @memberof V1CreateAstroProjectImageSetRequest
553
583
  */
554
584
  'filterType'?: FilterType;
555
585
  }
556
586
  /**
557
- * create a project image set
587
+ *
558
588
  * @export
559
- * @interface V1CreateAstroProjectImageSet
589
+ * @interface V1CreateAstroProjectRequest
560
590
  */
561
- export interface V1CreateAstroProjectImageSet {
591
+ export interface V1CreateAstroProjectRequest {
562
592
  /**
563
593
  *
564
594
  * @type {string}
565
- * @memberof V1CreateAstroProjectImageSet
595
+ * @memberof V1CreateAstroProjectRequest
566
596
  */
567
- 'projectId': string;
597
+ 'name'?: string;
568
598
  /**
569
599
  *
570
600
  * @type {string}
571
- * @memberof V1CreateAstroProjectImageSet
601
+ * @memberof V1CreateAstroProjectRequest
572
602
  */
573
- 'nodeId': string;
603
+ 'targetId'?: string;
604
+ /**
605
+ *
606
+ * @type {number}
607
+ * @memberof V1CreateAstroProjectRequest
608
+ */
609
+ 'ra'?: number;
610
+ /**
611
+ *
612
+ * @type {number}
613
+ * @memberof V1CreateAstroProjectRequest
614
+ */
615
+ 'dec'?: number;
574
616
  /**
575
617
  *
576
618
  * @type {string}
577
- * @memberof V1CreateAstroProjectImageSet
578
- * @deprecated
619
+ * @memberof V1CreateAstroProjectRequest
579
620
  */
580
- 'ourskyPluginVersion'?: string;
621
+ 'nodeId': string;
581
622
  /**
582
623
  *
583
624
  * @type {FilterType}
584
- * @memberof V1CreateAstroProjectImageSet
625
+ * @memberof V1CreateAstroProjectRequest
585
626
  */
586
627
  'filterType'?: FilterType;
587
628
  }
588
629
  /**
589
- * create astro response
630
+ * Create Astro Response
590
631
  * @export
591
632
  * @interface V1CreateAstroProjectResponse
592
633
  */
@@ -605,388 +646,400 @@ export interface V1CreateAstroProjectResponse {
605
646
  'imageSetId': string;
606
647
  }
607
648
  /**
608
- * create calibration master
649
+ *
609
650
  * @export
610
- * @interface V1CreateCalibrationMaster
651
+ * @interface V1CreateCalibrationMasterRequest
611
652
  */
612
- export interface V1CreateCalibrationMaster {
653
+ export interface V1CreateCalibrationMasterRequest {
613
654
  /**
614
655
  *
615
656
  * @type {string}
616
- * @memberof V1CreateCalibrationMaster
657
+ * @memberof V1CreateCalibrationMasterRequest
617
658
  */
618
659
  'nodeId': string;
619
660
  /**
620
661
  *
621
662
  * @type {CalibrationMasterType}
622
- * @memberof V1CreateCalibrationMaster
663
+ * @memberof V1CreateCalibrationMasterRequest
623
664
  */
624
665
  'calibrationMasterType': CalibrationMasterType;
625
666
  /**
626
667
  *
627
668
  * @type {FilterType}
628
- * @memberof V1CreateCalibrationMaster
669
+ * @memberof V1CreateCalibrationMasterRequest
629
670
  */
630
671
  'filterType'?: FilterType;
631
672
  /**
632
673
  *
633
674
  * @type {number}
634
- * @memberof V1CreateCalibrationMaster
675
+ * @memberof V1CreateCalibrationMasterRequest
635
676
  */
636
677
  'binXY': number;
637
678
  /**
638
679
  *
639
680
  * @type {number}
640
- * @memberof V1CreateCalibrationMaster
681
+ * @memberof V1CreateCalibrationMasterRequest
641
682
  */
642
683
  'gain'?: number;
643
684
  /**
644
685
  *
645
686
  * @type {number}
646
- * @memberof V1CreateCalibrationMaster
687
+ * @memberof V1CreateCalibrationMasterRequest
647
688
  */
648
689
  'gainMode'?: number;
649
690
  /**
650
691
  * temperature in degrees celsius
651
692
  * @type {number}
652
- * @memberof V1CreateCalibrationMaster
693
+ * @memberof V1CreateCalibrationMasterRequest
653
694
  */
654
695
  'temperature'?: number;
655
696
  /**
656
697
  *
657
698
  * @type {number}
658
- * @memberof V1CreateCalibrationMaster
699
+ * @memberof V1CreateCalibrationMasterRequest
659
700
  */
660
701
  'exposureTime': number;
661
702
  /**
662
703
  *
663
704
  * @type {boolean}
664
- * @memberof V1CreateCalibrationMaster
705
+ * @memberof V1CreateCalibrationMasterRequest
665
706
  */
666
707
  'overwrite'?: boolean;
667
708
  }
668
709
  /**
669
- * create a camera
710
+ *
670
711
  * @export
671
- * @interface V1CreateCamera
712
+ * @interface V1CreateCalibrationMasterResponse
672
713
  */
673
- export interface V1CreateCamera {
714
+ export interface V1CreateCalibrationMasterResponse {
715
+ /**
716
+ *
717
+ * @type {string}
718
+ * @memberof V1CreateCalibrationMasterResponse
719
+ */
720
+ 'id': string;
674
721
  /**
675
722
  *
676
723
  * @type {string}
677
- * @memberof V1CreateCamera
724
+ * @memberof V1CreateCalibrationMasterResponse
725
+ */
726
+ 'uploadUrl': string;
727
+ }
728
+ /**
729
+ *
730
+ * @export
731
+ * @interface V1CreateCameraRequest
732
+ */
733
+ export interface V1CreateCameraRequest {
734
+ /**
735
+ *
736
+ * @type {string}
737
+ * @memberof V1CreateCameraRequest
678
738
  */
679
739
  'model': string;
680
740
  /**
681
741
  *
682
742
  * @type {number}
683
- * @memberof V1CreateCamera
743
+ * @memberof V1CreateCameraRequest
684
744
  */
685
745
  'pixelSizeMicrons': number;
686
746
  /**
687
747
  *
688
748
  * @type {number}
689
- * @memberof V1CreateCamera
749
+ * @memberof V1CreateCameraRequest
690
750
  */
691
751
  'fullWellCapacity'?: number;
692
752
  /**
693
753
  *
694
754
  * @type {number}
695
- * @memberof V1CreateCamera
755
+ * @memberof V1CreateCameraRequest
696
756
  */
697
757
  'pixelsX': number;
698
758
  /**
699
759
  *
700
760
  * @type {number}
701
- * @memberof V1CreateCamera
761
+ * @memberof V1CreateCameraRequest
702
762
  */
703
763
  'pixelsY': number;
704
764
  /**
705
765
  *
706
766
  * @type {number}
707
- * @memberof V1CreateCamera
767
+ * @memberof V1CreateCameraRequest
708
768
  */
709
769
  'megapixels': number;
710
770
  /**
711
771
  *
712
772
  * @type {boolean}
713
- * @memberof V1CreateCamera
773
+ * @memberof V1CreateCameraRequest
714
774
  */
715
775
  'chilled'?: boolean;
716
776
  /**
717
777
  *
718
778
  * @type {ShutterType}
719
- * @memberof V1CreateCamera
779
+ * @memberof V1CreateCameraRequest
720
780
  */
721
781
  'shutterType': ShutterType;
722
782
  /**
723
783
  *
724
784
  * @type {boolean}
725
- * @memberof V1CreateCamera
785
+ * @memberof V1CreateCameraRequest
726
786
  */
727
787
  'gpsTimestamps': boolean;
728
788
  /**
729
789
  *
730
790
  * @type {number}
731
- * @memberof V1CreateCamera
791
+ * @memberof V1CreateCameraRequest
732
792
  */
733
793
  'sensorXmm': number;
734
794
  /**
735
795
  *
736
796
  * @type {number}
737
- * @memberof V1CreateCamera
797
+ * @memberof V1CreateCameraRequest
738
798
  */
739
799
  'sensorYmm': number;
740
800
  /**
741
801
  * the gain level where e-/ADU = 1
742
802
  * @type {number}
743
- * @memberof V1CreateCamera
803
+ * @memberof V1CreateCameraRequest
744
804
  */
745
805
  'unityGain': number;
746
806
  /**
747
807
  *
748
808
  * @type {number}
749
- * @memberof V1CreateCamera
809
+ * @memberof V1CreateCameraRequest
750
810
  */
751
811
  'optimalNighttimeGain': number;
752
812
  /**
753
813
  *
754
814
  * @type {number}
755
- * @memberof V1CreateCamera
815
+ * @memberof V1CreateCameraRequest
756
816
  */
757
817
  'optimalNighttimeGainOffset': number;
758
818
  /**
759
819
  *
760
820
  * @type {number}
761
- * @memberof V1CreateCamera
821
+ * @memberof V1CreateCameraRequest
762
822
  */
763
823
  'optimalNighttimeGainMode': number;
764
824
  /**
765
825
  * whether the camera supports video mode
766
826
  * @type {boolean}
767
- * @memberof V1CreateCamera
827
+ * @memberof V1CreateCameraRequest
768
828
  */
769
829
  'supportsVideoMode': boolean;
770
830
  /**
771
831
  *
772
832
  * @type {number}
773
- * @memberof V1CreateCamera
833
+ * @memberof V1CreateCameraRequest
774
834
  */
775
835
  'adcBitDepth': number;
776
836
  /**
777
837
  *
778
838
  * @type {number}
779
- * @memberof V1CreateCamera
839
+ * @memberof V1CreateCameraRequest
780
840
  */
781
841
  'quantumEfficiency': number;
782
842
  /**
783
843
  * gain curves for the camera
784
844
  * @type {Array<V1GainCurve>}
785
- * @memberof V1CreateCamera
845
+ * @memberof V1CreateCameraRequest
786
846
  */
787
847
  'gainCurves'?: Array<V1GainCurve>;
788
848
  /**
789
849
  *
790
850
  * @type {Array<V1SetupAction>}
791
- * @memberof V1CreateCamera
851
+ * @memberof V1CreateCameraRequest
792
852
  */
793
853
  'setupActions'?: Array<V1SetupAction>;
794
854
  /**
795
855
  * whether the camera is monochrome or color (OSC)
796
856
  * @type {boolean}
797
- * @memberof V1CreateCamera
857
+ * @memberof V1CreateCameraRequest
798
858
  */
799
859
  'isColor': boolean;
800
860
  }
801
861
  /**
802
- * create image set
862
+ *
803
863
  * @export
804
- * @interface V1CreateImageSet
864
+ * @interface V1CreateImageSetImageRequest
805
865
  */
806
- export interface V1CreateImageSet {
866
+ export interface V1CreateImageSetImageRequest {
807
867
  /**
808
868
  *
809
869
  * @type {string}
810
- * @memberof V1CreateImageSet
870
+ * @memberof V1CreateImageSetImageRequest
811
871
  */
812
- 'targetId': string;
872
+ 'imageSetId': string;
873
+ }
874
+ /**
875
+ *
876
+ * @export
877
+ * @interface V1CreateImageSetImageResponse
878
+ */
879
+ export interface V1CreateImageSetImageResponse {
813
880
  /**
814
881
  *
815
882
  * @type {string}
816
- * @memberof V1CreateImageSet
883
+ * @memberof V1CreateImageSetImageResponse
817
884
  */
818
- 'nodeId': string;
885
+ 'id': string;
819
886
  /**
820
887
  *
821
888
  * @type {string}
822
- * @memberof V1CreateImageSet
889
+ * @memberof V1CreateImageSetImageResponse
823
890
  */
824
- 'observationId'?: string;
891
+ 'uploadUrl': string;
892
+ }
893
+ /**
894
+ *
895
+ * @export
896
+ * @interface V1CreateImageSetRequest
897
+ */
898
+ export interface V1CreateImageSetRequest {
825
899
  /**
826
900
  *
827
901
  * @type {string}
828
- * @memberof V1CreateImageSet
829
- * @deprecated
830
- */
831
- 'ourskyPluginVersion'?: string;
832
- /**
833
- *
834
- * @type {TrackingType}
835
- * @memberof V1CreateImageSet
902
+ * @memberof V1CreateImageSetRequest
836
903
  */
837
- 'trackingType'?: TrackingType;
904
+ 'targetId': string;
838
905
  /**
839
906
  *
840
- * @type {FilterType}
841
- * @memberof V1CreateImageSet
907
+ * @type {string}
908
+ * @memberof V1CreateImageSetRequest
842
909
  */
843
- 'filterType'?: FilterType;
844
- }
845
- /**
846
- * create image set image
847
- * @export
848
- * @interface V1CreateImageSetImage
849
- */
850
- export interface V1CreateImageSetImage {
910
+ 'nodeId': string;
851
911
  /**
852
912
  *
853
913
  * @type {string}
854
- * @memberof V1CreateImageSetImage
914
+ * @memberof V1CreateImageSetRequest
855
915
  */
856
- 'imageSetId': string;
857
- }
858
- /**
859
- * successful create of image set image
860
- * @export
861
- * @interface V1CreateImageSetImageResponse
862
- */
863
- export interface V1CreateImageSetImageResponse {
916
+ 'observationId'?: string;
864
917
  /**
865
918
  *
866
- * @type {string}
867
- * @memberof V1CreateImageSetImageResponse
919
+ * @type {TrackingType}
920
+ * @memberof V1CreateImageSetRequest
868
921
  */
869
- 'id': string;
922
+ 'trackingType'?: TrackingType;
870
923
  /**
871
924
  *
872
- * @type {string}
873
- * @memberof V1CreateImageSetImageResponse
925
+ * @type {FilterType}
926
+ * @memberof V1CreateImageSetRequest
874
927
  */
875
- 'uploadUrl': string;
928
+ 'filterType'?: FilterType;
876
929
  }
877
930
  /**
878
- * create a mount
931
+ *
879
932
  * @export
880
- * @interface V1CreateMount
933
+ * @interface V1CreateMountRequest
881
934
  */
882
- export interface V1CreateMount {
935
+ export interface V1CreateMountRequest {
883
936
  /**
884
937
  *
885
938
  * @type {string}
886
- * @memberof V1CreateMount
939
+ * @memberof V1CreateMountRequest
887
940
  */
888
941
  'model': string;
889
942
  /**
890
943
  *
891
944
  * @type {MountType}
892
- * @memberof V1CreateMount
945
+ * @memberof V1CreateMountRequest
893
946
  */
894
947
  'mountType': MountType;
895
948
  /**
896
949
  *
897
950
  * @type {number}
898
- * @memberof V1CreateMount
951
+ * @memberof V1CreateMountRequest
899
952
  */
900
953
  'slewRate': number;
901
954
  }
902
955
  /**
903
- * create node
956
+ * Create Node
904
957
  * @export
905
- * @interface V1CreateNode
958
+ * @interface V1CreateNodeRequest
906
959
  */
907
- export interface V1CreateNode {
960
+ export interface V1CreateNodeRequest {
908
961
  /**
909
962
  *
910
963
  * @type {string}
911
- * @memberof V1CreateNode
964
+ * @memberof V1CreateNodeRequest
912
965
  */
913
966
  'name': string;
914
967
  /**
915
968
  *
916
969
  * @type {string}
917
- * @memberof V1CreateNode
970
+ * @memberof V1CreateNodeRequest
918
971
  */
919
972
  'observatoryId'?: string;
920
973
  /**
921
974
  *
922
975
  * @type {string}
923
- * @memberof V1CreateNode
976
+ * @memberof V1CreateNodeRequest
924
977
  */
925
978
  'cameraId': string;
926
979
  /**
927
980
  *
928
981
  * @type {string}
929
- * @memberof V1CreateNode
982
+ * @memberof V1CreateNodeRequest
930
983
  */
931
984
  'opticalTubeId': string;
932
985
  /**
933
986
  *
934
987
  * @type {string}
935
- * @memberof V1CreateNode
988
+ * @memberof V1CreateNodeRequest
936
989
  */
937
990
  'mountId': string;
938
991
  /**
939
992
  *
940
993
  * @type {string}
941
- * @memberof V1CreateNode
994
+ * @memberof V1CreateNodeRequest
942
995
  */
943
996
  'filterWheelId'?: string;
944
997
  /**
945
998
  *
946
999
  * @type {number}
947
- * @memberof V1CreateNode
1000
+ * @memberof V1CreateNodeRequest
948
1001
  */
949
1002
  'maxAltitude': number;
950
1003
  /**
951
1004
  *
952
1005
  * @type {Location}
953
- * @memberof V1CreateNode
1006
+ * @memberof V1CreateNodeRequest
954
1007
  */
955
1008
  'location': Location;
956
1009
  }
957
1010
  /**
958
- * create an optical tube
1011
+ *
959
1012
  * @export
960
- * @interface V1CreateOpticalTube
1013
+ * @interface V1CreateOpticalTubeRequest
961
1014
  */
962
- export interface V1CreateOpticalTube {
1015
+ export interface V1CreateOpticalTubeRequest {
963
1016
  /**
964
1017
  *
965
1018
  * @type {string}
966
- * @memberof V1CreateOpticalTube
1019
+ * @memberof V1CreateOpticalTubeRequest
967
1020
  */
968
1021
  'model': string;
969
1022
  /**
970
1023
  *
971
1024
  * @type {number}
972
- * @memberof V1CreateOpticalTube
1025
+ * @memberof V1CreateOpticalTubeRequest
973
1026
  */
974
1027
  'focalLengthMm': number;
975
1028
  /**
976
1029
  *
977
1030
  * @type {number}
978
- * @memberof V1CreateOpticalTube
1031
+ * @memberof V1CreateOpticalTubeRequest
979
1032
  */
980
1033
  'apertureMm': number;
981
1034
  /**
982
1035
  *
983
1036
  * @type {OpticalTubeType}
984
- * @memberof V1CreateOpticalTube
1037
+ * @memberof V1CreateOpticalTubeRequest
985
1038
  */
986
1039
  'type'?: OpticalTubeType;
987
1040
  }
988
1041
  /**
989
- * v1GainCurve
1042
+ * Gain Curve
990
1043
  * @export
991
1044
  * @interface V1GainCurve
992
1045
  */
@@ -1030,7 +1083,7 @@ export interface V1GainCurvePoint {
1030
1083
  'eADU': number;
1031
1084
  }
1032
1085
  /**
1033
- * get astro platform credit balance
1086
+ * Astro Platform Credit Balance
1034
1087
  * @export
1035
1088
  * @interface V1GetAstroPlatformCreditBalanceResponse
1036
1089
  */
@@ -1043,74 +1096,7 @@ export interface V1GetAstroPlatformCreditBalanceResponse {
1043
1096
  'amount': number;
1044
1097
  }
1045
1098
  /**
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
1099
+ *
1114
1100
  * @export
1115
1101
  * @interface V1GetNodes
1116
1102
  */
@@ -1123,7 +1109,7 @@ export interface V1GetNodes {
1123
1109
  'nodes': Array<V1NodeWithLocation>;
1124
1110
  }
1125
1111
  /**
1126
- * v1GetImageSet
1112
+ * An image set represents a contiguous set of observations of the same target captured by the same node.
1127
1113
  * @export
1128
1114
  * @interface V1ImageSet
1129
1115
  */
@@ -1196,7 +1182,7 @@ export interface V1ImageSet {
1196
1182
  'ourskyPluginVersion'?: string;
1197
1183
  }
1198
1184
  /**
1199
- * v1GetImageSetImage
1185
+ * Image Set Image
1200
1186
  * @export
1201
1187
  * @interface V1ImageSetImage
1202
1188
  */
@@ -1341,7 +1327,7 @@ export interface V1ImageSetImage {
1341
1327
  'exposureLength': number;
1342
1328
  }
1343
1329
  /**
1344
- * v1Mount
1330
+ * Mount
1345
1331
  * @export
1346
1332
  * @interface V1Mount
1347
1333
  */
@@ -1439,7 +1425,7 @@ export interface V1Node {
1439
1425
  'id': string;
1440
1426
  }
1441
1427
  /**
1442
- * v1NodeWithLocation
1428
+ * Node with location
1443
1429
  * @export
1444
1430
  * @interface V1NodeWithLocation
1445
1431
  */
@@ -1458,7 +1444,7 @@ export interface V1NodeWithLocation {
1458
1444
  'location': Location;
1459
1445
  }
1460
1446
  /**
1461
- * v1OpticalTube
1447
+ * Optical Tube
1462
1448
  * @export
1463
1449
  * @interface V1OpticalTube
1464
1450
  */
@@ -1489,7 +1475,7 @@ export interface V1OpticalTube {
1489
1475
  'apertureMm': number;
1490
1476
  }
1491
1477
  /**
1492
- * platform credit
1478
+ * Platform Credit
1493
1479
  * @export
1494
1480
  * @interface V1PlatformCredit
1495
1481
  */
@@ -1550,7 +1536,7 @@ export interface V1PlatformCredit {
1550
1536
  'updatedAt': string;
1551
1537
  }
1552
1538
  /**
1553
- * platform credit source
1539
+ *
1554
1540
  * @export
1555
1541
  * @enum {string}
1556
1542
  */
@@ -1562,7 +1548,7 @@ export declare const V1PlatformCreditSource: {
1562
1548
  };
1563
1549
  export type V1PlatformCreditSource = typeof V1PlatformCreditSource[keyof typeof V1PlatformCreditSource];
1564
1550
  /**
1565
- * platform credit type
1551
+ *
1566
1552
  * @export
1567
1553
  * @enum {string}
1568
1554
  */
@@ -1571,7 +1557,7 @@ export declare const V1PlatformCreditType: {
1571
1557
  };
1572
1558
  export type V1PlatformCreditType = typeof V1PlatformCreditType[keyof typeof V1PlatformCreditType];
1573
1559
  /**
1574
- * platform credit unit
1560
+ *
1575
1561
  * @export
1576
1562
  * @enum {string}
1577
1563
  */
@@ -1580,15 +1566,15 @@ export declare const V1PlatformCreditUnit: {
1580
1566
  };
1581
1567
  export type V1PlatformCreditUnit = typeof V1PlatformCreditUnit[keyof typeof V1PlatformCreditUnit];
1582
1568
  /**
1583
- * stack an astro project
1569
+ *
1584
1570
  * @export
1585
- * @interface V1PutStackAstroProject
1571
+ * @interface V1PutStackAstroProjectRequest
1586
1572
  */
1587
- export interface V1PutStackAstroProject {
1573
+ export interface V1PutStackAstroProjectRequest {
1588
1574
  /**
1589
1575
  *
1590
1576
  * @type {string}
1591
- * @memberof V1PutStackAstroProject
1577
+ * @memberof V1PutStackAstroProjectRequest
1592
1578
  */
1593
1579
  'projectId': string;
1594
1580
  }
@@ -1612,7 +1598,7 @@ export interface V1ReadNoisePoint {
1612
1598
  'eRMS': number;
1613
1599
  }
1614
1600
  /**
1615
- * v1SetupAction
1601
+ * Setup Action
1616
1602
  * @export
1617
1603
  * @interface V1SetupAction
1618
1604
  */
@@ -1631,69 +1617,69 @@ export interface V1SetupAction {
1631
1617
  'arguments'?: Array<string>;
1632
1618
  }
1633
1619
  /**
1634
- * update node
1620
+ * Update Node
1635
1621
  * @export
1636
- * @interface V1UpdateNode
1622
+ * @interface V1UpdateNodeRequest
1637
1623
  */
1638
- export interface V1UpdateNode {
1624
+ export interface V1UpdateNodeRequest {
1639
1625
  /**
1640
1626
  *
1641
1627
  * @type {string}
1642
- * @memberof V1UpdateNode
1628
+ * @memberof V1UpdateNodeRequest
1643
1629
  */
1644
1630
  'nodeId': string;
1645
1631
  /**
1646
1632
  *
1647
1633
  * @type {string}
1648
- * @memberof V1UpdateNode
1634
+ * @memberof V1UpdateNodeRequest
1649
1635
  */
1650
1636
  'name'?: string;
1651
1637
  /**
1652
1638
  *
1653
1639
  * @type {string}
1654
- * @memberof V1UpdateNode
1640
+ * @memberof V1UpdateNodeRequest
1655
1641
  */
1656
1642
  'observatoryId'?: string;
1657
1643
  /**
1658
1644
  *
1659
1645
  * @type {string}
1660
- * @memberof V1UpdateNode
1646
+ * @memberof V1UpdateNodeRequest
1661
1647
  */
1662
1648
  'cameraId'?: string;
1663
1649
  /**
1664
1650
  *
1665
1651
  * @type {string}
1666
- * @memberof V1UpdateNode
1652
+ * @memberof V1UpdateNodeRequest
1667
1653
  */
1668
1654
  'opticalTubeId'?: string;
1669
1655
  /**
1670
1656
  *
1671
1657
  * @type {string}
1672
- * @memberof V1UpdateNode
1658
+ * @memberof V1UpdateNodeRequest
1673
1659
  */
1674
1660
  'mountId'?: string;
1675
1661
  /**
1676
1662
  *
1677
1663
  * @type {string}
1678
- * @memberof V1UpdateNode
1664
+ * @memberof V1UpdateNodeRequest
1679
1665
  */
1680
1666
  'filterWheelId'?: string;
1681
1667
  /**
1682
1668
  *
1683
1669
  * @type {number}
1684
- * @memberof V1UpdateNode
1670
+ * @memberof V1UpdateNodeRequest
1685
1671
  */
1686
1672
  'maxAltitude'?: number;
1687
1673
  /**
1688
1674
  *
1689
1675
  * @type {Location}
1690
- * @memberof V1UpdateNode
1676
+ * @memberof V1UpdateNodeRequest
1691
1677
  */
1692
1678
  'location'?: Location;
1693
1679
  /**
1694
1680
  *
1695
1681
  * @type {NodeState}
1696
- * @memberof V1UpdateNode
1682
+ * @memberof V1UpdateNodeRequest
1697
1683
  */
1698
1684
  'state'?: NodeState;
1699
1685
  }
@@ -1703,7 +1689,7 @@ export interface V1UpdateNode {
1703
1689
  */
1704
1690
  export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
1705
1691
  /**
1706
- * match camera
1692
+ * Match camera.
1707
1693
  * @param {string} [model]
1708
1694
  * @param {number} [pixelSizeMicrons]
1709
1695
  * @param {number} [pixelsX]
@@ -1717,117 +1703,117 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1717
1703
  */
1718
1704
  v1CameraMatch: (model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1719
1705
  /**
1720
- * create an astro user camera
1721
- * @param {V1CreateCamera} v1CreateCamera request to create an camera
1706
+ * Create an astro camera.
1707
+ * @param {V1CreateCameraRequest} v1CreateCameraRequest
1722
1708
  * @param {*} [options] Override http request option.
1723
1709
  * @throws {RequiredError}
1724
1710
  */
1725
- v1CreateAstroCamera: (v1CreateCamera: V1CreateCamera, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1711
+ v1CreateAstroCamera: (v1CreateCameraRequest: V1CreateCameraRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1726
1712
  /**
1727
- * create an astro user mount
1728
- * @param {V1CreateMount} v1CreateMount request to create a mount
1713
+ * Create an astro mount.
1714
+ * @param {V1CreateMountRequest} v1CreateMountRequest
1729
1715
  * @param {*} [options] Override http request option.
1730
1716
  * @throws {RequiredError}
1731
1717
  */
1732
- v1CreateAstroMount: (v1CreateMount: V1CreateMount, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1718
+ v1CreateAstroMount: (v1CreateMountRequest: V1CreateMountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1733
1719
  /**
1734
- * create an optical tube for an astro user
1735
- * @param {V1CreateOpticalTube} v1CreateOpticalTube request to create an optical tube
1720
+ * Create an astro optical tube.
1721
+ * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
1736
1722
  * @param {*} [options] Override http request option.
1737
1723
  * @throws {RequiredError}
1738
1724
  */
1739
- v1CreateAstroOpticalTube: (v1CreateOpticalTube: V1CreateOpticalTube, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1725
+ v1CreateAstroOpticalTube: (v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1740
1726
  /**
1741
- * create an astro project
1742
- * @param {V1CreateAstroProject} v1CreateAstroProject request to create an astro project
1727
+ * Create an astro project.
1728
+ * @param {V1CreateAstroProjectRequest} v1CreateAstroProjectRequest
1743
1729
  * @param {*} [options] Override http request option.
1744
1730
  * @throws {RequiredError}
1745
1731
  */
1746
- v1CreateAstroProject: (v1CreateAstroProject: V1CreateAstroProject, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1732
+ v1CreateAstroProject: (v1CreateAstroProjectRequest: V1CreateAstroProjectRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1747
1733
  /**
1748
- * create a project image set
1749
- * @param {V1CreateAstroProjectImageSet} v1CreateAstroProjectImageSet request to create a project image Set
1734
+ * Create an astro project image set.
1735
+ * @param {V1CreateAstroProjectImageSetRequest} v1CreateAstroProjectImageSetRequest
1750
1736
  * @param {*} [options] Override http request option.
1751
1737
  * @throws {RequiredError}
1752
1738
  */
1753
- v1CreateAstroProjectImageSet: (v1CreateAstroProjectImageSet: V1CreateAstroProjectImageSet, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1739
+ v1CreateAstroProjectImageSet: (v1CreateAstroProjectImageSetRequest: V1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1754
1740
  /**
1755
- * create an calibration master
1756
- * @param {V1CreateCalibrationMaster} v1CreateCalibrationMaster request to create the calibration master
1741
+ * Create a calibration master.
1742
+ * @param {V1CreateCalibrationMasterRequest} v1CreateCalibrationMasterRequest
1757
1743
  * @param {*} [options] Override http request option.
1758
1744
  * @throws {RequiredError}
1759
1745
  */
1760
- v1CreateCalibrationMaster: (v1CreateCalibrationMaster: V1CreateCalibrationMaster, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1746
+ v1CreateCalibrationMaster: (v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1761
1747
  /**
1762
- * create an image set
1763
- * @param {V1CreateImageSet} v1CreateImageSet request to create the Image Set
1748
+ * Create an image set.
1749
+ * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
1764
1750
  * @param {*} [options] Override http request option.
1765
1751
  * @throws {RequiredError}
1766
1752
  */
1767
- v1CreateImageSet: (v1CreateImageSet: V1CreateImageSet, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1753
+ v1CreateImageSet: (v1CreateImageSetRequest: V1CreateImageSetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1768
1754
  /**
1769
- * create an image set image
1770
- * @param {V1CreateImageSetImage} v1CreateImageSetImage request to create an image set image
1755
+ * Create an image set image.
1756
+ * @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
1771
1757
  * @param {*} [options] Override http request option.
1772
1758
  * @throws {RequiredError}
1773
1759
  */
1774
- v1CreateImageSetImage: (v1CreateImageSetImage: V1CreateImageSetImage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1760
+ v1CreateImageSetImage: (v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1775
1761
  /**
1776
- * create a node
1777
- * @param {V1CreateNode} v1CreateNode request to create a node
1762
+ * Create a node.
1763
+ * @param {V1CreateNodeRequest} v1CreateNodeRequest
1778
1764
  * @param {*} [options] Override http request option.
1779
1765
  * @throws {RequiredError}
1780
1766
  */
1781
- v1CreateNode: (v1CreateNode: V1CreateNode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1767
+ v1CreateNode: (v1CreateNodeRequest: V1CreateNodeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1782
1768
  /**
1783
- * get an astro camera
1769
+ * Get an astro camera.
1784
1770
  * @param {string} id
1785
1771
  * @param {*} [options] Override http request option.
1786
1772
  * @throws {RequiredError}
1787
1773
  */
1788
1774
  v1GetAstroCamera: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1789
1775
  /**
1790
- * get an astro mount
1776
+ * Get an astro mount.
1791
1777
  * @param {string} id
1792
1778
  * @param {*} [options] Override http request option.
1793
1779
  * @throws {RequiredError}
1794
1780
  */
1795
1781
  v1GetAstroMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1796
1782
  /**
1797
- * get an optical tube
1783
+ * Get an astro optical tube.
1798
1784
  * @param {string} id
1799
1785
  * @param {*} [options] Override http request option.
1800
1786
  * @throws {RequiredError}
1801
1787
  */
1802
1788
  v1GetAstroOpticalTube: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1803
1789
  /**
1804
- * get astro platform credit balance
1790
+ * Get astro platform credit balance.
1805
1791
  * @param {*} [options] Override http request option.
1806
1792
  * @throws {RequiredError}
1807
1793
  */
1808
1794
  v1GetAstroPlatformCreditBalance: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1809
1795
  /**
1810
- * get an astro project
1796
+ * Get an astro project.
1811
1797
  * @param {string} astroProjectId
1812
1798
  * @param {*} [options] Override http request option.
1813
1799
  * @throws {RequiredError}
1814
1800
  */
1815
1801
  v1GetAstroProject: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1816
1802
  /**
1817
- * get all assets for an astro project
1803
+ * Get astro project assets.
1818
1804
  * @param {string} astroProjectId
1819
1805
  * @param {*} [options] Override http request option.
1820
1806
  * @throws {RequiredError}
1821
1807
  */
1822
1808
  v1GetAstroProjectAssets: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1823
1809
  /**
1824
- * get all astro projects
1810
+ * Get astro projects.
1825
1811
  * @param {*} [options] Override http request option.
1826
1812
  * @throws {RequiredError}
1827
1813
  */
1828
1814
  v1GetAstroProjects: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1829
1815
  /**
1830
- * Get an astro targets. pass in an ID, an NGC ID or an IC ID
1816
+ * Get an astro target. Pass in an ID, an NGC ID or an IC ID.
1831
1817
  * @param {string} [id]
1832
1818
  * @param {string} [ngcId]
1833
1819
  * @param {string} [icId]
@@ -1846,65 +1832,65 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1846
1832
  */
1847
1833
  v1GetAstroTargets: (lastId?: string, catalogId?: string, ra?: number, dec?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1848
1834
  /**
1849
- * get all calibration masters for a node
1835
+ * Get calibration masters.
1850
1836
  * @param {string} nodeId
1851
1837
  * @param {*} [options] Override http request option.
1852
1838
  * @throws {RequiredError}
1853
1839
  */
1854
1840
  v1GetCalibrationMasters: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1855
1841
  /**
1856
- * get all cameras
1842
+ * Get cameras.
1857
1843
  * @param {*} [options] Override http request option.
1858
1844
  * @throws {RequiredError}
1859
1845
  */
1860
1846
  v1GetCameras: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1861
1847
  /**
1862
- * get an image set
1848
+ * Get an image set.
1863
1849
  * @param {string} id
1864
1850
  * @param {*} [options] Override http request option.
1865
1851
  * @throws {RequiredError}
1866
1852
  */
1867
1853
  v1GetImageSet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1868
1854
  /**
1869
- * get an image
1855
+ * Get an image.
1870
1856
  * @param {string} imageId
1871
1857
  * @param {*} [options] Override http request option.
1872
1858
  * @throws {RequiredError}
1873
1859
  */
1874
1860
  v1GetImageSetImage: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1875
1861
  /**
1876
- * get image set images
1862
+ * Get image set images.
1877
1863
  * @param {Array<string>} imageSets
1878
1864
  * @param {*} [options] Override http request option.
1879
1865
  * @throws {RequiredError}
1880
1866
  */
1881
1867
  v1GetImageSetImages: (imageSets: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1882
1868
  /**
1883
- * get image sets for targets observed for your organization
1869
+ * Get image sets.
1884
1870
  * @param {*} [options] Override http request option.
1885
1871
  * @throws {RequiredError}
1886
1872
  */
1887
1873
  v1GetImageSets: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1888
1874
  /**
1889
- * get mounts
1875
+ * Get mounts.
1890
1876
  * @param {*} [options] Override http request option.
1891
1877
  * @throws {RequiredError}
1892
1878
  */
1893
1879
  v1GetMounts: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1894
1880
  /**
1895
- * get all nodes
1881
+ * Get nodes.
1896
1882
  * @param {*} [options] Override http request option.
1897
1883
  * @throws {RequiredError}
1898
1884
  */
1899
1885
  v1GetNodes: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1900
1886
  /**
1901
- * get platform credits
1887
+ * Get platform credits.
1902
1888
  * @param {*} [options] Override http request option.
1903
1889
  * @throws {RequiredError}
1904
1890
  */
1905
1891
  v1GetPlatformCredits: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1906
1892
  /**
1907
- * search for an astro project with certain properties
1893
+ * Match astro project.
1908
1894
  * @param {string} targetId
1909
1895
  * @param {string} cameraId
1910
1896
  * @param {string} otaId
@@ -1913,14 +1899,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1913
1899
  */
1914
1900
  v1MatchAstroProject: (targetId: string, cameraId: string, otaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1915
1901
  /**
1916
- * match mount
1902
+ * Match mount.
1917
1903
  * @param {string} [model]
1918
1904
  * @param {*} [options] Override http request option.
1919
1905
  * @throws {RequiredError}
1920
1906
  */
1921
1907
  v1MountMatch: (model?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1922
1908
  /**
1923
- * match optical tube
1909
+ * Match optical tube.
1924
1910
  * @param {string} [model]
1925
1911
  * @param {number} [focalLengthMm]
1926
1912
  * @param {number} [apertureMm]
@@ -1929,19 +1915,19 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1929
1915
  */
1930
1916
  v1OpticalTubeMatch: (model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1931
1917
  /**
1932
- * stack an astro project
1933
- * @param {V1PutStackAstroProject} v1PutStackAstroProject request to stack an astro project
1918
+ * Stack an astro project.
1919
+ * @param {V1PutStackAstroProjectRequest} v1PutStackAstroProjectRequest
1934
1920
  * @param {*} [options] Override http request option.
1935
1921
  * @throws {RequiredError}
1936
1922
  */
1937
- v1PutStackAstroProject: (v1PutStackAstroProject: V1PutStackAstroProject, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1923
+ v1PutStackAstroProject: (v1PutStackAstroProjectRequest: V1PutStackAstroProjectRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1938
1924
  /**
1939
- * update a node
1940
- * @param {V1UpdateNode} v1UpdateNode request to update a node
1925
+ * Update a node.
1926
+ * @param {V1UpdateNodeRequest} v1UpdateNodeRequest
1941
1927
  * @param {*} [options] Override http request option.
1942
1928
  * @throws {RequiredError}
1943
1929
  */
1944
- v1UpdateNode: (v1UpdateNode: V1UpdateNode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1930
+ v1UpdateNode: (v1UpdateNodeRequest: V1UpdateNodeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1945
1931
  };
1946
1932
  /**
1947
1933
  * DefaultApi - functional programming interface
@@ -1949,7 +1935,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1949
1935
  */
1950
1936
  export declare const DefaultApiFp: (configuration?: Configuration) => {
1951
1937
  /**
1952
- * match camera
1938
+ * Match camera.
1953
1939
  * @param {string} [model]
1954
1940
  * @param {number} [pixelSizeMicrons]
1955
1941
  * @param {number} [pixelsX]
@@ -1963,117 +1949,117 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1963
1949
  */
1964
1950
  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
1951
  /**
1966
- * create an astro user camera
1967
- * @param {V1CreateCamera} v1CreateCamera request to create an camera
1952
+ * Create an astro camera.
1953
+ * @param {V1CreateCameraRequest} v1CreateCameraRequest
1968
1954
  * @param {*} [options] Override http request option.
1969
1955
  * @throws {RequiredError}
1970
1956
  */
1971
- v1CreateAstroCamera(v1CreateCamera: V1CreateCamera, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1957
+ v1CreateAstroCamera(v1CreateCameraRequest: V1CreateCameraRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1972
1958
  /**
1973
- * create an astro user mount
1974
- * @param {V1CreateMount} v1CreateMount request to create a mount
1959
+ * Create an astro mount.
1960
+ * @param {V1CreateMountRequest} v1CreateMountRequest
1975
1961
  * @param {*} [options] Override http request option.
1976
1962
  * @throws {RequiredError}
1977
1963
  */
1978
- v1CreateAstroMount(v1CreateMount: V1CreateMount, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1964
+ v1CreateAstroMount(v1CreateMountRequest: V1CreateMountRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1979
1965
  /**
1980
- * create an optical tube for an astro user
1981
- * @param {V1CreateOpticalTube} v1CreateOpticalTube request to create an optical tube
1966
+ * Create an astro optical tube.
1967
+ * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
1982
1968
  * @param {*} [options] Override http request option.
1983
1969
  * @throws {RequiredError}
1984
1970
  */
1985
- v1CreateAstroOpticalTube(v1CreateOpticalTube: V1CreateOpticalTube, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1971
+ v1CreateAstroOpticalTube(v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1986
1972
  /**
1987
- * create an astro project
1988
- * @param {V1CreateAstroProject} v1CreateAstroProject request to create an astro project
1973
+ * Create an astro project.
1974
+ * @param {V1CreateAstroProjectRequest} v1CreateAstroProjectRequest
1989
1975
  * @param {*} [options] Override http request option.
1990
1976
  * @throws {RequiredError}
1991
1977
  */
1992
- v1CreateAstroProject(v1CreateAstroProject: V1CreateAstroProject, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateAstroProjectResponse>>;
1978
+ v1CreateAstroProject(v1CreateAstroProjectRequest: V1CreateAstroProjectRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateAstroProjectResponse>>;
1993
1979
  /**
1994
- * create a project image set
1995
- * @param {V1CreateAstroProjectImageSet} v1CreateAstroProjectImageSet request to create a project image Set
1980
+ * Create an astro project image set.
1981
+ * @param {V1CreateAstroProjectImageSetRequest} v1CreateAstroProjectImageSetRequest
1996
1982
  * @param {*} [options] Override http request option.
1997
1983
  * @throws {RequiredError}
1998
1984
  */
1999
- v1CreateAstroProjectImageSet(v1CreateAstroProjectImageSet: V1CreateAstroProjectImageSet, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1985
+ v1CreateAstroProjectImageSet(v1CreateAstroProjectImageSetRequest: V1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2000
1986
  /**
2001
- * create an calibration master
2002
- * @param {V1CreateCalibrationMaster} v1CreateCalibrationMaster request to create the calibration master
1987
+ * Create a calibration master.
1988
+ * @param {V1CreateCalibrationMasterRequest} v1CreateCalibrationMasterRequest
2003
1989
  * @param {*} [options] Override http request option.
2004
1990
  * @throws {RequiredError}
2005
1991
  */
2006
- v1CreateCalibrationMaster(v1CreateCalibrationMaster: V1CreateCalibrationMaster, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalibrationMasterCreateResponse>>;
1992
+ v1CreateCalibrationMaster(v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationMasterResponse>>;
2007
1993
  /**
2008
- * create an image set
2009
- * @param {V1CreateImageSet} v1CreateImageSet request to create the Image Set
1994
+ * Create an image set.
1995
+ * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
2010
1996
  * @param {*} [options] Override http request option.
2011
1997
  * @throws {RequiredError}
2012
1998
  */
2013
- v1CreateImageSet(v1CreateImageSet: V1CreateImageSet, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1999
+ v1CreateImageSet(v1CreateImageSetRequest: V1CreateImageSetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2014
2000
  /**
2015
- * create an image set image
2016
- * @param {V1CreateImageSetImage} v1CreateImageSetImage request to create an image set image
2001
+ * Create an image set image.
2002
+ * @param {V1CreateImageSetImageRequest} v1CreateImageSetImageRequest
2017
2003
  * @param {*} [options] Override http request option.
2018
2004
  * @throws {RequiredError}
2019
2005
  */
2020
- v1CreateImageSetImage(v1CreateImageSetImage: V1CreateImageSetImage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
2006
+ v1CreateImageSetImage(v1CreateImageSetImageRequest: V1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateImageSetImageResponse>>;
2021
2007
  /**
2022
- * create a node
2023
- * @param {V1CreateNode} v1CreateNode request to create a node
2008
+ * Create a node.
2009
+ * @param {V1CreateNodeRequest} v1CreateNodeRequest
2024
2010
  * @param {*} [options] Override http request option.
2025
2011
  * @throws {RequiredError}
2026
2012
  */
2027
- v1CreateNode(v1CreateNode: V1CreateNode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2013
+ v1CreateNode(v1CreateNodeRequest: V1CreateNodeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2028
2014
  /**
2029
- * get an astro camera
2015
+ * Get an astro camera.
2030
2016
  * @param {string} id
2031
2017
  * @param {*} [options] Override http request option.
2032
2018
  * @throws {RequiredError}
2033
2019
  */
2034
2020
  v1GetAstroCamera(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Camera>>;
2035
2021
  /**
2036
- * get an astro mount
2022
+ * Get an astro mount.
2037
2023
  * @param {string} id
2038
2024
  * @param {*} [options] Override http request option.
2039
2025
  * @throws {RequiredError}
2040
2026
  */
2041
2027
  v1GetAstroMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
2042
2028
  /**
2043
- * get an optical tube
2029
+ * Get an astro optical tube.
2044
2030
  * @param {string} id
2045
2031
  * @param {*} [options] Override http request option.
2046
2032
  * @throws {RequiredError}
2047
2033
  */
2048
2034
  v1GetAstroOpticalTube(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OpticalTube>>;
2049
2035
  /**
2050
- * get astro platform credit balance
2036
+ * Get astro platform credit balance.
2051
2037
  * @param {*} [options] Override http request option.
2052
2038
  * @throws {RequiredError}
2053
2039
  */
2054
2040
  v1GetAstroPlatformCreditBalance(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetAstroPlatformCreditBalanceResponse>>;
2055
2041
  /**
2056
- * get an astro project
2042
+ * Get an astro project.
2057
2043
  * @param {string} astroProjectId
2058
2044
  * @param {*} [options] Override http request option.
2059
2045
  * @throws {RequiredError}
2060
2046
  */
2061
- v1GetAstroProject(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetAstroProject>>;
2047
+ v1GetAstroProject(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1AstroProject>>;
2062
2048
  /**
2063
- * get all assets for an astro project
2049
+ * Get astro project assets.
2064
2050
  * @param {string} astroProjectId
2065
2051
  * @param {*} [options] Override http request option.
2066
2052
  * @throws {RequiredError}
2067
2053
  */
2068
2054
  v1GetAstroProjectAssets(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1AstroProjectAsset>>>;
2069
2055
  /**
2070
- * get all astro projects
2056
+ * Get astro projects.
2071
2057
  * @param {*} [options] Override http request option.
2072
2058
  * @throws {RequiredError}
2073
2059
  */
2074
- v1GetAstroProjects(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1GetAstroProject>>>;
2060
+ v1GetAstroProjects(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1AstroProject>>>;
2075
2061
  /**
2076
- * Get an astro targets. pass in an ID, an NGC ID or an IC ID
2062
+ * Get an astro target. Pass in an ID, an NGC ID or an IC ID.
2077
2063
  * @param {string} [id]
2078
2064
  * @param {string} [ngcId]
2079
2065
  * @param {string} [icId]
@@ -2092,81 +2078,81 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2092
2078
  */
2093
2079
  v1GetAstroTargets(lastId?: string, catalogId?: string, ra?: number, dec?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1AstroTarget>>>;
2094
2080
  /**
2095
- * get all calibration masters for a node
2081
+ * Get calibration masters.
2096
2082
  * @param {string} nodeId
2097
2083
  * @param {*} [options] Override http request option.
2098
2084
  * @throws {RequiredError}
2099
2085
  */
2100
2086
  v1GetCalibrationMasters(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1CalibrationMaster>>>;
2101
2087
  /**
2102
- * get all cameras
2088
+ * Get cameras.
2103
2089
  * @param {*} [options] Override http request option.
2104
2090
  * @throws {RequiredError}
2105
2091
  */
2106
2092
  v1GetCameras(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
2107
2093
  /**
2108
- * get an image set
2094
+ * Get an image set.
2109
2095
  * @param {string} id
2110
2096
  * @param {*} [options] Override http request option.
2111
2097
  * @throws {RequiredError}
2112
2098
  */
2113
2099
  v1GetImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageSet>>;
2114
2100
  /**
2115
- * get an image
2101
+ * Get an image.
2116
2102
  * @param {string} imageId
2117
2103
  * @param {*} [options] Override http request option.
2118
2104
  * @throws {RequiredError}
2119
2105
  */
2120
2106
  v1GetImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ImageSetImage>>;
2121
2107
  /**
2122
- * get image set images
2108
+ * Get image set images.
2123
2109
  * @param {Array<string>} imageSets
2124
2110
  * @param {*} [options] Override http request option.
2125
2111
  * @throws {RequiredError}
2126
2112
  */
2127
2113
  v1GetImageSetImages(imageSets: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ImageSetImage>>>;
2128
2114
  /**
2129
- * get image sets for targets observed for your organization
2115
+ * Get image sets.
2130
2116
  * @param {*} [options] Override http request option.
2131
2117
  * @throws {RequiredError}
2132
2118
  */
2133
2119
  v1GetImageSets(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ImageSet>>>;
2134
2120
  /**
2135
- * get mounts
2121
+ * Get mounts.
2136
2122
  * @param {*} [options] Override http request option.
2137
2123
  * @throws {RequiredError}
2138
2124
  */
2139
2125
  v1GetMounts(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>>;
2140
2126
  /**
2141
- * get all nodes
2127
+ * Get nodes.
2142
2128
  * @param {*} [options] Override http request option.
2143
2129
  * @throws {RequiredError}
2144
2130
  */
2145
2131
  v1GetNodes(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetNodes>>;
2146
2132
  /**
2147
- * get platform credits
2133
+ * Get platform credits.
2148
2134
  * @param {*} [options] Override http request option.
2149
2135
  * @throws {RequiredError}
2150
2136
  */
2151
2137
  v1GetPlatformCredits(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlatformCredit>>>;
2152
2138
  /**
2153
- * search for an astro project with certain properties
2139
+ * Match astro project.
2154
2140
  * @param {string} targetId
2155
2141
  * @param {string} cameraId
2156
2142
  * @param {string} otaId
2157
2143
  * @param {*} [options] Override http request option.
2158
2144
  * @throws {RequiredError}
2159
2145
  */
2160
- v1MatchAstroProject(targetId: string, cameraId: string, otaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1GetAstroProject>>>;
2146
+ v1MatchAstroProject(targetId: string, cameraId: string, otaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1AstroProject>>>;
2161
2147
  /**
2162
- * match mount
2148
+ * Match mount.
2163
2149
  * @param {string} [model]
2164
2150
  * @param {*} [options] Override http request option.
2165
2151
  * @throws {RequiredError}
2166
2152
  */
2167
2153
  v1MountMatch(model?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>>;
2168
2154
  /**
2169
- * match optical tube
2155
+ * Match optical tube.
2170
2156
  * @param {string} [model]
2171
2157
  * @param {number} [focalLengthMm]
2172
2158
  * @param {number} [apertureMm]
@@ -2175,19 +2161,19 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2175
2161
  */
2176
2162
  v1OpticalTubeMatch(model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1OpticalTube>>>;
2177
2163
  /**
2178
- * stack an astro project
2179
- * @param {V1PutStackAstroProject} v1PutStackAstroProject request to stack an astro project
2164
+ * Stack an astro project.
2165
+ * @param {V1PutStackAstroProjectRequest} v1PutStackAstroProjectRequest
2180
2166
  * @param {*} [options] Override http request option.
2181
2167
  * @throws {RequiredError}
2182
2168
  */
2183
- v1PutStackAstroProject(v1PutStackAstroProject: V1PutStackAstroProject, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2169
+ v1PutStackAstroProject(v1PutStackAstroProjectRequest: V1PutStackAstroProjectRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2184
2170
  /**
2185
- * update a node
2186
- * @param {V1UpdateNode} v1UpdateNode request to update a node
2171
+ * Update a node.
2172
+ * @param {V1UpdateNodeRequest} v1UpdateNodeRequest
2187
2173
  * @param {*} [options] Override http request option.
2188
2174
  * @throws {RequiredError}
2189
2175
  */
2190
- v1UpdateNode(v1UpdateNode: V1UpdateNode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2176
+ v1UpdateNode(v1UpdateNodeRequest: V1UpdateNodeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2191
2177
  };
2192
2178
  /**
2193
2179
  * DefaultApi - factory interface
@@ -2195,124 +2181,124 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2195
2181
  */
2196
2182
  export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2197
2183
  /**
2198
- * match camera
2184
+ * Match camera.
2199
2185
  * @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
2200
2186
  * @param {*} [options] Override http request option.
2201
2187
  * @throws {RequiredError}
2202
2188
  */
2203
2189
  v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
2204
2190
  /**
2205
- * create an astro user camera
2191
+ * Create an astro camera.
2206
2192
  * @param {DefaultApiV1CreateAstroCameraRequest} requestParameters Request parameters.
2207
2193
  * @param {*} [options] Override http request option.
2208
2194
  * @throws {RequiredError}
2209
2195
  */
2210
2196
  v1CreateAstroCamera(requestParameters: DefaultApiV1CreateAstroCameraRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2211
2197
  /**
2212
- * create an astro user mount
2198
+ * Create an astro mount.
2213
2199
  * @param {DefaultApiV1CreateAstroMountRequest} requestParameters Request parameters.
2214
2200
  * @param {*} [options] Override http request option.
2215
2201
  * @throws {RequiredError}
2216
2202
  */
2217
2203
  v1CreateAstroMount(requestParameters: DefaultApiV1CreateAstroMountRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2218
2204
  /**
2219
- * create an optical tube for an astro user
2205
+ * Create an astro optical tube.
2220
2206
  * @param {DefaultApiV1CreateAstroOpticalTubeRequest} requestParameters Request parameters.
2221
2207
  * @param {*} [options] Override http request option.
2222
2208
  * @throws {RequiredError}
2223
2209
  */
2224
2210
  v1CreateAstroOpticalTube(requestParameters: DefaultApiV1CreateAstroOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2225
2211
  /**
2226
- * create an astro project
2212
+ * Create an astro project.
2227
2213
  * @param {DefaultApiV1CreateAstroProjectRequest} requestParameters Request parameters.
2228
2214
  * @param {*} [options] Override http request option.
2229
2215
  * @throws {RequiredError}
2230
2216
  */
2231
2217
  v1CreateAstroProject(requestParameters: DefaultApiV1CreateAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateAstroProjectResponse>;
2232
2218
  /**
2233
- * create a project image set
2219
+ * Create an astro project image set.
2234
2220
  * @param {DefaultApiV1CreateAstroProjectImageSetRequest} requestParameters Request parameters.
2235
2221
  * @param {*} [options] Override http request option.
2236
2222
  * @throws {RequiredError}
2237
2223
  */
2238
2224
  v1CreateAstroProjectImageSet(requestParameters: DefaultApiV1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2239
2225
  /**
2240
- * create an calibration master
2226
+ * Create a calibration master.
2241
2227
  * @param {DefaultApiV1CreateCalibrationMasterRequest} requestParameters Request parameters.
2242
2228
  * @param {*} [options] Override http request option.
2243
2229
  * @throws {RequiredError}
2244
2230
  */
2245
- v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<CalibrationMasterCreateResponse>;
2231
+ v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationMasterResponse>;
2246
2232
  /**
2247
- * create an image set
2233
+ * Create an image set.
2248
2234
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
2249
2235
  * @param {*} [options] Override http request option.
2250
2236
  * @throws {RequiredError}
2251
2237
  */
2252
2238
  v1CreateImageSet(requestParameters: DefaultApiV1CreateImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2253
2239
  /**
2254
- * create an image set image
2240
+ * Create an image set image.
2255
2241
  * @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
2256
2242
  * @param {*} [options] Override http request option.
2257
2243
  * @throws {RequiredError}
2258
2244
  */
2259
2245
  v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateImageSetImageResponse>;
2260
2246
  /**
2261
- * create a node
2247
+ * Create a node.
2262
2248
  * @param {DefaultApiV1CreateNodeRequest} requestParameters Request parameters.
2263
2249
  * @param {*} [options] Override http request option.
2264
2250
  * @throws {RequiredError}
2265
2251
  */
2266
2252
  v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2267
2253
  /**
2268
- * get an astro camera
2254
+ * Get an astro camera.
2269
2255
  * @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
2270
2256
  * @param {*} [options] Override http request option.
2271
2257
  * @throws {RequiredError}
2272
2258
  */
2273
2259
  v1GetAstroCamera(requestParameters: DefaultApiV1GetAstroCameraRequest, options?: AxiosRequestConfig): AxiosPromise<V1Camera>;
2274
2260
  /**
2275
- * get an astro mount
2261
+ * Get an astro mount.
2276
2262
  * @param {DefaultApiV1GetAstroMountRequest} requestParameters Request parameters.
2277
2263
  * @param {*} [options] Override http request option.
2278
2264
  * @throws {RequiredError}
2279
2265
  */
2280
2266
  v1GetAstroMount(requestParameters: DefaultApiV1GetAstroMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
2281
2267
  /**
2282
- * get an optical tube
2268
+ * Get an astro optical tube.
2283
2269
  * @param {DefaultApiV1GetAstroOpticalTubeRequest} requestParameters Request parameters.
2284
2270
  * @param {*} [options] Override http request option.
2285
2271
  * @throws {RequiredError}
2286
2272
  */
2287
2273
  v1GetAstroOpticalTube(requestParameters: DefaultApiV1GetAstroOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube>;
2288
2274
  /**
2289
- * get astro platform credit balance
2275
+ * Get astro platform credit balance.
2290
2276
  * @param {*} [options] Override http request option.
2291
2277
  * @throws {RequiredError}
2292
2278
  */
2293
2279
  v1GetAstroPlatformCreditBalance(options?: AxiosRequestConfig): AxiosPromise<V1GetAstroPlatformCreditBalanceResponse>;
2294
2280
  /**
2295
- * get an astro project
2281
+ * Get an astro project.
2296
2282
  * @param {DefaultApiV1GetAstroProjectRequest} requestParameters Request parameters.
2297
2283
  * @param {*} [options] Override http request option.
2298
2284
  * @throws {RequiredError}
2299
2285
  */
2300
- v1GetAstroProject(requestParameters: DefaultApiV1GetAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetAstroProject>;
2286
+ v1GetAstroProject(requestParameters: DefaultApiV1GetAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<V1AstroProject>;
2301
2287
  /**
2302
- * get all assets for an astro project
2288
+ * Get astro project assets.
2303
2289
  * @param {DefaultApiV1GetAstroProjectAssetsRequest} requestParameters Request parameters.
2304
2290
  * @param {*} [options] Override http request option.
2305
2291
  * @throws {RequiredError}
2306
2292
  */
2307
2293
  v1GetAstroProjectAssets(requestParameters: DefaultApiV1GetAstroProjectAssetsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1AstroProjectAsset>>;
2308
2294
  /**
2309
- * get all astro projects
2295
+ * Get astro projects.
2310
2296
  * @param {*} [options] Override http request option.
2311
2297
  * @throws {RequiredError}
2312
2298
  */
2313
- v1GetAstroProjects(options?: AxiosRequestConfig): AxiosPromise<Array<V1GetAstroProject>>;
2299
+ v1GetAstroProjects(options?: AxiosRequestConfig): AxiosPromise<Array<V1AstroProject>>;
2314
2300
  /**
2315
- * Get an astro targets. pass in an ID, an NGC ID or an IC ID
2301
+ * Get an astro target. Pass in an ID, an NGC ID or an IC ID.
2316
2302
  * @param {DefaultApiV1GetAstroTargetRequest} requestParameters Request parameters.
2317
2303
  * @param {*} [options] Override http request option.
2318
2304
  * @throws {RequiredError}
@@ -2326,93 +2312,93 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2326
2312
  */
2327
2313
  v1GetAstroTargets(requestParameters?: DefaultApiV1GetAstroTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1AstroTarget>>;
2328
2314
  /**
2329
- * get all calibration masters for a node
2315
+ * Get calibration masters.
2330
2316
  * @param {DefaultApiV1GetCalibrationMastersRequest} requestParameters Request parameters.
2331
2317
  * @param {*} [options] Override http request option.
2332
2318
  * @throws {RequiredError}
2333
2319
  */
2334
2320
  v1GetCalibrationMasters(requestParameters: DefaultApiV1GetCalibrationMastersRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1CalibrationMaster>>;
2335
2321
  /**
2336
- * get all cameras
2322
+ * Get cameras.
2337
2323
  * @param {*} [options] Override http request option.
2338
2324
  * @throws {RequiredError}
2339
2325
  */
2340
2326
  v1GetCameras(options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
2341
2327
  /**
2342
- * get an image set
2328
+ * Get an image set.
2343
2329
  * @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
2344
2330
  * @param {*} [options] Override http request option.
2345
2331
  * @throws {RequiredError}
2346
2332
  */
2347
2333
  v1GetImageSet(requestParameters: DefaultApiV1GetImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageSet>;
2348
2334
  /**
2349
- * get an image
2335
+ * Get an image.
2350
2336
  * @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
2351
2337
  * @param {*} [options] Override http request option.
2352
2338
  * @throws {RequiredError}
2353
2339
  */
2354
2340
  v1GetImageSetImage(requestParameters: DefaultApiV1GetImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1ImageSetImage>;
2355
2341
  /**
2356
- * get image set images
2342
+ * Get image set images.
2357
2343
  * @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
2358
2344
  * @param {*} [options] Override http request option.
2359
2345
  * @throws {RequiredError}
2360
2346
  */
2361
2347
  v1GetImageSetImages(requestParameters: DefaultApiV1GetImageSetImagesRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1ImageSetImage>>;
2362
2348
  /**
2363
- * get image sets for targets observed for your organization
2349
+ * Get image sets.
2364
2350
  * @param {*} [options] Override http request option.
2365
2351
  * @throws {RequiredError}
2366
2352
  */
2367
2353
  v1GetImageSets(options?: AxiosRequestConfig): AxiosPromise<Array<V1ImageSet>>;
2368
2354
  /**
2369
- * get mounts
2355
+ * Get mounts.
2370
2356
  * @param {*} [options] Override http request option.
2371
2357
  * @throws {RequiredError}
2372
2358
  */
2373
2359
  v1GetMounts(options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>>;
2374
2360
  /**
2375
- * get all nodes
2361
+ * Get nodes.
2376
2362
  * @param {*} [options] Override http request option.
2377
2363
  * @throws {RequiredError}
2378
2364
  */
2379
2365
  v1GetNodes(options?: AxiosRequestConfig): AxiosPromise<V1GetNodes>;
2380
2366
  /**
2381
- * get platform credits
2367
+ * Get platform credits.
2382
2368
  * @param {*} [options] Override http request option.
2383
2369
  * @throws {RequiredError}
2384
2370
  */
2385
2371
  v1GetPlatformCredits(options?: AxiosRequestConfig): AxiosPromise<Array<V1PlatformCredit>>;
2386
2372
  /**
2387
- * search for an astro project with certain properties
2373
+ * Match astro project.
2388
2374
  * @param {DefaultApiV1MatchAstroProjectRequest} requestParameters Request parameters.
2389
2375
  * @param {*} [options] Override http request option.
2390
2376
  * @throws {RequiredError}
2391
2377
  */
2392
- v1MatchAstroProject(requestParameters: DefaultApiV1MatchAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1GetAstroProject>>;
2378
+ v1MatchAstroProject(requestParameters: DefaultApiV1MatchAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1AstroProject>>;
2393
2379
  /**
2394
- * match mount
2380
+ * Match mount.
2395
2381
  * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
2396
2382
  * @param {*} [options] Override http request option.
2397
2383
  * @throws {RequiredError}
2398
2384
  */
2399
2385
  v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>>;
2400
2386
  /**
2401
- * match optical tube
2387
+ * Match optical tube.
2402
2388
  * @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
2403
2389
  * @param {*} [options] Override http request option.
2404
2390
  * @throws {RequiredError}
2405
2391
  */
2406
2392
  v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1OpticalTube>>;
2407
2393
  /**
2408
- * stack an astro project
2394
+ * Stack an astro project.
2409
2395
  * @param {DefaultApiV1PutStackAstroProjectRequest} requestParameters Request parameters.
2410
2396
  * @param {*} [options] Override http request option.
2411
2397
  * @throws {RequiredError}
2412
2398
  */
2413
2399
  v1PutStackAstroProject(requestParameters: DefaultApiV1PutStackAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2414
2400
  /**
2415
- * update a node
2401
+ * Update a node.
2416
2402
  * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
2417
2403
  * @param {*} [options] Override http request option.
2418
2404
  * @throws {RequiredError}
@@ -2481,11 +2467,11 @@ export interface DefaultApiV1CameraMatchRequest {
2481
2467
  */
2482
2468
  export interface DefaultApiV1CreateAstroCameraRequest {
2483
2469
  /**
2484
- * request to create an camera
2485
- * @type {V1CreateCamera}
2470
+ *
2471
+ * @type {V1CreateCameraRequest}
2486
2472
  * @memberof DefaultApiV1CreateAstroCamera
2487
2473
  */
2488
- readonly v1CreateCamera: V1CreateCamera;
2474
+ readonly v1CreateCameraRequest: V1CreateCameraRequest;
2489
2475
  }
2490
2476
  /**
2491
2477
  * Request parameters for v1CreateAstroMount operation in DefaultApi.
@@ -2494,11 +2480,11 @@ export interface DefaultApiV1CreateAstroCameraRequest {
2494
2480
  */
2495
2481
  export interface DefaultApiV1CreateAstroMountRequest {
2496
2482
  /**
2497
- * request to create a mount
2498
- * @type {V1CreateMount}
2483
+ *
2484
+ * @type {V1CreateMountRequest}
2499
2485
  * @memberof DefaultApiV1CreateAstroMount
2500
2486
  */
2501
- readonly v1CreateMount: V1CreateMount;
2487
+ readonly v1CreateMountRequest: V1CreateMountRequest;
2502
2488
  }
2503
2489
  /**
2504
2490
  * Request parameters for v1CreateAstroOpticalTube operation in DefaultApi.
@@ -2507,11 +2493,11 @@ export interface DefaultApiV1CreateAstroMountRequest {
2507
2493
  */
2508
2494
  export interface DefaultApiV1CreateAstroOpticalTubeRequest {
2509
2495
  /**
2510
- * request to create an optical tube
2511
- * @type {V1CreateOpticalTube}
2496
+ *
2497
+ * @type {V1CreateOpticalTubeRequest}
2512
2498
  * @memberof DefaultApiV1CreateAstroOpticalTube
2513
2499
  */
2514
- readonly v1CreateOpticalTube: V1CreateOpticalTube;
2500
+ readonly v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest;
2515
2501
  }
2516
2502
  /**
2517
2503
  * Request parameters for v1CreateAstroProject operation in DefaultApi.
@@ -2520,11 +2506,11 @@ export interface DefaultApiV1CreateAstroOpticalTubeRequest {
2520
2506
  */
2521
2507
  export interface DefaultApiV1CreateAstroProjectRequest {
2522
2508
  /**
2523
- * request to create an astro project
2524
- * @type {V1CreateAstroProject}
2509
+ *
2510
+ * @type {V1CreateAstroProjectRequest}
2525
2511
  * @memberof DefaultApiV1CreateAstroProject
2526
2512
  */
2527
- readonly v1CreateAstroProject: V1CreateAstroProject;
2513
+ readonly v1CreateAstroProjectRequest: V1CreateAstroProjectRequest;
2528
2514
  }
2529
2515
  /**
2530
2516
  * Request parameters for v1CreateAstroProjectImageSet operation in DefaultApi.
@@ -2533,11 +2519,11 @@ export interface DefaultApiV1CreateAstroProjectRequest {
2533
2519
  */
2534
2520
  export interface DefaultApiV1CreateAstroProjectImageSetRequest {
2535
2521
  /**
2536
- * request to create a project image Set
2537
- * @type {V1CreateAstroProjectImageSet}
2522
+ *
2523
+ * @type {V1CreateAstroProjectImageSetRequest}
2538
2524
  * @memberof DefaultApiV1CreateAstroProjectImageSet
2539
2525
  */
2540
- readonly v1CreateAstroProjectImageSet: V1CreateAstroProjectImageSet;
2526
+ readonly v1CreateAstroProjectImageSetRequest: V1CreateAstroProjectImageSetRequest;
2541
2527
  }
2542
2528
  /**
2543
2529
  * Request parameters for v1CreateCalibrationMaster operation in DefaultApi.
@@ -2546,11 +2532,11 @@ export interface DefaultApiV1CreateAstroProjectImageSetRequest {
2546
2532
  */
2547
2533
  export interface DefaultApiV1CreateCalibrationMasterRequest {
2548
2534
  /**
2549
- * request to create the calibration master
2550
- * @type {V1CreateCalibrationMaster}
2535
+ *
2536
+ * @type {V1CreateCalibrationMasterRequest}
2551
2537
  * @memberof DefaultApiV1CreateCalibrationMaster
2552
2538
  */
2553
- readonly v1CreateCalibrationMaster: V1CreateCalibrationMaster;
2539
+ readonly v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest;
2554
2540
  }
2555
2541
  /**
2556
2542
  * Request parameters for v1CreateImageSet operation in DefaultApi.
@@ -2559,11 +2545,11 @@ export interface DefaultApiV1CreateCalibrationMasterRequest {
2559
2545
  */
2560
2546
  export interface DefaultApiV1CreateImageSetRequest {
2561
2547
  /**
2562
- * request to create the Image Set
2563
- * @type {V1CreateImageSet}
2548
+ *
2549
+ * @type {V1CreateImageSetRequest}
2564
2550
  * @memberof DefaultApiV1CreateImageSet
2565
2551
  */
2566
- readonly v1CreateImageSet: V1CreateImageSet;
2552
+ readonly v1CreateImageSetRequest: V1CreateImageSetRequest;
2567
2553
  }
2568
2554
  /**
2569
2555
  * Request parameters for v1CreateImageSetImage operation in DefaultApi.
@@ -2572,11 +2558,11 @@ export interface DefaultApiV1CreateImageSetRequest {
2572
2558
  */
2573
2559
  export interface DefaultApiV1CreateImageSetImageRequest {
2574
2560
  /**
2575
- * request to create an image set image
2576
- * @type {V1CreateImageSetImage}
2561
+ *
2562
+ * @type {V1CreateImageSetImageRequest}
2577
2563
  * @memberof DefaultApiV1CreateImageSetImage
2578
2564
  */
2579
- readonly v1CreateImageSetImage: V1CreateImageSetImage;
2565
+ readonly v1CreateImageSetImageRequest: V1CreateImageSetImageRequest;
2580
2566
  }
2581
2567
  /**
2582
2568
  * Request parameters for v1CreateNode operation in DefaultApi.
@@ -2585,11 +2571,11 @@ export interface DefaultApiV1CreateImageSetImageRequest {
2585
2571
  */
2586
2572
  export interface DefaultApiV1CreateNodeRequest {
2587
2573
  /**
2588
- * request to create a node
2589
- * @type {V1CreateNode}
2574
+ *
2575
+ * @type {V1CreateNodeRequest}
2590
2576
  * @memberof DefaultApiV1CreateNode
2591
2577
  */
2592
- readonly v1CreateNode: V1CreateNode;
2578
+ readonly v1CreateNodeRequest: V1CreateNodeRequest;
2593
2579
  }
2594
2580
  /**
2595
2581
  * Request parameters for v1GetAstroCamera operation in DefaultApi.
@@ -2834,11 +2820,11 @@ export interface DefaultApiV1OpticalTubeMatchRequest {
2834
2820
  */
2835
2821
  export interface DefaultApiV1PutStackAstroProjectRequest {
2836
2822
  /**
2837
- * request to stack an astro project
2838
- * @type {V1PutStackAstroProject}
2823
+ *
2824
+ * @type {V1PutStackAstroProjectRequest}
2839
2825
  * @memberof DefaultApiV1PutStackAstroProject
2840
2826
  */
2841
- readonly v1PutStackAstroProject: V1PutStackAstroProject;
2827
+ readonly v1PutStackAstroProjectRequest: V1PutStackAstroProjectRequest;
2842
2828
  }
2843
2829
  /**
2844
2830
  * Request parameters for v1UpdateNode operation in DefaultApi.
@@ -2847,11 +2833,11 @@ export interface DefaultApiV1PutStackAstroProjectRequest {
2847
2833
  */
2848
2834
  export interface DefaultApiV1UpdateNodeRequest {
2849
2835
  /**
2850
- * request to update a node
2851
- * @type {V1UpdateNode}
2836
+ *
2837
+ * @type {V1UpdateNodeRequest}
2852
2838
  * @memberof DefaultApiV1UpdateNode
2853
2839
  */
2854
- readonly v1UpdateNode: V1UpdateNode;
2840
+ readonly v1UpdateNodeRequest: V1UpdateNodeRequest;
2855
2841
  }
2856
2842
  /**
2857
2843
  * DefaultApi - object-oriented interface
@@ -2861,7 +2847,7 @@ export interface DefaultApiV1UpdateNodeRequest {
2861
2847
  */
2862
2848
  export declare class DefaultApi extends BaseAPI {
2863
2849
  /**
2864
- * match camera
2850
+ * Match camera.
2865
2851
  * @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
2866
2852
  * @param {*} [options] Override http request option.
2867
2853
  * @throws {RequiredError}
@@ -2869,7 +2855,7 @@ export declare class DefaultApi extends BaseAPI {
2869
2855
  */
2870
2856
  v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
2871
2857
  /**
2872
- * create an astro user camera
2858
+ * Create an astro camera.
2873
2859
  * @param {DefaultApiV1CreateAstroCameraRequest} requestParameters Request parameters.
2874
2860
  * @param {*} [options] Override http request option.
2875
2861
  * @throws {RequiredError}
@@ -2877,7 +2863,7 @@ export declare class DefaultApi extends BaseAPI {
2877
2863
  */
2878
2864
  v1CreateAstroCamera(requestParameters: DefaultApiV1CreateAstroCameraRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2879
2865
  /**
2880
- * create an astro user mount
2866
+ * Create an astro mount.
2881
2867
  * @param {DefaultApiV1CreateAstroMountRequest} requestParameters Request parameters.
2882
2868
  * @param {*} [options] Override http request option.
2883
2869
  * @throws {RequiredError}
@@ -2885,7 +2871,7 @@ export declare class DefaultApi extends BaseAPI {
2885
2871
  */
2886
2872
  v1CreateAstroMount(requestParameters: DefaultApiV1CreateAstroMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2887
2873
  /**
2888
- * create an optical tube for an astro user
2874
+ * Create an astro optical tube.
2889
2875
  * @param {DefaultApiV1CreateAstroOpticalTubeRequest} requestParameters Request parameters.
2890
2876
  * @param {*} [options] Override http request option.
2891
2877
  * @throws {RequiredError}
@@ -2893,7 +2879,7 @@ export declare class DefaultApi extends BaseAPI {
2893
2879
  */
2894
2880
  v1CreateAstroOpticalTube(requestParameters: DefaultApiV1CreateAstroOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2895
2881
  /**
2896
- * create an astro project
2882
+ * Create an astro project.
2897
2883
  * @param {DefaultApiV1CreateAstroProjectRequest} requestParameters Request parameters.
2898
2884
  * @param {*} [options] Override http request option.
2899
2885
  * @throws {RequiredError}
@@ -2901,7 +2887,7 @@ export declare class DefaultApi extends BaseAPI {
2901
2887
  */
2902
2888
  v1CreateAstroProject(requestParameters: DefaultApiV1CreateAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateAstroProjectResponse, any>>;
2903
2889
  /**
2904
- * create a project image set
2890
+ * Create an astro project image set.
2905
2891
  * @param {DefaultApiV1CreateAstroProjectImageSetRequest} requestParameters Request parameters.
2906
2892
  * @param {*} [options] Override http request option.
2907
2893
  * @throws {RequiredError}
@@ -2909,15 +2895,15 @@ export declare class DefaultApi extends BaseAPI {
2909
2895
  */
2910
2896
  v1CreateAstroProjectImageSet(requestParameters: DefaultApiV1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2911
2897
  /**
2912
- * create an calibration master
2898
+ * Create a calibration master.
2913
2899
  * @param {DefaultApiV1CreateCalibrationMasterRequest} requestParameters Request parameters.
2914
2900
  * @param {*} [options] Override http request option.
2915
2901
  * @throws {RequiredError}
2916
2902
  * @memberof DefaultApi
2917
2903
  */
2918
- v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalibrationMasterCreateResponse, any>>;
2904
+ v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateCalibrationMasterResponse, any>>;
2919
2905
  /**
2920
- * create an image set
2906
+ * Create an image set.
2921
2907
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
2922
2908
  * @param {*} [options] Override http request option.
2923
2909
  * @throws {RequiredError}
@@ -2925,7 +2911,7 @@ export declare class DefaultApi extends BaseAPI {
2925
2911
  */
2926
2912
  v1CreateImageSet(requestParameters: DefaultApiV1CreateImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2927
2913
  /**
2928
- * create an image set image
2914
+ * Create an image set image.
2929
2915
  * @param {DefaultApiV1CreateImageSetImageRequest} requestParameters Request parameters.
2930
2916
  * @param {*} [options] Override http request option.
2931
2917
  * @throws {RequiredError}
@@ -2933,7 +2919,7 @@ export declare class DefaultApi extends BaseAPI {
2933
2919
  */
2934
2920
  v1CreateImageSetImage(requestParameters: DefaultApiV1CreateImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateImageSetImageResponse, any>>;
2935
2921
  /**
2936
- * create a node
2922
+ * Create a node.
2937
2923
  * @param {DefaultApiV1CreateNodeRequest} requestParameters Request parameters.
2938
2924
  * @param {*} [options] Override http request option.
2939
2925
  * @throws {RequiredError}
@@ -2941,7 +2927,7 @@ export declare class DefaultApi extends BaseAPI {
2941
2927
  */
2942
2928
  v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2943
2929
  /**
2944
- * get an astro camera
2930
+ * Get an astro camera.
2945
2931
  * @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
2946
2932
  * @param {*} [options] Override http request option.
2947
2933
  * @throws {RequiredError}
@@ -2949,7 +2935,7 @@ export declare class DefaultApi extends BaseAPI {
2949
2935
  */
2950
2936
  v1GetAstroCamera(requestParameters: DefaultApiV1GetAstroCameraRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera, any>>;
2951
2937
  /**
2952
- * get an astro mount
2938
+ * Get an astro mount.
2953
2939
  * @param {DefaultApiV1GetAstroMountRequest} requestParameters Request parameters.
2954
2940
  * @param {*} [options] Override http request option.
2955
2941
  * @throws {RequiredError}
@@ -2957,7 +2943,7 @@ export declare class DefaultApi extends BaseAPI {
2957
2943
  */
2958
2944
  v1GetAstroMount(requestParameters: DefaultApiV1GetAstroMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
2959
2945
  /**
2960
- * get an optical tube
2946
+ * Get an astro optical tube.
2961
2947
  * @param {DefaultApiV1GetAstroOpticalTubeRequest} requestParameters Request parameters.
2962
2948
  * @param {*} [options] Override http request option.
2963
2949
  * @throws {RequiredError}
@@ -2965,22 +2951,22 @@ export declare class DefaultApi extends BaseAPI {
2965
2951
  */
2966
2952
  v1GetAstroOpticalTube(requestParameters: DefaultApiV1GetAstroOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube, any>>;
2967
2953
  /**
2968
- * get astro platform credit balance
2954
+ * Get astro platform credit balance.
2969
2955
  * @param {*} [options] Override http request option.
2970
2956
  * @throws {RequiredError}
2971
2957
  * @memberof DefaultApi
2972
2958
  */
2973
2959
  v1GetAstroPlatformCreditBalance(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetAstroPlatformCreditBalanceResponse, any>>;
2974
2960
  /**
2975
- * get an astro project
2961
+ * Get an astro project.
2976
2962
  * @param {DefaultApiV1GetAstroProjectRequest} requestParameters Request parameters.
2977
2963
  * @param {*} [options] Override http request option.
2978
2964
  * @throws {RequiredError}
2979
2965
  * @memberof DefaultApi
2980
2966
  */
2981
- v1GetAstroProject(requestParameters: DefaultApiV1GetAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetAstroProject, any>>;
2967
+ v1GetAstroProject(requestParameters: DefaultApiV1GetAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroProject, any>>;
2982
2968
  /**
2983
- * get all assets for an astro project
2969
+ * Get astro project assets.
2984
2970
  * @param {DefaultApiV1GetAstroProjectAssetsRequest} requestParameters Request parameters.
2985
2971
  * @param {*} [options] Override http request option.
2986
2972
  * @throws {RequiredError}
@@ -2988,14 +2974,14 @@ export declare class DefaultApi extends BaseAPI {
2988
2974
  */
2989
2975
  v1GetAstroProjectAssets(requestParameters: DefaultApiV1GetAstroProjectAssetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroProjectAsset[], any>>;
2990
2976
  /**
2991
- * get all astro projects
2977
+ * Get astro projects.
2992
2978
  * @param {*} [options] Override http request option.
2993
2979
  * @throws {RequiredError}
2994
2980
  * @memberof DefaultApi
2995
2981
  */
2996
- v1GetAstroProjects(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetAstroProject[], any>>;
2982
+ v1GetAstroProjects(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroProject[], any>>;
2997
2983
  /**
2998
- * Get an astro targets. pass in an ID, an NGC ID or an IC ID
2984
+ * Get an astro target. Pass in an ID, an NGC ID or an IC ID.
2999
2985
  * @param {DefaultApiV1GetAstroTargetRequest} requestParameters Request parameters.
3000
2986
  * @param {*} [options] Override http request option.
3001
2987
  * @throws {RequiredError}
@@ -3011,7 +2997,7 @@ export declare class DefaultApi extends BaseAPI {
3011
2997
  */
3012
2998
  v1GetAstroTargets(requestParameters?: DefaultApiV1GetAstroTargetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroTarget[], any>>;
3013
2999
  /**
3014
- * get all calibration masters for a node
3000
+ * Get calibration masters.
3015
3001
  * @param {DefaultApiV1GetCalibrationMastersRequest} requestParameters Request parameters.
3016
3002
  * @param {*} [options] Override http request option.
3017
3003
  * @throws {RequiredError}
@@ -3019,14 +3005,14 @@ export declare class DefaultApi extends BaseAPI {
3019
3005
  */
3020
3006
  v1GetCalibrationMasters(requestParameters: DefaultApiV1GetCalibrationMastersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CalibrationMaster[], any>>;
3021
3007
  /**
3022
- * get all cameras
3008
+ * Get cameras.
3023
3009
  * @param {*} [options] Override http request option.
3024
3010
  * @throws {RequiredError}
3025
3011
  * @memberof DefaultApi
3026
3012
  */
3027
3013
  v1GetCameras(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
3028
3014
  /**
3029
- * get an image set
3015
+ * Get an image set.
3030
3016
  * @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
3031
3017
  * @param {*} [options] Override http request option.
3032
3018
  * @throws {RequiredError}
@@ -3034,7 +3020,7 @@ export declare class DefaultApi extends BaseAPI {
3034
3020
  */
3035
3021
  v1GetImageSet(requestParameters: DefaultApiV1GetImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSet, any>>;
3036
3022
  /**
3037
- * get an image
3023
+ * Get an image.
3038
3024
  * @param {DefaultApiV1GetImageSetImageRequest} requestParameters Request parameters.
3039
3025
  * @param {*} [options] Override http request option.
3040
3026
  * @throws {RequiredError}
@@ -3042,7 +3028,7 @@ export declare class DefaultApi extends BaseAPI {
3042
3028
  */
3043
3029
  v1GetImageSetImage(requestParameters: DefaultApiV1GetImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSetImage, any>>;
3044
3030
  /**
3045
- * get image set images
3031
+ * Get image set images.
3046
3032
  * @param {DefaultApiV1GetImageSetImagesRequest} requestParameters Request parameters.
3047
3033
  * @param {*} [options] Override http request option.
3048
3034
  * @throws {RequiredError}
@@ -3050,43 +3036,43 @@ export declare class DefaultApi extends BaseAPI {
3050
3036
  */
3051
3037
  v1GetImageSetImages(requestParameters: DefaultApiV1GetImageSetImagesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSetImage[], any>>;
3052
3038
  /**
3053
- * get image sets for targets observed for your organization
3039
+ * Get image sets.
3054
3040
  * @param {*} [options] Override http request option.
3055
3041
  * @throws {RequiredError}
3056
3042
  * @memberof DefaultApi
3057
3043
  */
3058
3044
  v1GetImageSets(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSet[], any>>;
3059
3045
  /**
3060
- * get mounts
3046
+ * Get mounts.
3061
3047
  * @param {*} [options] Override http request option.
3062
3048
  * @throws {RequiredError}
3063
3049
  * @memberof DefaultApi
3064
3050
  */
3065
3051
  v1GetMounts(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount[], any>>;
3066
3052
  /**
3067
- * get all nodes
3053
+ * Get nodes.
3068
3054
  * @param {*} [options] Override http request option.
3069
3055
  * @throws {RequiredError}
3070
3056
  * @memberof DefaultApi
3071
3057
  */
3072
3058
  v1GetNodes(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetNodes, any>>;
3073
3059
  /**
3074
- * get platform credits
3060
+ * Get platform credits.
3075
3061
  * @param {*} [options] Override http request option.
3076
3062
  * @throws {RequiredError}
3077
3063
  * @memberof DefaultApi
3078
3064
  */
3079
3065
  v1GetPlatformCredits(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlatformCredit[], any>>;
3080
3066
  /**
3081
- * search for an astro project with certain properties
3067
+ * Match astro project.
3082
3068
  * @param {DefaultApiV1MatchAstroProjectRequest} requestParameters Request parameters.
3083
3069
  * @param {*} [options] Override http request option.
3084
3070
  * @throws {RequiredError}
3085
3071
  * @memberof DefaultApi
3086
3072
  */
3087
- v1MatchAstroProject(requestParameters: DefaultApiV1MatchAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetAstroProject[], any>>;
3073
+ v1MatchAstroProject(requestParameters: DefaultApiV1MatchAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroProject[], any>>;
3088
3074
  /**
3089
- * match mount
3075
+ * Match mount.
3090
3076
  * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
3091
3077
  * @param {*} [options] Override http request option.
3092
3078
  * @throws {RequiredError}
@@ -3094,7 +3080,7 @@ export declare class DefaultApi extends BaseAPI {
3094
3080
  */
3095
3081
  v1MountMatch(requestParameters?: DefaultApiV1MountMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount[], any>>;
3096
3082
  /**
3097
- * match optical tube
3083
+ * Match optical tube.
3098
3084
  * @param {DefaultApiV1OpticalTubeMatchRequest} requestParameters Request parameters.
3099
3085
  * @param {*} [options] Override http request option.
3100
3086
  * @throws {RequiredError}
@@ -3102,7 +3088,7 @@ export declare class DefaultApi extends BaseAPI {
3102
3088
  */
3103
3089
  v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube[], any>>;
3104
3090
  /**
3105
- * stack an astro project
3091
+ * Stack an astro project.
3106
3092
  * @param {DefaultApiV1PutStackAstroProjectRequest} requestParameters Request parameters.
3107
3093
  * @param {*} [options] Override http request option.
3108
3094
  * @throws {RequiredError}
@@ -3110,7 +3096,7 @@ export declare class DefaultApi extends BaseAPI {
3110
3096
  */
3111
3097
  v1PutStackAstroProject(requestParameters: DefaultApiV1PutStackAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3112
3098
  /**
3113
- * update a node
3099
+ * Update a node.
3114
3100
  * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
3115
3101
  * @param {*} [options] Override http request option.
3116
3102
  * @throws {RequiredError}