@ourskyai/platform-api 1.3.2816 → 1.3.3197

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky 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.2816
5
+ * The version of the OpenAPI document: 1.3.3197
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -136,6 +136,37 @@ export declare const OpticalTubeType: {
136
136
  readonly REFRACTOR: "REFRACTOR";
137
137
  };
138
138
  export type OpticalTubeType = typeof OpticalTubeType[keyof typeof OpticalTubeType];
139
+ /**
140
+ *
141
+ * @export
142
+ * @interface PlateSolveParameters
143
+ */
144
+ export interface PlateSolveParameters {
145
+ /**
146
+ *
147
+ * @type {number}
148
+ * @memberof PlateSolveParameters
149
+ */
150
+ 'exposureDuration': number;
151
+ /**
152
+ *
153
+ * @type {number}
154
+ * @memberof PlateSolveParameters
155
+ */
156
+ 'toleranceArcMin': number;
157
+ /**
158
+ *
159
+ * @type {number}
160
+ * @memberof PlateSolveParameters
161
+ */
162
+ 'binning': number;
163
+ /**
164
+ *
165
+ * @type {number}
166
+ * @memberof PlateSolveParameters
167
+ */
168
+ 'gain': number;
169
+ }
139
170
  /**
140
171
  *
141
172
  * @export
@@ -260,6 +291,25 @@ export interface V1Camera {
260
291
  */
261
292
  'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
262
293
  }
294
+ /**
295
+ *
296
+ * @export
297
+ * @interface V1ClientToken
298
+ */
299
+ export interface V1ClientToken {
300
+ /**
301
+ * Mapbox token
302
+ * @type {string}
303
+ * @memberof V1ClientToken
304
+ */
305
+ 'mapboxToken': string;
306
+ /**
307
+ * Cesium token
308
+ * @type {string}
309
+ * @memberof V1ClientToken
310
+ */
311
+ 'cesiumToken': string;
312
+ }
263
313
  /**
264
314
  *
265
315
  * @export
@@ -478,31 +528,6 @@ export interface V1CreateNodeRequest {
478
528
  */
479
529
  'location': Location;
480
530
  }
481
- /**
482
- *
483
- * @export
484
- * @interface V1CreateObservationInstructionRequest
485
- */
486
- export interface V1CreateObservationInstructionRequest {
487
- /**
488
- *
489
- * @type {string}
490
- * @memberof V1CreateObservationInstructionRequest
491
- */
492
- 'nodeId': string;
493
- /**
494
- *
495
- * @type {string}
496
- * @memberof V1CreateObservationInstructionRequest
497
- */
498
- 'targetId': string;
499
- /**
500
- *
501
- * @type {TrackingType}
502
- * @memberof V1CreateObservationInstructionRequest
503
- */
504
- 'trackingType': TrackingType;
505
- }
506
531
  /**
507
532
  *
508
533
  * @export
@@ -634,6 +659,18 @@ export interface V1GetInstructionRequest {
634
659
  * @memberof V1GetInstructionRequest
635
660
  */
636
661
  'supportedDiagnostics': Array<V1NodeDiagnosticType>;
662
+ /**
663
+ *
664
+ * @type {number}
665
+ * @memberof V1GetInstructionRequest
666
+ */
667
+ 'altitude'?: number;
668
+ /**
669
+ *
670
+ * @type {number}
671
+ * @memberof V1GetInstructionRequest
672
+ */
673
+ 'azimuth'?: number;
637
674
  }
638
675
  /**
639
676
  *
@@ -1165,7 +1202,7 @@ export interface V1Instruction {
1165
1202
  */
1166
1203
  'diagnostic'?: V1DiagnosticInstruction;
1167
1204
  /**
1168
- * Search Instruction
1205
+ *
1169
1206
  * @type {Array<V1ObservationInstruction>}
1170
1207
  * @memberof V1Instruction
1171
1208
  */
