@ourskyai/platform-api 1.3.3445 → 1.3.3603
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 +191 -20
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +140 -16
- package/dist/api.js +82 -11
- 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 +140 -16
- package/dist/esm/api.js +81 -10
- 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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/platform-api@1.3.
|
|
1
|
+
## @ourskyai/platform-api@1.3.3603
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @ourskyai/platform-api@1.3.
|
|
39
|
+
npm install @ourskyai/platform-api@1.3.3603 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.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.3603
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -242,6 +242,38 @@ export const TrackingType = {
|
|
|
242
242
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
243
243
|
|
|
244
244
|
|
|
245
|
+
/**
|
|
246
|
+
* Autofocus Instruction
|
|
247
|
+
* @export
|
|
248
|
+
* @interface V1AutoFocusInstruction
|
|
249
|
+
*/
|
|
250
|
+
export interface V1AutoFocusInstruction {
|
|
251
|
+
/**
|
|
252
|
+
*
|
|
253
|
+
* @type {Array<V1AutoFocusInstructionCoordinatesInner>}
|
|
254
|
+
* @memberof V1AutoFocusInstruction
|
|
255
|
+
*/
|
|
256
|
+
'coordinates'?: Array<V1AutoFocusInstructionCoordinatesInner>;
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* Coordinates in degrees in epoch J2000
|
|
260
|
+
* @export
|
|
261
|
+
* @interface V1AutoFocusInstructionCoordinatesInner
|
|
262
|
+
*/
|
|
263
|
+
export interface V1AutoFocusInstructionCoordinatesInner {
|
|
264
|
+
/**
|
|
265
|
+
*
|
|
266
|
+
* @type {number}
|
|
267
|
+
* @memberof V1AutoFocusInstructionCoordinatesInner
|
|
268
|
+
*/
|
|
269
|
+
'rightAscension'?: number;
|
|
270
|
+
/**
|
|
271
|
+
*
|
|
272
|
+
* @type {number}
|
|
273
|
+
* @memberof V1AutoFocusInstructionCoordinatesInner
|
|
274
|
+
*/
|
|
275
|
+
'declination'?: number;
|
|
276
|
+
}
|
|
245
277
|
/**
|
|
246
278
|
* Camera
|
|
247
279
|
* @export
|
|
@@ -651,6 +683,19 @@ export interface V1ElevationMaskPoint {
|
|
|
651
683
|
*/
|
|
652
684
|
'maxAltitudeDegrees': number;
|
|
653
685
|
}
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @export
|
|
689
|
+
* @enum {string}
|
|
690
|
+
*/
|
|
691
|
+
|
|
692
|
+
export const V1FileType = {
|
|
693
|
+
ZIP: 'ZIP'
|
|
694
|
+
} as const;
|
|
695
|
+
|
|
696
|
+
export type V1FileType = typeof V1FileType[keyof typeof V1FileType];
|
|
697
|
+
|
|
698
|
+
|
|
654
699
|
/**
|
|
655
700
|
* Gain Curve
|
|
656
701
|
* @export
|
|
@@ -946,12 +991,6 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
946
991
|
* @interface V1GetPlateSolveCatalogDiffRequest
|
|
947
992
|
*/
|
|
948
993
|
export interface V1GetPlateSolveCatalogDiffRequest {
|
|
949
|
-
/**
|
|
950
|
-
*
|
|
951
|
-
* @type {V1PlateSolveCatalogIdentifier}
|
|
952
|
-
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
953
|
-
*/
|
|
954
|
-
'identifier': V1PlateSolveCatalogIdentifier;
|
|
955
994
|
/**
|
|
956
995
|
*
|
|
957
996
|
* @type {Array<V1PlateSolveCatalogFile>}
|
|
@@ -959,8 +998,6 @@ export interface V1GetPlateSolveCatalogDiffRequest {
|
|
|
959
998
|
*/
|
|
960
999
|
'existingFiles': Array<V1PlateSolveCatalogFile>;
|
|
961
1000
|
}
|
|
962
|
-
|
|
963
|
-
|
|
964
1001
|
/**
|
|
965
1002
|
*
|
|
966
1003
|
* @export
|
|
@@ -1292,6 +1329,12 @@ export interface V1Instruction {
|
|
|
1292
1329
|
* @memberof V1Instruction
|
|
1293
1330
|
*/
|
|
1294
1331
|
'search'?: Array<V1ObservationInstruction>;
|
|
1332
|
+
/**
|
|
1333
|
+
*
|
|
1334
|
+
* @type {V1AutoFocusInstruction}
|
|
1335
|
+
* @memberof V1Instruction
|
|
1336
|
+
*/
|
|
1337
|
+
'autofocus'?: V1AutoFocusInstruction;
|
|
1295
1338
|
}
|
|
1296
1339
|
/**
|
|
1297
1340
|
*
|
|
@@ -1483,7 +1526,9 @@ export const V1NodeDiagnosticType = {
|
|
|
1483
1526
|
APPLICATION_UPTIME_S: 'APPLICATION_UPTIME_S',
|
|
1484
1527
|
APPLICATION_CPU_TIME_S: 'APPLICATION_CPU_TIME_S',
|
|
1485
1528
|
CPU_USAGE_LAST_SECOND_PCT: 'CPU_USAGE_LAST_SECOND_PCT',
|
|
1486
|
-
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT'
|
|
1529
|
+
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT',
|
|
1530
|
+
FOCUS_HFR: 'FOCUS_HFR',
|
|
1531
|
+
HAS_FOCUSER: 'HAS_FOCUSER'
|
|
1487
1532
|
} as const;
|
|
1488
1533
|
|
|
1489
1534
|
export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
|
|
@@ -1711,20 +1756,21 @@ export interface V1PlateSolveCatalogFileDownload {
|
|
|
1711
1756
|
* @memberof V1PlateSolveCatalogFileDownload
|
|
1712
1757
|
*/
|
|
1713
1758
|
'base64Sha256Checksum': string;
|
|
1759
|
+
/**
|
|
1760
|
+
*
|
|
1761
|
+
* @type {string}
|
|
1762
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1763
|
+
*/
|
|
1764
|
+
'action': V1PlateSolveCatalogFileDownloadActionEnum;
|
|
1714
1765
|
}
|
|
1715
|
-
/**
|
|
1716
|
-
*
|
|
1717
|
-
* @export
|
|
1718
|
-
* @enum {string}
|
|
1719
|
-
*/
|
|
1720
1766
|
|
|
1721
|
-
export const
|
|
1722
|
-
|
|
1723
|
-
|
|
1767
|
+
export const V1PlateSolveCatalogFileDownloadActionEnum = {
|
|
1768
|
+
DOWNLOAD: 'DOWNLOAD',
|
|
1769
|
+
DELETE: 'DELETE',
|
|
1770
|
+
NO_ACTION: 'NO_ACTION'
|
|
1724
1771
|
} as const;
|
|
1725
1772
|
|
|
1726
|
-
export type
|
|
1727
|
-
|
|
1773
|
+
export type V1PlateSolveCatalogFileDownloadActionEnum = typeof V1PlateSolveCatalogFileDownloadActionEnum[keyof typeof V1PlateSolveCatalogFileDownloadActionEnum];
|
|
1728
1774
|
|
|
1729
1775
|
/**
|
|
1730
1776
|
*
|
|
@@ -1745,6 +1791,45 @@ export interface V1ReadNoisePoint {
|
|
|
1745
1791
|
*/
|
|
1746
1792
|
'eRMS': number;
|
|
1747
1793
|
}
|
|
1794
|
+
/**
|
|
1795
|
+
* Node Controller Release
|
|
1796
|
+
* @export
|
|
1797
|
+
* @interface V1Release
|
|
1798
|
+
*/
|
|
1799
|
+
export interface V1Release {
|
|
1800
|
+
/**
|
|
1801
|
+
*
|
|
1802
|
+
* @type {string}
|
|
1803
|
+
* @memberof V1Release
|
|
1804
|
+
*/
|
|
1805
|
+
'id': string;
|
|
1806
|
+
/**
|
|
1807
|
+
* Semantic version 2.0 of this release.
|
|
1808
|
+
* @type {string}
|
|
1809
|
+
* @memberof V1Release
|
|
1810
|
+
*/
|
|
1811
|
+
'version': string;
|
|
1812
|
+
/**
|
|
1813
|
+
*
|
|
1814
|
+
* @type {string}
|
|
1815
|
+
* @memberof V1Release
|
|
1816
|
+
*/
|
|
1817
|
+
'url': string;
|
|
1818
|
+
/**
|
|
1819
|
+
* SHA256 checksum of the file
|
|
1820
|
+
* @type {string}
|
|
1821
|
+
* @memberof V1Release
|
|
1822
|
+
*/
|
|
1823
|
+
'checksum': string;
|
|
1824
|
+
/**
|
|
1825
|
+
*
|
|
1826
|
+
* @type {V1FileType}
|
|
1827
|
+
* @memberof V1Release
|
|
1828
|
+
*/
|
|
1829
|
+
'fileType': V1FileType;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
|
|
1748
1833
|
/**
|
|
1749
1834
|
* Setup Action
|
|
1750
1835
|
* @export
|
|
@@ -2893,6 +2978,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2893
2978
|
|
|
2894
2979
|
|
|
2895
2980
|
|
|
2981
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2982
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2983
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2984
|
+
|
|
2985
|
+
return {
|
|
2986
|
+
url: toPathString(localVarUrlObj),
|
|
2987
|
+
options: localVarRequestOptions,
|
|
2988
|
+
};
|
|
2989
|
+
},
|
|
2990
|
+
/**
|
|
2991
|
+
* returns the current release for the node
|
|
2992
|
+
* @param {string} lineageId lineage id
|
|
2993
|
+
* @param {*} [options] Override http request option.
|
|
2994
|
+
* @throws {RequiredError}
|
|
2995
|
+
*/
|
|
2996
|
+
v1GetNodeControllerRelease: async (lineageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2997
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
2998
|
+
assertParamExists('v1GetNodeControllerRelease', 'lineageId', lineageId)
|
|
2999
|
+
const localVarPath = `/v1/node-controller-releases`;
|
|
3000
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3001
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3002
|
+
let baseOptions;
|
|
3003
|
+
if (configuration) {
|
|
3004
|
+
baseOptions = configuration.baseOptions;
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3008
|
+
const localVarHeaderParameter = {} as any;
|
|
3009
|
+
const localVarQueryParameter = {} as any;
|
|
3010
|
+
|
|
3011
|
+
// authentication Roles required
|
|
3012
|
+
|
|
3013
|
+
// authentication BearerToken required
|
|
3014
|
+
// http bearer authentication required
|
|
3015
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3016
|
+
|
|
3017
|
+
if (lineageId !== undefined) {
|
|
3018
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
|
|
3022
|
+
|
|
2896
3023
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2897
3024
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2898
3025
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3630,6 +3757,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3630
3757
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetMount(id, options);
|
|
3631
3758
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3632
3759
|
},
|
|
3760
|
+
/**
|
|
3761
|
+
* returns the current release for the node
|
|
3762
|
+
* @param {string} lineageId lineage id
|
|
3763
|
+
* @param {*} [options] Override http request option.
|
|
3764
|
+
* @throws {RequiredError}
|
|
3765
|
+
*/
|
|
3766
|
+
async v1GetNodeControllerRelease(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Release>> {
|
|
3767
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeControllerRelease(lineageId, options);
|
|
3768
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3769
|
+
},
|
|
3633
3770
|
/**
|
|
3634
3771
|
* Get node diagnostic tasks.
|
|
3635
3772
|
* @param {string} nodeId
|
|
@@ -3923,6 +4060,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3923
4060
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount> {
|
|
3924
4061
|
return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
3925
4062
|
},
|
|
4063
|
+
/**
|
|
4064
|
+
* returns the current release for the node
|
|
4065
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
4066
|
+
* @param {*} [options] Override http request option.
|
|
4067
|
+
* @throws {RequiredError}
|
|
4068
|
+
*/
|
|
4069
|
+
v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): AxiosPromise<V1Release> {
|
|
4070
|
+
return localVarFp.v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(axios, basePath));
|
|
4071
|
+
},
|
|
3926
4072
|
/**
|
|
3927
4073
|
* Get node diagnostic tasks.
|
|
3928
4074
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
@@ -4301,6 +4447,20 @@ export interface DefaultApiV1GetMountRequest {
|
|
|
4301
4447
|
readonly id: string
|
|
4302
4448
|
}
|
|
4303
4449
|
|
|
4450
|
+
/**
|
|
4451
|
+
* Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
|
|
4452
|
+
* @export
|
|
4453
|
+
* @interface DefaultApiV1GetNodeControllerReleaseRequest
|
|
4454
|
+
*/
|
|
4455
|
+
export interface DefaultApiV1GetNodeControllerReleaseRequest {
|
|
4456
|
+
/**
|
|
4457
|
+
* lineage id
|
|
4458
|
+
* @type {string}
|
|
4459
|
+
* @memberof DefaultApiV1GetNodeControllerRelease
|
|
4460
|
+
*/
|
|
4461
|
+
readonly lineageId: string
|
|
4462
|
+
}
|
|
4463
|
+
|
|
4304
4464
|
/**
|
|
4305
4465
|
* Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
|
|
4306
4466
|
* @export
|
|
@@ -4682,6 +4842,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
4682
4842
|
return DefaultApiFp(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
4683
4843
|
}
|
|
4684
4844
|
|
|
4845
|
+
/**
|
|
4846
|
+
* returns the current release for the node
|
|
4847
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
4848
|
+
* @param {*} [options] Override http request option.
|
|
4849
|
+
* @throws {RequiredError}
|
|
4850
|
+
* @memberof DefaultApi
|
|
4851
|
+
*/
|
|
4852
|
+
public v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig) {
|
|
4853
|
+
return DefaultApiFp(this.configuration).v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
|
|
4854
|
+
}
|
|
4855
|
+
|
|
4685
4856
|
/**
|
|
4686
4857
|
* Get node diagnostic tasks.
|
|
4687
4858
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -200,6 +200,38 @@ export declare const TrackingType: {
|
|
|
200
200
|
readonly TARGET_RATE: "TARGET_RATE";
|
|
201
201
|
};
|
|
202
202
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
203
|
+
/**
|
|
204
|
+
* Autofocus Instruction
|
|
205
|
+
* @export
|
|
206
|
+
* @interface V1AutoFocusInstruction
|
|
207
|
+
*/
|
|
208
|
+
export interface V1AutoFocusInstruction {
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @type {Array<V1AutoFocusInstructionCoordinatesInner>}
|
|
212
|
+
* @memberof V1AutoFocusInstruction
|
|
213
|
+
*/
|
|
214
|
+
'coordinates'?: Array<V1AutoFocusInstructionCoordinatesInner>;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Coordinates in degrees in epoch J2000
|
|
218
|
+
* @export
|
|
219
|
+
* @interface V1AutoFocusInstructionCoordinatesInner
|
|
220
|
+
*/
|
|
221
|
+
export interface V1AutoFocusInstructionCoordinatesInner {
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @type {number}
|
|
225
|
+
* @memberof V1AutoFocusInstructionCoordinatesInner
|
|
226
|
+
*/
|
|
227
|
+
'rightAscension'?: number;
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @type {number}
|
|
231
|
+
* @memberof V1AutoFocusInstructionCoordinatesInner
|
|
232
|
+
*/
|
|
233
|
+
'declination'?: number;
|
|
234
|
+
}
|
|
203
235
|
/**
|
|
204
236
|
* Camera
|
|
205
237
|
* @export
|
|
@@ -597,6 +629,15 @@ export interface V1ElevationMaskPoint {
|
|
|
597
629
|
*/
|
|
598
630
|
'maxAltitudeDegrees': number;
|
|
599
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
*
|
|
634
|
+
* @export
|
|
635
|
+
* @enum {string}
|
|
636
|
+
*/
|
|
637
|
+
export declare const V1FileType: {
|
|
638
|
+
readonly ZIP: "ZIP";
|
|
639
|
+
};
|
|
640
|
+
export type V1FileType = typeof V1FileType[keyof typeof V1FileType];
|
|
600
641
|
/**
|
|
601
642
|
* Gain Curve
|
|
602
643
|
* @export
|
|
@@ -886,12 +927,6 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
886
927
|
* @interface V1GetPlateSolveCatalogDiffRequest
|
|
887
928
|
*/
|
|
888
929
|
export interface V1GetPlateSolveCatalogDiffRequest {
|
|
889
|
-
/**
|
|
890
|
-
*
|
|
891
|
-
* @type {V1PlateSolveCatalogIdentifier}
|
|
892
|
-
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
893
|
-
*/
|
|
894
|
-
'identifier': V1PlateSolveCatalogIdentifier;
|
|
895
930
|
/**
|
|
896
931
|
*
|
|
897
932
|
* @type {Array<V1PlateSolveCatalogFile>}
|
|
@@ -1226,6 +1261,12 @@ export interface V1Instruction {
|
|
|
1226
1261
|
* @memberof V1Instruction
|
|
1227
1262
|
*/
|
|
1228
1263
|
'search'?: Array<V1ObservationInstruction>;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @type {V1AutoFocusInstruction}
|
|
1267
|
+
* @memberof V1Instruction
|
|
1268
|
+
*/
|
|
1269
|
+
'autofocus'?: V1AutoFocusInstruction;
|
|
1229
1270
|
}
|
|
1230
1271
|
/**
|
|
1231
1272
|
*
|
|
@@ -1409,6 +1450,8 @@ export declare const V1NodeDiagnosticType: {
|
|
|
1409
1450
|
readonly APPLICATION_CPU_TIME_S: "APPLICATION_CPU_TIME_S";
|
|
1410
1451
|
readonly CPU_USAGE_LAST_SECOND_PCT: "CPU_USAGE_LAST_SECOND_PCT";
|
|
1411
1452
|
readonly CPU_USAGE_LAST_MINUTE_PCT: "CPU_USAGE_LAST_MINUTE_PCT";
|
|
1453
|
+
readonly FOCUS_HFR: "FOCUS_HFR";
|
|
1454
|
+
readonly HAS_FOCUSER: "HAS_FOCUSER";
|
|
1412
1455
|
};
|
|
1413
1456
|
export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
|
|
1414
1457
|
/**
|
|
@@ -1631,17 +1674,19 @@ export interface V1PlateSolveCatalogFileDownload {
|
|
|
1631
1674
|
* @memberof V1PlateSolveCatalogFileDownload
|
|
1632
1675
|
*/
|
|
1633
1676
|
'base64Sha256Checksum': string;
|
|
1677
|
+
/**
|
|
1678
|
+
*
|
|
1679
|
+
* @type {string}
|
|
1680
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1681
|
+
*/
|
|
1682
|
+
'action': V1PlateSolveCatalogFileDownloadActionEnum;
|
|
1634
1683
|
}
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
*/
|
|
1640
|
-
export declare const V1PlateSolveCatalogIdentifier: {
|
|
1641
|
-
readonly TWO_MASS_4100: "TWO_MASS_4100";
|
|
1642
|
-
readonly TWO_MASS_LITE: "TWO_MASS_LITE";
|
|
1684
|
+
export declare const V1PlateSolveCatalogFileDownloadActionEnum: {
|
|
1685
|
+
readonly DOWNLOAD: "DOWNLOAD";
|
|
1686
|
+
readonly DELETE: "DELETE";
|
|
1687
|
+
readonly NO_ACTION: "NO_ACTION";
|
|
1643
1688
|
};
|
|
1644
|
-
export type
|
|
1689
|
+
export type V1PlateSolveCatalogFileDownloadActionEnum = typeof V1PlateSolveCatalogFileDownloadActionEnum[keyof typeof V1PlateSolveCatalogFileDownloadActionEnum];
|
|
1645
1690
|
/**
|
|
1646
1691
|
*
|
|
1647
1692
|
* @export
|
|
@@ -1661,6 +1706,43 @@ export interface V1ReadNoisePoint {
|
|
|
1661
1706
|
*/
|
|
1662
1707
|
'eRMS': number;
|
|
1663
1708
|
}
|
|
1709
|
+
/**
|
|
1710
|
+
* Node Controller Release
|
|
1711
|
+
* @export
|
|
1712
|
+
* @interface V1Release
|
|
1713
|
+
*/
|
|
1714
|
+
export interface V1Release {
|
|
1715
|
+
/**
|
|
1716
|
+
*
|
|
1717
|
+
* @type {string}
|
|
1718
|
+
* @memberof V1Release
|
|
1719
|
+
*/
|
|
1720
|
+
'id': string;
|
|
1721
|
+
/**
|
|
1722
|
+
* Semantic version 2.0 of this release.
|
|
1723
|
+
* @type {string}
|
|
1724
|
+
* @memberof V1Release
|
|
1725
|
+
*/
|
|
1726
|
+
'version': string;
|
|
1727
|
+
/**
|
|
1728
|
+
*
|
|
1729
|
+
* @type {string}
|
|
1730
|
+
* @memberof V1Release
|
|
1731
|
+
*/
|
|
1732
|
+
'url': string;
|
|
1733
|
+
/**
|
|
1734
|
+
* SHA256 checksum of the file
|
|
1735
|
+
* @type {string}
|
|
1736
|
+
* @memberof V1Release
|
|
1737
|
+
*/
|
|
1738
|
+
'checksum': string;
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @type {V1FileType}
|
|
1742
|
+
* @memberof V1Release
|
|
1743
|
+
*/
|
|
1744
|
+
'fileType': V1FileType;
|
|
1745
|
+
}
|
|
1664
1746
|
/**
|
|
1665
1747
|
* Setup Action
|
|
1666
1748
|
* @export
|
|
@@ -2208,6 +2290,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2208
2290
|
* @throws {RequiredError}
|
|
2209
2291
|
*/
|
|
2210
2292
|
v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2293
|
+
/**
|
|
2294
|
+
* returns the current release for the node
|
|
2295
|
+
* @param {string} lineageId lineage id
|
|
2296
|
+
* @param {*} [options] Override http request option.
|
|
2297
|
+
* @throws {RequiredError}
|
|
2298
|
+
*/
|
|
2299
|
+
v1GetNodeControllerRelease: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2211
2300
|
/**
|
|
2212
2301
|
* Get node diagnostic tasks.
|
|
2213
2302
|
* @param {string} nodeId
|
|
@@ -2431,6 +2520,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2431
2520
|
* @throws {RequiredError}
|
|
2432
2521
|
*/
|
|
2433
2522
|
v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
|
|
2523
|
+
/**
|
|
2524
|
+
* returns the current release for the node
|
|
2525
|
+
* @param {string} lineageId lineage id
|
|
2526
|
+
* @param {*} [options] Override http request option.
|
|
2527
|
+
* @throws {RequiredError}
|
|
2528
|
+
*/
|
|
2529
|
+
v1GetNodeControllerRelease(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Release>>;
|
|
2434
2530
|
/**
|
|
2435
2531
|
* Get node diagnostic tasks.
|
|
2436
2532
|
* @param {string} nodeId
|
|
@@ -2647,6 +2743,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2647
2743
|
* @throws {RequiredError}
|
|
2648
2744
|
*/
|
|
2649
2745
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
|
|
2746
|
+
/**
|
|
2747
|
+
* returns the current release for the node
|
|
2748
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
2749
|
+
* @param {*} [options] Override http request option.
|
|
2750
|
+
* @throws {RequiredError}
|
|
2751
|
+
*/
|
|
2752
|
+
v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): AxiosPromise<V1Release>;
|
|
2650
2753
|
/**
|
|
2651
2754
|
* Get node diagnostic tasks.
|
|
2652
2755
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
@@ -2975,6 +3078,19 @@ export interface DefaultApiV1GetMountRequest {
|
|
|
2975
3078
|
*/
|
|
2976
3079
|
readonly id: string;
|
|
2977
3080
|
}
|
|
3081
|
+
/**
|
|
3082
|
+
* Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
|
|
3083
|
+
* @export
|
|
3084
|
+
* @interface DefaultApiV1GetNodeControllerReleaseRequest
|
|
3085
|
+
*/
|
|
3086
|
+
export interface DefaultApiV1GetNodeControllerReleaseRequest {
|
|
3087
|
+
/**
|
|
3088
|
+
* lineage id
|
|
3089
|
+
* @type {string}
|
|
3090
|
+
* @memberof DefaultApiV1GetNodeControllerRelease
|
|
3091
|
+
*/
|
|
3092
|
+
readonly lineageId: string;
|
|
3093
|
+
}
|
|
2978
3094
|
/**
|
|
2979
3095
|
* Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
|
|
2980
3096
|
* @export
|
|
@@ -3290,6 +3406,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3290
3406
|
* @memberof DefaultApi
|
|
3291
3407
|
*/
|
|
3292
3408
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
|
|
3409
|
+
/**
|
|
3410
|
+
* returns the current release for the node
|
|
3411
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
3412
|
+
* @param {*} [options] Override http request option.
|
|
3413
|
+
* @throws {RequiredError}
|
|
3414
|
+
* @memberof DefaultApi
|
|
3415
|
+
*/
|
|
3416
|
+
v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Release, any>>;
|
|
3293
3417
|
/**
|
|
3294
3418
|
* Get node diagnostic tasks.
|
|
3295
3419
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
package/dist/api.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.3603
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.
|
|
25
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlateSolveCatalogFileDownloadActionEnum = exports.V1NodeDiagnosticType = exports.V1NodeComponentType = exports.V1FileType = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.FilterType = exports.CameraMode = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -126,6 +126,14 @@ exports.TrackingType = {
|
|
|
126
126
|
SIDEREAL: 'SIDEREAL',
|
|
127
127
|
TARGET_RATE: 'TARGET_RATE'
|
|
128
128
|
};
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @export
|
|
132
|
+
* @enum {string}
|
|
133
|
+
*/
|
|
134
|
+
exports.V1FileType = {
|
|
135
|
+
ZIP: 'ZIP'
|
|
136
|
+
};
|
|
129
137
|
/**
|
|
130
138
|
*
|
|
131
139
|
* @export
|
|
@@ -159,16 +167,14 @@ exports.V1NodeDiagnosticType = {
|
|
|
159
167
|
APPLICATION_UPTIME_S: 'APPLICATION_UPTIME_S',
|
|
160
168
|
APPLICATION_CPU_TIME_S: 'APPLICATION_CPU_TIME_S',
|
|
161
169
|
CPU_USAGE_LAST_SECOND_PCT: 'CPU_USAGE_LAST_SECOND_PCT',
|
|
162
|
-
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT'
|
|
170
|
+
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT',
|
|
171
|
+
FOCUS_HFR: 'FOCUS_HFR',
|
|
172
|
+
HAS_FOCUSER: 'HAS_FOCUSER'
|
|
163
173
|
};
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
*/
|
|
169
|
-
exports.V1PlateSolveCatalogIdentifier = {
|
|
170
|
-
TWO_MASS_4100: 'TWO_MASS_4100',
|
|
171
|
-
TWO_MASS_LITE: 'TWO_MASS_LITE'
|
|
174
|
+
exports.V1PlateSolveCatalogFileDownloadActionEnum = {
|
|
175
|
+
DOWNLOAD: 'DOWNLOAD',
|
|
176
|
+
DELETE: 'DELETE',
|
|
177
|
+
NO_ACTION: 'NO_ACTION'
|
|
172
178
|
};
|
|
173
179
|
/**
|
|
174
180
|
* DefaultApi - axios parameter creator
|
|
@@ -759,6 +765,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
759
765
|
options: localVarRequestOptions,
|
|
760
766
|
};
|
|
761
767
|
}),
|
|
768
|
+
/**
|
|
769
|
+
* returns the current release for the node
|
|
770
|
+
* @param {string} lineageId lineage id
|
|
771
|
+
* @param {*} [options] Override http request option.
|
|
772
|
+
* @throws {RequiredError}
|
|
773
|
+
*/
|
|
774
|
+
v1GetNodeControllerRelease: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
775
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
776
|
+
(0, common_1.assertParamExists)('v1GetNodeControllerRelease', 'lineageId', lineageId);
|
|
777
|
+
const localVarPath = `/v1/node-controller-releases`;
|
|
778
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
779
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
780
|
+
let baseOptions;
|
|
781
|
+
if (configuration) {
|
|
782
|
+
baseOptions = configuration.baseOptions;
|
|
783
|
+
}
|
|
784
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
785
|
+
const localVarHeaderParameter = {};
|
|
786
|
+
const localVarQueryParameter = {};
|
|
787
|
+
// authentication Roles required
|
|
788
|
+
// authentication BearerToken required
|
|
789
|
+
// http bearer authentication required
|
|
790
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
791
|
+
if (lineageId !== undefined) {
|
|
792
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
793
|
+
}
|
|
794
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
795
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
796
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
797
|
+
return {
|
|
798
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
799
|
+
options: localVarRequestOptions,
|
|
800
|
+
};
|
|
801
|
+
}),
|
|
762
802
|
/**
|
|
763
803
|
* Get node diagnostic tasks.
|
|
764
804
|
* @param {string} nodeId
|
|
@@ -1415,6 +1455,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
1415
1455
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1416
1456
|
});
|
|
1417
1457
|
},
|
|
1458
|
+
/**
|
|
1459
|
+
* returns the current release for the node
|
|
1460
|
+
* @param {string} lineageId lineage id
|
|
1461
|
+
* @param {*} [options] Override http request option.
|
|
1462
|
+
* @throws {RequiredError}
|
|
1463
|
+
*/
|
|
1464
|
+
v1GetNodeControllerRelease(lineageId, options) {
|
|
1465
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1466
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeControllerRelease(lineageId, options);
|
|
1467
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1468
|
+
});
|
|
1469
|
+
},
|
|
1418
1470
|
/**
|
|
1419
1471
|
* Get node diagnostic tasks.
|
|
1420
1472
|
* @param {string} nodeId
|
|
@@ -1734,6 +1786,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1734
1786
|
v1GetMount(requestParameters, options) {
|
|
1735
1787
|
return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
1736
1788
|
},
|
|
1789
|
+
/**
|
|
1790
|
+
* returns the current release for the node
|
|
1791
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
1792
|
+
* @param {*} [options] Override http request option.
|
|
1793
|
+
* @throws {RequiredError}
|
|
1794
|
+
*/
|
|
1795
|
+
v1GetNodeControllerRelease(requestParameters, options) {
|
|
1796
|
+
return localVarFp.v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(axios, basePath));
|
|
1797
|
+
},
|
|
1737
1798
|
/**
|
|
1738
1799
|
* Get node diagnostic tasks.
|
|
1739
1800
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
@@ -2028,6 +2089,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2028
2089
|
v1GetMount(requestParameters, options) {
|
|
2029
2090
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2030
2091
|
}
|
|
2092
|
+
/**
|
|
2093
|
+
* returns the current release for the node
|
|
2094
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
2095
|
+
* @param {*} [options] Override http request option.
|
|
2096
|
+
* @throws {RequiredError}
|
|
2097
|
+
* @memberof DefaultApi
|
|
2098
|
+
*/
|
|
2099
|
+
v1GetNodeControllerRelease(requestParameters, options) {
|
|
2100
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
|
|
2101
|
+
}
|
|
2031
2102
|
/**
|
|
2032
2103
|
* Get node diagnostic tasks.
|
|
2033
2104
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
package/dist/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.3603
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.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.3603
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/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.3603
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.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.3603
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.3603
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.3603
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3603
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -200,6 +200,38 @@ export declare const TrackingType: {
|
|
|
200
200
|
readonly TARGET_RATE: "TARGET_RATE";
|
|
201
201
|
};
|
|
202
202
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
203
|
+
/**
|
|
204
|
+
* Autofocus Instruction
|
|
205
|
+
* @export
|
|
206
|
+
* @interface V1AutoFocusInstruction
|
|
207
|
+
*/
|
|
208
|
+
export interface V1AutoFocusInstruction {
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @type {Array<V1AutoFocusInstructionCoordinatesInner>}
|
|
212
|
+
* @memberof V1AutoFocusInstruction
|
|
213
|
+
*/
|
|
214
|
+
'coordinates'?: Array<V1AutoFocusInstructionCoordinatesInner>;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Coordinates in degrees in epoch J2000
|
|
218
|
+
* @export
|
|
219
|
+
* @interface V1AutoFocusInstructionCoordinatesInner
|
|
220
|
+
*/
|
|
221
|
+
export interface V1AutoFocusInstructionCoordinatesInner {
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @type {number}
|
|
225
|
+
* @memberof V1AutoFocusInstructionCoordinatesInner
|
|
226
|
+
*/
|
|
227
|
+
'rightAscension'?: number;
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @type {number}
|
|
231
|
+
* @memberof V1AutoFocusInstructionCoordinatesInner
|
|
232
|
+
*/
|
|
233
|
+
'declination'?: number;
|
|
234
|
+
}
|
|
203
235
|
/**
|
|
204
236
|
* Camera
|
|
205
237
|
* @export
|
|
@@ -597,6 +629,15 @@ export interface V1ElevationMaskPoint {
|
|
|
597
629
|
*/
|
|
598
630
|
'maxAltitudeDegrees': number;
|
|
599
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
*
|
|
634
|
+
* @export
|
|
635
|
+
* @enum {string}
|
|
636
|
+
*/
|
|
637
|
+
export declare const V1FileType: {
|
|
638
|
+
readonly ZIP: "ZIP";
|
|
639
|
+
};
|
|
640
|
+
export type V1FileType = typeof V1FileType[keyof typeof V1FileType];
|
|
600
641
|
/**
|
|
601
642
|
* Gain Curve
|
|
602
643
|
* @export
|
|
@@ -886,12 +927,6 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
886
927
|
* @interface V1GetPlateSolveCatalogDiffRequest
|
|
887
928
|
*/
|
|
888
929
|
export interface V1GetPlateSolveCatalogDiffRequest {
|
|
889
|
-
/**
|
|
890
|
-
*
|
|
891
|
-
* @type {V1PlateSolveCatalogIdentifier}
|
|
892
|
-
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
893
|
-
*/
|
|
894
|
-
'identifier': V1PlateSolveCatalogIdentifier;
|
|
895
930
|
/**
|
|
896
931
|
*
|
|
897
932
|
* @type {Array<V1PlateSolveCatalogFile>}
|
|
@@ -1226,6 +1261,12 @@ export interface V1Instruction {
|
|
|
1226
1261
|
* @memberof V1Instruction
|
|
1227
1262
|
*/
|
|
1228
1263
|
'search'?: Array<V1ObservationInstruction>;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @type {V1AutoFocusInstruction}
|
|
1267
|
+
* @memberof V1Instruction
|
|
1268
|
+
*/
|
|
1269
|
+
'autofocus'?: V1AutoFocusInstruction;
|
|
1229
1270
|
}
|
|
1230
1271
|
/**
|
|
1231
1272
|
*
|
|
@@ -1409,6 +1450,8 @@ export declare const V1NodeDiagnosticType: {
|
|
|
1409
1450
|
readonly APPLICATION_CPU_TIME_S: "APPLICATION_CPU_TIME_S";
|
|
1410
1451
|
readonly CPU_USAGE_LAST_SECOND_PCT: "CPU_USAGE_LAST_SECOND_PCT";
|
|
1411
1452
|
readonly CPU_USAGE_LAST_MINUTE_PCT: "CPU_USAGE_LAST_MINUTE_PCT";
|
|
1453
|
+
readonly FOCUS_HFR: "FOCUS_HFR";
|
|
1454
|
+
readonly HAS_FOCUSER: "HAS_FOCUSER";
|
|
1412
1455
|
};
|
|
1413
1456
|
export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
|
|
1414
1457
|
/**
|
|
@@ -1631,17 +1674,19 @@ export interface V1PlateSolveCatalogFileDownload {
|
|
|
1631
1674
|
* @memberof V1PlateSolveCatalogFileDownload
|
|
1632
1675
|
*/
|
|
1633
1676
|
'base64Sha256Checksum': string;
|
|
1677
|
+
/**
|
|
1678
|
+
*
|
|
1679
|
+
* @type {string}
|
|
1680
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1681
|
+
*/
|
|
1682
|
+
'action': V1PlateSolveCatalogFileDownloadActionEnum;
|
|
1634
1683
|
}
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
*/
|
|
1640
|
-
export declare const V1PlateSolveCatalogIdentifier: {
|
|
1641
|
-
readonly TWO_MASS_4100: "TWO_MASS_4100";
|
|
1642
|
-
readonly TWO_MASS_LITE: "TWO_MASS_LITE";
|
|
1684
|
+
export declare const V1PlateSolveCatalogFileDownloadActionEnum: {
|
|
1685
|
+
readonly DOWNLOAD: "DOWNLOAD";
|
|
1686
|
+
readonly DELETE: "DELETE";
|
|
1687
|
+
readonly NO_ACTION: "NO_ACTION";
|
|
1643
1688
|
};
|
|
1644
|
-
export type
|
|
1689
|
+
export type V1PlateSolveCatalogFileDownloadActionEnum = typeof V1PlateSolveCatalogFileDownloadActionEnum[keyof typeof V1PlateSolveCatalogFileDownloadActionEnum];
|
|
1645
1690
|
/**
|
|
1646
1691
|
*
|
|
1647
1692
|
* @export
|
|
@@ -1661,6 +1706,43 @@ export interface V1ReadNoisePoint {
|
|
|
1661
1706
|
*/
|
|
1662
1707
|
'eRMS': number;
|
|
1663
1708
|
}
|
|
1709
|
+
/**
|
|
1710
|
+
* Node Controller Release
|
|
1711
|
+
* @export
|
|
1712
|
+
* @interface V1Release
|
|
1713
|
+
*/
|
|
1714
|
+
export interface V1Release {
|
|
1715
|
+
/**
|
|
1716
|
+
*
|
|
1717
|
+
* @type {string}
|
|
1718
|
+
* @memberof V1Release
|
|
1719
|
+
*/
|
|
1720
|
+
'id': string;
|
|
1721
|
+
/**
|
|
1722
|
+
* Semantic version 2.0 of this release.
|
|
1723
|
+
* @type {string}
|
|
1724
|
+
* @memberof V1Release
|
|
1725
|
+
*/
|
|
1726
|
+
'version': string;
|
|
1727
|
+
/**
|
|
1728
|
+
*
|
|
1729
|
+
* @type {string}
|
|
1730
|
+
* @memberof V1Release
|
|
1731
|
+
*/
|
|
1732
|
+
'url': string;
|
|
1733
|
+
/**
|
|
1734
|
+
* SHA256 checksum of the file
|
|
1735
|
+
* @type {string}
|
|
1736
|
+
* @memberof V1Release
|
|
1737
|
+
*/
|
|
1738
|
+
'checksum': string;
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @type {V1FileType}
|
|
1742
|
+
* @memberof V1Release
|
|
1743
|
+
*/
|
|
1744
|
+
'fileType': V1FileType;
|
|
1745
|
+
}
|
|
1664
1746
|
/**
|
|
1665
1747
|
* Setup Action
|
|
1666
1748
|
* @export
|
|
@@ -2208,6 +2290,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2208
2290
|
* @throws {RequiredError}
|
|
2209
2291
|
*/
|
|
2210
2292
|
v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2293
|
+
/**
|
|
2294
|
+
* returns the current release for the node
|
|
2295
|
+
* @param {string} lineageId lineage id
|
|
2296
|
+
* @param {*} [options] Override http request option.
|
|
2297
|
+
* @throws {RequiredError}
|
|
2298
|
+
*/
|
|
2299
|
+
v1GetNodeControllerRelease: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2211
2300
|
/**
|
|
2212
2301
|
* Get node diagnostic tasks.
|
|
2213
2302
|
* @param {string} nodeId
|
|
@@ -2431,6 +2520,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2431
2520
|
* @throws {RequiredError}
|
|
2432
2521
|
*/
|
|
2433
2522
|
v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
|
|
2523
|
+
/**
|
|
2524
|
+
* returns the current release for the node
|
|
2525
|
+
* @param {string} lineageId lineage id
|
|
2526
|
+
* @param {*} [options] Override http request option.
|
|
2527
|
+
* @throws {RequiredError}
|
|
2528
|
+
*/
|
|
2529
|
+
v1GetNodeControllerRelease(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Release>>;
|
|
2434
2530
|
/**
|
|
2435
2531
|
* Get node diagnostic tasks.
|
|
2436
2532
|
* @param {string} nodeId
|
|
@@ -2647,6 +2743,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2647
2743
|
* @throws {RequiredError}
|
|
2648
2744
|
*/
|
|
2649
2745
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
|
|
2746
|
+
/**
|
|
2747
|
+
* returns the current release for the node
|
|
2748
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
2749
|
+
* @param {*} [options] Override http request option.
|
|
2750
|
+
* @throws {RequiredError}
|
|
2751
|
+
*/
|
|
2752
|
+
v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): AxiosPromise<V1Release>;
|
|
2650
2753
|
/**
|
|
2651
2754
|
* Get node diagnostic tasks.
|
|
2652
2755
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
@@ -2975,6 +3078,19 @@ export interface DefaultApiV1GetMountRequest {
|
|
|
2975
3078
|
*/
|
|
2976
3079
|
readonly id: string;
|
|
2977
3080
|
}
|
|
3081
|
+
/**
|
|
3082
|
+
* Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
|
|
3083
|
+
* @export
|
|
3084
|
+
* @interface DefaultApiV1GetNodeControllerReleaseRequest
|
|
3085
|
+
*/
|
|
3086
|
+
export interface DefaultApiV1GetNodeControllerReleaseRequest {
|
|
3087
|
+
/**
|
|
3088
|
+
* lineage id
|
|
3089
|
+
* @type {string}
|
|
3090
|
+
* @memberof DefaultApiV1GetNodeControllerRelease
|
|
3091
|
+
*/
|
|
3092
|
+
readonly lineageId: string;
|
|
3093
|
+
}
|
|
2978
3094
|
/**
|
|
2979
3095
|
* Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
|
|
2980
3096
|
* @export
|
|
@@ -3290,6 +3406,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3290
3406
|
* @memberof DefaultApi
|
|
3291
3407
|
*/
|
|
3292
3408
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
|
|
3409
|
+
/**
|
|
3410
|
+
* returns the current release for the node
|
|
3411
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
3412
|
+
* @param {*} [options] Override http request option.
|
|
3413
|
+
* @throws {RequiredError}
|
|
3414
|
+
* @memberof DefaultApi
|
|
3415
|
+
*/
|
|
3416
|
+
v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Release, any>>;
|
|
3293
3417
|
/**
|
|
3294
3418
|
* Get node diagnostic tasks.
|
|
3295
3419
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
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.3603
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -123,6 +123,14 @@ export const TrackingType = {
|
|
|
123
123
|
SIDEREAL: 'SIDEREAL',
|
|
124
124
|
TARGET_RATE: 'TARGET_RATE'
|
|
125
125
|
};
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @export
|
|
129
|
+
* @enum {string}
|
|
130
|
+
*/
|
|
131
|
+
export const V1FileType = {
|
|
132
|
+
ZIP: 'ZIP'
|
|
133
|
+
};
|
|
126
134
|
/**
|
|
127
135
|
*
|
|
128
136
|
* @export
|
|
@@ -156,16 +164,14 @@ export const V1NodeDiagnosticType = {
|
|
|
156
164
|
APPLICATION_UPTIME_S: 'APPLICATION_UPTIME_S',
|
|
157
165
|
APPLICATION_CPU_TIME_S: 'APPLICATION_CPU_TIME_S',
|
|
158
166
|
CPU_USAGE_LAST_SECOND_PCT: 'CPU_USAGE_LAST_SECOND_PCT',
|
|
159
|
-
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT'
|
|
167
|
+
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT',
|
|
168
|
+
FOCUS_HFR: 'FOCUS_HFR',
|
|
169
|
+
HAS_FOCUSER: 'HAS_FOCUSER'
|
|
160
170
|
};
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
*/
|
|
166
|
-
export const V1PlateSolveCatalogIdentifier = {
|
|
167
|
-
TWO_MASS_4100: 'TWO_MASS_4100',
|
|
168
|
-
TWO_MASS_LITE: 'TWO_MASS_LITE'
|
|
171
|
+
export const V1PlateSolveCatalogFileDownloadActionEnum = {
|
|
172
|
+
DOWNLOAD: 'DOWNLOAD',
|
|
173
|
+
DELETE: 'DELETE',
|
|
174
|
+
NO_ACTION: 'NO_ACTION'
|
|
169
175
|
};
|
|
170
176
|
/**
|
|
171
177
|
* DefaultApi - axios parameter creator
|
|
@@ -756,6 +762,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
756
762
|
options: localVarRequestOptions,
|
|
757
763
|
};
|
|
758
764
|
}),
|
|
765
|
+
/**
|
|
766
|
+
* returns the current release for the node
|
|
767
|
+
* @param {string} lineageId lineage id
|
|
768
|
+
* @param {*} [options] Override http request option.
|
|
769
|
+
* @throws {RequiredError}
|
|
770
|
+
*/
|
|
771
|
+
v1GetNodeControllerRelease: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
772
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
773
|
+
assertParamExists('v1GetNodeControllerRelease', 'lineageId', lineageId);
|
|
774
|
+
const localVarPath = `/v1/node-controller-releases`;
|
|
775
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
776
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
777
|
+
let baseOptions;
|
|
778
|
+
if (configuration) {
|
|
779
|
+
baseOptions = configuration.baseOptions;
|
|
780
|
+
}
|
|
781
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
782
|
+
const localVarHeaderParameter = {};
|
|
783
|
+
const localVarQueryParameter = {};
|
|
784
|
+
// authentication Roles required
|
|
785
|
+
// authentication BearerToken required
|
|
786
|
+
// http bearer authentication required
|
|
787
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
788
|
+
if (lineageId !== undefined) {
|
|
789
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
790
|
+
}
|
|
791
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
792
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
793
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
794
|
+
return {
|
|
795
|
+
url: toPathString(localVarUrlObj),
|
|
796
|
+
options: localVarRequestOptions,
|
|
797
|
+
};
|
|
798
|
+
}),
|
|
759
799
|
/**
|
|
760
800
|
* Get node diagnostic tasks.
|
|
761
801
|
* @param {string} nodeId
|
|
@@ -1411,6 +1451,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1411
1451
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1412
1452
|
});
|
|
1413
1453
|
},
|
|
1454
|
+
/**
|
|
1455
|
+
* returns the current release for the node
|
|
1456
|
+
* @param {string} lineageId lineage id
|
|
1457
|
+
* @param {*} [options] Override http request option.
|
|
1458
|
+
* @throws {RequiredError}
|
|
1459
|
+
*/
|
|
1460
|
+
v1GetNodeControllerRelease(lineageId, options) {
|
|
1461
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1462
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeControllerRelease(lineageId, options);
|
|
1463
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1464
|
+
});
|
|
1465
|
+
},
|
|
1414
1466
|
/**
|
|
1415
1467
|
* Get node diagnostic tasks.
|
|
1416
1468
|
* @param {string} nodeId
|
|
@@ -1729,6 +1781,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1729
1781
|
v1GetMount(requestParameters, options) {
|
|
1730
1782
|
return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
1731
1783
|
},
|
|
1784
|
+
/**
|
|
1785
|
+
* returns the current release for the node
|
|
1786
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
1787
|
+
* @param {*} [options] Override http request option.
|
|
1788
|
+
* @throws {RequiredError}
|
|
1789
|
+
*/
|
|
1790
|
+
v1GetNodeControllerRelease(requestParameters, options) {
|
|
1791
|
+
return localVarFp.v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(axios, basePath));
|
|
1792
|
+
},
|
|
1732
1793
|
/**
|
|
1733
1794
|
* Get node diagnostic tasks.
|
|
1734
1795
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
|
|
@@ -2022,6 +2083,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2022
2083
|
v1GetMount(requestParameters, options) {
|
|
2023
2084
|
return DefaultApiFp(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2024
2085
|
}
|
|
2086
|
+
/**
|
|
2087
|
+
* returns the current release for the node
|
|
2088
|
+
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
2089
|
+
* @param {*} [options] Override http request option.
|
|
2090
|
+
* @throws {RequiredError}
|
|
2091
|
+
* @memberof DefaultApi
|
|
2092
|
+
*/
|
|
2093
|
+
v1GetNodeControllerRelease(requestParameters, options) {
|
|
2094
|
+
return DefaultApiFp(this.configuration).v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
|
|
2095
|
+
}
|
|
2025
2096
|
/**
|
|
2026
2097
|
* Get node diagnostic tasks.
|
|
2027
2098
|
* @param {DefaultApiV1GetNodeDiagnosticTasksRequest} 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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
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.3603
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|