@ourskyai/platform-api 1.3.5602 → 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/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.5602
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
- * Optical Tube
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
  /**
@@ -1868,8 +2228,66 @@ export declare const V1NodeComponentType: {
1868
2228
  readonly COMPUTER: "COMPUTER";
1869
2229
  readonly SAFETY_MONITOR: "SAFETY_MONITOR";
1870
2230
  readonly NODE: "NODE";
2231
+ readonly FOCUSER: "FOCUSER";
2232
+ readonly FILTER_WHEEL: "FILTER_WHEEL";
2233
+ readonly WEATHER_STATION: "WEATHER_STATION";
1871
2234
  };
1872
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];
1873
2291
  /**
1874
2292
  *
1875
2293
  * @export
@@ -1996,6 +2414,7 @@ export declare const V1NodeDiagnosticType: {
1996
2414
  readonly MOUNT_CHECKED: "MOUNT_CHECKED";
1997
2415
  readonly OPTICAL_TUBE_CHECKED: "OPTICAL_TUBE_CHECKED";
1998
2416
  readonly ELEVATION_MASK_CHECKED: "ELEVATION_MASK_CHECKED";
2417
+ readonly TOTAL_DISK_BYTES: "TOTAL_DISK_BYTES";
1999
2418
  readonly AVAILABLE_DISK_BYTES: "AVAILABLE_DISK_BYTES";
2000
2419
  readonly AVAILABLE_MEMORY_BYTES: "AVAILABLE_MEMORY_BYTES";
2001
2420
  readonly NTP_TIME_DRIFT_MS: "NTP_TIME_DRIFT_MS";
@@ -2039,8 +2458,36 @@ export declare const V1NodeEventType: {
2039
2458
  readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
2040
2459
  readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
2041
2460
  readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
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";
2042
2464
  };
2043
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
+ }
2044
2491
  /**
2045
2492
  * Node with location
2046
2493
  * @export
@@ -2204,6 +2651,12 @@ export interface V1ObservationInstruction {
2204
2651
  * @memberof V1ObservationInstruction
2205
2652
  */
2206
2653
  'tleOffsetRa'?: number;
2654
+ /**
2655
+ *
2656
+ * @type {Array<V1BlackoutBox>}
2657
+ * @memberof V1ObservationInstruction
2658
+ */
2659
+ 'blackoutBoxes'?: Array<V1BlackoutBox>;
2207
2660
  /**
2208
2661
  *
2209
2662
  * @type {PlateSolveParameters}
@@ -2578,6 +3031,67 @@ export interface V1SafetyStatusUpdated {
2578
3031
  */
2579
3032
  'isSafe': boolean;
2580
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
+ }
2581
3095
  /**
2582
3096
  * Setup Action
2583
3097
  * @export
@@ -2667,6 +3181,71 @@ export interface V1StopPerpetualInstructionLoop {
2667
3181
  */
2668
3182
  'placeholder'?: boolean;
2669
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];
2670
3249
  /**
2671
3250
  *
2672
3251
  * @export
@@ -3084,6 +3663,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3084
3663
  * @throws {RequiredError}
3085
3664
  */
3086
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>;
3087
3673
  /**
3088
3674
  * Complete an observation.
3089
3675
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3091,6 +3677,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3091
3677
  * @throws {RequiredError}
3092
3678
  */
3093
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>;
3094
3687
  /**
3095
3688
  * Create an autofocus result.
3096
3689
  * @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
@@ -3161,6 +3754,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3161
3754
  * @throws {RequiredError}
3162
3755
  */
3163
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>;
3164
3764
  /**
3165
3765
  * Create an optical tube.
3166
3766
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -3168,6 +3768,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3168
3768
  * @throws {RequiredError}
3169
3769
  */
3170
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>;
3171
3778
  /**
3172
3779
  * Delete an image set.
3173
3780
  * @param {string} id
@@ -3197,6 +3804,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3197
3804
  * @throws {RequiredError}
3198
3805
  */
3199
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>;
3200
3815
  /**
3201
3816
  * Get cameras.
3202
3817
  * @param {*} [options] Override http request option.
@@ -3245,6 +3860,21 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3245
3860
  * @throws {RequiredError}
3246
3861
  */
3247
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>;
3248
3878
  /**
3249
3879
  * Get a mount.
3250
3880
  * @param {string} id
@@ -3282,6 +3912,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3282
3912
  * @throws {RequiredError}
3283
3913
  */
3284
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>;
3285
3922
  /**
3286
3923
  * Get node properties.
3287
3924
  * @param {string} nodeId
@@ -3337,6 +3974,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3337
3974
  * @throws {RequiredError}
3338
3975
  */