@@ -1287,6 +1324,12 @@ export interface V1Node {
1287
1324
  * @memberof V1Node
1288
1325
  */
1289
1326
  'elevationMask'?: Array<V1ElevationMaskPoint>;
1327
+ /**
1328
+ *
1329
+ * @type {V1SlewTiming}
1330
+ * @memberof V1Node
1331
+ */
1332
+ 'slewTiming'?: V1SlewTiming;
1290
1333
  /**
1291
1334
  *
1292
1335
  * @type {string}
@@ -1333,6 +1376,7 @@ export declare const V1NodeDiagnosticType: {
1333
1376
  readonly SLEW_SPEED_DEGREES_PER_SECOND: "SLEW_SPEED_DEGREES_PER_SECOND";
1334
1377
  readonly CENTERING_TIME_MS: "CENTERING_TIME_MS";
1335
1378
  readonly POINTING_ERROR_DEGREES: "POINTING_ERROR_DEGREES";
1379
+ readonly SLEW_TIMING_CHECKED: "SLEW_TIMING_CHECKED";
1336
1380
  readonly CAMERA_CHECKED: "CAMERA_CHECKED";
1337
1381
  readonly CAMERA_HAS_GPS: "CAMERA_HAS_GPS";
1338
1382
  readonly MOUNT_CHECKED: "MOUNT_CHECKED";
@@ -1422,13 +1466,13 @@ export interface V1ObservationInstruction {
1422
1466
  */
1423
1467
  'gainMode': number;
1424
1468
  /**
1425
- *
1469
+ * Represents the Right Ascension of the target at captureStart when `trackingType` is equal to `SIDEREAL`. When `trackingType` is equal to `TARGET_RATE`, however this is an offset from the RA and is better represented by the `tleOffsetRa` value.
1426
1470
  * @type {number}
1427
1471
  * @memberof V1ObservationInstruction
1428
1472
  */
1429
1473
  'ra': number;
1430
1474
  /**
1431
- *
1475
+ * Represents the Declination of the target at captureStart when `trackingType` is equal to `SIDEREAL`. When `trackingType` is equal to `TARGET_RATE`, however this is an offset from the Dec and is better represented by the `tleOffsetDec` value.
1432
1476
  * @type {number}
1433
1477
  * @memberof V1ObservationInstruction
1434
1478
  */
@@ -1487,6 +1531,12 @@ export interface V1ObservationInstruction {
1487
1531
  * @memberof V1ObservationInstruction
1488
1532
  */
1489
1533
  'tleOffsetRa'?: number;
1534
+ /**
1535
+ *
1536
+ * @type {PlateSolveParameters}
1537
+ * @memberof V1ObservationInstruction
1538
+ */
1539
+ 'plateSolveParameters'?: PlateSolveParameters;
1490
1540
  }
1491
1541
  /**
1492
1542
  * Optical Tube
@@ -1557,6 +1607,50 @@ export interface V1SetupAction {
1557
1607
  */
1558
1608
  'arguments'?: Array<string>;
1559
1609
  }
1610
+ /**
1611
+ * Slew Timing
1612
+ * @export
1613
+ * @interface V1SlewTiming
1614
+ */
1615
+ export interface V1SlewTiming {
1616
+ /**
1617
+ *
1618
+ * @type {Array<V1SlewTimingInterval>}
1619
+ * @memberof V1SlewTiming
1620
+ */
1621
+ 'azimuth': Array<V1SlewTimingInterval>;
1622
+ /**
1623
+ *
1624
+ * @type {Array<V1SlewTimingInterval>}
1625
+ * @memberof V1SlewTiming
1626
+ */
1627
+ 'altitude': Array<V1SlewTimingInterval>;
1628
+ }
1629
+ /**
1630
+ * Slew Timing Interval
1631
+ * @export
1632
+ * @interface V1SlewTimingInterval
1633
+ */
1634
+ export interface V1SlewTimingInterval {
1635
+ /**
1636
+ *
1637
+ * @type {number}
1638
+ * @memberof V1SlewTimingInterval
1639
+ */
1640
+ 'startDegree': number;
1641
+ /**
1642
+ *
1643
+ * @type {number}
1644
+ * @memberof V1SlewTimingInterval
1645
+ */
1646
+ 'endDegree': number;
1647
+ /**
1648
+ *
1649
+ * @type {number}
1650
+ * @memberof V1SlewTimingInterval
1651
+ */
1652
+ 'durationMs': number;
1653
+ }
1560
1654
  /**
1561
1655
  *
1562
1656
  * @export
@@ -1777,79 +1871,6 @@ export interface V1UpdateNodeComponentsRequestOpticalTube {
1777
1871
  */
