@ourskyai/platform-api 1.3.2295 → 1.3.2302
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 +19 -12
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +11 -9
- package/dist/api.js +11 -12
- 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 +11 -9
- package/dist/esm/api.js +12 -13
- 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.2302
|
|
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.2302 --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.2302
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1317,12 +1317,6 @@ export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1Node
|
|
|
1317
1317
|
*/
|
|
1318
1318
|
|
|
1319
1319
|
export const V1NodeDiagnosticType = {
|
|
1320
|
-
MIN_SLEW_SPEED_MS: 'MIN_SLEW_SPEED_MS',
|
|
1321
|
-
MAX_SLEW_SPEED_MS: 'MAX_SLEW_SPEED_MS',
|
|
1322
|
-
MIN_SLEW_AND_CENTER_SPEED_MS: 'MIN_SLEW_AND_CENTER_SPEED_MS',
|
|
1323
|
-
MAX_SLEW_AND_CENTER_SPEED_MS: 'MAX_SLEW_AND_CENTER_SPEED_MS',
|
|
1324
|
-
MIN_SLEW_ACCURACY_ARCSECONDS: 'MIN_SLEW_ACCURACY_ARCSECONDS',
|
|
1325
|
-
MAX_SLEW_ACCURACY_ARCSECONDS: 'MAX_SLEW_ACCURACY_ARCSECONDS',
|
|
1326
1320
|
SLEW_SPEED_DEGREES_PER_SECOND: 'SLEW_SPEED_DEGREES_PER_SECOND',
|
|
1327
1321
|
CENTERING_TIME_MS: 'CENTERING_TIME_MS',
|
|
1328
1322
|
POINTING_ERROR_DEGREES: 'POINTING_ERROR_DEGREES',
|
|
@@ -2625,10 +2619,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2625
2619
|
/**
|
|
2626
2620
|
* Get node diagnostic tasks.
|
|
2627
2621
|
* @param {string} nodeId
|
|
2622
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
2628
2623
|
* @param {*} [options] Override http request option.
|
|
2629
2624
|
* @throws {RequiredError}
|
|
2630
2625
|
*/
|
|
2631
|
-
v1GetNodeDiagnosticTasks: async (nodeId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2626
|
+
v1GetNodeDiagnosticTasks: async (nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2632
2627
|
// verify required parameter 'nodeId' is not null or undefined
|
|
2633
2628
|
assertParamExists('v1GetNodeDiagnosticTasks', 'nodeId', nodeId)
|
|
2634
2629
|
const localVarPath = `/v1/node-diagnostic-tasks`;
|
|
@@ -2653,6 +2648,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2653
2648
|
localVarQueryParameter['nodeId'] = nodeId;
|
|
2654
2649
|
}
|
|
2655
2650
|
|
|
2651
|
+
if (supportedDiagnostics) {
|
|
2652
|
+
localVarQueryParameter['supportedDiagnostics'] = supportedDiagnostics.join(COLLECTION_FORMATS.csv);
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2656
2655
|
|
|
2657
2656
|
|
|
2658
2657
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3371,11 +3370,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3371
3370
|
/**
|
|
3372
3371
|
* Get node diagnostic tasks.
|
|
3373
3372
|
* @param {string} nodeId
|
|
3373
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
3374
3374
|
* @param {*} [options] Override http request option.
|
|
3375
3375
|
* @throws {RequiredError}
|
|
3376
3376
|
*/
|
|
3377
|
-
async v1GetNodeDiagnosticTasks(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>> {
|
|
3378
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeDiagnosticTasks(nodeId, options);
|
|
3377
|
+
async v1GetNodeDiagnosticTasks(nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>> {
|
|
3378
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeDiagnosticTasks(nodeId, supportedDiagnostics, options);
|
|
3379
3379
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3380
3380
|
},
|
|
3381
3381
|
/**
|
|
@@ -3660,7 +3660,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3660
3660
|
* @throws {RequiredError}
|
|
3661
3661
|
*/
|
|
3662
3662
|
v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeDiagnosticType>> {
|
|
3663
|
-
return localVarFp.v1GetNodeDiagnosticTasks(requestParameters.nodeId, options).then((request) => request(axios, basePath));
|
|
3663
|
+
return localVarFp.v1GetNodeDiagnosticTasks(requestParameters.nodeId, requestParameters.supportedDiagnostics, options).then((request) => request(axios, basePath));
|
|
3664
3664
|
},
|
|
3665
3665
|
/**
|
|
3666
3666
|
* Get node properties.
|
|
@@ -4038,6 +4038,13 @@ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
|
|
|
4038
4038
|
* @memberof DefaultApiV1GetNodeDiagnosticTasks
|
|
4039
4039
|
*/
|
|
4040
4040
|
readonly nodeId: string
|
|
4041
|
+
|
|
4042
|
+
/**
|
|
4043
|
+
*
|
|
4044
|
+
* @type {Array<V1NodeDiagnosticType>}
|
|
4045
|
+
* @memberof DefaultApiV1GetNodeDiagnosticTasks
|
|
4046
|
+
*/
|
|
4047
|
+
readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>
|
|
4041
4048
|
}
|
|
4042
4049
|
|
|
4043
4050
|
/**
|
|
@@ -4401,7 +4408,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
4401
4408
|
* @memberof DefaultApi
|
|
4402
4409
|
*/
|
|
4403
4410
|
public v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig) {
|
|
4404
|
-
return DefaultApiFp(this.configuration).v1GetNodeDiagnosticTasks(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
|
|
4411
|
+
return DefaultApiFp(this.configuration).v1GetNodeDiagnosticTasks(requestParameters.nodeId, requestParameters.supportedDiagnostics, options).then((request) => request(this.axios, this.basePath));
|
|
4405
4412
|
}
|
|
4406
4413
|
|
|
4407
4414
|
/**
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1246,12 +1246,6 @@ export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1Node
|
|
|
1246
1246
|
* @enum {string}
|
|
1247
1247
|
*/
|
|
1248
1248
|
export declare const V1NodeDiagnosticType: {
|
|
1249
|
-
readonly MIN_SLEW_SPEED_MS: "MIN_SLEW_SPEED_MS";
|
|
1250
|
-
readonly MAX_SLEW_SPEED_MS: "MAX_SLEW_SPEED_MS";
|
|
1251
|
-
readonly MIN_SLEW_AND_CENTER_SPEED_MS: "MIN_SLEW_AND_CENTER_SPEED_MS";
|
|
1252
|
-
readonly MAX_SLEW_AND_CENTER_SPEED_MS: "MAX_SLEW_AND_CENTER_SPEED_MS";
|
|
1253
|
-
readonly MIN_SLEW_ACCURACY_ARCSECONDS: "MIN_SLEW_ACCURACY_ARCSECONDS";
|
|
1254
|
-
readonly MAX_SLEW_ACCURACY_ARCSECONDS: "MAX_SLEW_ACCURACY_ARCSECONDS";
|
|
1255
1249
|
readonly SLEW_SPEED_DEGREES_PER_SECOND: "SLEW_SPEED_DEGREES_PER_SECOND";
|
|
1256
1250
|
readonly CENTERING_TIME_MS: "CENTERING_TIME_MS";
|
|
1257
1251
|
readonly POINTING_ERROR_DEGREES: "POINTING_ERROR_DEGREES";
|
|
@@ -2002,10 +1996,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2002
1996
|
/**
|
|
2003
1997
|
* Get node diagnostic tasks.
|
|
2004
1998
|
* @param {string} nodeId
|
|
1999
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
2005
2000
|
* @param {*} [options] Override http request option.
|
|
2006
2001
|
* @throws {RequiredError}
|
|
2007
2002
|
*/
|
|
2008
|
-
v1GetNodeDiagnosticTasks: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2003
|
+
v1GetNodeDiagnosticTasks: (nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2009
2004
|
/**
|
|
2010
2005
|
* Get node properties.
|
|
2011
2006
|
* @param {string} nodeId
|
|
@@ -2218,10 +2213,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2218
2213
|
/**
|
|
2219
2214
|
* Get node diagnostic tasks.
|
|
2220
2215
|
* @param {string} nodeId
|
|
2216
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
2221
2217
|
* @param {*} [options] Override http request option.
|
|
2222
2218
|
* @throws {RequiredError}
|
|
2223
2219
|
*/
|
|
2224
|
-
v1GetNodeDiagnosticTasks(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
|
|
2220
|
+
v1GetNodeDiagnosticTasks(nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
|
|
2225
2221
|
/**
|
|
2226
2222
|
* Get node properties.
|
|
2227
2223
|
* @param {string} nodeId
|
|
@@ -2758,6 +2754,12 @@ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
|
|
|
2758
2754
|
* @memberof DefaultApiV1GetNodeDiagnosticTasks
|
|
2759
2755
|
*/
|
|
2760
2756
|
readonly nodeId: string;
|
|
2757
|
+
/**
|
|
2758
|
+
*
|
|
2759
|
+
* @type {Array<V1NodeDiagnosticType>}
|
|
2760
|
+
* @memberof DefaultApiV1GetNodeDiagnosticTasks
|
|
2761
|
+
*/
|
|
2762
|
+
readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>;
|
|
2761
2763
|
}
|
|
2762
2764
|
/**
|
|
2763
2765
|
* Request parameters for v1GetNodeProperties operation in DefaultApi.
|
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.2302
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -141,12 +141,6 @@ exports.V1NodeComponentType = {
|
|
|
141
141
|
* @enum {string}
|
|
142
142
|
*/
|
|
143
143
|
exports.V1NodeDiagnosticType = {
|
|
144
|
-
MIN_SLEW_SPEED_MS: 'MIN_SLEW_SPEED_MS',
|
|
145
|
-
MAX_SLEW_SPEED_MS: 'MAX_SLEW_SPEED_MS',
|
|
146
|
-
MIN_SLEW_AND_CENTER_SPEED_MS: 'MIN_SLEW_AND_CENTER_SPEED_MS',
|
|
147
|
-
MAX_SLEW_AND_CENTER_SPEED_MS: 'MAX_SLEW_AND_CENTER_SPEED_MS',
|
|
148
|
-
MIN_SLEW_ACCURACY_ARCSECONDS: 'MIN_SLEW_ACCURACY_ARCSECONDS',
|
|
149
|
-
MAX_SLEW_ACCURACY_ARCSECONDS: 'MAX_SLEW_ACCURACY_ARCSECONDS',
|
|
150
144
|
SLEW_SPEED_DEGREES_PER_SECOND: 'SLEW_SPEED_DEGREES_PER_SECOND',
|
|
151
145
|
CENTERING_TIME_MS: 'CENTERING_TIME_MS',
|
|
152
146
|
POINTING_ERROR_DEGREES: 'POINTING_ERROR_DEGREES',
|
|
@@ -689,10 +683,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
689
683
|
/**
|
|
690
684
|
* Get node diagnostic tasks.
|
|
691
685
|
* @param {string} nodeId
|
|
686
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
692
687
|
* @param {*} [options] Override http request option.
|
|
693
688
|
* @throws {RequiredError}
|
|
694
689
|
*/
|
|
695
|
-
v1GetNodeDiagnosticTasks: (nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
690
|
+
v1GetNodeDiagnosticTasks: (nodeId, supportedDiagnostics, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
696
691
|
// verify required parameter 'nodeId' is not null or undefined
|
|
697
692
|
(0, common_1.assertParamExists)('v1GetNodeDiagnosticTasks', 'nodeId', nodeId);
|
|
698
693
|
const localVarPath = `/v1/node-diagnostic-tasks`;
|
|
@@ -712,6 +707,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
712
707
|
if (nodeId !== undefined) {
|
|
713
708
|
localVarQueryParameter['nodeId'] = nodeId;
|
|
714
709
|
}
|
|
710
|
+
if (supportedDiagnostics) {
|
|
711
|
+
localVarQueryParameter['supportedDiagnostics'] = supportedDiagnostics.join(base_1.COLLECTION_FORMATS.csv);
|
|
712
|
+
}
|
|
715
713
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
716
714
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
717
715
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1352,12 +1350,13 @@ const DefaultApiFp = function (configuration) {
|
|
|
1352
1350
|
/**
|
|
1353
1351
|
* Get node diagnostic tasks.
|
|
1354
1352
|
* @param {string} nodeId
|
|
1353
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
1355
1354
|
* @param {*} [options] Override http request option.
|
|
1356
1355
|
* @throws {RequiredError}
|
|
1357
1356
|
*/
|
|
1358
|
-
v1GetNodeDiagnosticTasks(nodeId, options) {
|
|
1357
|
+
v1GetNodeDiagnosticTasks(nodeId, supportedDiagnostics, options) {
|
|
1359
1358
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1360
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeDiagnosticTasks(nodeId, options);
|
|
1359
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeDiagnosticTasks(nodeId, supportedDiagnostics, options);
|
|
1361
1360
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1362
1361
|
});
|
|
1363
1362
|
},
|
|
@@ -1669,7 +1668,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1669
1668
|
* @throws {RequiredError}
|
|
1670
1669
|
*/
|
|
1671
1670
|
v1GetNodeDiagnosticTasks(requestParameters, options) {
|
|
1672
|
-
return localVarFp.v1GetNodeDiagnosticTasks(requestParameters.nodeId, options).then((request) => request(axios, basePath));
|
|
1671
|
+
return localVarFp.v1GetNodeDiagnosticTasks(requestParameters.nodeId, requestParameters.supportedDiagnostics, options).then((request) => request(axios, basePath));
|
|
1673
1672
|
},
|
|
1674
1673
|
/**
|
|
1675
1674
|
* Get node properties.
|
|
@@ -1954,7 +1953,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1954
1953
|
* @memberof DefaultApi
|
|
1955
1954
|
*/
|
|
1956
1955
|
v1GetNodeDiagnosticTasks(requestParameters, options) {
|
|
1957
|
-
return (0, exports.DefaultApiFp)(this.configuration).v1GetNodeDiagnosticTasks(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
|
|
1956
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetNodeDiagnosticTasks(requestParameters.nodeId, requestParameters.supportedDiagnostics, options).then((request) => request(this.axios, this.basePath));
|
|
1958
1957
|
}
|
|
1959
1958
|
/**
|
|
1960
1959
|
* Get node properties.
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1246,12 +1246,6 @@ export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1Node
|
|
|
1246
1246
|
* @enum {string}
|
|
1247
1247
|
*/
|
|
1248
1248
|
export declare const V1NodeDiagnosticType: {
|
|
1249
|
-
readonly MIN_SLEW_SPEED_MS: "MIN_SLEW_SPEED_MS";
|
|
1250
|
-
readonly MAX_SLEW_SPEED_MS: "MAX_SLEW_SPEED_MS";
|
|
1251
|
-
readonly MIN_SLEW_AND_CENTER_SPEED_MS: "MIN_SLEW_AND_CENTER_SPEED_MS";
|
|
1252
|
-
readonly MAX_SLEW_AND_CENTER_SPEED_MS: "MAX_SLEW_AND_CENTER_SPEED_MS";
|
|
1253
|
-
readonly MIN_SLEW_ACCURACY_ARCSECONDS: "MIN_SLEW_ACCURACY_ARCSECONDS";
|
|
1254
|
-
readonly MAX_SLEW_ACCURACY_ARCSECONDS: "MAX_SLEW_ACCURACY_ARCSECONDS";
|
|
1255
1249
|
readonly SLEW_SPEED_DEGREES_PER_SECOND: "SLEW_SPEED_DEGREES_PER_SECOND";
|
|
1256
1250
|
readonly CENTERING_TIME_MS: "CENTERING_TIME_MS";
|
|
1257
1251
|
readonly POINTING_ERROR_DEGREES: "POINTING_ERROR_DEGREES";
|
|
@@ -2002,10 +1996,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2002
1996
|
/**
|
|
2003
1997
|
* Get node diagnostic tasks.
|
|
2004
1998
|
* @param {string} nodeId
|
|
1999
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
2005
2000
|
* @param {*} [options] Override http request option.
|
|
2006
2001
|
* @throws {RequiredError}
|
|
2007
2002
|
*/
|
|
2008
|
-
v1GetNodeDiagnosticTasks: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2003
|
+
v1GetNodeDiagnosticTasks: (nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2009
2004
|
/**
|
|
2010
2005
|
* Get node properties.
|
|
2011
2006
|
* @param {string} nodeId
|
|
@@ -2218,10 +2213,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2218
2213
|
/**
|
|
2219
2214
|
* Get node diagnostic tasks.
|
|
2220
2215
|
* @param {string} nodeId
|
|
2216
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
2221
2217
|
* @param {*} [options] Override http request option.
|
|
2222
2218
|
* @throws {RequiredError}
|
|
2223
2219
|
*/
|
|
2224
|
-
v1GetNodeDiagnosticTasks(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
|
|
2220
|
+
v1GetNodeDiagnosticTasks(nodeId: string, supportedDiagnostics?: Array<V1NodeDiagnosticType>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
|
|
2225
2221
|
/**
|
|
2226
2222
|
* Get node properties.
|
|
2227
2223
|
* @param {string} nodeId
|
|
@@ -2758,6 +2754,12 @@ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
|
|
|
2758
2754
|
* @memberof DefaultApiV1GetNodeDiagnosticTasks
|
|
2759
2755
|
*/
|
|
2760
2756
|
readonly nodeId: string;
|
|
2757
|
+
/**
|
|
2758
|
+
*
|
|
2759
|
+
* @type {Array<V1NodeDiagnosticType>}
|
|
2760
|
+
* @memberof DefaultApiV1GetNodeDiagnosticTasks
|
|
2761
|
+
*/
|
|
2762
|
+
readonly supportedDiagnostics?: Array<V1NodeDiagnosticType>;
|
|
2761
2763
|
}
|
|
2762
2764
|
/**
|
|
2763
2765
|
* Request parameters for v1GetNodeProperties operation in DefaultApi.
|
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.2302
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -25,7 +25,7 @@ import globalAxios from 'axios';
|
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
|
|
27
27
|
// @ts-ignore
|
|
28
|
-
import { BASE_PATH, BaseAPI } from './base';
|
|
28
|
+
import { BASE_PATH, COLLECTION_FORMATS, BaseAPI } from './base';
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
31
|
* @export
|
|
@@ -138,12 +138,6 @@ export const V1NodeComponentType = {
|
|
|
138
138
|
* @enum {string}
|
|
139
139
|
*/
|
|
140
140
|
export const V1NodeDiagnosticType = {
|
|
141
|
-
MIN_SLEW_SPEED_MS: 'MIN_SLEW_SPEED_MS',
|
|
142
|
-
MAX_SLEW_SPEED_MS: 'MAX_SLEW_SPEED_MS',
|
|
143
|
-
MIN_SLEW_AND_CENTER_SPEED_MS: 'MIN_SLEW_AND_CENTER_SPEED_MS',
|
|
144
|
-
MAX_SLEW_AND_CENTER_SPEED_MS: 'MAX_SLEW_AND_CENTER_SPEED_MS',
|
|
145
|
-
MIN_SLEW_ACCURACY_ARCSECONDS: 'MIN_SLEW_ACCURACY_ARCSECONDS',
|
|
146
|
-
MAX_SLEW_ACCURACY_ARCSECONDS: 'MAX_SLEW_ACCURACY_ARCSECONDS',
|
|
147
141
|
SLEW_SPEED_DEGREES_PER_SECOND: 'SLEW_SPEED_DEGREES_PER_SECOND',
|
|
148
142
|
CENTERING_TIME_MS: 'CENTERING_TIME_MS',
|
|
149
143
|
POINTING_ERROR_DEGREES: 'POINTING_ERROR_DEGREES',
|
|
@@ -686,10 +680,11 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
686
680
|
/**
|
|
687
681
|
* Get node diagnostic tasks.
|
|
688
682
|
* @param {string} nodeId
|
|
683
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
689
684
|
* @param {*} [options] Override http request option.
|
|
690
685
|
* @throws {RequiredError}
|
|
691
686
|
*/
|
|
692
|
-
v1GetNodeDiagnosticTasks: (nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
687
|
+
v1GetNodeDiagnosticTasks: (nodeId, supportedDiagnostics, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
693
688
|
// verify required parameter 'nodeId' is not null or undefined
|
|
694
689
|
assertParamExists('v1GetNodeDiagnosticTasks', 'nodeId', nodeId);
|
|
695
690
|
const localVarPath = `/v1/node-diagnostic-tasks`;
|
|
@@ -709,6 +704,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
709
704
|
if (nodeId !== undefined) {
|
|
710
705
|
localVarQueryParameter['nodeId'] = nodeId;
|
|
711
706
|
}
|
|
707
|
+
if (supportedDiagnostics) {
|
|
708
|
+
localVarQueryParameter['supportedDiagnostics'] = supportedDiagnostics.join(COLLECTION_FORMATS.csv);
|
|
709
|
+
}
|
|
712
710
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
713
711
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
714
712
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1348,12 +1346,13 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1348
1346
|
/**
|
|
1349
1347
|
* Get node diagnostic tasks.
|
|
1350
1348
|
* @param {string} nodeId
|
|
1349
|
+
* @param {Array<V1NodeDiagnosticType>} [supportedDiagnostics]
|
|
1351
1350
|
* @param {*} [options] Override http request option.
|
|
1352
1351
|
* @throws {RequiredError}
|
|
1353
1352
|
*/
|
|
1354
|
-
v1GetNodeDiagnosticTasks(nodeId, options) {
|
|
1353
|
+
v1GetNodeDiagnosticTasks(nodeId, supportedDiagnostics, options) {
|
|
1355
1354
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1356
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeDiagnosticTasks(nodeId, options);
|
|
1355
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeDiagnosticTasks(nodeId, supportedDiagnostics, options);
|
|
1357
1356
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1358
1357
|
});
|
|
1359
1358
|
},
|
|
@@ -1664,7 +1663,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1664
1663
|
* @throws {RequiredError}
|
|
1665
1664
|
*/
|
|
1666
1665
|
v1GetNodeDiagnosticTasks(requestParameters, options) {
|
|
1667
|
-
return localVarFp.v1GetNodeDiagnosticTasks(requestParameters.nodeId, options).then((request) => request(axios, basePath));
|
|
1666
|
+
return localVarFp.v1GetNodeDiagnosticTasks(requestParameters.nodeId, requestParameters.supportedDiagnostics, options).then((request) => request(axios, basePath));
|
|
1668
1667
|
},
|
|
1669
1668
|
/**
|
|
1670
1669
|
* Get node properties.
|
|
@@ -1948,7 +1947,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1948
1947
|
* @memberof DefaultApi
|
|
1949
1948
|
*/
|
|
1950
1949
|
v1GetNodeDiagnosticTasks(requestParameters, options) {
|
|
1951
|
-
return DefaultApiFp(this.configuration).v1GetNodeDiagnosticTasks(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
|
|
1950
|
+
return DefaultApiFp(this.configuration).v1GetNodeDiagnosticTasks(requestParameters.nodeId, requestParameters.supportedDiagnostics, options).then((request) => request(this.axios, this.basePath));
|
|
1952
1951
|
}
|
|
1953
1952
|
/**
|
|
1954
1953
|
* Get node properties.
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
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.2302
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|