@ourskyai/platform-api 1.3.4675 → 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 +270 -119
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +189 -74
- 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 +189 -74
- 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/esm/api.js
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.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -176,6 +176,7 @@ export const V1NodeComponentType = {
|
|
|
176
176
|
MOUNT: 'MOUNT',
|
|
177
177
|
OPTICAL_TUBE: 'OPTICAL_TUBE',
|
|
178
178
|
COMPUTER: 'COMPUTER',
|
|
179
|
+
SAFETY_MONITOR: 'SAFETY_MONITOR',
|
|
179
180
|
NODE: 'NODE'
|
|
180
181
|
};
|
|
181
182
|
/**
|
|
@@ -203,6 +204,8 @@ export const V1NodeDiagnosticType = {
|
|
|
203
204
|
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT',
|
|
204
205
|
FOCUS_HFR_VALUES: 'FOCUS_HFR_VALUES',
|
|
205
206
|
HAS_FOCUSER: 'HAS_FOCUSER',
|
|
207
|
+
HAS_SAFETY_MONITOR: 'HAS_SAFETY_MONITOR',
|
|
208
|
+
SAFETY_STATUS: 'SAFETY_STATUS',
|
|
206
209
|
GNSS_CALIBRATION: 'GNSS_CALIBRATION',
|
|
207
210
|
SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
|
|
208
211
|
MOUNT_MODEL_CHECKED: 'MOUNT_MODEL_CHECKED',
|
|
@@ -743,17 +746,15 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
743
746
|
};
|
|
744
747
|
}),
|
|
745
748
|
/**
|
|
746
|
-
*
|
|
747
|
-
* @param {string}
|
|
748
|
-
* @param {string} [nodeId]
|
|
749
|
-
* @param {number} [lookbackDays]
|
|
749
|
+
* Get an image set.
|
|
750
|
+
* @param {string} id
|
|
750
751
|
* @param {*} [options] Override http request option.
|
|
751
752
|
* @throws {RequiredError}
|
|
752
753
|
*/
|
|
753
|
-
|
|
754
|
-
// verify required parameter '
|
|
755
|
-
assertParamExists('
|
|
756
|
-
const localVarPath = `/v1/
|
|
754
|
+
v1GetImageSet: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
755
|
+
// verify required parameter 'id' is not null or undefined
|
|
756
|
+
assertParamExists('v1GetImageSet', 'id', id);
|
|
757
|
+
const localVarPath = `/v1/image-set`;
|
|
757
758
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
758
759
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
759
760
|
let baseOptions;
|
|
@@ -767,14 +768,8 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
767
768
|
// authentication BearerToken required
|
|
768
769
|
// http bearer authentication required
|
|
769
770
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
770
|
-
if (
|
|
771
|
-
localVarQueryParameter['
|
|
772
|
-
}
|
|
773
|
-
if (nodeId !== undefined) {
|
|
774
|
-
localVarQueryParameter['nodeId'] = nodeId;
|
|
775
|
-
}
|
|
776
|
-
if (lookbackDays !== undefined) {
|
|
777
|
-
localVarQueryParameter['lookbackDays'] = lookbackDays;
|
|
771
|
+
if (id !== undefined) {
|
|
772
|
+
localVarQueryParameter['id'] = id;
|
|
778
773
|
}
|
|
779
774
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
780
775
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -785,15 +780,15 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
785
780
|
};
|
|
786
781
|
}),
|
|
787
782
|
/**
|
|
788
|
-
* Get an image
|
|
789
|
-
* @param {string}
|
|
783
|
+
* Get an image.
|
|
784
|
+
* @param {string} imageId
|
|
790
785
|
* @param {*} [options] Override http request option.
|
|
791
786
|
* @throws {RequiredError}
|
|
792
787
|
*/
|
|
793
|
-
|
|
794
|
-
// verify required parameter '
|
|
795
|
-
assertParamExists('
|
|
796
|
-
const localVarPath = `/v1/image-set`;
|
|
788
|
+
v1GetImageSetImage: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
789
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
790
|
+
assertParamExists('v1GetImageSetImage', 'imageId', imageId);
|
|
791
|
+
const localVarPath = `/v1/image-set-image`;
|
|
797
792
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
798
793
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
799
794
|
let baseOptions;
|
|
@@ -807,8 +802,8 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
807
802
|
// authentication BearerToken required
|
|
808
803
|
// http bearer authentication required
|
|
809
804
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
810
|
-
if (
|
|
811
|
-
localVarQueryParameter['
|
|
805
|
+
if (imageId !== undefined) {
|
|
806
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
812
807
|
}
|
|
813
808
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
814
809
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -819,15 +814,48 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
819
814
|
};
|
|
820
815
|
}),
|
|
821
816
|
/**
|
|
822
|
-
* Get
|
|
823
|
-
* @param {
|
|
817
|
+
* Get instruction.
|
|
818
|
+
* @param {V1GetInstructionRequest} v1GetInstructionRequest
|
|
824
819
|
* @param {*} [options] Override http request option.
|
|
825
820
|
* @throws {RequiredError}
|
|
826
821
|
*/
|
|
827
|
-
|
|
828
|
-
// verify required parameter '
|
|
829
|
-
assertParamExists('
|
|
830
|
-
const localVarPath = `/v1/
|
|
822
|
+
v1GetInstruction: (v1GetInstructionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
823
|
+
// verify required parameter 'v1GetInstructionRequest' is not null or undefined
|
|
824
|
+
assertParamExists('v1GetInstruction', 'v1GetInstructionRequest', v1GetInstructionRequest);
|
|
825
|
+
const localVarPath = `/v1/instruction`;
|
|
826
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
827
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
828
|
+
let baseOptions;
|
|
829
|
+
if (configuration) {
|
|
830
|
+
baseOptions = configuration.baseOptions;
|
|
831
|
+
}
|
|
832
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
833
|
+
const localVarHeaderParameter = {};
|
|
834
|
+
const localVarQueryParameter = {};
|
|
835
|
+
// authentication Roles required
|
|
836
|
+
// authentication BearerToken required
|
|
837
|
+
// http bearer authentication required
|
|
838
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
839
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
840
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
841
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
842
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
843
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1GetInstructionRequest, localVarRequestOptions, configuration);
|
|
844
|
+
return {
|
|
845
|
+
url: toPathString(localVarUrlObj),
|
|
846
|
+
options: localVarRequestOptions,
|
|
847
|
+
};
|
|
848
|
+
}),
|
|
849
|
+
/**
|
|
850
|
+
* Get the last instruction time and type for a specific node.
|
|
851
|
+
* @param {string} nodeId
|
|
852
|
+
* @param {*} [options] Override http request option.
|
|
853
|
+
* @throws {RequiredError}
|
|
854
|
+
*/
|
|
855
|
+
v1GetLastInstructionByNodeId: (nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
856
|
+
// verify required parameter 'nodeId' is not null or undefined
|
|
857
|
+
assertParamExists('v1GetLastInstructionByNodeId', 'nodeId', nodeId);
|
|
858
|
+
const localVarPath = `/v1/instruction`;
|
|
831
859
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
832
860
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
833
861
|
let baseOptions;
|
|
@@ -841,8 +869,8 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
841
869
|
// authentication BearerToken required
|
|
842
870
|
// http bearer authentication required
|
|
843
871
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
844
|
-
if (
|
|
845
|
-
localVarQueryParameter['
|
|
872
|
+
if (nodeId !== undefined) {
|
|
873
|
+
localVarQueryParameter['nodeId'] = nodeId;
|
|
846
874
|
}
|
|
847
875
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
848
876
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -853,33 +881,34 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
853
881
|
};
|
|
854
882
|
}),
|
|
855
883
|
/**
|
|
856
|
-
* Get
|
|
857
|
-
* @param {
|
|
884
|
+
* Get the latest HFR value for a specific node by its ID
|
|
885
|
+
* @param {string} nodeId
|
|
858
886
|
* @param {*} [options] Override http request option.
|
|
859
887
|
* @throws {RequiredError}
|
|
860
888
|
*/
|
|
861
|
-
|
|
862
|
-
// verify required parameter '
|
|
863
|
-
assertParamExists('
|
|
864
|
-
const localVarPath = `/v1/
|
|
889
|
+
v1GetLatestHfr: (nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
890
|
+
// verify required parameter 'nodeId' is not null or undefined
|
|
891
|
+
assertParamExists('v1GetLatestHfr', 'nodeId', nodeId);
|
|
892
|
+
const localVarPath = `/v1/autofocus`;
|
|
865
893
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
866
894
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
867
895
|
let baseOptions;
|
|
868
896
|
if (configuration) {
|
|
869
897
|
baseOptions = configuration.baseOptions;
|
|
870
898
|
}
|
|
871
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: '
|
|
899
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
872
900
|
const localVarHeaderParameter = {};
|
|
873
901
|
const localVarQueryParameter = {};
|
|
874
902
|
// authentication Roles required
|
|
875
903
|
// authentication BearerToken required
|
|
876
904
|
// http bearer authentication required
|
|
877
905
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
878
|
-
|
|
906
|
+
if (nodeId !== undefined) {
|
|
907
|
+
localVarQueryParameter['nodeId'] = nodeId;
|
|
908
|
+
}
|
|
879
909
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
880
910
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
881
911
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
882
|
-
localVarRequestOptions.data = serializeDataIfNeeded(v1GetInstructionRequest, localVarRequestOptions, configuration);
|
|
883
912
|
return {
|
|
884
913
|
url: toPathString(localVarUrlObj),
|
|
885
914
|
options: localVarRequestOptions,
|
|
@@ -1618,20 +1647,6 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1618
1647
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1619
1648
|
});
|
|
1620
1649
|
},
|
|
1621
|
-
/**
|
|
1622
|
-
* Create an embedding URL for a dashboard or question
|
|
1623
|
-
* @param {string} questionType
|
|
1624
|
-
* @param {string} [nodeId]
|
|
1625
|
-
* @param {number} [lookbackDays]
|
|
1626
|
-
* @param {*} [options] Override http request option.
|
|
1627
|
-
* @throws {RequiredError}
|
|
1628
|
-
*/
|
|
1629
|
-
v1GetEmbeddedQueryUrl(questionType, nodeId, lookbackDays, options) {
|
|
1630
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1631
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetEmbeddedQueryUrl(questionType, nodeId, lookbackDays, options);
|
|
1632
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1633
|
-
});
|
|
1634
|
-
},
|
|
1635
1650
|
/**
|
|
1636
1651
|
* Get an image set.
|
|
1637
1652
|
* @param {string} id
|
|
@@ -1668,6 +1683,30 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1668
1683
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1669
1684
|
});
|
|
1670
1685
|
},
|
|
1686
|
+
/**
|
|
1687
|
+
* Get the last instruction time and type for a specific node.
|
|
1688
|
+
* @param {string} nodeId
|
|
1689
|
+
* @param {*} [options] Override http request option.
|
|
1690
|
+
* @throws {RequiredError}
|
|
1691
|
+
*/
|
|
1692
|
+
v1GetLastInstructionByNodeId(nodeId, options) {
|
|
1693
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1694
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetLastInstructionByNodeId(nodeId, options);
|
|
1695
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1696
|
+
});
|
|
1697
|
+
},
|
|
1698
|
+
/**
|
|
1699
|
+
* Get the latest HFR value for a specific node by its ID
|
|
1700
|
+
* @param {string} nodeId
|
|
1701
|
+
* @param {*} [options] Override http request option.
|
|
1702
|
+
* @throws {RequiredError}
|
|
1703
|
+
*/
|
|
1704
|
+
v1GetLatestHfr(nodeId, options) {
|
|
1705
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1706
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetLatestHfr(nodeId, options);
|
|
1707
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1708
|
+
});
|
|
1709
|
+
},
|
|
1671
1710
|
/**
|
|
1672
1711
|
* Get a mount.
|
|
1673
1712
|
* @param {string} id
|
|
@@ -2004,15 +2043,6 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2004
2043
|
v1GetCameras(options) {
|
|
2005
2044
|
return localVarFp.v1GetCameras(options).then((request) => request(axios, basePath));
|
|
2006
2045
|
},
|
|
2007
|
-
/**
|
|
2008
|
-
* Create an embedding URL for a dashboard or question
|
|
2009
|
-
* @param {DefaultApiV1GetEmbeddedQueryUrlRequest} requestParameters Request parameters.
|
|
2010
|
-
* @param {*} [options] Override http request option.
|
|
2011
|
-
* @throws {RequiredError}
|
|
2012
|
-
*/
|
|
2013
|
-
v1GetEmbeddedQueryUrl(requestParameters, options) {
|
|
2014
|
-
return localVarFp.v1GetEmbeddedQueryUrl(requestParameters.questionType, requestParameters.nodeId, requestParameters.lookbackDays, options).then((request) => request(axios, basePath));
|
|
2015
|
-
},
|
|
2016
2046
|
/**
|
|
2017
2047
|
* Get an image set.
|
|
2018
2048
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -2040,6 +2070,24 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2040
2070
|
v1GetInstruction(requestParameters, options) {
|
|
2041
2071
|
return localVarFp.v1GetInstruction(requestParameters.v1GetInstructionRequest, options).then((request) => request(axios, basePath));
|
|
2042
2072
|
},
|
|
2073
|
+
/**
|
|
2074
|
+
* Get the last instruction time and type for a specific node.
|
|
2075
|
+
* @param {DefaultApiV1GetLastInstructionByNodeIdRequest} requestParameters Request parameters.
|
|
2076
|
+
* @param {*} [options] Override http request option.
|
|
2077
|
+
* @throws {RequiredError}
|
|
2078
|
+
*/
|
|
2079
|
+
v1GetLastInstructionByNodeId(requestParameters, options) {
|
|
2080
|
+
return localVarFp.v1GetLastInstructionByNodeId(requestParameters.nodeId, options).then((request) => request(axios, basePath));
|
|
2081
|
+
},
|
|
2082
|
+
/**
|
|
2083
|
+
* Get the latest HFR value for a specific node by its ID
|
|
2084
|
+
* @param {DefaultApiV1GetLatestHfrRequest} requestParameters Request parameters.
|
|
2085
|
+
* @param {*} [options] Override http request option.
|
|
2086
|
+
* @throws {RequiredError}
|
|
2087
|
+
*/
|
|
2088
|
+
v1GetLatestHfr(requestParameters, options) {
|
|
2089
|
+
return localVarFp.v1GetLatestHfr(requestParameters.nodeId, options).then((request) => request(axios, basePath));
|
|
2090
|
+
},
|
|
2043
2091
|
/**
|
|
2044
2092
|
* Get a mount.
|
|
2045
2093
|
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|
|
@@ -2340,16 +2388,6 @@ export class DefaultApi extends BaseAPI {
|
|
|
2340
2388
|
v1GetCameras(options) {
|
|
2341
2389
|
return DefaultApiFp(this.configuration).v1GetCameras(options).then((request) => request(this.axios, this.basePath));
|
|
2342
2390
|
}
|
|
2343
|
-
/**
|
|
2344
|
-
* Create an embedding URL for a dashboard or question
|
|
2345
|
-
* @param {DefaultApiV1GetEmbeddedQueryUrlRequest} requestParameters Request parameters.
|
|
2346
|
-
* @param {*} [options] Override http request option.
|
|
2347
|
-
* @throws {RequiredError}
|
|
2348
|
-
* @memberof DefaultApi
|
|
2349
|
-
*/
|
|
2350
|
-
v1GetEmbeddedQueryUrl(requestParameters, options) {
|
|
2351
|
-
return DefaultApiFp(this.configuration).v1GetEmbeddedQueryUrl(requestParameters.questionType, requestParameters.nodeId, requestParameters.lookbackDays, options).then((request) => request(this.axios, this.basePath));
|
|
2352
|
-
}
|
|
2353
2391
|
/**
|
|
2354
2392
|
* Get an image set.
|
|
2355
2393
|
* @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
|
|
@@ -2380,6 +2418,26 @@ export class DefaultApi extends BaseAPI {
|
|
|
2380
2418
|
v1GetInstruction(requestParameters, options) {
|
|
2381
2419
|
return DefaultApiFp(this.configuration).v1GetInstruction(requestParameters.v1GetInstructionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2382
2420
|
}
|
|
2421
|
+
/**
|
|
2422
|
+
* Get the last instruction time and type for a specific node.
|
|
2423
|
+
* @param {DefaultApiV1GetLastInstructionByNodeIdRequest} requestParameters Request parameters.
|
|
2424
|
+
* @param {*} [options] Override http request option.
|
|
2425
|
+
* @throws {RequiredError}
|
|
2426
|
+
* @memberof DefaultApi
|
|
2427
|
+
*/
|
|
2428
|
+
v1GetLastInstructionByNodeId(requestParameters, options) {
|
|
2429
|
+
return DefaultApiFp(this.configuration).v1GetLastInstructionByNodeId(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
|
|
2430
|
+
}
|
|
2431
|
+
/**
|
|
2432
|
+
* Get the latest HFR value for a specific node by its ID
|
|
2433
|
+
* @param {DefaultApiV1GetLatestHfrRequest} requestParameters Request parameters.
|
|
2434
|
+
* @param {*} [options] Override http request option.
|
|
2435
|
+
* @throws {RequiredError}
|
|
2436
|
+
* @memberof DefaultApi
|
|
2437
|
+
*/
|
|
2438
|
+
v1GetLatestHfr(requestParameters, options) {
|
|
2439
|
+
return DefaultApiFp(this.configuration).v1GetLatestHfr(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
|
|
2440
|
+
}
|
|
2383
2441
|
/**
|
|
2384
2442
|
* Get a mount.
|
|
2385
2443
|
* @param {DefaultApiV1GetMountRequest} requestParameters Request parameters.
|
package/dist/esm/base.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).
|
package/dist/esm/base.js
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.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.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).
|
package/dist/esm/common.js
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.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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).
|
|
@@ -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.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.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).
|
package/dist/esm/index.js
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.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.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).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.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.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|