3339
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>;
3340
3984
  /**
3341
3985
  * issueCertificate
3342
3986
  * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
@@ -3344,6 +3988,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3344
3988
  * @throws {RequiredError}
3345
3989
  */
3346
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>;
3347
3997
  /**
3348
3998
  * Match mount.
3349
3999
  * @param {string} [model]
@@ -3420,6 +4070,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3420
4070
  * @throws {RequiredError}
3421
4071
  */
3422
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>>;
3423
4080
  /**
3424
4081
  * Complete an observation.
3425
4082
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3427,6 +4084,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3427
4084
  * @throws {RequiredError}
3428
4085
  */
3429
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>>;
3430
4094
  /**
3431
4095
  * Create an autofocus result.
3432
4096
  * @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
@@ -3497,6 +4161,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3497
4161
  * @throws {RequiredError}
3498
4162
  */
3499
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>>;
3500
4171
  /**
3501
4172
  * Create an optical tube.
3502
4173
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -3504,6 +4175,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3504
4175
  * @throws {RequiredError}
3505
4176
  */
3506
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>>;
3507
4185
  /**
3508
4186
  * Delete an image set.
3509
4187
  * @param {string} id
@@ -3533,6 +4211,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3533
4211
  * @throws {RequiredError}
3534
4212
  */
3535
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>>;
3536
4222
  /**
3537
4223
  * Get cameras.
3538
4224
  * @param {*} [options] Override http request option.
@@ -3581,6 +4267,21 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3581
4267
  * @throws {RequiredError}
3582
4268
  */
3583
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>>;
3584
4285
  /**
3585
4286
  * Get a mount.
3586
4287
  * @param {string} id
@@ -3618,6 +4319,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3618
4319
  * @throws {RequiredError}
3619
4320
  */
3620
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>>;
3621
4329
  /**
3622
4330
  * Get node properties.
3623
4331
  * @param {string} nodeId
@@ -3673,6 +4381,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3673
4381
  * @throws {RequiredError}
3674
4382
  */
3675
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>>;
3676
4391
  /**
3677
4392
  * issueCertificate
3678
4393
  * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
@@ -3680,6 +4395,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3680
4395
  * @throws {RequiredError}
3681
4396
  */
3682
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>>;
3683
4404
  /**
3684
4405
  * Match mount.
3685
4406
  * @param {string} [model]
@@ -3749,6 +4470,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3749
4470
  * @throws {RequiredError}
3750
4471
  */
3751
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>;
3752
4480
  /**
3753
4481
  * Complete an observation.
3754
4482
  * @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
@@ -3756,6 +4484,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3756
4484
  * @throws {RequiredError}
3757
4485
  */
3758
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>;
3759
4494
  /**
3760
4495
  * Create an autofocus result.
3761
4496
  * @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
@@ -3826,6 +4561,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3826
4561
  * @throws {RequiredError}
3827
4562
  */
3828
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>;
3829
4571
  /**
3830
4572
  * Create an optical tube.
3831
4573
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -3833,6 +4575,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3833
4575
  * @throws {RequiredError}
3834
4576
  */
3835
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>;
3836
4585
  /**
3837
4586
  * Delete an image set.
3838
4587
  * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
@@ -3861,6 +4610,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3861
4610
  * @throws {RequiredError}
3862
4611
  */
3863
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>;
3864
4620
  /**
3865
4621
  * Get cameras.
3866
4622
  * @param {*} [options] Override http request option.
@@ -3909,6 +4665,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3909
4665
  * @throws {RequiredError}
3910
4666
  */
3911
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>;
3912
4682
  /**
3913
4683
  * Get a mount.
3914
4684
  * @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
@@ -3944,6 +4714,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3944
4714
  * @throws {RequiredError}
3945
4715
  */
3946
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>;
3947
4724
  /**
3948
4725
  * Get node properties.
3949
4726
  * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
@@ -3999,6 +4776,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3999
4776
  * @throws {RequiredError}
4000
4777
  */
4001
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>;
4002
4786
  /**
4003
4787
  * issueCertificate
4004
4788
  * @param {DefaultApiV1IssueCertificateRequest} requestParameters Request parameters.
@@ -4006,6 +4790,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4006
4790
  * @throws {RequiredError}
4007
4791
  */
4008
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>;
4009
4799
  /**
4010
4800
  * Match mount.
4011
4801
  * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
@@ -4104,6 +4894,19 @@ export interface DefaultApiV1CameraMatchRequest {
4104
4894
  */
4105
4895
  readonly isColor?: boolean;
4106
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
+ }
4107
4910
  /**
4108
4911
  * Request parameters for v1CompleteObservation operation in DefaultApi.
4109
4912
  * @export
@@ -4117,6 +4920,19 @@ export interface DefaultApiV1CompleteObservationRequest {
4117
4920
  */
