@ourskyai/platform-api 1.3.5667 → 1.3.6669
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +1511 -58
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +998 -4
- package/dist/api.js +699 -4
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +998 -4
- package/dist/esm/api.js +698 -3
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -87,6 +87,10 @@ export interface FitsHeader {
|
|
|
87
87
|
* @enum {string}
|
|
88
88
|
*/
|
|
89
89
|
export declare const ImageSetType: {
|
|
90
|
+
readonly ASTRONOMICAL: "ASTRONOMICAL";
|
|
91
|
+
readonly EARTH_ORBITAL: "EARTH_ORBITAL";
|
|
92
|
+
readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
|
|
93
|
+
readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
|
|
90
94
|
readonly ALL_SKY: "ALL_SKY";
|
|
91
95
|
};
|
|
92
96
|
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
@@ -127,6 +131,16 @@ export declare const MetricType: {
|
|
|
127
131
|
readonly EVENT: "EVENT";
|
|
128
132
|
};
|
|
129
133
|
export type MetricType = typeof MetricType[keyof typeof MetricType];
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @export
|
|
137
|
+
* @enum {string}
|
|
138
|
+
*/
|
|
139
|
+
export declare const ModelType: {
|
|
140
|
+
readonly STREAK_MODEL: "STREAK_MODEL";
|
|
141
|
+
readonly ALLSKY_MODEL: "ALLSKY_MODEL";
|
|
142
|
+
};
|
|
143
|
+
export type ModelType = typeof ModelType[keyof typeof ModelType];
|
|
130
144
|
/**
|
|
131
145
|
*
|
|
132
146
|
* @export
|
|
@@ -266,6 +280,81 @@ export declare const UploadPriority: {
|
|
|
266
280
|
readonly HIGH: "HIGH";
|
|
267
281
|
};
|
|
268
282
|
export type UploadPriority = typeof UploadPriority[keyof typeof UploadPriority];
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* @export
|
|
286
|
+
* @interface V1AllSkyCameraConfig
|
|
287
|
+
*/
|
|
288
|
+
export interface V1AllSkyCameraConfig {
|
|
289
|
+
/**
|
|
290
|
+
*
|
|
291
|
+
* @type {number}
|
|
292
|
+
* @memberof V1AllSkyCameraConfig
|
|
293
|
+
*/
|
|
294
|
+
'saveExposureFrequencySeconds': number;
|
|
295
|
+
/**
|
|
296
|
+
*
|
|
297
|
+
* @type {V1NodeConfigKeyMetadata}
|
|
298
|
+
* @memberof V1AllSkyCameraConfig
|
|
299
|
+
*/
|
|
300
|
+
'metadata'?: V1NodeConfigKeyMetadata;
|
|
301
|
+
}
|
|
302
|
+
/**
|
|
303
|
+
*
|
|
304
|
+
* @export
|
|
305
|
+
* @interface V1AllSkyPrediction
|
|
306
|
+
*/
|
|
307
|
+
export interface V1AllSkyPrediction {
|
|
308
|
+
/**
|
|
309
|
+
*
|
|
310
|
+
* @type {string}
|
|
311
|
+
* @memberof V1AllSkyPrediction
|
|
312
|
+
*/
|
|
313
|
+
'id': string;
|
|
314
|
+
/**
|
|
315
|
+
*
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof V1AllSkyPrediction
|
|
318
|
+
*/
|
|
319
|
+
'imageId': string;
|
|
320
|
+
/**
|
|
321
|
+
*
|
|
322
|
+
* @type {V1AllSkyPredictionLabel}
|
|
323
|
+
* @memberof V1AllSkyPrediction
|
|
324
|
+
*/
|
|
325
|
+
'label'?: V1AllSkyPredictionLabel;
|
|
326
|
+
/**
|
|
327
|
+
*
|
|
328
|
+
* @type {number}
|
|
329
|
+
* @memberof V1AllSkyPrediction
|
|
330
|
+
*/
|
|
331
|
+
'confidence': number;
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* @type {string}
|
|
335
|
+
* @memberof V1AllSkyPrediction
|
|
336
|
+
*/
|
|
337
|
+
'createdAt': string;
|
|
338
|
+
/**
|
|
339
|
+
*
|
|
340
|
+
* @type {string}
|
|
341
|
+
* @memberof V1AllSkyPrediction
|
|
342
|
+
*/
|
|
343
|
+
'updatedAt': string;
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
*
|
|
347
|
+
* @export
|
|
348
|
+
* @enum {string}
|
|
349
|
+
*/
|
|
350
|
+
export declare const V1AllSkyPredictionLabel: {
|
|
351
|
+
readonly CLEAR: "CLEAR";
|
|
352
|
+
readonly LIGHT_CLOUDS: "LIGHT_CLOUDS";
|
|
353
|
+
readonly HEAVY_CLOUDS: "HEAVY_CLOUDS";
|
|
354
|
+
readonly PRECIPITATION: "PRECIPITATION";
|
|
355
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
356
|
+
};
|
|
357
|
+
export type V1AllSkyPredictionLabel = typeof V1AllSkyPredictionLabel[keyof typeof V1AllSkyPredictionLabel];
|
|
269
358
|
/**
|
|
270
359
|
* Autofocus Instruction
|
|
271
360
|
* @export
|
|
@@ -304,6 +393,37 @@ export interface V1AutoFocusInstructionCoordinatesInner {
|
|
|
304
393
|
*/
|
|
305
394
|
'declination'?: number;
|
|
306
395
|
}
|
|
396
|
+
/**
|
|
397
|
+
*
|
|
398
|
+
* @export
|
|
399
|
+
* @interface V1BlackoutBox
|
|
400
|
+
*/
|
|
401
|
+
export interface V1BlackoutBox {
|
|
402
|
+
/**
|
|
403
|
+
*
|
|
404
|
+
* @type {number}
|
|
405
|
+
* @memberof V1BlackoutBox
|
|
406
|
+
*/
|
|
407
|
+
'raStartDegrees'?: number;
|
|
408
|
+
/**
|
|
409
|
+
*
|
|
410
|
+
* @type {number}
|
|
411
|
+
* @memberof V1BlackoutBox
|
|
412
|
+
*/
|
|
413
|
+
'raEndDegrees'?: number;
|
|
414
|
+
/**
|
|
415
|
+
*
|
|
416
|
+
* @type {number}
|
|
417
|
+
* @memberof V1BlackoutBox
|
|
418
|
+
*/
|
|
419
|
+
'decStartDegrees'?: number;
|
|
420
|
+
/**
|
|
421
|
+
*
|
|
422
|
+
* @type {number}
|
|
423
|
+
* @memberof V1BlackoutBox
|
|
424
|
+
*/
|
|
425
|
+
'decEndDegrees'?: number;
|
|
426
|
+
}
|
|
307
427
|
/**
|
|
308
428
|
* Camera
|
|
309
429
|
* @export
|
|
@@ -414,6 +534,19 @@ export interface V1ClientToken {
|
|
|
414
534
|
*/
|
|
415
535
|
'cesiumToken': string;
|
|
416
536
|
}
|
|
537
|
+
/**
|
|
538
|
+
*
|
|
539
|
+
* @export
|
|
540
|
+
* @interface V1CompleteNodeFlareRequest
|
|
541
|
+
*/
|
|
542
|
+
export interface V1CompleteNodeFlareRequest {
|
|
543
|
+
/**
|
|
544
|
+
*
|
|
545
|
+
* @type {string}
|
|
546
|
+
* @memberof V1CompleteNodeFlareRequest
|
|
547
|
+
*/
|
|
548
|
+
'id': string;
|
|
549
|
+
}
|
|
417
550
|
/**
|
|
418
551
|
*
|
|
419
552
|
* @export
|
|
@@ -427,6 +560,31 @@ export interface V1CompleteObservationRequest {
|
|
|
427
560
|
*/
|
|
428
561
|
'imageSetId': string;
|
|
429
562
|
}
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @export
|
|
566
|
+
* @interface V1CreateAllSkyPredictionRequest
|
|
567
|
+
*/
|
|
568
|
+
export interface V1CreateAllSkyPredictionRequest {
|
|
569
|
+
/**
|
|
570
|
+
*
|
|
571
|
+
* @type {string}
|
|
572
|
+
* @memberof V1CreateAllSkyPredictionRequest
|
|
573
|
+
*/
|
|
574
|
+
'imageId': string;
|
|
575
|
+
/**
|
|
576
|
+
*
|
|
577
|
+
* @type {V1AllSkyPredictionLabel}
|
|
578
|
+
* @memberof V1CreateAllSkyPredictionRequest
|
|
579
|
+
*/
|
|
580
|
+
'label': V1AllSkyPredictionLabel;
|
|
581
|
+
/**
|
|
582
|
+
*
|
|
583
|
+
* @type {number}
|
|
584
|
+
* @memberof V1CreateAllSkyPredictionRequest
|
|
585
|
+
*/
|
|
586
|
+
'confidence': number;
|
|
587
|
+
}
|
|
430
588
|
/**
|
|
431
589
|
*
|
|
432
590
|
* @export
|
|
@@ -495,6 +653,42 @@ export interface V1CreateImageSetImageRequest {
|
|
|
495
653
|
* @memberof V1CreateImageSetImageRequest
|
|
496
654
|
*/
|
|
497
655
|
'imageSetId': string;
|
|
656
|
+
/**
|
|
657
|
+
*
|
|
658
|
+
* @type {V1ImageFileType}
|
|
659
|
+
* @memberof V1CreateImageSetImageRequest
|
|
660
|
+
*/
|
|
661
|
+
'imageFileType'?: V1ImageFileType;
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @type {number}
|
|
665
|
+
* @memberof V1CreateImageSetImageRequest
|
|
666
|
+
*/
|
|
667
|
+
'binning'?: number;
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @type {number}
|
|
671
|
+
* @memberof V1CreateImageSetImageRequest
|
|
672
|
+
*/
|
|
673
|
+
'exposureLength'?: number;
|
|
674
|
+
/**
|
|
675
|
+
*
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof V1CreateImageSetImageRequest
|
|
678
|
+
*/
|
|
679
|
+
'imageSha'?: string;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @type {number}
|
|
683
|
+
* @memberof V1CreateImageSetImageRequest
|
|
684
|
+
*/
|
|
685
|
+
'imageSizeMb'?: number;
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof V1CreateImageSetImageRequest
|
|
690
|
+
*/
|
|
691
|
+
'capturedAt'?: string;
|
|
498
692
|
}
|
|
499
693
|
/**
|
|
500
694
|
*
|
|
@@ -684,6 +878,44 @@ export interface V1CreateNodeEventsRequest {
|
|
|
684
878
|
*/
|
|
685
879
|
'events': Array<V1CreateNodeEvent>;
|
|
686
880
|
}
|
|
881
|
+
/**
|
|
882
|
+
*
|
|
883
|
+
* @export
|
|
884
|
+
* @interface V1CreateNodeFlareRequest
|
|
885
|
+
*/
|
|
886
|
+
export interface V1CreateNodeFlareRequest {
|
|
887
|
+
/**
|
|
888
|
+
*
|
|
889
|
+
* @type {string}
|
|
890
|
+
* @memberof V1CreateNodeFlareRequest
|
|
891
|
+
*/
|
|
892
|
+
'fileSha': string;
|
|
893
|
+
/**
|
|
894
|
+
*
|
|
895
|
+
* @type {number}
|
|
896
|
+
* @memberof V1CreateNodeFlareRequest
|
|
897
|
+
*/
|
|
898
|
+
'fileSizeMb': number;
|
|
899
|
+
}
|
|
900
|
+
/**
|
|
901
|
+
*
|
|
902
|
+
* @export
|
|
903
|
+
* @interface V1CreateNodeFlareResponse
|
|
904
|
+
*/
|
|
905
|
+
export interface V1CreateNodeFlareResponse {
|
|
906
|
+
/**
|
|
907
|
+
*
|
|
908
|
+
* @type {string}
|
|
909
|
+
* @memberof V1CreateNodeFlareResponse
|
|
910
|
+
*/
|
|
911
|
+
'id': string;
|
|
912
|
+
/**
|
|
913
|
+
*
|
|
914
|
+
* @type {string}
|
|
915
|
+
* @memberof V1CreateNodeFlareResponse
|
|
916
|
+
*/
|
|
917
|
+
'uploadUrl': string;
|
|
918
|
+
}
|
|
687
919
|
/**
|
|
688
920
|
* Create Node
|
|
689
921
|
* @export
|
|
@@ -776,6 +1008,74 @@ export interface V1CreateOpticalTubeRequest {
|
|
|
776
1008
|
*/
|
|
777
1009
|
'type'?: OpticalTubeType;
|
|
778
1010
|
}
|
|
1011
|
+
/**
|
|
1012
|
+
*
|
|
1013
|
+
* @export
|
|
1014
|
+
* @interface V1CreateTimeWindowedAssetRequest
|
|
1015
|
+
*/
|
|
1016
|
+
export interface V1CreateTimeWindowedAssetRequest {
|
|
1017
|
+
/**
|
|
1018
|
+
*
|
|
1019
|
+
* @type {string}
|
|
1020
|
+
* @memberof V1CreateTimeWindowedAssetRequest
|
|
1021
|
+
*/
|
|
1022
|
+
'nodeId': string;
|
|
1023
|
+
/**
|
|
1024
|
+
*
|
|
1025
|
+
* @type {V1TimeWindowedAssetType}
|
|
1026
|
+
* @memberof V1CreateTimeWindowedAssetRequest
|
|
1027
|
+
*/
|
|
1028
|
+
'assetType': V1TimeWindowedAssetType;
|
|
1029
|
+
/**
|
|
1030
|
+
*
|
|
1031
|
+
* @type {string}
|
|
1032
|
+
* @memberof V1CreateTimeWindowedAssetRequest
|
|
1033
|
+
*/
|
|
1034
|
+
'description': string;
|
|
1035
|
+
/**
|
|
1036
|
+
*
|
|
1037
|
+
* @type {string}
|
|
1038
|
+
* @memberof V1CreateTimeWindowedAssetRequest
|
|
1039
|
+
*/
|
|
1040
|
+
'assetStartTime': string;
|
|
1041
|
+
/**
|
|
1042
|
+
*
|
|
1043
|
+
* @type {string}
|
|
1044
|
+
* @memberof V1CreateTimeWindowedAssetRequest
|
|
1045
|
+
*/
|
|
1046
|
+
'assetEndTime': string;
|
|
1047
|
+
/**
|
|
1048
|
+
*
|
|
1049
|
+
* @type {string}
|
|
1050
|
+
* @memberof V1CreateTimeWindowedAssetRequest
|
|
1051
|
+
*/
|
|
1052
|
+
'fileSha': string;
|
|
1053
|
+
/**
|
|
1054
|
+
*
|
|
1055
|
+
* @type {number}
|
|
1056
|
+
* @memberof V1CreateTimeWindowedAssetRequest
|
|
1057
|
+
*/
|
|
1058
|
+
'fileSizeMb': number;
|
|
1059
|
+
}
|
|
1060
|
+
/**
|
|
1061
|
+
*
|
|
1062
|
+
* @export
|
|
1063
|
+
* @interface V1CreateTimeWindowedAssetResponse
|
|
1064
|
+
*/
|
|
1065
|
+
export interface V1CreateTimeWindowedAssetResponse {
|
|
1066
|
+
/**
|
|
1067
|
+
*
|
|
1068
|
+
* @type {string}
|
|
1069
|
+
* @memberof V1CreateTimeWindowedAssetResponse
|
|
1070
|
+
*/
|
|
1071
|
+
'id': string;
|
|
1072
|
+
/**
|
|
1073
|
+
*
|
|
1074
|
+
* @type {string}
|
|
1075
|
+
* @memberof V1CreateTimeWindowedAssetResponse
|
|
1076
|
+
*/
|
|
1077
|
+
'uploadUrl': string;
|
|
1078
|
+
}
|
|
779
1079
|
/**
|
|
780
1080
|
* Diagnostic Instruction
|
|
781
1081
|
* @export
|
|
@@ -849,7 +1149,7 @@ export declare const V1FileType: {
|
|
|
849
1149
|
};
|
|
850
1150
|
export type V1FileType = typeof V1FileType[keyof typeof V1FileType];
|
|
851
1151
|
/**
|
|
852
|
-
*
|
|
1152
|
+
* Focuser
|
|
853
1153
|
* @export
|
|
854
1154
|
* @interface V1Focuser
|
|
855
1155
|
*/
|
|
@@ -1318,6 +1618,16 @@ export interface V1Halt {
|
|
|
1318
1618
|
*/
|
|
1319
1619
|
'placeholder'?: boolean;
|
|
1320
1620
|
}
|
|
1621
|
+
/**
|
|
1622
|
+
*
|
|
1623
|
+
* @export
|
|
1624
|
+
* @enum {string}
|
|
1625
|
+
*/
|
|
1626
|
+
export declare const V1ImageFileType: {
|
|
1627
|
+
readonly FITS: "FITS";
|
|
1628
|
+
readonly JPG: "JPG";
|
|
1629
|
+
};
|
|
1630
|
+
export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
|
|
1321
1631
|
/**
|
|
1322
1632
|
* An image set represents a contiguous set of observations of the same target captured by the same node.
|
|
1323
1633
|
* @export
|
|
@@ -1648,6 +1958,49 @@ export interface V1LogRecorded {
|
|
|
1648
1958
|
*/
|
|
1649
1959
|
'log': string;
|
|
1650
1960
|
}
|
|
1961
|
+
/**
|
|
1962
|
+
*
|
|
1963
|
+
* @export
|
|
1964
|
+
* @interface V1MLModel
|
|
1965
|
+
*/
|
|
1966
|
+
export interface V1MLModel {
|
|
1967
|
+
/**
|
|
1968
|
+
*
|
|
1969
|
+
* @type {string}
|
|
1970
|
+
* @memberof V1MLModel
|
|
1971
|
+
*/
|
|
1972
|
+
'id': string;
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {string}
|
|
1976
|
+
* @memberof V1MLModel
|
|
1977
|
+
*/
|
|
1978
|
+
'name': string;
|
|
1979
|
+
/**
|
|
1980
|
+
*
|
|
1981
|
+
* @type {ModelType}
|
|
1982
|
+
* @memberof V1MLModel
|
|
1983
|
+
*/
|
|
1984
|
+
'modelType': ModelType;
|
|
1985
|
+
/**
|
|
1986
|
+
*
|
|
1987
|
+
* @type {string}
|
|
1988
|
+
* @memberof V1MLModel
|
|
1989
|
+
*/
|
|
1990
|
+
'modelDownloadUrl': string;
|
|
1991
|
+
/**
|
|
1992
|
+
*
|
|
1993
|
+
* @type {string}
|
|
1994
|
+
* @memberof V1MLModel
|
|
1995
|
+
*/
|
|
1996
|
+
'modelChecksum'?: string;
|
|
1997
|
+
/**
|
|
1998
|
+
*
|
|
1999
|
+
* @type {string}
|
|
2000
|
+
* @memberof V1MLModel
|
|
2001
|
+
*/
|
|
2002
|
+
'createdAt': string;
|
|
2003
|
+
}
|
|
1651
2004
|
/**
|
|
1652
2005
|
*
|
|
1653
2006
|
* @export
|
|
@@ -1667,7 +2020,7 @@ export interface V1Metric {
|
|
|
1667
2020
|
*/
|
|
1668
2021
|
'value': number;
|
|
1669
2022
|
/**
|
|
1670
|
-
*
|
|
2023
|
+
* List of colon separated key value pairs, i.e. [\"tag1:value1\",\"tag2:value2\"]
|
|
1671
2024
|
* @type {Array<string>}
|
|
1672
2025
|
* @memberof V1Metric
|
|
1673
2026
|
*/
|
|
@@ -1800,6 +2153,12 @@ export interface V1Node {
|
|
|
1800
2153
|
* @memberof V1Node
|
|
1801
2154
|
*/
|
|
1802
2155
|
'id': string;
|
|
2156
|
+
/**
|
|
2157
|
+
*
|
|
2158
|
+
* @type {string}
|
|
2159
|
+
* @memberof V1Node
|
|
2160
|
+
*/
|
|
2161
|
+
'lineageId': string;
|
|
1803
2162
|
/**
|
|
1804
2163
|
*
|
|
1805
2164
|
* @type {Location}
|
|
@@ -1842,7 +2201,7 @@ export interface V1NodeCommand {
|
|
|
1842
2201
|
* @type V1NodeCommandBody
|
|
1843
2202
|
* @export
|
|
1844
2203
|
*/
|
|
1845
|
-
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
2204
|
+
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1SendFlare | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1846
2205
|
/**
|
|
1847
2206
|
*
|
|
1848
2207
|
* @export
|
|
@@ -1854,6 +2213,7 @@ export declare const V1NodeCommandType: {
|
|
|
1854
2213
|
readonly V1_HALT: "V1_HALT";
|
|
1855
2214
|
readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
|
|
1856
2215
|
readonly V1_RESTART_ADB: "V1_RESTART_ADB";
|
|
2216
|
+
readonly V1_SEND_FLARE: "V1_SEND_FLARE";
|
|
1857
2217
|
};
|
|
1858
2218
|
export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
|
|
1859
2219
|
/**
|
|
@@ -1873,6 +2233,61 @@ export declare const V1NodeComponentType: {
|
|
|
1873
2233
|
readonly WEATHER_STATION: "WEATHER_STATION";
|
|
1874
2234
|
};
|
|
1875
2235
|
export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
|
|
2236
|
+
/**
|
|
2237
|
+
*
|
|
2238
|
+
* @export
|
|
2239
|
+
* @interface V1NodeConfigBody
|
|
2240
|
+
*/
|
|
2241
|
+
export interface V1NodeConfigBody {
|
|
2242
|
+
/**
|
|
2243
|
+
*
|
|
2244
|
+
* @type {V1AllSkyCameraConfig}
|
|
2245
|
+
* @memberof V1NodeConfigBody
|
|
2246
|
+
*/
|
|
2247
|
+
'allSkyCamera'?: V1AllSkyCameraConfig;
|
|
2248
|
+
}
|
|
2249
|
+
/**
|
|
2250
|
+
*
|
|
2251
|
+
* @export
|
|
2252
|
+
* @interface V1NodeConfigKeyMetadata
|
|
2253
|
+
*/
|
|
2254
|
+
export interface V1NodeConfigKeyMetadata {
|
|
2255
|
+
/**
|
|
2256
|
+
*
|
|
2257
|
+
* @type {string}
|
|
2258
|
+
* @memberof V1NodeConfigKeyMetadata
|
|
2259
|
+
*/
|
|
2260
|
+
'updatedAt'?: string;
|
|
2261
|
+
/**
|
|
2262
|
+
*
|
|
2263
|
+
* @type {string}
|
|
2264
|
+
* @memberof V1NodeConfigKeyMetadata
|
|
2265
|
+
*/
|
|
2266
|
+
'updatedBy'?: string;
|
|
2267
|
+
/**
|
|
2268
|
+
*
|
|
2269
|
+
* @type {V1NodeConfigScopeType}
|
|
2270
|
+
* @memberof V1NodeConfigKeyMetadata
|
|
2271
|
+
*/
|
|
2272
|
+
'scopeType'?: V1NodeConfigScopeType;
|
|
2273
|
+
/**
|
|
2274
|
+
*
|
|
2275
|
+
* @type {string}
|
|
2276
|
+
* @memberof V1NodeConfigKeyMetadata
|
|
2277
|
+
*/
|
|
2278
|
+
'scopeId'?: string;
|
|
2279
|
+
}
|
|
2280
|
+
/**
|
|
2281
|
+
*
|
|
2282
|
+
* @export
|
|
2283
|
+
* @enum {string}
|
|
2284
|
+
*/
|
|
2285
|
+
export declare const V1NodeConfigScopeType: {
|
|
2286
|
+
readonly GLOBAL: "GLOBAL";
|
|
2287
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
2288
|
+
readonly NODE: "NODE";
|
|
2289
|
+
};
|
|
2290
|
+
export type V1NodeConfigScopeType = typeof V1NodeConfigScopeType[keyof typeof V1NodeConfigScopeType];
|
|
1876
2291
|
/**
|
|
1877
2292
|
*
|
|
1878
2293
|
* @export
|
|
@@ -1999,6 +2414,7 @@ export declare const V1NodeDiagnosticType: {
|
|
|
1999
2414
|
readonly MOUNT_CHECKED: "MOUNT_CHECKED";
|
|
2000
2415
|
readonly OPTICAL_TUBE_CHECKED: "OPTICAL_TUBE_CHECKED";
|
|
2001
2416
|
readonly ELEVATION_MASK_CHECKED: "ELEVATION_MASK_CHECKED";
|
|
2417
|
+
readonly TOTAL_DISK_BYTES: "TOTAL_DISK_BYTES";
|
|
2002
2418
|
readonly AVAILABLE_DISK_BYTES: "AVAILABLE_DISK_BYTES";
|
|
2003
2419
|
readonly AVAILABLE_MEMORY_BYTES: "AVAILABLE_MEMORY_BYTES";
|
|
2004
2420
|
readonly NTP_TIME_DRIFT_MS: "NTP_TIME_DRIFT_MS";
|
|
@@ -2043,8 +2459,35 @@ export declare const V1NodeEventType: {
|
|
|
2043
2459
|
readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
|
|
2044
2460
|
readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
|
|
2045
2461
|
readonly V1_PROPAGATION_TARGET_SELECTED: "V1_PROPAGATION_TARGET_SELECTED";
|
|
2462
|
+
readonly V1_HYPOTHESIS_OBSERVATION_TASKED: "V1_HYPOTHESIS_OBSERVATION_TASKED";
|
|
2463
|
+
readonly V1_NETWORK_STATUS: "V1_NETWORK_STATUS";
|
|
2046
2464
|
};
|
|
2047
2465
|
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
|
2466
|
+
/**
|
|
2467
|
+
* V1NodeFlare
|
|
2468
|
+
* @export
|
|
2469
|
+
* @interface V1NodeFlare
|
|
2470
|
+
*/
|
|
2471
|
+
export interface V1NodeFlare {
|
|
2472
|
+
/**
|
|
2473
|
+
*
|
|
2474
|
+
* @type {string}
|
|
2475
|
+
* @memberof V1NodeFlare
|
|
2476
|
+
*/
|
|
2477
|
+
'id': string;
|
|
2478
|
+
/**
|
|
2479
|
+
*
|
|
2480
|
+
* @type {string}
|
|
2481
|
+
* @memberof V1NodeFlare
|
|
2482
|
+
*/
|
|
2483
|
+
'url': string;
|
|
2484
|
+
/**
|
|
2485
|
+
*
|
|
2486
|
+
* @type {string}
|
|
2487
|
+
* @memberof V1NodeFlare
|
|
2488
|
+
*/
|
|
2489
|
+
'createdAt': string;
|
|
2490
|
+
}
|
|
2048
2491
|
/**
|
|
2049
2492
|
* Node with location
|
|
2050
2493
|
* @export
|
|
@@ -2208,6 +2651,12 @@ export interface V1ObservationInstruction {
|
|
|
2208
2651
|
* @memberof V1ObservationInstruction
|
|
2209
2652
|
*/
|
|
2210
2653
|
'tleOffsetRa'?: number;
|
|
2654
|
+
/**
|
|
2655
|
+
*
|
|
2656
|
+
* @type {Array<V1BlackoutBox>}
|
|
2657
|
+
* @memberof V1ObservationInstruction
|
|
2658
|
+
*/
|
|
2659
|
+
'blackoutBoxes'?: Array<V1BlackoutBox>;
|
|
2211
2660
|
/**
|
|
2212
2661
|
*
|
|
2213
2662
|
* @type {PlateSolveParameters}
|
|
@@ -2582,6 +3031,67 @@ export interface V1SafetyStatusUpdated {
|
|
|
2582
3031
|
*/
|
|
2583
3032
|
'isSafe': boolean;
|
|
2584
3033
|
}
|
|
3034
|
+
/**
|
|
3035
|
+
*
|
|
3036
|
+
* @export
|
|
3037
|
+
* @interface V1SendFlare
|
|
3038
|
+
*/
|
|
3039
|
+
export interface V1SendFlare {
|
|
3040
|
+
/**
|
|
3041
|
+
*
|
|
3042
|
+
* @type {number}
|
|
3043
|
+
* @memberof V1SendFlare
|
|
3044
|
+
*/
|
|
3045
|
+
'journalSizeLimitBytes'?: number;
|
|
3046
|
+
/**
|
|
3047
|
+
*
|
|
3048
|
+
* @type {boolean}
|
|
3049
|
+
* @memberof V1SendFlare
|
|
3050
|
+
*/
|
|
3051
|
+
'diagnoseMount'?: boolean;
|
|
3052
|
+
/**
|
|
3053
|
+
*
|
|
3054
|
+
* @type {boolean}
|
|
3055
|
+
* @memberof V1SendFlare
|
|
3056
|
+
*/
|
|
3057
|
+
'diagnoseAstroCamera'?: boolean;
|
|
3058
|
+
/**
|
|
3059
|
+
*
|
|
3060
|
+
* @type {boolean}
|
|
3061
|
+
* @memberof V1SendFlare
|
|
3062
|
+
*/
|
|
3063
|
+
'diagnoseAllSkyCamera'?: boolean;
|
|
3064
|
+
/**
|
|
3065
|
+
*
|
|
3066
|
+
* @type {boolean}
|
|
3067
|
+
* @memberof V1SendFlare
|
|
3068
|
+
*/
|
|
3069
|
+
'diagnoseFocuser'?: boolean;
|
|
3070
|
+
/**
|
|
3071
|
+
*
|
|
3072
|
+
* @type {boolean}
|
|
3073
|
+
* @memberof V1SendFlare
|
|
3074
|
+
*/
|
|
3075
|
+
'diagnoseWeatherStation'?: boolean;
|
|
3076
|
+
/**
|
|
3077
|
+
*
|
|
3078
|
+
* @type {boolean}
|
|
3079
|
+
* @memberof V1SendFlare
|
|
3080
|
+
*/
|
|
3081
|
+
'diagnoseRelays'?: boolean;
|
|
3082
|
+
/**
|
|
3083
|
+
*
|
|
3084
|
+
* @type {boolean}
|
|
3085
|
+
* @memberof V1SendFlare
|
|
3086
|
+
*/
|
|
3087
|
+
'diagnoseRoof'?: boolean;
|
|
3088
|
+
/**
|
|
3089
|
+
*
|
|
3090
|
+
* @type {boolean}
|
|
3091
|
+
* @memberof V1SendFlare
|
|
3092
|
+
*/
|
|
3093
|
+
'diagnosePlatformConnection'?: boolean;
|
|
3094
|
+
}
|
|
2585
3095
|
/**
|
|
2586
3096
|
* Setup Action
|
|
2587
3097
|
* @export
|
|
@@ -2671,6 +3181,71 @@ export interface V1StopPerpetualInstructionLoop {
|
|
|
2671
3181
|
*/
|
|
2672
3182
|
'placeholder'?: boolean;
|
|
2673
3183
|
}
|
|
3184
|
+
/**
|
|
3185
|
+
* V1TimeWindowedAsset
|
|
3186
|
+
* @export
|
|
3187
|
+
* @interface V1TimeWindowedAsset
|
|
3188
|
+
*/
|
|
3189
|
+
export interface V1TimeWindowedAsset {
|
|
3190
|
+
/**
|
|
3191
|
+
*
|
|
3192
|
+
* @type {string}
|
|
3193
|
+
* @memberof V1TimeWindowedAsset
|
|
3194
|
+
*/
|
|
3195
|
+
'id': string;
|
|
3196
|
+
/**
|
|
3197
|
+
*
|
|
3198
|
+
* @type {string}
|
|
3199
|
+
* @memberof V1TimeWindowedAsset
|
|
3200
|
+
*/
|
|
3201
|
+
'description': string;
|
|
3202
|
+
/**
|
|
3203
|
+
*
|
|
3204
|
+
* @type {string}
|
|
3205
|
+
* @memberof V1TimeWindowedAsset
|
|
3206
|
+
*/
|
|
3207
|
+
'url': string;
|
|
3208
|
+
/**
|
|
3209
|
+
*
|
|
3210
|
+
* @type {string}
|
|
3211
|
+
* @memberof V1TimeWindowedAsset
|
|
3212
|
+
*/
|
|
3213
|
+
'nodeId': string;
|
|
3214
|
+
/**
|
|
3215
|
+
*
|
|
3216
|
+
* @type {V1TimeWindowedAssetType}
|
|
3217
|
+
* @memberof V1TimeWindowedAsset
|
|
3218
|
+
*/
|
|
3219
|
+
'assetType': V1TimeWindowedAssetType;
|
|
3220
|
+
/**
|
|
3221
|
+
*
|
|
3222
|
+
* @type {string}
|
|
3223
|
+
* @memberof V1TimeWindowedAsset
|
|
3224
|
+
*/
|
|
3225
|
+
'assetStartTime': string;
|
|
3226
|
+
/**
|
|
3227
|
+
*
|
|
3228
|
+
* @type {string}
|
|
3229
|
+
* @memberof V1TimeWindowedAsset
|
|
3230
|
+
*/
|
|
3231
|
+
'assetEndTime': string;
|
|
3232
|
+
/**
|
|
3233
|
+
*
|
|
3234
|
+
* @type {string}
|
|
3235
|
+
* @memberof V1TimeWindowedAsset
|
|
3236
|
+
*/
|
|
3237
|
+
'createdAt': string;
|
|
3238
|
+
}
|
|
3239
|
+
/**
|
|
3240
|
+
*
|
|
3241
|
+
* @export
|
|
3242
|
+
* @enum {string}
|
|
3243
|
+
*/
|
|
3244
|
+
export declare const V1TimeWindowedAssetType: {
|
|
3245
|
+
readonly TIMELAPSE: "TIMELAPSE";
|
|
3246
|
+
readonly KEOGRAM: "KEOGRAM";
|
|
3247
|
+
};
|
|
3248
|
+
export type V1TimeWindowedAssetType = typeof V1TimeWindowedAssetType[keyof typeof V1TimeWindowedAssetType];
|
|
2674
3249
|
/**
|
|
2675
3250
|
*
|
|
2676
3251
|
* @export
|
|
@@ -3088,6 +3663,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3088
3663
|
* @throws {RequiredError}
|
|
3089
3664
|
*/
|
|
3090
3665
|
v1CompleteBootstrap: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3666
|
+
/**
|
|
3667
|
+
* Complete a node flare.
|
|
3668
|
+
* @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
|
|
3669
|
+
* @param {*} [options] Override http request option.
|
|
3670
|
+
* @throws {RequiredError}
|
|
3671
|
+
*/
|
|
3672
|
+
v1CompleteNodeFlare: (v1CompleteNodeFlareRequest: V1CompleteNodeFlareRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3091
3673
|
/**
|
|
3092
3674
|
* Complete an observation.
|
|
3093
3675
|
* @param {V1CompleteObservationRequest} v1CompleteObservationRequest
|
|
@@ -3095,6 +3677,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3095
3677
|
* @throws {RequiredError}
|
|
3096
3678
|
*/
|
|
3097
3679
|
v1CompleteObservation: (v1CompleteObservationRequest: V1CompleteObservationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3680
|
+
/**
|
|
3681
|
+
* Create a new all sky prediction
|
|
3682
|
+
* @param {V1CreateAllSkyPredictionRequest} v1CreateAllSkyPredictionRequest
|
|
3683
|
+
* @param {*} [options] Override http request option.
|
|
3684
|
+
* @throws {RequiredError}
|
|
3685
|
+
*/
|
|
3686
|
+
v1CreateAllSkyPrediction: (v1CreateAllSkyPredictionRequest: V1CreateAllSkyPredictionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3098
3687
|
/**
|
|
3099
3688
|
* Create an autofocus result.
|
|
3100
3689
|
* @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
|
|
@@ -3165,6 +3754,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3165
3754
|
* @throws {RequiredError}
|
|
3166
3755
|
*/
|
|
3167
3756
|
v1CreateNodeEvents: (v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3757
|
+
/**
|
|
3758
|
+
* Create a node flare.
|
|
3759
|
+
* @param {V1CreateNodeFlareRequest} v1CreateNodeFlareRequest
|
|
3760
|
+
* @param {*} [options] Override http request option.
|
|
3761
|
+
* @throws {RequiredError}
|
|
3762
|
+
*/
|
|
3763
|
+
v1CreateNodeFlare: (v1CreateNodeFlareRequest: V1CreateNodeFlareRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3168
3764
|
/**
|
|
3169
3765
|
* Create an optical tube.
|
|
3170
3766
|
* @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
|
|
@@ -3172,6 +3768,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3172
3768
|
* @throws {RequiredError}
|
|
3173
3769
|
*/
|
|
3174
3770
|
v1CreateOpticalTube: (v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3771
|
+
/**
|
|
3772
|
+
* Create a time windowed asset.
|
|
3773
|
+
* @param {V1CreateTimeWindowedAssetRequest} v1CreateTimeWindowedAssetRequest
|
|
3774
|
+
* @param {*} [options] Override http request option.
|
|
3775
|
+
* @throws {RequiredError}
|
|
3776
|
+
*/
|
|
3777
|
+
v1CreateTimeWindowedAsset: (v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3175
3778
|
/**
|
|
3176
3779
|
* Delete an image set.
|
|
3177
3780
|
* @param {string} id
|
|
@@ -3201,6 +3804,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3201
3804
|
* @throws {RequiredError}
|
|
3202
3805
|
*/
|
|
3203
3806
|
v1FocuserMatch: (model?: string, travelDistanceMm?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3807
|
+
/**
|
|
3808
|
+
* Get an all sky prediction by ID or image id
|
|
3809
|
+
* @param {string} [imageId]
|
|
3810
|
+
* @param {string} [id]
|
|
3811
|
+
* @param {*} [options] Override http request option.
|
|
3812
|
+
* @throws {RequiredError}
|
|
3813
|
+
*/
|
|
3814
|
+
v1GetAllSkyPrediction: (imageId?: string, id?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3204
3815
|
/**
|
|
3205
3816
|
* Get cameras.
|
|
3206
3817
|
* @param {*} [options] Override http request option.
|
|
@@ -3249,6 +3860,21 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3249
3860
|
* @throws {RequiredError}
|
|
3250
3861
|
*/
|
|
3251
3862
|
v1GetLatestHfr: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3863
|
+
/**
|
|
3864
|
+
* GetLatestModel
|
|
3865
|
+
* @param {ModelType} modelType
|
|
3866
|
+
* @param {string} lineageId
|
|
3867
|
+
* @param {*} [options] Override http request option.
|
|
3868
|
+
* @throws {RequiredError}
|
|
3869
|
+
*/
|
|
3870
|
+
v1GetLatestModel: (modelType: ModelType, lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3871
|
+
/**
|
|
3872
|
+
* Get merged node config body
|
|
3873
|
+
* @param {string} nodeId
|
|
3874
|
+
* @param {*} [options] Override http request option.
|
|
3875
|
+
* @throws {RequiredError}
|
|
3876
|
+
*/
|
|
3877
|
+
v1GetMergedNodeConfigBody: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3252
3878
|
/**
|
|
3253
3879
|
* Get a mount.
|
|
3254
3880
|
* @param {string} id
|
|
@@ -3286,6 +3912,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3286
3912
|
* @throws {RequiredError}
|
|
3287
3913
|
*/
|
|
3288
3914
|
v1GetNodeDiagnosticTasks: (nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3915
|
+
/**
|
|
3916
|
+
* Get a node flare by id.
|
|
3917
|
+
* @param {string} id
|
|
3918
|
+
* @param {*} [options] Override http request option.
|
|
3919
|
+
* @throws {RequiredError}
|
|
3920
|
+
*/
|
|
3921
|
+
v1GetNodeFlare: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3289
3922
|
/**
|
|
3290
3923
|
* Get node properties.
|
|
3291
3924
|
* @param {string} nodeId
|
|
@@ -3341,6 +3974,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3341
3974
|
* @throws {RequiredError}
|
|
3342
3975
|
*/
|
|
3343
3976
|
v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3977
|
+
/**
|
|
3978
|
+
* Get a time windowed asset by id.
|
|
3979
|
+
* @param {string} timeWindowedAssetId
|
|
3980
|
+
* @param {*} [options] Override http request option.
|
|
3981
|
+
* @throws {RequiredError}
|
|
3982
|
+
*/
|
|
3983
|
+
v1GetTimeWindowedAsset: (timeWindowedAssetId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3344
3984
|
/**
|
|
3345
3985
|
* issueCertificate
|
|
3346
3986
|
* @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
|
|
@@ -3348,6 +3988,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3348
3988
|
* @throws {RequiredError}
|
|
3349
3989
|
*/
|
|
3350
3990
|
v1IssueCertificate: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3991
|
+
/**
|
|
3992
|
+
* User initiated logout - revokes existing _user_ access tokens for the principal
|
|
3993
|
+
* @param {*} [options] Override http request option.
|
|
3994
|
+
* @throws {RequiredError}
|
|
3995
|
+
*/
|
|
3996
|
+
v1Logout: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3351
3997
|
/**
|
|
3352
3998
|
* Match mount.
|
|
3353
3999
|
* @param {string} [model]
|
|
@@ -3424,6 +4070,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3424
4070
|
* @throws {RequiredError}
|
|
3425
4071
|
*/
|
|
3426
4072
|
v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
4073
|
+
/**
|
|
4074
|
+
* Complete a node flare.
|
|
4075
|
+
* @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
|
|
4076
|
+
* @param {*} [options] Override http request option.
|
|
4077
|
+
* @throws {RequiredError}
|
|
4078
|
+
*/
|
|
4079
|
+
v1CompleteNodeFlare(v1CompleteNodeFlareRequest: V1CompleteNodeFlareRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3427
4080
|
/**
|
|
3428
4081
|
* Complete an observation.
|
|
3429
4082
|
* @param {V1CompleteObservationRequest} v1CompleteObservationRequest
|
|
@@ -3431,6 +4084,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3431
4084
|
* @throws {RequiredError}
|
|
3432
4085
|
*/
|
|
3433
4086
|
v1CompleteObservation(v1CompleteObservationRequest: V1CompleteObservationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
4087
|
+
/**
|
|
4088
|
+
* Create a new all sky prediction
|
|
4089
|
+
* @param {V1CreateAllSkyPredictionRequest} v1CreateAllSkyPredictionRequest
|
|
4090
|
+
* @param {*} [options] Override http request option.
|
|
4091
|
+
* @throws {RequiredError}
|
|
4092
|
+
*/
|
|
4093
|
+
v1CreateAllSkyPrediction(v1CreateAllSkyPredictionRequest: V1CreateAllSkyPredictionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1AllSkyPrediction>>;
|
|
3434
4094
|
/**
|
|
3435
4095
|
* Create an autofocus result.
|
|
3436
4096
|
* @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
|
|
@@ -3501,6 +4161,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3501
4161
|
* @throws {RequiredError}
|
|
3502
4162
|
*/
|
|
3503
4163
|
v1CreateNodeEvents(v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
4164
|
+
/**
|
|
4165
|
+
* Create a node flare.
|
|
4166
|
+
* @param {V1CreateNodeFlareRequest} v1CreateNodeFlareRequest
|
|
4167
|
+
* @param {*} [options] Override http request option.
|
|
4168
|
+
* @throws {RequiredError}
|
|
4169
|
+
*/
|
|
4170
|
+
v1CreateNodeFlare(v1CreateNodeFlareRequest: V1CreateNodeFlareRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateNodeFlareResponse>>;
|
|
3504
4171
|
/**
|
|
3505
4172
|
* Create an optical tube.
|
|
3506
4173
|
* @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
|
|
@@ -3508,6 +4175,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3508
4175
|
* @throws {RequiredError}
|
|
3509
4176
|
*/
|
|
3510
4177
|
v1CreateOpticalTube(v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
4178
|
+
/**
|
|
4179
|
+
* Create a time windowed asset.
|
|
4180
|
+
* @param {V1CreateTimeWindowedAssetRequest} v1CreateTimeWindowedAssetRequest
|
|
4181
|
+
* @param {*} [options] Override http request option.
|
|
4182
|
+
* @throws {RequiredError}
|
|
4183
|
+
*/
|
|
4184
|
+
v1CreateTimeWindowedAsset(v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateTimeWindowedAssetResponse>>;
|
|
3511
4185
|
/**
|
|
3512
4186
|
* Delete an image set.
|
|
3513
4187
|
* @param {string} id
|
|
@@ -3537,6 +4211,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3537
4211
|
* @throws {RequiredError}
|
|
3538
4212
|
*/
|
|
3539
4213
|
v1FocuserMatch(model?: string, travelDistanceMm?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Focuser>>>;
|
|
4214
|
+
/**
|
|
4215
|
+
* Get an all sky prediction by ID or image id
|
|
4216
|
+
* @param {string} [imageId]
|
|
4217
|
+
* @param {string} [id]
|
|
4218
|
+
* @param {*} [options] Override http request option.
|
|
4219
|
+
* @throws {RequiredError}
|
|
4220
|
+
*/
|
|
4221
|
+
v1GetAllSkyPrediction(imageId?: string, id?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1AllSkyPrediction>>;
|
|
3540
4222
|
/**
|
|
3541
4223
|
* Get cameras.
|
|
3542
4224
|
* @param {*} [options] Override http request option.
|
|
@@ -3585,6 +4267,21 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3585
4267
|
* @throws {RequiredError}
|
|
3586
4268
|
*/
|
|
3587
4269
|
v1GetLatestHfr(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1LatestHfrResponse>>;
|
|
4270
|
+
/**
|
|
4271
|
+
* GetLatestModel
|
|
4272
|
+
* @param {ModelType} modelType
|
|
4273
|
+
* @param {string} lineageId
|
|
4274
|
+
* @param {*} [options] Override http request option.
|
|
4275
|
+
* @throws {RequiredError}
|
|
4276
|
+
*/
|
|
4277
|
+
v1GetLatestModel(modelType: ModelType, lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1MLModel>>;
|
|
4278
|
+
/**
|
|
4279
|
+
* Get merged node config body
|
|
4280
|
+
* @param {string} nodeId
|
|
4281
|
+
* @param {*} [options] Override http request option.
|
|
4282
|
+
* @throws {RequiredError}
|
|
4283
|
+
*/
|
|
4284
|
+
v1GetMergedNodeConfigBody(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeConfigBody>>;
|
|
3588
4285
|
/**
|
|
3589
4286
|
* Get a mount.
|
|
3590
4287
|
* @param {string} id
|
|
@@ -3622,6 +4319,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3622
4319
|
* @throws {RequiredError}
|
|
3623
4320
|
*/
|
|
3624
4321
|
v1GetNodeDiagnosticTasks(nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
|
|
4322
|
+
/**
|
|
4323
|
+
* Get a node flare by id.
|
|
4324
|
+
* @param {string} id
|
|
4325
|
+
* @param {*} [options] Override http request option.
|
|
4326
|
+
* @throws {RequiredError}
|
|
4327
|
+
*/
|
|
4328
|
+
v1GetNodeFlare(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeFlare>>;
|
|
3625
4329
|
/**
|
|
3626
4330
|
* Get node properties.
|
|
3627
4331
|
* @param {string} nodeId
|
|
@@ -3677,6 +4381,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3677
4381
|
* @throws {RequiredError}
|
|
3678
4382
|
*/
|
|
3679
4383
|
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
|
|
4384
|
+
/**
|
|
4385
|
+
* Get a time windowed asset by id.
|
|
4386
|
+
* @param {string} timeWindowedAssetId
|
|
4387
|
+
* @param {*} [options] Override http request option.
|
|
4388
|
+
* @throws {RequiredError}
|
|
4389
|
+
*/
|
|
4390
|
+
v1GetTimeWindowedAsset(timeWindowedAssetId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1TimeWindowedAsset>>;
|
|
3680
4391
|
/**
|
|
3681
4392
|
* issueCertificate
|
|
3682
4393
|
* @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
|
|
@@ -3684,6 +4395,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3684
4395
|
* @throws {RequiredError}
|
|
3685
4396
|
*/
|
|
3686
4397
|
v1IssueCertificate(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeControllerIssueCertificateResponse>>;
|
|
4398
|
+
/**
|
|
4399
|
+
* User initiated logout - revokes existing _user_ access tokens for the principal
|
|
4400
|
+
* @param {*} [options] Override http request option.
|
|
4401
|
+
* @throws {RequiredError}
|
|
4402
|
+
*/
|
|
4403
|
+
v1Logout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3687
4404
|
/**
|
|
3688
4405
|
* Match mount.
|
|
3689
4406
|
* @param {string} [model]
|
|
@@ -3753,6 +4470,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3753
4470
|
* @throws {RequiredError}
|
|
3754
4471
|
*/
|
|
3755
4472
|
v1CompleteBootstrap(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
4473
|
+
/**
|
|
4474
|
+
* Complete a node flare.
|
|
4475
|
+
* @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
|
|
4476
|
+
* @param {*} [options] Override http request option.
|
|
4477
|
+
* @throws {RequiredError}
|
|
4478
|
+
*/
|
|
4479
|
+
v1CompleteNodeFlare(requestParameters: DefaultApiV1CompleteNodeFlareRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3756
4480
|
/**
|
|
3757
4481
|
* Complete an observation.
|
|
3758
4482
|
* @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -3760,6 +4484,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3760
4484
|
* @throws {RequiredError}
|
|
3761
4485
|
*/
|
|
3762
4486
|
v1CompleteObservation(requestParameters: DefaultApiV1CompleteObservationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
4487
|
+
/**
|
|
4488
|
+
* Create a new all sky prediction
|
|
4489
|
+
* @param {DefaultApiV1CreateAllSkyPredictionRequest} requestParameters Request parameters.
|
|
4490
|
+
* @param {*} [options] Override http request option.
|
|
4491
|
+
* @throws {RequiredError}
|
|
4492
|
+
*/
|
|
4493
|
+
v1CreateAllSkyPrediction(requestParameters: DefaultApiV1CreateAllSkyPredictionRequest, options?: AxiosRequestConfig): AxiosPromise<V1AllSkyPrediction>;
|
|
3763
4494
|
/**
|
|
3764
4495
|
* Create an autofocus result.
|
|
3765
4496
|
* @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
|
|
@@ -3830,6 +4561,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3830
4561
|
* @throws {RequiredError}
|
|
3831
4562
|
*/
|
|
3832
4563
|
v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
4564
|
+
/**
|
|
4565
|
+
* Create a node flare.
|
|
4566
|
+
* @param {DefaultApiV1CreateNodeFlareRequest} requestParameters Request parameters.
|
|
4567
|
+
* @param {*} [options] Override http request option.
|
|
4568
|
+
* @throws {RequiredError}
|
|
4569
|
+
*/
|
|
4570
|
+
v1CreateNodeFlare(requestParameters: DefaultApiV1CreateNodeFlareRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateNodeFlareResponse>;
|
|
3833
4571
|
/**
|
|
3834
4572
|
* Create an optical tube.
|
|
3835
4573
|
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -3837,6 +4575,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3837
4575
|
* @throws {RequiredError}
|
|
3838
4576
|
*/
|
|
3839
4577
|
v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
4578
|
+
/**
|
|
4579
|
+
* Create a time windowed asset.
|
|
4580
|
+
* @param {DefaultApiV1CreateTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
4581
|
+
* @param {*} [options] Override http request option.
|
|
4582
|
+
* @throws {RequiredError}
|
|
4583
|
+
*/
|
|
4584
|
+
v1CreateTimeWindowedAsset(requestParameters: DefaultApiV1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateTimeWindowedAssetResponse>;
|
|
3840
4585
|
/**
|
|
3841
4586
|
* Delete an image set.
|
|
3842
4587
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -3865,6 +4610,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3865
4610
|
* @throws {RequiredError}
|
|
3866
4611
|
*/
|
|
3867
4612
|
v1FocuserMatch(requestParameters?: DefaultApiV1FocuserMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Focuser>>;
|
|
4613
|
+
/**
|
|
4614
|
+
* Get an all sky prediction by ID or image id
|
|
4615
|
+
* @param {DefaultApiV1GetAllSkyPredictionRequest} requestParameters Request parameters.
|
|
4616
|
+
* @param {*} [options] Override http request option.
|
|
4617
|
+
* @throws {RequiredError}
|
|
4618
|
+
*/
|
|
4619
|
+
v1GetAllSkyPrediction(requestParameters?: DefaultApiV1GetAllSkyPredictionRequest, options?: AxiosRequestConfig): AxiosPromise<V1AllSkyPrediction>;
|
|
3868
4620
|
/**
|
|
3869
4621
|
* Get cameras.
|
|
3870
4622
|
* @param {*} [options] Override http request option.
|
|
@@ -3913,6 +4665,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3913
4665
|
* @throws {RequiredError}
|
|
3914
4666
|
*/
|
|
3915
4667
|
v1GetLatestHfr(requestParameters: DefaultApiV1GetLatestHfrRequest, options?: AxiosRequestConfig): AxiosPromise<V1LatestHfrResponse>;
|
|
4668
|
+
/**
|
|
4669
|
+
* GetLatestModel
|
|
4670
|
+
* @param {DefaultApiV1GetLatestModelRequest} requestParameters Request parameters.
|
|
4671
|
+
* @param {*} [options] Override http request option.
|
|
4672
|
+
* @throws {RequiredError}
|
|
4673
|
+
*/
|
|
4674
|
+
v1GetLatestModel(requestParameters: DefaultApiV1GetLatestModelRequest, options?: AxiosRequestConfig): AxiosPromise<V1MLModel>;
|
|
4675
|
+
/**
|
|
4676
|
+
* Get merged node config body
|
|
4677
|
+
* @param {DefaultApiV1GetMergedNodeConfigBodyRequest} requestParameters Request parameters.
|
|
4678
|
+
* @param {*} [options] Override http request option.
|
|
4679
|
+
* @throws {RequiredError}
|
|
4680
|
+
*/
|
|
4681
|
+
v1GetMergedNodeConfigBody(requestParameters: DefaultApiV1GetMergedNodeConfigBodyRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeConfigBody>;
|
|
3916
4682
|
/**
|
|
3917
4683
|
* Get a mount.
|
|
3918
4684
|
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|
|
@@ -3948,6 +4714,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3948
4714
|
* @throws {RequiredError}
|
|
3949
4715
|
*/
|
|
3950
4716
|
v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeDiagnosticType>>;
|
|
4717
|
+
/**
|
|
4718
|
+
* Get a node flare by id.
|
|
4719
|
+
* @param {DefaultApiV1GetNodeFlareRequest} requestParameters Request parameters.
|
|
4720
|
+
* @param {*} [options] Override http request option.
|
|
4721
|
+
* @throws {RequiredError}
|
|
4722
|
+
*/
|
|
4723
|
+
v1GetNodeFlare(requestParameters: DefaultApiV1GetNodeFlareRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeFlare>;
|
|
3951
4724
|
/**
|
|
3952
4725
|
* Get node properties.
|
|
3953
4726
|
* @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
|
|
@@ -4003,6 +4776,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4003
4776
|
* @throws {RequiredError}
|
|
4004
4777
|
*/
|
|
4005
4778
|
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
|
|
4779
|
+
/**
|
|
4780
|
+
* Get a time windowed asset by id.
|
|
4781
|
+
* @param {DefaultApiV1GetTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
4782
|
+
* @param {*} [options] Override http request option.
|
|
4783
|
+
* @throws {RequiredError}
|
|
4784
|
+
*/
|
|
4785
|
+
v1GetTimeWindowedAsset(requestParameters: DefaultApiV1GetTimeWindowedAssetRequest, options?: AxiosRequestConfig): AxiosPromise<V1TimeWindowedAsset>;
|
|
4006
4786
|
/**
|
|
4007
4787
|
* issueCertificate
|
|
4008
4788
|
* @param {DefaultApiV1IssueCertificateRequest} requestParameters Request parameters.
|
|
@@ -4010,6 +4790,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4010
4790
|
* @throws {RequiredError}
|
|
4011
4791
|
*/
|
|
4012
4792
|
v1IssueCertificate(requestParameters: DefaultApiV1IssueCertificateRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeControllerIssueCertificateResponse>;
|
|
4793
|
+
/**
|
|
4794
|
+
* User initiated logout - revokes existing _user_ access tokens for the principal
|
|
4795
|
+
* @param {*} [options] Override http request option.
|
|
4796
|
+
* @throws {RequiredError}
|
|
4797
|
+
*/
|
|
4798
|
+
v1Logout(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
4013
4799
|
/**
|
|
4014
4800
|
* Match mount.
|
|
4015
4801
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -4108,6 +4894,19 @@ export interface DefaultApiV1CameraMatchRequest {
|
|
|
4108
4894
|
*/
|
|
4109
4895
|
readonly isColor?: boolean;
|
|
4110
4896
|
}
|
|
4897
|
+
/**
|
|
4898
|
+
* Request parameters for v1CompleteNodeFlare operation in DefaultApi.
|
|
4899
|
+
* @export
|
|
4900
|
+
* @interface DefaultApiV1CompleteNodeFlareRequest
|
|
4901
|
+
*/
|
|
4902
|
+
export interface DefaultApiV1CompleteNodeFlareRequest {
|
|
4903
|
+
/**
|
|
4904
|
+
*
|
|
4905
|
+
* @type {V1CompleteNodeFlareRequest}
|
|
4906
|
+
* @memberof DefaultApiV1CompleteNodeFlare
|
|
4907
|
+
*/
|
|
4908
|
+
readonly v1CompleteNodeFlareRequest: V1CompleteNodeFlareRequest;
|
|
4909
|
+
}
|
|
4111
4910
|
/**
|
|
4112
4911
|
* Request parameters for v1CompleteObservation operation in DefaultApi.
|
|
4113
4912
|
* @export
|
|
@@ -4121,6 +4920,19 @@ export interface DefaultApiV1CompleteObservationRequest {
|
|
|
4121
4920
|
*/
|
|
4122
4921
|
readonly v1CompleteObservationRequest: V1CompleteObservationRequest;
|
|
4123
4922
|
}
|
|
4923
|
+
/**
|
|
4924
|
+
* Request parameters for v1CreateAllSkyPrediction operation in DefaultApi.
|
|
4925
|
+
* @export
|
|
4926
|
+
* @interface DefaultApiV1CreateAllSkyPredictionRequest
|
|
4927
|
+
*/
|
|
4928
|
+
export interface DefaultApiV1CreateAllSkyPredictionRequest {
|
|
4929
|
+
/**
|
|
4930
|
+
*
|
|
4931
|
+
* @type {V1CreateAllSkyPredictionRequest}
|
|
4932
|
+
* @memberof DefaultApiV1CreateAllSkyPrediction
|
|
4933
|
+
*/
|
|
4934
|
+
readonly v1CreateAllSkyPredictionRequest: V1CreateAllSkyPredictionRequest;
|
|
4935
|
+
}
|
|
4124
4936
|
/**
|
|
4125
4937
|
* Request parameters for v1CreateAutofocusResult operation in DefaultApi.
|
|
4126
4938
|
* @export
|
|
@@ -4251,6 +5063,19 @@ export interface DefaultApiV1CreateNodeEventsRequest {
|
|
|
4251
5063
|
*/
|
|
4252
5064
|
readonly v1CreateNodeEventsRequest: V1CreateNodeEventsRequest;
|
|
4253
5065
|
}
|
|
5066
|
+
/**
|
|
5067
|
+
* Request parameters for v1CreateNodeFlare operation in DefaultApi.
|
|
5068
|
+
* @export
|
|
5069
|
+
* @interface DefaultApiV1CreateNodeFlareRequest
|
|
5070
|
+
*/
|
|
5071
|
+
export interface DefaultApiV1CreateNodeFlareRequest {
|
|
5072
|
+
/**
|
|
5073
|
+
*
|
|
5074
|
+
* @type {V1CreateNodeFlareRequest}
|
|
5075
|
+
* @memberof DefaultApiV1CreateNodeFlare
|
|
5076
|
+
*/
|
|
5077
|
+
readonly v1CreateNodeFlareRequest: V1CreateNodeFlareRequest;
|
|
5078
|
+
}
|
|
4254
5079
|
/**
|
|
4255
5080
|
* Request parameters for v1CreateOpticalTube operation in DefaultApi.
|
|
4256
5081
|
* @export
|
|
@@ -4264,6 +5089,19 @@ export interface DefaultApiV1CreateOpticalTubeRequest {
|
|
|
4264
5089
|
*/
|
|
4265
5090
|
readonly v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest;
|
|
4266
5091
|
}
|
|
5092
|
+
/**
|
|
5093
|
+
* Request parameters for v1CreateTimeWindowedAsset operation in DefaultApi.
|
|
5094
|
+
* @export
|
|
5095
|
+
* @interface DefaultApiV1CreateTimeWindowedAssetRequest
|
|
5096
|
+
*/
|
|
5097
|
+
export interface DefaultApiV1CreateTimeWindowedAssetRequest {
|
|
5098
|
+
/**
|
|
5099
|
+
*
|
|
5100
|
+
* @type {V1CreateTimeWindowedAssetRequest}
|
|
5101
|
+
* @memberof DefaultApiV1CreateTimeWindowedAsset
|
|
5102
|
+
*/
|
|
5103
|
+
readonly v1CreateTimeWindowedAssetRequest: V1CreateTimeWindowedAssetRequest;
|
|
5104
|
+
}
|
|
4267
5105
|
/**
|
|
4268
5106
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
4269
5107
|
* @export
|
|
@@ -4322,6 +5160,25 @@ export interface DefaultApiV1FocuserMatchRequest {
|
|
|
4322
5160
|
*/
|
|
4323
5161
|
readonly travelDistanceMm?: number;
|
|
4324
5162
|
}
|
|
5163
|
+
/**
|
|
5164
|
+
* Request parameters for v1GetAllSkyPrediction operation in DefaultApi.
|
|
5165
|
+
* @export
|
|
5166
|
+
* @interface DefaultApiV1GetAllSkyPredictionRequest
|
|
5167
|
+
*/
|
|
5168
|
+
export interface DefaultApiV1GetAllSkyPredictionRequest {
|
|
5169
|
+
/**
|
|
5170
|
+
*
|
|
5171
|
+
* @type {string}
|
|
5172
|
+
* @memberof DefaultApiV1GetAllSkyPrediction
|
|
5173
|
+
*/
|
|
5174
|
+
readonly imageId?: string;
|
|
5175
|
+
/**
|
|
5176
|
+
*
|
|
5177
|
+
* @type {string}
|
|
5178
|
+
* @memberof DefaultApiV1GetAllSkyPrediction
|
|
5179
|
+
*/
|
|
5180
|
+
readonly id?: string;
|
|
5181
|
+
}
|
|
4325
5182
|
/**
|
|
4326
5183
|
* Request parameters for v1GetFocuser operation in DefaultApi.
|
|
4327
5184
|
* @export
|
|
@@ -4400,6 +5257,38 @@ export interface DefaultApiV1GetLatestHfrRequest {
|
|
|
4400
5257
|
*/
|
|
4401
5258
|
readonly nodeId: string;
|
|
4402
5259
|
}
|
|
5260
|
+
/**
|
|
5261
|
+
* Request parameters for v1GetLatestModel operation in DefaultApi.
|
|
5262
|
+
* @export
|
|
5263
|
+
* @interface DefaultApiV1GetLatestModelRequest
|
|
5264
|
+
*/
|
|
5265
|
+
export interface DefaultApiV1GetLatestModelRequest {
|
|
5266
|
+
/**
|
|
5267
|
+
*
|
|
5268
|
+
* @type {ModelType}
|
|
5269
|
+
* @memberof DefaultApiV1GetLatestModel
|
|
5270
|
+
*/
|
|
5271
|
+
readonly modelType: ModelType;
|
|
5272
|
+
/**
|
|
5273
|
+
*
|
|
5274
|
+
* @type {string}
|
|
5275
|
+
* @memberof DefaultApiV1GetLatestModel
|
|
5276
|
+
*/
|
|
5277
|
+
readonly lineageId: string;
|
|
5278
|
+
}
|
|
5279
|
+
/**
|
|
5280
|
+
* Request parameters for v1GetMergedNodeConfigBody operation in DefaultApi.
|
|
5281
|
+
* @export
|
|
5282
|
+
* @interface DefaultApiV1GetMergedNodeConfigBodyRequest
|
|
5283
|
+
*/
|
|
5284
|
+
export interface DefaultApiV1GetMergedNodeConfigBodyRequest {
|
|
5285
|
+
/**
|
|
5286
|
+
*
|
|
5287
|
+
* @type {string}
|
|
5288
|
+
* @memberof DefaultApiV1GetMergedNodeConfigBody
|
|
5289
|
+
*/
|
|
5290
|
+
readonly nodeId: string;
|
|
5291
|
+
}
|
|
4403
5292
|
/**
|
|
4404
5293
|
* Request parameters for v1GetMount operation in DefaultApi.
|
|
4405
5294
|
* @export
|
|
@@ -4477,6 +5366,19 @@ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
|
|
|
4477
5366
|
*/
|
|
4478
5367
|
readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>;
|
|
4479
5368
|
}
|
|
5369
|
+
/**
|
|
5370
|
+
* Request parameters for v1GetNodeFlare operation in DefaultApi.
|
|
5371
|
+
* @export
|
|
5372
|
+
* @interface DefaultApiV1GetNodeFlareRequest
|
|
5373
|
+
*/
|
|
5374
|
+
export interface DefaultApiV1GetNodeFlareRequest {
|
|
5375
|
+
/**
|
|
5376
|
+
*
|
|
5377
|
+
* @type {string}
|
|
5378
|
+
* @memberof DefaultApiV1GetNodeFlare
|
|
5379
|
+
*/
|
|
5380
|
+
readonly id: string;
|
|
5381
|
+
}
|
|
4480
5382
|
/**
|
|
4481
5383
|
* Request parameters for v1GetNodeProperties operation in DefaultApi.
|
|
4482
5384
|
* @export
|
|
@@ -4568,6 +5470,19 @@ export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
|
4568
5470
|
*/
|
|
4569
5471
|
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
|
|
4570
5472
|
}
|
|
5473
|
+
/**
|
|
5474
|
+
* Request parameters for v1GetTimeWindowedAsset operation in DefaultApi.
|
|
5475
|
+
* @export
|
|
5476
|
+
* @interface DefaultApiV1GetTimeWindowedAssetRequest
|
|
5477
|
+
*/
|
|
5478
|
+
export interface DefaultApiV1GetTimeWindowedAssetRequest {
|
|
5479
|
+
/**
|
|
5480
|
+
*
|
|
5481
|
+
* @type {string}
|
|
5482
|
+
* @memberof DefaultApiV1GetTimeWindowedAsset
|
|
5483
|
+
*/
|
|
5484
|
+
readonly timeWindowedAssetId: string;
|
|
5485
|
+
}
|
|
4571
5486
|
/**
|
|
4572
5487
|
* Request parameters for v1IssueCertificate operation in DefaultApi.
|
|
4573
5488
|
* @export
|
|
@@ -4700,6 +5615,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4700
5615
|
* @memberof DefaultApi
|
|
4701
5616
|
*/
|
|
4702
5617
|
v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
5618
|
+
/**
|
|
5619
|
+
* Complete a node flare.
|
|
5620
|
+
* @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
|
|
5621
|
+
* @param {*} [options] Override http request option.
|
|
5622
|
+
* @throws {RequiredError}
|
|
5623
|
+
* @memberof DefaultApi
|
|
5624
|
+
*/
|
|
5625
|
+
v1CompleteNodeFlare(requestParameters: DefaultApiV1CompleteNodeFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4703
5626
|
/**
|
|
4704
5627
|
* Complete an observation.
|
|
4705
5628
|
* @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -4708,6 +5631,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4708
5631
|
* @memberof DefaultApi
|
|
4709
5632
|
*/
|
|
4710
5633
|
v1CompleteObservation(requestParameters: DefaultApiV1CompleteObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
5634
|
+
/**
|
|
5635
|
+
* Create a new all sky prediction
|
|
5636
|
+
* @param {DefaultApiV1CreateAllSkyPredictionRequest} requestParameters Request parameters.
|
|
5637
|
+
* @param {*} [options] Override http request option.
|
|
5638
|
+
* @throws {RequiredError}
|
|
5639
|
+
* @memberof DefaultApi
|
|
5640
|
+
*/
|
|
5641
|
+
v1CreateAllSkyPrediction(requestParameters: DefaultApiV1CreateAllSkyPredictionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AllSkyPrediction, any>>;
|
|
4711
5642
|
/**
|
|
4712
5643
|
* Create an autofocus result.
|
|
4713
5644
|
* @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
|
|
@@ -4788,6 +5719,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4788
5719
|
* @memberof DefaultApi
|
|
4789
5720
|
*/
|
|
4790
5721
|
v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
5722
|
+
/**
|
|
5723
|
+
* Create a node flare.
|
|
5724
|
+
* @param {DefaultApiV1CreateNodeFlareRequest} requestParameters Request parameters.
|
|
5725
|
+
* @param {*} [options] Override http request option.
|
|
5726
|
+
* @throws {RequiredError}
|
|
5727
|
+
* @memberof DefaultApi
|
|
5728
|
+
*/
|
|
5729
|
+
v1CreateNodeFlare(requestParameters: DefaultApiV1CreateNodeFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateNodeFlareResponse, any>>;
|
|
4791
5730
|
/**
|
|
4792
5731
|
* Create an optical tube.
|
|
4793
5732
|
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -4796,6 +5735,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4796
5735
|
* @memberof DefaultApi
|
|
4797
5736
|
*/
|
|
4798
5737
|
v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
5738
|
+
/**
|
|
5739
|
+
* Create a time windowed asset.
|
|
5740
|
+
* @param {DefaultApiV1CreateTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
5741
|
+
* @param {*} [options] Override http request option.
|
|
5742
|
+
* @throws {RequiredError}
|
|
5743
|
+
* @memberof DefaultApi
|
|
5744
|
+
*/
|
|
5745
|
+
v1CreateTimeWindowedAsset(requestParameters: DefaultApiV1CreateTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateTimeWindowedAssetResponse, any>>;
|
|
4799
5746
|
/**
|
|
4800
5747
|
* Delete an image set.
|
|
4801
5748
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4828,6 +5775,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4828
5775
|
* @memberof DefaultApi
|
|
4829
5776
|
*/
|
|
4830
5777
|
v1FocuserMatch(requestParameters?: DefaultApiV1FocuserMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Focuser[], any>>;
|
|
5778
|
+
/**
|
|
5779
|
+
* Get an all sky prediction by ID or image id
|
|
5780
|
+
* @param {DefaultApiV1GetAllSkyPredictionRequest} requestParameters Request parameters.
|
|
5781
|
+
* @param {*} [options] Override http request option.
|
|
5782
|
+
* @throws {RequiredError}
|
|
5783
|
+
* @memberof DefaultApi
|
|
5784
|
+
*/
|
|
5785
|
+
v1GetAllSkyPrediction(requestParameters?: DefaultApiV1GetAllSkyPredictionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AllSkyPrediction, any>>;
|
|
4831
5786
|
/**
|
|
4832
5787
|
* Get cameras.
|
|
4833
5788
|
* @param {*} [options] Override http request option.
|
|
@@ -4883,6 +5838,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4883
5838
|
* @memberof DefaultApi
|
|
4884
5839
|
*/
|
|
4885
5840
|
v1GetLatestHfr(requestParameters: DefaultApiV1GetLatestHfrRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1LatestHfrResponse, any>>;
|
|
5841
|
+
/**
|
|
5842
|
+
* GetLatestModel
|
|
5843
|
+
* @param {DefaultApiV1GetLatestModelRequest} requestParameters Request parameters.
|
|
5844
|
+
* @param {*} [options] Override http request option.
|
|
5845
|
+
* @throws {RequiredError}
|
|
5846
|
+
* @memberof DefaultApi
|
|
5847
|
+
*/
|
|
5848
|
+
v1GetLatestModel(requestParameters: DefaultApiV1GetLatestModelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1MLModel, any>>;
|
|
5849
|
+
/**
|
|
5850
|
+
* Get merged node config body
|
|
5851
|
+
* @param {DefaultApiV1GetMergedNodeConfigBodyRequest} requestParameters Request parameters.
|
|
5852
|
+
* @param {*} [options] Override http request option.
|
|
5853
|
+
* @throws {RequiredError}
|
|
5854
|
+
* @memberof DefaultApi
|
|
5855
|
+
*/
|
|
5856
|
+
v1GetMergedNodeConfigBody(requestParameters: DefaultApiV1GetMergedNodeConfigBodyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeConfigBody, any>>;
|
|
4886
5857
|
/**
|
|
4887
5858
|
* Get a mount.
|
|
4888
5859
|
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|
|
@@ -4923,6 +5894,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4923
5894
|
* @memberof DefaultApi
|
|
4924
5895
|
*/
|
|
4925
5896
|
v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeDiagnosticType[], any>>;
|
|
5897
|
+
/**
|
|
5898
|
+
* Get a node flare by id.
|
|
5899
|
+
* @param {DefaultApiV1GetNodeFlareRequest} requestParameters Request parameters.
|
|
5900
|
+
* @param {*} [options] Override http request option.
|
|
5901
|
+
* @throws {RequiredError}
|
|
5902
|
+
* @memberof DefaultApi
|
|
5903
|
+
*/
|
|
5904
|
+
v1GetNodeFlare(requestParameters: DefaultApiV1GetNodeFlareRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeFlare, any>>;
|
|
4926
5905
|
/**
|
|
4927
5906
|
* Get node properties.
|
|
4928
5907
|
* @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
|
|
@@ -4986,6 +5965,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4986
5965
|
* @memberof DefaultApi
|
|
4987
5966
|
*/
|
|
4988
5967
|
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
|
|
5968
|
+
/**
|
|
5969
|
+
* Get a time windowed asset by id.
|
|
5970
|
+
* @param {DefaultApiV1GetTimeWindowedAssetRequest} requestParameters Request parameters.
|
|
5971
|
+
* @param {*} [options] Override http request option.
|
|
5972
|
+
* @throws {RequiredError}
|
|
5973
|
+
* @memberof DefaultApi
|
|
5974
|
+
*/
|
|
5975
|
+
v1GetTimeWindowedAsset(requestParameters: DefaultApiV1GetTimeWindowedAssetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1TimeWindowedAsset, any>>;
|
|
4989
5976
|
/**
|
|
4990
5977
|
* issueCertificate
|
|
4991
5978
|
* @param {DefaultApiV1IssueCertificateRequest} requestParameters Request parameters.
|
|
@@ -4994,6 +5981,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4994
5981
|
* @memberof DefaultApi
|
|
4995
5982
|
*/
|
|
4996
5983
|
v1IssueCertificate(requestParameters: DefaultApiV1IssueCertificateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeControllerIssueCertificateResponse, any>>;
|
|
5984
|
+
/**
|
|
5985
|
+
* User initiated logout - revokes existing _user_ access tokens for the principal
|
|
5986
|
+
* @param {*} [options] Override http request option.
|
|
5987
|
+
* @throws {RequiredError}
|
|
5988
|
+
* @memberof DefaultApi
|
|
5989
|
+
*/
|
|
5990
|
+
v1Logout(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4997
5991
|
/**
|
|
4998
5992
|
* Match mount.
|
|
4999
5993
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|