1778
1872
  'type'?: OpticalTubeType;
1779
1873
  }
1780
- /**
1781
- *
1782
- * @export
1783
- * @interface V1UpdateNodeMetricsRequest
1784
- */
1785
- export interface V1UpdateNodeMetricsRequest {
1786
- /**
1787
- *
1788
- * @type {string}
1789
- * @memberof V1UpdateNodeMetricsRequest
1790
- */
1791
- 'nodeId': string;
1792
- /**
1793
- *
1794
- * @type {number}
1795
- * @memberof V1UpdateNodeMetricsRequest
1796
- */
1797
- 'availableDiskBytes': number;
1798
- /**
1799
- *
1800
- * @type {number}
1801
- * @memberof V1UpdateNodeMetricsRequest
1802
- */
1803
- 'availableMemoryBytes': number;
1804
- /**
1805
- *
1806
- * @type {number}
1807
- * @memberof V1UpdateNodeMetricsRequest
1808
- */
1809
- 'ntpTimeDriftMs': number;
1810
- /**
1811
- *
1812
- * @type {number}
1813
- * @memberof V1UpdateNodeMetricsRequest
1814
- */
1815
- 'minSlewSpeedMs'?: number;
1816
- /**
1817
- *
1818
- * @type {number}
1819
- * @memberof V1UpdateNodeMetricsRequest
1820
- */
1821
- 'maxSlewSpeedMs'?: number;
1822
- /**
1823
- *
1824
- * @type {number}
1825
- * @memberof V1UpdateNodeMetricsRequest
1826
- */
1827
- 'minSlewAndCenterSpeedMs'?: number;
1828
- /**
1829
- *
1830
- * @type {number}
1831
- * @memberof V1UpdateNodeMetricsRequest
1832
- */
1833
- 'maxSlewAndCenterSpeedMs'?: number;
1834
- /**
1835
- *
1836
- * @type {number}
1837
- * @memberof V1UpdateNodeMetricsRequest
1838
- */
1839
- 'minSlewAccuracyArcseconds'?: number;
1840
- /**
1841
- *
1842
- * @type {number}
1843
- * @memberof V1UpdateNodeMetricsRequest
1844
- */
1845
- 'maxSlewAccuracyArcseconds'?: number;
1846
- /**
1847
- *
1848
- * @type {string}
1849
- * @memberof V1UpdateNodeMetricsRequest
1850
- */
1851
- 'measuredAt': string;
1852
- }
1853
1874
  /**
1854
1875
  * Update Node
1855
1876
  * @export
@@ -1910,6 +1931,12 @@ export interface V1UpdateNodeRequest {
1910
1931
  * @memberof V1UpdateNodeRequest
1911
1932
  */
1912
1933
  'elevationMask'?: Array<V1ElevationMaskPoint>;
1934
+ /**
1935
+ *
1936
+ * @type {V1SlewTiming}
1937
+ * @memberof V1UpdateNodeRequest
1938
+ */
1939
+ 'slewTiming'?: V1SlewTiming;
1913
1940
  /**
1914
1941
  *
1915
1942
  * @type {Location}
@@ -1979,120 +2006,17 @@ export interface V2CompleteObservationRequest {
1979
2006
  */
