@ourskyai/platform-api 1.3.4692 → 1.3.4796
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 +431 -117
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +300 -72
- package/dist/api.js +206 -76
- 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 +300 -72
- package/dist/esm/api.js +205 -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/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4796
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4796
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4796
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.4796
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -617,6 +617,55 @@ export interface V1CreateNodeDiagnosticsRequest {
|
|
|
617
617
|
*/
|
|
618
618
|
'diagnostics': Array<V1CreateNodeDiagnostic>;
|
|
619
619
|
}
|
|
620
|
+
/**
|
|
621
|
+
*
|
|
622
|
+
* @export
|
|
623
|
+
* @interface V1CreateNodeEvent
|
|
624
|
+
*/
|
|
625
|
+
export interface V1CreateNodeEvent {
|
|
626
|
+
/**
|
|
627
|
+
*
|
|
628
|
+
* @type {V1NodeEventType}
|
|
629
|
+
* @memberof V1CreateNodeEvent
|
|
630
|
+
*/
|
|
631
|
+
'type': V1NodeEventType;
|
|
632
|
+
/**
|
|
633
|
+
*
|
|
634
|
+
* @type {V1CreateNodeEventBody}
|
|
635
|
+
* @memberof V1CreateNodeEvent
|
|
636
|
+
*/
|
|
637
|
+
'body': V1CreateNodeEventBody;
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @type {string}
|
|
641
|
+
* @memberof V1CreateNodeEvent
|
|
642
|
+
*/
|
|
643
|
+
'generatedAt': string;
|
|
644
|
+
}
|
|
645
|
+
/**
|
|
646
|
+
* @type V1CreateNodeEventBody
|
|
647
|
+
* @export
|
|
648
|
+
*/
|
|
649
|
+
export type V1CreateNodeEventBody = V1SafetyStatusUpdated;
|
|
650
|
+
/**
|
|
651
|
+
*
|
|
652
|
+
* @export
|
|
653
|
+
* @interface V1CreateNodeEventsRequest
|
|
654
|
+
*/
|
|
655
|
+
export interface V1CreateNodeEventsRequest {
|
|
656
|
+
/**
|
|
657
|
+
*
|
|
658
|
+
* @type {string}
|
|
659
|
+
* @memberof V1CreateNodeEventsRequest
|
|
660
|
+
*/
|
|
661
|
+
'nodeId': string;
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @type {Array<V1CreateNodeEvent>}
|
|
665
|
+
* @memberof V1CreateNodeEventsRequest
|
|
666
|
+
*/
|
|
667
|
+
'events': Array<V1CreateNodeEvent>;
|
|
668
|
+
}
|
|
620
669
|
/**
|
|
621
670
|
* Create Node
|
|
622
671
|
* @export
|
|
@@ -794,19 +843,6 @@ export interface V1GainCurvePoint {
|
|
|
794
843
|
*/
|
|
795
844
|
'eADU': number;
|
|
796
845
|
}
|
|
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
846
|
/**
|
|
811
847
|
*
|
|
812
848
|
* @export
|
|
@@ -1436,6 +1472,56 @@ export interface V1Instruction {
|
|
|
1436
1472
|
*/
|
|
1437
1473
|
'autofocus'?: V1AutoFocusInstruction;
|
|
1438
1474
|
}
|
|
1475
|
+
/**
|
|
1476
|
+
*
|
|
1477
|
+
* @export
|
|
1478
|
+
* @interface V1LastInstructionResponse
|
|
1479
|
+
*/
|
|
1480
|
+
export interface V1LastInstructionResponse {
|
|
1481
|
+
/**
|
|
1482
|
+
*
|
|
1483
|
+
* @type {string}
|
|
1484
|
+
* @memberof V1LastInstructionResponse
|
|
1485
|
+
*/
|
|
1486
|
+
'id'?: string;
|
|
1487
|
+
/**
|
|
1488
|
+
*
|
|
1489
|
+
* @type {string}
|
|
1490
|
+
* @memberof V1LastInstructionResponse
|
|
1491
|
+
*/
|
|
1492
|
+
'receivedAt'?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
*
|
|
1495
|
+
* @type {TrackingType}
|
|
1496
|
+
* @memberof V1LastInstructionResponse
|
|
1497
|
+
*/
|
|
1498
|
+
'trackingType'?: TrackingType;
|
|
1499
|
+
}
|
|
1500
|
+
/**
|
|
1501
|
+
*
|
|
1502
|
+
* @export
|
|
1503
|
+
* @interface V1LatestHfrResponse
|
|
1504
|
+
*/
|
|
1505
|
+
export interface V1LatestHfrResponse {
|
|
1506
|
+
/**
|
|
1507
|
+
*
|
|
1508
|
+
* @type {string}
|
|
1509
|
+
* @memberof V1LatestHfrResponse
|
|
1510
|
+
*/
|
|
1511
|
+
'nodeId'?: string;
|
|
1512
|
+
/**
|
|
1513
|
+
*
|
|
1514
|
+
* @type {string}
|
|
1515
|
+
* @memberof V1LatestHfrResponse
|
|
1516
|
+
*/
|
|
1517
|
+
'hfrValues'?: string;
|
|
1518
|
+
/**
|
|
1519
|
+
*
|
|
1520
|
+
* @type {string}
|
|
1521
|
+
* @memberof V1LatestHfrResponse
|
|
1522
|
+
*/
|
|
1523
|
+
'timestamp'?: string;
|
|
1524
|
+
}
|
|
1439
1525
|
/**
|
|
1440
1526
|
*
|
|
1441
1527
|
* @export
|
|
@@ -1605,6 +1691,7 @@ export declare const V1NodeComponentType: {
|
|
|
1605
1691
|
readonly MOUNT: "MOUNT";
|
|
1606
1692
|
readonly OPTICAL_TUBE: "OPTICAL_TUBE";
|
|
1607
1693
|
readonly COMPUTER: "COMPUTER";
|
|
1694
|
+
readonly SAFETY_MONITOR: "SAFETY_MONITOR";
|
|
1608
1695
|
readonly NODE: "NODE";
|
|
1609
1696
|
};
|
|
1610
1697
|
export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
|
|
@@ -1646,6 +1733,8 @@ export declare const V1NodeDiagnosticType: {
|
|
|
1646
1733
|
readonly CPU_USAGE_LAST_MINUTE_PCT: "CPU_USAGE_LAST_MINUTE_PCT";
|
|
1647
1734
|
readonly FOCUS_HFR_VALUES: "FOCUS_HFR_VALUES";
|
|
1648
1735
|
readonly HAS_FOCUSER: "HAS_FOCUSER";
|
|
1736
|
+
readonly HAS_SAFETY_MONITOR: "HAS_SAFETY_MONITOR";
|
|
1737
|
+
readonly SAFETY_STATUS: "SAFETY_STATUS";
|
|
1649
1738
|
readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
|
|
1650
1739
|
readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
|
|
1651
1740
|
readonly MOUNT_MODEL_CHECKED: "MOUNT_MODEL_CHECKED";
|
|
@@ -1661,6 +1750,15 @@ export declare const V1NodeDiagnosticType: {
|
|
|
1661
1750
|
readonly ASCOM_CAN_TRACK_LEO: "ASCOM_CAN_TRACK_LEO";
|
|
1662
1751
|
};
|
|
1663
1752
|
export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
|
|
1753
|
+
/**
|
|
1754
|
+
*
|
|
1755
|
+
* @export
|
|
1756
|
+
* @enum {string}
|
|
1757
|
+
*/
|
|
1758
|
+
export declare const V1NodeEventType: {
|
|
1759
|
+
readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
|
|
1760
|
+
};
|
|
1761
|
+
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
|
1664
1762
|
/**
|
|
1665
1763
|
* Node with location
|
|
1666
1764
|
* @export
|
|
@@ -1929,6 +2027,49 @@ export interface V1ObservationInstructionSatellitePassEphemerisInner {
|
|
|
1929
2027
|
*/
|
|
1930
2028
|
'elevation'?: number;
|
|
1931
2029
|
}
|
|
2030
|
+
/**
|
|
2031
|
+
*
|
|
2032
|
+
* @export
|
|
2033
|
+
* @interface V1ObservationMetrics
|
|
2034
|
+
*/
|
|
2035
|
+
export interface V1ObservationMetrics {
|
|
2036
|
+
/**
|
|
2037
|
+
*
|
|
2038
|
+
* @type {number}
|
|
2039
|
+
* @memberof V1ObservationMetrics
|
|
2040
|
+
*/
|
|
2041
|
+
'waitingForSlewMountMs': number;
|
|
2042
|
+
/**
|
|
2043
|
+
*
|
|
2044
|
+
* @type {number}
|
|
2045
|
+
* @memberof V1ObservationMetrics
|
|
2046
|
+
*/
|
|
2047
|
+
'slewMountMs': number;
|
|
2048
|
+
/**
|
|
2049
|
+
*
|
|
2050
|
+
* @type {number}
|
|
2051
|
+
* @memberof V1ObservationMetrics
|
|
2052
|
+
*/
|
|
2053
|
+
'centerMountMs': number;
|
|
2054
|
+
/**
|
|
2055
|
+
*
|
|
2056
|
+
* @type {number}
|
|
2057
|
+
* @memberof V1ObservationMetrics
|
|
2058
|
+
*/
|
|
2059
|
+
'waitingForCaptureImagesMs': number;
|
|
2060
|
+
/**
|
|
2061
|
+
*
|
|
2062
|
+
* @type {number}
|
|
2063
|
+
* @memberof V1ObservationMetrics
|
|
2064
|
+
*/
|
|
2065
|
+
'missedCaptureImagesMs': number;
|
|
2066
|
+
/**
|
|
2067
|
+
*
|
|
2068
|
+
* @type {number}
|
|
2069
|
+
* @memberof V1ObservationMetrics
|
|
2070
|
+
*/
|
|
2071
|
+
'captureImagesMs': number;
|
|
2072
|
+
}
|
|
1932
2073
|
/**
|
|
1933
2074
|
* Optical Tube
|
|
1934
2075
|
* @export
|
|
@@ -2103,6 +2244,19 @@ export interface V1Release {
|
|
|
2103
2244
|
*/
|
|
2104
2245
|
'fileType': V1FileType;
|
|
2105
2246
|
}
|
|
2247
|
+
/**
|
|
2248
|
+
*
|
|
2249
|
+
* @export
|
|
2250
|
+
* @interface V1SafetyStatusUpdated
|
|
2251
|
+
*/
|
|
2252
|
+
export interface V1SafetyStatusUpdated {
|
|
2253
|
+
/**
|
|
2254
|
+
*
|
|
2255
|
+
* @type {boolean}
|
|
2256
|
+
* @memberof V1SafetyStatusUpdated
|
|
2257
|
+
*/
|
|
2258
|
+
'isSafe': boolean;
|
|
2259
|
+
}
|
|
2106
2260
|
/**
|
|
2107
2261
|
* Setup Action
|
|
2108
2262
|
* @export
|
|
@@ -2520,6 +2674,12 @@ export interface V2CompleteObservationRequest {
|
|
|
2520
2674
|
* @memberof V2CompleteObservationRequest
|
|
2521
2675
|
*/
|
|
2522
2676
|
'expectedImageCount': number;
|
|
2677
|
+
/**
|
|
2678
|
+
*
|
|
2679
|
+
* @type {V1ObservationMetrics}
|
|
2680
|
+
* @memberof V2CompleteObservationRequest
|
|
2681
|
+
*/
|
|
2682
|
+
'metrics'?: V1ObservationMetrics;
|
|
2523
2683
|
}
|
|
2524
2684
|
/**
|
|
2525
2685
|
* DefaultApi - axios parameter creator
|
|
@@ -2609,6 +2769,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2609
2769
|
* @throws {RequiredError}
|
|
2610
2770
|
*/
|
|
2611
2771
|
v1CreateNodeDiagnostics: (v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2772
|
+
/**
|
|
2773
|
+
* Create node events
|
|
2774
|
+
* @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
|
|
2775
|
+
* @param {*} [options] Override http request option.
|
|
2776
|
+
* @throws {RequiredError}
|
|
2777
|
+
*/
|
|
2778
|
+
v1CreateNodeEvents: (v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2612
2779
|
/**
|
|
2613
2780
|
* Create an optical tube.
|
|
2614
2781
|
* @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
|
|
@@ -2636,15 +2803,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2636
2803
|
* @throws {RequiredError}
|
|
2637
2804
|
*/
|
|
2638
2805
|
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
2806
|
/**
|
|
2649
2807
|
* Get an image set.
|
|
2650
2808
|
* @param {string} id
|
|
@@ -2666,6 +2824,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2666
2824
|
* @throws {RequiredError}
|
|
2667
2825
|
*/
|
|
2668
2826
|
v1GetInstruction: (v1GetInstructionRequest: V1GetInstructionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2827
|
+
/**
|
|
2828
|
+
* Get the last instruction time and type for a specific node.
|
|
2829
|
+
* @param {string} nodeId
|
|
2830
|
+
* @param {*} [options] Override http request option.
|
|
2831
|
+
* @throws {RequiredError}
|
|
2832
|
+
*/
|
|
2833
|
+
v1GetLastInstructionByNodeId: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2834
|
+
/**
|
|
2835
|
+
* Get the latest HFR value for a specific node by its ID
|
|
2836
|
+
* @param {string} nodeId
|
|
2837
|
+
* @param {*} [options] Override http request option.
|
|
2838
|
+
* @throws {RequiredError}
|
|
2839
|
+
*/
|
|
2840
|
+
v1GetLatestHfr: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2669
2841
|
/**
|
|
2670
2842
|
* Get a mount.
|
|
2671
2843
|
* @param {string} id
|
|
@@ -2869,6 +3041,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2869
3041
|
* @throws {RequiredError}
|
|
2870
3042
|
*/
|
|
2871
3043
|
v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
3044
|
+
/**
|
|
3045
|
+
* Create node events
|
|
3046
|
+
* @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
|
|
3047
|
+
* @param {*} [options] Override http request option.
|
|
3048
|
+
* @throws {RequiredError}
|
|
3049
|
+
*/
|
|
3050
|
+
v1CreateNodeEvents(v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
2872
3051
|
/**
|
|
2873
3052
|
* Create an optical tube.
|
|
2874
3053
|
* @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
|
|
@@ -2896,15 +3075,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2896
3075
|
* @throws {RequiredError}
|
|
2897
3076
|
*/
|
|
2898
3077
|
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
3078
|
/**
|
|
2909
3079
|
* Get an image set.
|
|
2910
3080
|
* @param {string} id
|
|
@@ -2926,6 +3096,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2926
3096
|
* @throws {RequiredError}
|
|
2927
3097
|
*/
|
|
2928
3098
|
v1GetInstruction(v1GetInstructionRequest: V1GetInstructionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Instruction>>;
|
|
3099
|
+
/**
|
|
3100
|
+
* Get the last instruction time and type for a specific node.
|
|
3101
|
+
* @param {string} nodeId
|
|
3102
|
+
* @param {*} [options] Override http request option.
|
|
3103
|
+
* @throws {RequiredError}
|
|
3104
|
+
*/
|
|
3105
|
+
v1GetLastInstructionByNodeId(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1LastInstructionResponse>>;
|
|
3106
|
+
/**
|
|
3107
|
+
* Get the latest HFR value for a specific node by its ID
|
|
3108
|
+
* @param {string} nodeId
|
|
3109
|
+
* @param {*} [options] Override http request option.
|
|
3110
|
+
* @throws {RequiredError}
|
|
3111
|
+
*/
|
|
3112
|
+
v1GetLatestHfr(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1LatestHfrResponse>>;
|
|
2929
3113
|
/**
|
|
2930
3114
|
* Get a mount.
|
|
2931
3115
|
* @param {string} id
|
|
@@ -3122,6 +3306,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3122
3306
|
* @throws {RequiredError}
|
|
3123
3307
|
*/
|
|
3124
3308
|
v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3309
|
+
/**
|
|
3310
|
+
* Create node events
|
|
3311
|
+
* @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
|
|
3312
|
+
* @param {*} [options] Override http request option.
|
|
3313
|
+
* @throws {RequiredError}
|
|
3314
|
+
*/
|
|
3315
|
+
v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
3125
3316
|
/**
|
|
3126
3317
|
* Create an optical tube.
|
|
3127
3318
|
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -3149,13 +3340,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3149
3340
|
* @throws {RequiredError}
|
|
3150
3341
|
*/
|
|
3151
3342
|
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
3343
|
/**
|
|
3160
3344
|
* Get an image set.
|
|
3161
3345
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -3177,6 +3361,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3177
3361
|
* @throws {RequiredError}
|
|
3178
3362
|
*/
|
|
3179
3363
|
v1GetInstruction(requestParameters: DefaultApiV1GetInstructionRequest, options?: AxiosRequestConfig): AxiosPromise<V1Instruction>;
|
|
3364
|
+
/**
|
|
3365
|
+
* Get the last instruction time and type for a specific node.
|
|
3366
|
+
* @param {DefaultApiV1GetLastInstructionByNodeIdRequest} requestParameters Request parameters.
|
|
3367
|
+
* @param {*} [options] Override http request option.
|
|
3368
|
+
* @throws {RequiredError}
|
|
3369
|
+
*/
|
|
3370
|
+
v1GetLastInstructionByNodeId(requestParameters: DefaultApiV1GetLastInstructionByNodeIdRequest, options?: AxiosRequestConfig): AxiosPromise<V1LastInstructionResponse>;
|
|
3371
|
+
/**
|
|
3372
|
+
* Get the latest HFR value for a specific node by its ID
|
|
3373
|
+
* @param {DefaultApiV1GetLatestHfrRequest} requestParameters Request parameters.
|
|
3374
|
+
* @param {*} [options] Override http request option.
|
|
3375
|
+
* @throws {RequiredError}
|
|
3376
|
+
*/
|
|
3377
|
+
v1GetLatestHfr(requestParameters: DefaultApiV1GetLatestHfrRequest, options?: AxiosRequestConfig): AxiosPromise<V1LatestHfrResponse>;
|
|
3180
3378
|
/**
|
|
3181
3379
|
* Get a mount.
|
|
3182
3380
|
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|
|
@@ -3461,6 +3659,19 @@ export interface DefaultApiV1CreateNodeDiagnosticsRequest {
|
|
|
3461
3659
|
*/
|
|
3462
3660
|
readonly v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest;
|
|
3463
3661
|
}
|
|
3662
|
+
/**
|
|
3663
|
+
* Request parameters for v1CreateNodeEvents operation in DefaultApi.
|
|
3664
|
+
* @export
|
|
3665
|
+
* @interface DefaultApiV1CreateNodeEventsRequest
|
|
3666
|
+
*/
|
|
3667
|
+
export interface DefaultApiV1CreateNodeEventsRequest {
|
|
3668
|
+
/**
|
|
3669
|
+
*
|
|
3670
|
+
* @type {V1CreateNodeEventsRequest}
|
|
3671
|
+
* @memberof DefaultApiV1CreateNodeEvents
|
|
3672
|
+
*/
|
|
3673
|
+
readonly v1CreateNodeEventsRequest: V1CreateNodeEventsRequest;
|
|
3674
|
+
}
|
|
3464
3675
|
/**
|
|
3465
3676
|
* Request parameters for v1CreateOpticalTube operation in DefaultApi.
|
|
3466
3677
|
* @export
|
|
@@ -3500,31 +3711,6 @@ export interface DefaultApiV1DeleteImageSetImageRequest {
|
|
|
3500
3711
|
*/
|
|
3501
3712
|
readonly imageId: string;
|
|
3502
3713
|
}
|
|
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
3714
|
/**
|
|
3529
3715
|
* Request parameters for v1GetImageSet operation in DefaultApi.
|
|
3530
3716
|
* @export
|
|
@@ -3564,6 +3750,32 @@ export interface DefaultApiV1GetInstructionRequest {
|
|
|
3564
3750
|
*/
|
|
3565
3751
|
readonly v1GetInstructionRequest: V1GetInstructionRequest;
|
|
3566
3752
|
}
|
|
3753
|
+
/**
|
|
3754
|
+
* Request parameters for v1GetLastInstructionByNodeId operation in DefaultApi.
|
|
3755
|
+
* @export
|
|
3756
|
+
* @interface DefaultApiV1GetLastInstructionByNodeIdRequest
|
|
3757
|
+
*/
|
|
3758
|
+
export interface DefaultApiV1GetLastInstructionByNodeIdRequest {
|
|
3759
|
+
/**
|
|
3760
|
+
*
|
|
3761
|
+
* @type {string}
|
|
3762
|
+
* @memberof DefaultApiV1GetLastInstructionByNodeId
|
|
3763
|
+
*/
|
|
3764
|
+
readonly nodeId: string;
|
|
3765
|
+
}
|
|
3766
|
+
/**
|
|
3767
|
+
* Request parameters for v1GetLatestHfr operation in DefaultApi.
|
|
3768
|
+
* @export
|
|
3769
|
+
* @interface DefaultApiV1GetLatestHfrRequest
|
|
3770
|
+
*/
|
|
3771
|
+
export interface DefaultApiV1GetLatestHfrRequest {
|
|
3772
|
+
/**
|
|
3773
|
+
*
|
|
3774
|
+
* @type {string}
|
|
3775
|
+
* @memberof DefaultApiV1GetLatestHfr
|
|
3776
|
+
*/
|
|
3777
|
+
readonly nodeId: string;
|
|
3778
|
+
}
|
|
3567
3779
|
/**
|
|
3568
3780
|
* Request parameters for v1GetMount operation in DefaultApi.
|
|
3569
3781
|
* @export
|
|
@@ -3871,6 +4083,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3871
4083
|
* @memberof DefaultApi
|
|
3872
4084
|
*/
|
|
3873
4085
|
v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
4086
|
+
/**
|
|
4087
|
+
* Create node events
|
|
4088
|
+
* @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
|
|
4089
|
+
* @param {*} [options] Override http request option.
|
|
4090
|
+
* @throws {RequiredError}
|
|
4091
|
+
* @memberof DefaultApi
|
|
4092
|
+
*/
|
|
4093
|
+
v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
3874
4094
|
/**
|
|
3875
4095
|
* Create an optical tube.
|
|
3876
4096
|
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -3902,14 +4122,6 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3902
4122
|
* @memberof DefaultApi
|
|
3903
4123
|
*/
|
|
3904
4124
|
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
4125
|
/**
|
|
3914
4126
|
* Get an image set.
|
|
3915
4127
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -3934,6 +4146,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3934
4146
|
* @memberof DefaultApi
|
|
3935
4147
|
*/
|
|
3936
4148
|
v1GetInstruction(requestParameters: DefaultApiV1GetInstructionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Instruction, any>>;
|
|
4149
|
+
/**
|
|
4150
|
+
* Get the last instruction time and type for a specific node.
|
|
4151
|
+
* @param {DefaultApiV1GetLastInstructionByNodeIdRequest} requestParameters Request parameters.
|
|
4152
|
+
* @param {*} [options] Override http request option.
|
|
4153
|
+
* @throws {RequiredError}
|
|
4154
|
+
* @memberof DefaultApi
|
|
4155
|
+
*/
|
|
4156
|
+
v1GetLastInstructionByNodeId(requestParameters: DefaultApiV1GetLastInstructionByNodeIdRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1LastInstructionResponse, any>>;
|
|
4157
|
+
/**
|
|
4158
|
+
* Get the latest HFR value for a specific node by its ID
|
|
4159
|
+
* @param {DefaultApiV1GetLatestHfrRequest} requestParameters Request parameters.
|
|
4160
|
+
* @param {*} [options] Override http request option.
|
|
4161
|
+
* @throws {RequiredError}
|
|
4162
|
+
* @memberof DefaultApi
|
|
4163
|
+
*/
|
|
4164
|
+
v1GetLatestHfr(requestParameters: DefaultApiV1GetLatestHfrRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1LatestHfrResponse, any>>;
|
|
3937
4165
|
/**
|
|
3938
4166
|
* Get a mount.
|
|
3939
4167
|
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|