@ourskyai/platform-api 1.3.4692 → 1.3.4784
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 +268 -117
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +187 -72
- package/dist/api.js +133 -75
- 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 +187 -72
- package/dist/esm/api.js +133 -75
- 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.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -794,19 +794,6 @@ export interface V1GainCurvePoint {
|
|
|
794
794
|
*/
|
|
795
795
|
'eADU': number;
|
|
796
796
|
}
|
|
797
|
-
/**
|
|
798
|
-
*
|
|
799
|
-
* @export
|
|
800
|
-
* @interface V1GetEmbeddedQueryUrlResponse
|
|
801
|
-
*/
|
|
802
|
-
export interface V1GetEmbeddedQueryUrlResponse {
|
|
803
|
-
/**
|
|
804
|
-
*
|
|
805
|
-
* @type {string}
|
|
806
|
-
* @memberof V1GetEmbeddedQueryUrlResponse
|
|
807
|
-
*/
|
|
808
|
-
'url'?: string;
|
|
809
|
-
}
|
|
810
797
|
/**
|
|
811
798
|
*
|
|
812
799
|
* @export
|
|
@@ -1436,6 +1423,56 @@ export interface V1Instruction {
|
|
|
1436
1423
|
*/
|
|
1437
1424
|
'autofocus'?: V1AutoFocusInstruction;
|
|
1438
1425
|
}
|
|
1426
|
+
/**
|
|
1427
|
+
*
|
|
1428
|
+
* @export
|
|
1429
|
+
* @interface V1LastInstructionResponse
|
|
1430
|
+
*/
|
|
1431
|
+
export interface V1LastInstructionResponse {
|
|
1432
|
+
/**
|
|
1433
|
+
*
|
|
1434
|
+
* @type {string}
|
|
1435
|
+
* @memberof V1LastInstructionResponse
|
|
1436
|
+
*/
|
|
1437
|
+
'id'?: string;
|
|
1438
|
+
/**
|
|
1439
|
+
*
|
|
1440
|
+
* @type {string}
|
|
1441
|
+
* @memberof V1LastInstructionResponse
|
|
1442
|
+
*/
|
|
1443
|
+
'receivedAt'?: string;
|
|
1444
|
+
/**
|
|
1445
|
+
*
|
|
1446
|
+
* @type {TrackingType}
|
|
1447
|
+
* @memberof V1LastInstructionResponse
|
|
1448
|
+
*/
|
|
1449
|
+
'trackingType'?: TrackingType;
|
|
1450
|
+
}
|
|
1451
|
+
/**
|
|
1452
|
+
*
|
|
1453
|
+
* @export
|
|
1454
|
+
* @interface V1LatestHfrResponse
|
|
1455
|
+
*/
|
|
1456
|
+
export interface V1LatestHfrResponse {
|
|
1457
|
+
/**
|
|
1458
|
+
*
|
|
1459
|
+
* @type {string}
|
|
1460
|
+
* @memberof V1LatestHfrResponse
|
|
1461
|
+
*/
|
|
1462
|
+
'nodeId'?: string;
|
|
1463
|
+
/**
|
|
1464
|
+
*
|
|
1465
|
+
* @type {string}
|
|
1466
|
+
* @memberof V1LatestHfrResponse
|
|
1467
|
+
*/
|
|
1468
|
+
'hfrValues'?: string;
|
|
1469
|
+
/**
|
|
1470
|
+
*
|
|
1471
|
+
* @type {string}
|
|
1472
|
+
* @memberof V1LatestHfrResponse
|
|
1473
|
+
*/
|
|
1474
|
+
'timestamp'?: string;
|
|
1475
|
+
}
|
|
1439
1476
|
/**
|
|
1440
1477
|
*
|
|
1441
1478
|
* @export
|
|
@@ -1605,6 +1642,7 @@ export declare const V1NodeComponentType: {
|
|
|
1605
1642
|
readonly MOUNT: "MOUNT";
|
|
1606
1643
|
readonly OPTICAL_TUBE: "OPTICAL_TUBE";
|
|
1607
1644
|
readonly COMPUTER: "COMPUTER";
|
|
1645
|
+
readonly SAFETY_MONITOR: "SAFETY_MONITOR";
|
|
1608
1646
|
readonly NODE: "NODE";
|
|
1609
1647
|
};
|
|
1610
1648
|
export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
|
|
@@ -1646,6 +1684,8 @@ export declare const V1NodeDiagnosticType: {
|
|
|
1646
1684
|
readonly CPU_USAGE_LAST_MINUTE_PCT: "CPU_USAGE_LAST_MINUTE_PCT";
|
|
1647
1685
|
readonly FOCUS_HFR_VALUES: "FOCUS_HFR_VALUES";
|
|
1648
1686
|
readonly HAS_FOCUSER: "HAS_FOCUSER";
|
|
1687
|
+
readonly HAS_SAFETY_MONITOR: "HAS_SAFETY_MONITOR";
|
|
1688
|
+
readonly SAFETY_STATUS: "SAFETY_STATUS";
|
|
1649
1689
|
readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
|
|
1650
1690
|
readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
|
|
1651
1691
|
readonly MOUNT_MODEL_CHECKED: "MOUNT_MODEL_CHECKED";
|
|
@@ -1929,6 +1969,49 @@ export interface V1ObservationInstructionSatellitePassEphemerisInner {
|
|
|
1929
1969
|
*/
|
|
1930
1970
|
'elevation'?: number;
|
|
1931
1971
|
}
|
|
1972
|
+
/**
|
|
1973
|
+
*
|
|
1974
|
+
* @export
|
|
1975
|
+
* @interface V1ObservationMetrics
|
|
1976
|
+
*/
|
|
1977
|
+
export interface V1ObservationMetrics {
|
|
1978
|
+
/**
|
|
1979
|
+
*
|
|
1980
|
+
* @type {number}
|
|
1981
|
+
* @memberof V1ObservationMetrics
|
|
1982
|
+
*/
|
|
1983
|
+
'waitingForSlewMountMs': number;
|
|
1984
|
+
/**
|
|
1985
|
+
*
|
|
1986
|
+
* @type {number}
|
|
1987
|
+
* @memberof V1ObservationMetrics
|
|
1988
|
+
*/
|
|
1989
|
+
'slewMountMs': number;
|
|
1990
|
+
/**
|
|
1991
|
+
*
|
|
1992
|
+
* @type {number}
|
|
1993
|
+
* @memberof V1ObservationMetrics
|
|
1994
|
+
*/
|
|
1995
|
+
'centerMountMs': number;
|
|
1996
|
+
/**
|
|
1997
|
+
*
|
|
1998
|
+
* @type {number}
|
|
1999
|
+
* @memberof V1ObservationMetrics
|
|
2000
|
+
*/
|
|
2001
|
+
'waitingForCaptureImagesMs': number;
|
|
2002
|
+
/**
|
|
2003
|
+
*
|
|
2004
|
+
* @type {number}
|
|
2005
|
+
* @memberof V1ObservationMetrics
|
|
2006
|
+
*/
|
|
2007
|
+
'missedCaptureImagesMs': number;
|
|
2008
|
+
/**
|
|
2009
|
+
*
|
|
2010
|
+
* @type {number}
|
|
2011
|
+
* @memberof V1ObservationMetrics
|
|
2012
|
+
*/
|
|
2013
|
+
'captureImagesMs': number;
|
|
2014
|
+
}
|
|
1932
2015
|
/**
|
|
1933
2016
|
* Optical Tube
|
|
1934
2017
|
* @export
|
|
@@ -2520,6 +2603,12 @@ export interface V2CompleteObservationRequest {
|
|
|
2520
2603
|
* @memberof V2CompleteObservationRequest
|
|
2521
2604
|
*/
|
|
2522
2605
|
'expectedImageCount': number;
|
|
2606
|
+
/**
|
|
2607
|
+
*
|
|
2608
|
+
* @type {V1ObservationMetrics}
|
|
2609
|
+
* @memberof V2CompleteObservationRequest
|
|
2610
|
+
*/
|
|
2611
|
+
'metrics'?: V1ObservationMetrics;
|
|
2523
2612
|
}
|
|
2524
2613
|
/**
|
|
2525
2614
|
* DefaultApi - axios parameter creator
|
|
@@ -2636,15 +2725,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2636
2725
|
* @throws {RequiredError}
|
|
2637
2726
|
*/
|
|
2638
2727
|
v1GetCameras: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2639
|
-
/**
|
|
2640
|
-
* Create an embedding URL for a dashboard or question
|
|
2641
|
-
* @param {string} questionType
|
|
2642
|
-
* @param {string} [nodeId]
|
|
2643
|
-
* @param {number} [lookbackDays]
|
|
2644
|
-
* @param {*} [options] Override http request option.
|
|
2645
|
-
* @throws {RequiredError}
|
|
2646
|
-
*/
|
|
2647
|
-
v1GetEmbeddedQueryUrl: (questionType: string, nodeId?: string, lookbackDays?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2648
2728
|
/**
|
|
2649
2729
|
* Get an image set.
|
|
2650
2730
|
* @param {string} id
|
|
@@ -2666,6 +2746,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2666
2746
|
* @throws {RequiredError}
|
|
2667
2747
|
*/
|
|
2668
2748
|
v1GetInstruction: (v1GetInstructionRequest: V1GetInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2749
|
+
/**
|
|
2750
|
+
* Get the last instruction time and type for a specific node.
|
|
2751
|
+
* @param {string} nodeId
|
|
2752
|
+
* @param {*} [options] Override http request option.
|
|
2753
|
+
* @throws {RequiredError}
|
|
2754
|
+
*/
|
|
2755
|
+
v1GetLastInstructionByNodeId: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2756
|
+
/**
|
|
2757
|
+
* Get the latest HFR value for a specific node by its ID
|
|
2758
|
+
* @param {string} nodeId
|
|
2759
|
+
* @param {*} [options] Override http request option.
|
|
2760
|
+
* @throws {RequiredError}
|
|
2761
|
+
*/
|
|
2762
|
+
v1GetLatestHfr: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2669
2763
|
/**
|
|
2670
2764
|
* Get a mount.
|
|
2671
2765
|
* @param {string} id
|
|
@@ -2896,15 +2990,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2896
2990
|
* @throws {RequiredError}
|
|
2897
2991
|
*/
|
|
2898
2992
|
v1GetCameras(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
|
|
2899
|
-
/**
|
|
2900
|
-
* Create an embedding URL for a dashboard or question
|
|
2901
|
-
* @param {string} questionType
|
|
2902
|
-
* @param {string} [nodeId]
|
|
2903
|
-
* @param {number} [lookbackDays]
|
|
2904
|
-
* @param {*} [options] Override http request option.
|
|
2905
|
-
* @throws {RequiredError}
|
|
2906
|
-
*/
|
|
2907
|
-
v1GetEmbeddedQueryUrl(questionType: string, nodeId?: string, lookbackDays?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetEmbeddedQueryUrlResponse>>;
|
|
2908
2993
|
/**
|
|
2909
2994
|
* Get an image set.
|
|
2910
2995
|
* @param {string} id
|
|
@@ -2926,6 +3011,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2926
3011
|
* @throws {RequiredError}
|
|
2927
3012
|
*/
|
|
2928
3013
|
v1GetInstruction(v1GetInstructionRequest: V1GetInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Instruction>>;
|
|
3014
|
+
/**
|
|
3015
|
+
* Get the last instruction time and type for a specific node.
|
|
3016
|
+
* @param {string} nodeId
|
|
3017
|
+
* @param {*} [options] Override http request option.
|
|
3018
|
+
* @throws {RequiredError}
|
|
3019
|
+
*/
|
|
3020
|
+
v1GetLastInstructionByNodeId(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1LastInstructionResponse>>;
|
|
3021
|
+
/**
|
|
3022
|
+
* Get the latest HFR value for a specific node by its ID
|
|
3023
|
+
* @param {string} nodeId
|
|
3024
|
+
* @param {*} [options] Override http request option.
|
|
3025
|
+
* @throws {RequiredError}
|
|
3026
|
+
*/
|
|
3027
|
+
v1GetLatestHfr(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1LatestHfrResponse>>;
|
|
2929
3028
|
/**
|
|
2930
3029
|
* Get a mount.
|
|
2931
3030
|
* @param {string} id
|
|
@@ -3149,13 +3248,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3149
3248
|
* @throws {RequiredError}
|
|
3150
3249
|
*/
|
|
3151
3250
|
v1GetCameras(options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
|
|
3152
|
-
/**
|
|
3153
|
-
* Create an embedding URL for a dashboard or question
|
|
3154
|
-
* @param {DefaultApiV1GetEmbeddedQueryUrlRequest} requestParameters Request parameters.
|
|
3155
|
-
* @param {*} [options] Override http request option.
|
|
3156
|
-
* @throws {RequiredError}
|
|
3157
|
-
*/
|
|
3158
|
-
v1GetEmbeddedQueryUrl(requestParameters: DefaultApiV1GetEmbeddedQueryUrlRequest, options?: AxiosRequestConfig): AxiosPromise<V1GetEmbeddedQueryUrlResponse>;
|
|
3159
3251
|
/**
|
|
3160
3252
|
* Get an image set.
|
|
3161
3253
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -3177,6 +3269,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3177
3269
|
* @throws {RequiredError}
|
|
3178
3270
|
*/
|
|
3179
3271
|
v1GetInstruction(requestParameters: DefaultApiV1GetInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<V1Instruction>;
|
|
3272
|
+
/**
|
|
3273
|
+
* Get the last instruction time and type for a specific node.
|
|
3274
|
+
* @param {DefaultApiV1GetLastInstructionByNodeIdRequest} requestParameters Request parameters.
|
|
3275
|
+
* @param {*} [options] Override http request option.
|
|
3276
|
+
* @throws {RequiredError}
|
|
3277
|
+
*/
|
|
3278
|
+
v1GetLastInstructionByNodeId(requestParameters: DefaultApiV1GetLastInstructionByNodeIdRequest, options?: AxiosRequestConfig): AxiosPromise<V1LastInstructionResponse>;
|
|
3279
|
+
/**
|
|
3280
|
+
* Get the latest HFR value for a specific node by its ID
|
|
3281
|
+
* @param {DefaultApiV1GetLatestHfrRequest} requestParameters Request parameters.
|
|
3282
|
+
* @param {*} [options] Override http request option.
|
|
3283
|
+
* @throws {RequiredError}
|
|
3284
|
+
*/
|
|
3285
|
+
v1GetLatestHfr(requestParameters: DefaultApiV1GetLatestHfrRequest, options?: AxiosRequestConfig): AxiosPromise<V1LatestHfrResponse>;
|
|
3180
3286
|
/**
|
|
3181
3287
|
* Get a mount.
|
|
3182
3288
|
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|
|
@@ -3500,31 +3606,6 @@ export interface DefaultApiV1DeleteImageSetImageRequest {
|
|
|
3500
3606
|
*/
|
|
3501
3607
|
readonly imageId: string;
|
|
3502
3608
|
}
|
|
3503
|
-
/**
|
|
3504
|
-
* Request parameters for v1GetEmbeddedQueryUrl operation in DefaultApi.
|
|
3505
|
-
* @export
|
|
3506
|
-
* @interface DefaultApiV1GetEmbeddedQueryUrlRequest
|
|
3507
|
-
*/
|
|
3508
|
-
export interface DefaultApiV1GetEmbeddedQueryUrlRequest {
|
|
3509
|
-
/**
|
|
3510
|
-
*
|
|
3511
|
-
* @type {string}
|
|
3512
|
-
* @memberof DefaultApiV1GetEmbeddedQueryUrl
|
|
3513
|
-
*/
|
|
3514
|
-
readonly questionType: string;
|
|
3515
|
-
/**
|
|
3516
|
-
*
|
|
3517
|
-
* @type {string}
|
|
3518
|
-
* @memberof DefaultApiV1GetEmbeddedQueryUrl
|
|
3519
|
-
*/
|
|
3520
|
-
readonly nodeId?: string;
|
|
3521
|
-
/**
|
|
3522
|
-
*
|
|
3523
|
-
* @type {number}
|
|
3524
|
-
* @memberof DefaultApiV1GetEmbeddedQueryUrl
|
|
3525
|
-
*/
|
|
3526
|
-
readonly lookbackDays?: number;
|
|
3527
|
-
}
|
|
3528
3609
|
/**
|
|
3529
3610
|
* Request parameters for v1GetImageSet operation in DefaultApi.
|
|
3530
3611
|
* @export
|
|
@@ -3564,6 +3645,32 @@ export interface DefaultApiV1GetInstructionRequest {
|
|
|
3564
3645
|
*/
|
|
3565
3646
|
readonly v1GetInstructionRequest: V1GetInstructionRequest;
|
|
3566
3647
|
}
|
|
3648
|
+
/**
|
|
3649
|
+
* Request parameters for v1GetLastInstructionByNodeId operation in DefaultApi.
|
|
3650
|
+
* @export
|
|
3651
|
+
* @interface DefaultApiV1GetLastInstructionByNodeIdRequest
|
|
3652
|
+
*/
|
|
3653
|
+
export interface DefaultApiV1GetLastInstructionByNodeIdRequest {
|
|
3654
|
+
/**
|
|
3655
|
+
*
|
|
3656
|
+
* @type {string}
|
|
3657
|
+
* @memberof DefaultApiV1GetLastInstructionByNodeId
|
|
3658
|
+
*/
|
|
3659
|
+
readonly nodeId: string;
|
|
3660
|
+
}
|
|
3661
|
+
/**
|
|
3662
|
+
* Request parameters for v1GetLatestHfr operation in DefaultApi.
|
|
3663
|
+
* @export
|
|
3664
|
+
* @interface DefaultApiV1GetLatestHfrRequest
|
|
3665
|
+
*/
|
|
3666
|
+
export interface DefaultApiV1GetLatestHfrRequest {
|
|
3667
|
+
/**
|
|
3668
|
+
*
|
|
3669
|
+
* @type {string}
|
|
3670
|
+
* @memberof DefaultApiV1GetLatestHfr
|
|
3671
|
+
*/
|
|
3672
|
+
readonly nodeId: string;
|
|
3673
|
+
}
|
|
3567
3674
|
/**
|
|
3568
3675
|
* Request parameters for v1GetMount operation in DefaultApi.
|
|
3569
3676
|
* @export
|
|
@@ -3902,14 +4009,6 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3902
4009
|
* @memberof DefaultApi
|
|
3903
4010
|
*/
|
|
3904
4011
|
v1GetCameras(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
|
|
3905
|
-
/**
|
|
3906
|
-
* Create an embedding URL for a dashboard or question
|
|
3907
|
-
* @param {DefaultApiV1GetEmbeddedQueryUrlRequest} requestParameters Request parameters.
|
|
3908
|
-
* @param {*} [options] Override http request option.
|
|
3909
|
-
* @throws {RequiredError}
|
|
3910
|
-
* @memberof DefaultApi
|
|
3911
|
-
*/
|
|
3912
|
-
v1GetEmbeddedQueryUrl(requestParameters: DefaultApiV1GetEmbeddedQueryUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetEmbeddedQueryUrlResponse, any>>;
|
|
3913
4012
|
/**
|
|
3914
4013
|
* Get an image set.
|
|
3915
4014
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -3934,6 +4033,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3934
4033
|
* @memberof DefaultApi
|
|
3935
4034
|
*/
|
|
3936
4035
|
v1GetInstruction(requestParameters: DefaultApiV1GetInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Instruction, any>>;
|
|
4036
|
+
/**
|
|
4037
|
+
* Get the last instruction time and type for a specific node.
|
|
4038
|
+
* @param {DefaultApiV1GetLastInstructionByNodeIdRequest} requestParameters Request parameters.
|
|
4039
|
+
* @param {*} [options] Override http request option.
|
|
4040
|
+
* @throws {RequiredError}
|
|
4041
|
+
* @memberof DefaultApi
|
|
4042
|
+
*/
|
|
4043
|
+
v1GetLastInstructionByNodeId(requestParameters: DefaultApiV1GetLastInstructionByNodeIdRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1LastInstructionResponse, any>>;
|
|
4044
|
+
/**
|
|
4045
|
+
* Get the latest HFR value for a specific node by its ID
|
|
4046
|
+
* @param {DefaultApiV1GetLatestHfrRequest} requestParameters Request parameters.
|
|
4047
|
+
* @param {*} [options] Override http request option.
|
|
4048
|
+
* @throws {RequiredError}
|
|
4049
|
+
* @memberof DefaultApi
|
|
4050
|
+
*/
|
|
4051
|
+
v1GetLatestHfr(requestParameters: DefaultApiV1GetLatestHfrRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1LatestHfrResponse, any>>;
|
|
3937
4052
|
/**
|
|
3938
4053
|
* Get a mount.
|
|
3939
4054
|
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|