1980
2007
  'expectedImageCount': number;
1981
2008
  }
1982
- /**
1983
- *
1984
- * @export
1985
- * @interface V2GetObservationResponse
1986
- */
1987
- export interface V2GetObservationResponse {
1988
- /**
1989
- *
1990
- * @type {string}
1991
- * @memberof V2GetObservationResponse
1992
- */
1993
- 'id': string;
1994
- /**
1995
- *
1996
- * @type {string}
1997
- * @memberof V2GetObservationResponse
1998
- */
1999
- 'imageSetId': string;
2000
- /**
2001
- *
2002
- * @type {string}
2003
- * @memberof V2GetObservationResponse
2004
- */
2005
- 'targetId': string;
2006
- /**
2007
- *
2008
- * @type {TrackingType}
2009
- * @memberof V2GetObservationResponse
2010
- */
2011
- 'trackingType': TrackingType;
2012
- /**
2013
- *
2014
- * @type {number}
2015
- * @memberof V2GetObservationResponse
2016
- */
2017
- 'exposureDuration': number;
2018
- /**
2019
- *
2020
- * @type {number}
2021
- * @memberof V2GetObservationResponse
2022
- */
2023
- 'binning': number;
2024
- /**
2025
- *
2026
- * @type {number}
2027
- * @memberof V2GetObservationResponse
2028
- */
2029
- 'gain': number;
2030
- /**
2031
- *
2032
- * @type {number}
2033
- * @memberof V2GetObservationResponse
2034
- */
2035
- 'gainMode': number;
2036
- /**
2037
- *
2038
- * @type {number}
2039
- * @memberof V2GetObservationResponse
2040
- */
2041
- 'ra': number;
2042
- /**
2043
- *
2044
- * @type {number}
2045
- * @memberof V2GetObservationResponse
2046
- */
2047
- 'dec': number;
2048
- /**
2049
- *
2050
- * @type {string}
2051
- * @memberof V2GetObservationResponse
2052
- */
2053
- 'captureStart': string;
2054
- /**
2055
- *
2056
- * @type {string}
2057
- * @memberof V2GetObservationResponse
2058
- */
2059
- 'captureEnd': string;
2060
- /**
2061
- *
2062
- * @type {number}
2063
- * @memberof V2GetObservationResponse
2064
- */
2065
- 'preCaptureWait': number;
2066
- /**
2067
- *
2068
- * @type {string}
2069
- * @memberof V2GetObservationResponse
2070
- */
2071
- 'startSlewAt': string;
2072
- /**
2073
- *
2074
- * @type {CameraMode}
2075
- * @memberof V2GetObservationResponse
2076
- */
2077
- 'cameraMode': CameraMode;
2078
- /**
2079
- *
2080
- * @type {string}
2081
- * @memberof V2GetObservationResponse
2082
- */
2083
- 'tleLine1': string;
2084
- /**
2085
- *
2086
- * @type {string}
2087
- * @memberof V2GetObservationResponse
2088
- */
2089
- 'tleLine2': string;
2090
- }
2091
2009
  /**
2092
2010
  * DefaultApi - axios parameter creator
2093
2011
  * @export
2094
2012
  */
2095
2013
  export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
2014
+ /**
2015
+ * Get the various tokens used in client applications
2016
+ * @param {*} [options] Override http request option.
2017
+ * @throws {RequiredError}
2018
+ */
2019
+ getClientToken: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
2096
2020
  /**
2097
2021
  * Match camera.
2098
2022
  * @param {string} [model]
@@ -2156,13 +2080,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2156
2080
  * @throws {RequiredError}
2157
2081
  */