4118
4921
  readonly v1CompleteObservationRequest: V1CompleteObservationRequest;
4119
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
+ }
4120
4936
  /**
4121
4937
  * Request parameters for v1CreateAutofocusResult operation in DefaultApi.
4122
4938
  * @export
@@ -4247,6 +5063,19 @@ export interface DefaultApiV1CreateNodeEventsRequest {
4247
5063
  */
4248
5064
  readonly v1CreateNodeEventsRequest: V1CreateNodeEventsRequest;
4249
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
+ }
4250
5079
  /**
4251
5080
  * Request parameters for v1CreateOpticalTube operation in DefaultApi.
4252
5081
  * @export
@@ -4260,6 +5089,19 @@ export interface DefaultApiV1CreateOpticalTubeRequest {
4260
5089
  */
4261
5090
  readonly v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest;
4262
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
+ }
4263
5105
  /**
4264
5106
  * Request parameters for v1DeleteImageSet operation in DefaultApi.
4265
5107
  * @export
@@ -4318,6 +5160,25 @@ export interface DefaultApiV1FocuserMatchRequest {
4318
5160
  */
4319
5161
  readonly travelDistanceMm?: number;
4320
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
+ }
4321
5182
  /**
4322
5183
  * Request parameters for v1GetFocuser operation in DefaultApi.
4323
5184
  * @export
@@ -4396,6 +5257,38 @@ export interface DefaultApiV1GetLatestHfrRequest {
4396
5257
  */
4397
5258
  readonly nodeId: string;
4398
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
+ }
4399
5292
  /**
4400
5293
  * Request parameters for v1GetMount operation in DefaultApi.
4401
5294
  * @export
@@ -4473,6 +5366,19 @@ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
4473
5366
  */
4474
5367
  readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>;
4475
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
+ }
4476
5382
  /**
4477
5383
  * Request parameters for v1GetNodeProperties operation in DefaultApi.
4478
5384
  * @export
@@ -4564,6 +5470,19 @@ export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
4564
5470
  */
4565
5471
  readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
4566
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
+ }
4567
5486
  /**
4568
5487
  * Request parameters for v1IssueCertificate operation in DefaultApi.
4569
5488
  * @export
@@ -4696,6 +5615,14 @@ export declare class DefaultApi extends BaseAPI {
4696
5615
  * @memberof DefaultApi
4697
5616
  */
4698
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>>;
4699
5626
  /**
4700
5627
  * Complete an observation.
4701
5628
  * @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
@@ -4704,6 +5631,14 @@ export declare class DefaultApi extends BaseAPI {
4704
5631
  * @memberof DefaultApi
4705
5632
  */
4706
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>>;
4707
5642
  /**
4708
5643
  * Create an autofocus result.
4709
5644
  * @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
@@ -4784,6 +5719,14 @@ export declare class DefaultApi extends BaseAPI {
4784
5719
  * @memberof DefaultApi
4785
5720
  */
4786
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>>;
4787
5730
  /**
4788
5731
  * Create an optical tube.
4789
5732
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -4792,6 +5735,14 @@ export declare class DefaultApi extends BaseAPI {
4792
5735
  * @memberof DefaultApi
4793
5736
  */
4794
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>>;
4795
5746
  /**
4796
5747
  * Delete an image set.
4797
5748
  * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
@@ -4824,6 +5775,14 @@ export declare class DefaultApi extends BaseAPI {
4824
5775
  * @memberof DefaultApi
4825
5776
  */
4826
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>>;
4827
5786
  /**
4828
5787
  * Get cameras.
4829
5788
  * @param {*} [options] Override http request option.
@@ -4879,6 +5838,22 @@ export declare class DefaultApi extends BaseAPI {
4879
5838
  * @memberof DefaultApi
4880
5839
  */
4881
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>>;
4882
5857
  /**
4883
5858
  * Get a mount.
4884
5859
  * @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
@@ -4919,6 +5894,14 @@ export declare class DefaultApi extends BaseAPI {
4919
5894
  * @memberof DefaultApi
4920
5895
  */
4921
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>>;
4922
5905
  /**
4923
5906
  * Get node properties.
4924
5907
  * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
@@ -4982,6 +5965,14 @@ export declare class DefaultApi extends BaseAPI {
4982
5965
  * @memberof DefaultApi
4983
5966
  */
4984
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>>;
4985
5976
  /**
4986
5977
  * issueCertificate
4987
5978
  * @param {DefaultApiV1IssueCertificateRequest} requestParameters Request parameters.
@@ -4990,6 +5981,13 @@ export declare class DefaultApi extends BaseAPI {
4990
5981
  * @memberof DefaultApi
4991
5982
  */
4992
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>>;
4993
5991
  /**
4994
5992
  * Match mount.
4995
5993
  * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.