2158
2082
  v1CreateNodeDiagnostics: (v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2159
- /**
2160
- * Create an observation instruction.
2161
- * @param {V1CreateObservationInstructionRequest} v1CreateObservationInstructionRequest
2162
- * @param {*} [options] Override http request option.
2163
- * @throws {RequiredError}
2164
- */
2165
- v1CreateObservationInstruction: (v1CreateObservationInstructionRequest: V1CreateObservationInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2166
2083
  /**
2167
2084
  * Create an optical tube.
2168
2085
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -2297,13 +2214,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2297
2214
  * @throws {RequiredError}
2298
2215
  */
2299
2216
  v1UpdateNodeComponents: (v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2300
- /**
2301
- * Update node metrics.
2302
- * @param {V1UpdateNodeMetricsRequest} v1UpdateNodeMetricsRequest
2303
- * @param {*} [options] Override http request option.
2304
- * @throws {RequiredError}
2305
- */
2306
- v1UpdateNodeMetrics: (v1UpdateNodeMetricsRequest: V1UpdateNodeMetricsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2307
2217
  /**
2308
2218
  * Complete an observation utilizing the async pipeline.
2309
2219
  * @param {V2CompleteObservationRequest} v2CompleteObservationRequest
@@ -2311,19 +2221,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2311
2221
  * @throws {RequiredError}
2312
2222
  */
2313
2223
  v2CompleteObservation: (v2CompleteObservationRequest: V2CompleteObservationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2314
- /**
2315
- * Get next observation.
2316
- * @param {string} nodeId
2317
- * @param {*} [options] Override http request option.
2318
- * @throws {RequiredError}
2319
- */
2320
- v2GetObservation: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2321
2224
  };
2322
2225
  /**
2323
2226
  * DefaultApi - functional programming interface
2324
2227
  * @export
2325
2228
  */
2326
2229
  export declare const DefaultApiFp: (configuration?: Configuration) => {
2230
+ /**
2231
+ * Get the various tokens used in client applications
2232
+ * @param {*} [options] Override http request option.
2233
+ * @throws {RequiredError}
2234
+ */
2235
+ getClientToken(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1ClientToken>>;
2327
2236
  /**
2328
2237
  * Match camera.
2329
2238
  * @param {string} [model]
@@ -2387,13 +2296,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2387
2296
  * @throws {RequiredError}
2388
2297
  */
2389
2298
  v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2390
- /**
2391
- * Create an observation instruction.
2392
- * @param {V1CreateObservationInstructionRequest} v1CreateObservationInstructionRequest
2393
- * @param {*} [options] Override http request option.
2394
- * @throws {RequiredError}
2395
- */
2396
- v1CreateObservationInstruction(v1CreateObservationInstructionRequest: V1CreateObservationInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2397
2299
  /**
2398
2300
  * Create an optical tube.
2399
2301
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -2528,13 +2430,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2528
2430
  * @throws {RequiredError}
2529
2431
  */
2530
2432
  v1UpdateNodeComponents(v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
2531
- /**
2532
- * Update node metrics.
2533
- * @param {V1UpdateNodeMetricsRequest} v1UpdateNodeMetricsRequest
2534
- * @param {*} [options] Override http request option.
2535
- * @throws {RequiredError}
2536
- */
2537
- v1UpdateNodeMetrics(v1UpdateNodeMetricsRequest: V1UpdateNodeMetricsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2538
2433
  /**
2539
2434
  * Complete an observation utilizing the async pipeline.
2540
2435
  * @param {V2CompleteObservationRequest} v2CompleteObservationRequest
@@ -2542,19 +2437,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2542
2437
  * @throws {RequiredError}
2543
2438
  */
2544
2439
  v2CompleteObservation(v2CompleteObservationRequest: V2CompleteObservationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2545
- /**
2546
- * Get next observation.
2547
- * @param {string} nodeId
2548
- * @param {*} [options] Override http request option.
2549
- * @throws {RequiredError}
2550
- */
2551
- v2GetObservation(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2GetObservationResponse>>;
2552
2440
  };
2553
2441
  /**
2554
2442
  * DefaultApi - factory interface
2555
2443
  * @export
2556
2444
  */
2557
2445
  export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2446
+ /**
2447
+ * Get the various tokens used in client applications
2448
+ * @param {*} [options] Override http request option.
2449
+ * @throws {RequiredError}
2450
+ */
2451
+ getClientToken(options?: AxiosRequestConfig): AxiosPromise<V1ClientToken>;
2558
2452
  /**
2559
2453
  * Match camera.
2560
2454
  * @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
@@ -2611,13 +2505,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2611
2505
  * @throws {RequiredError}
2612
2506
  */
2613
2507
  v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
2614
- /**
2615
- * Create an observation instruction.
2616
- * @param {DefaultApiV1CreateObservationInstructionRequest} requestParameters Request parameters.
2617
- * @param {*} [options] Override http request option.
2618
- * @throws {RequiredError}
2619
- */
2620
- v1CreateObservationInstruction(requestParameters: DefaultApiV1CreateObservationInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2621
2508
  /**
2622
2509
  * Create an optical tube.
2623
2510
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -2749,13 +2636,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2749
2636
  * @throws {RequiredError}
2750
2637
  */
2751
2638
  v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
2752
- /**
2753
- * Update node metrics.
2754
- * @param {DefaultApiV1UpdateNodeMetricsRequest} requestParameters Request parameters.
2755
- * @param {*} [options] Override http request option.
2756
- * @throws {RequiredError}
2757
- */
2758
- v1UpdateNodeMetrics(requestParameters: DefaultApiV1UpdateNodeMetricsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
2759
2639
  /**
2760
2640
  * Complete an observation utilizing the async pipeline.
2761
2641
  * @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
@@ -2763,13 +2643,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2763
2643
  * @throws {RequiredError}
2764
2644
  */
2765
2645
  v2CompleteObservation(requestParameters: DefaultApiV2CompleteObservationRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
2766
- /**
2767
- * Get next observation.
2768
- * @param {DefaultApiV2GetObservationRequest} requestParameters Request parameters.
2769
- * @param {*} [options] Override http request option.
2770
- * @throws {RequiredError}
2771
- */
2772
- v2GetObservation(requestParameters: DefaultApiV2GetObservationRequest, options?: AxiosRequestConfig): AxiosPromise<V2GetObservationResponse>;
2773
2646
  };
2774
2647
  /**
2775
2648
  * Request parameters for v1CameraMatch operation in DefaultApi.
@@ -2917,19 +2790,6 @@ export interface DefaultApiV1CreateNodeDiagnosticsRequest {
2917
2790
  */
2918
2791
  readonly v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest;
2919
2792
  }
2920
- /**
2921
- * Request parameters for v1CreateObservationInstruction operation in DefaultApi.
2922
- * @export
2923
- * @interface DefaultApiV1CreateObservationInstructionRequest
2924
- */
2925
- export interface DefaultApiV1CreateObservationInstructionRequest {
2926
- /**
2927
- *
2928
- * @type {V1CreateObservationInstructionRequest}
2929
- * @memberof DefaultApiV1CreateObservationInstruction
2930
- */
2931
- readonly v1CreateObservationInstructionRequest: V1CreateObservationInstructionRequest;
2932
- }
2933
2793
  /**
2934
2794
  * Request parameters for v1CreateOpticalTube operation in DefaultApi.
2935
2795
  * @export
@@ -3169,19 +3029,6 @@ export interface DefaultApiV1UpdateNodeComponentsRequest {
3169
3029
  */
3170
3030
  readonly v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest;
3171
3031
  }
3172
- /**
3173
- * Request parameters for v1UpdateNodeMetrics operation in DefaultApi.
3174
- * @export
3175
- * @interface DefaultApiV1UpdateNodeMetricsRequest
3176
- */
3177
- export interface DefaultApiV1UpdateNodeMetricsRequest {
3178
- /**
3179
- *
3180
- * @type {V1UpdateNodeMetricsRequest}
3181
- * @memberof DefaultApiV1UpdateNodeMetrics
3182
- */
3183
- readonly v1UpdateNodeMetricsRequest: V1UpdateNodeMetricsRequest;
3184
- }
3185
3032
  /**
3186
3033
  * Request parameters for v2CompleteObservation operation in DefaultApi.
3187
3034
  * @export
@@ -3195,19 +3042,6 @@ export interface DefaultApiV2CompleteObservationRequest {
3195
3042
  */
3196
3043
  readonly v2CompleteObservationRequest: V2CompleteObservationRequest;
3197
3044
  }
3198
- /**
3199
- * Request parameters for v2GetObservation operation in DefaultApi.
3200
- * @export
3201
- * @interface DefaultApiV2GetObservationRequest
3202
- */
3203
- export interface DefaultApiV2GetObservationRequest {
3204
- /**
3205
- *
3206
- * @type {string}
3207
- * @memberof DefaultApiV2GetObservation
3208
- */
3209
- readonly nodeId: string;
3210
- }
3211
3045
  /**
3212
3046
  * DefaultApi - object-oriented interface
3213
3047
  * @export
@@ -3215,6 +3049,13 @@ export interface DefaultApiV2GetObservationRequest {
3215
3049
  * @extends {BaseAPI}
3216
3050
  */
3217
3051
  export declare class DefaultApi extends BaseAPI {
3052
+ /**
3053
+ * Get the various tokens used in client applications
3054
+ * @param {*} [options] Override http request option.
3055
+ * @throws {RequiredError}
3056
+ * @memberof DefaultApi
3057
+ */
3058
+ getClientToken(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ClientToken, any>>;
3218
3059
  /**
3219
3060
  * Match camera.
3220
3061
  * @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
@@ -3279,14 +3120,6 @@ export declare class DefaultApi extends BaseAPI {
3279
3120
  * @memberof DefaultApi
3280
3121
  */
3281
3122
  v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
3282
- /**
3283
- * Create an observation instruction.
3284
- * @param {DefaultApiV1CreateObservationInstructionRequest} requestParameters Request parameters.
3285
- * @param {*} [options] Override http request option.
3286
- * @throws {RequiredError}
3287
- * @memberof DefaultApi
3288
- */
3289
- v1CreateObservationInstruction(requestParameters: DefaultApiV1CreateObservationInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
3290
3123
  /**
3291
3124
  * Create an optical tube.
3292
3125
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -3437,14 +3270,6 @@ export declare class DefaultApi extends BaseAPI {
3437
3270
  * @memberof DefaultApi
3438
3271
  */
3439
3272
  v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
3440
- /**
3441
- * Update node metrics.
3442
- * @param {DefaultApiV1UpdateNodeMetricsRequest} requestParameters Request parameters.
3443
- * @param {*} [options] Override http request option.
3444
- * @throws {RequiredError}
3445
- * @memberof DefaultApi
3446
- */
3447
- v1UpdateNodeMetrics(requestParameters: DefaultApiV1UpdateNodeMetricsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
3448
3273
  /**
3449
3274
  * Complete an observation utilizing the async pipeline.
3450
3275
  * @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
@@ -3453,12 +3278,4 @@ export declare class DefaultApi extends BaseAPI {
3453
3278
  * @memberof DefaultApi
3454
3279
  */
3455
3280
  v2CompleteObservation(requestParameters: DefaultApiV2CompleteObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
3456
- /**
3457
- * Get next observation.
3458
- * @param {DefaultApiV2GetObservationRequest} requestParameters Request parameters.
3459
- * @param {*} [options] Override http request option.
3460
- * @throws {RequiredError}
3461
- * @memberof DefaultApi
3462
- */
3463
- v2GetObservation(requestParameters: DefaultApiV2GetObservationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V2GetObservationResponse, any>>;
3464
3281
  }