@ourskyai/platform-api 1.3.2816 → 1.3.3197
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 -471
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +154 -337
- package/dist/api.js +58 -194
- 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 +154 -337
- package/dist/esm/api.js +58 -194
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3197
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -143,6 +143,7 @@ export const V1NodeDiagnosticType = {
|
|
|
143
143
|
SLEW_SPEED_DEGREES_PER_SECOND: 'SLEW_SPEED_DEGREES_PER_SECOND',
|
|
144
144
|
CENTERING_TIME_MS: 'CENTERING_TIME_MS',
|
|
145
145
|
POINTING_ERROR_DEGREES: 'POINTING_ERROR_DEGREES',
|
|
146
|
+
SLEW_TIMING_CHECKED: 'SLEW_TIMING_CHECKED',
|
|
146
147
|
CAMERA_CHECKED: 'CAMERA_CHECKED',
|
|
147
148
|
CAMERA_HAS_GPS: 'CAMERA_HAS_GPS',
|
|
148
149
|
MOUNT_CHECKED: 'MOUNT_CHECKED',
|
|
@@ -163,6 +164,34 @@ export const V1NodeDiagnosticType = {
|
|
|
163
164
|
*/
|
|
164
165
|
export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
165
166
|
return {
|
|
167
|
+
/**
|
|
168
|
+
* Get the various tokens used in client applications
|
|
169
|
+
* @param {*} [options] Override http request option.
|
|
170
|
+
* @throws {RequiredError}
|
|
171
|
+
*/
|
|
172
|
+
getClientToken: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
173
|
+
const localVarPath = `/v1/client-tokens`;
|
|
174
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
175
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
176
|
+
let baseOptions;
|
|
177
|
+
if (configuration) {
|
|
178
|
+
baseOptions = configuration.baseOptions;
|
|
179
|
+
}
|
|
180
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
181
|
+
const localVarHeaderParameter = {};
|
|
182
|
+
const localVarQueryParameter = {};
|
|
183
|
+
// authentication Roles required
|
|
184
|
+
// authentication BearerToken required
|
|
185
|
+
// http bearer authentication required
|
|
186
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
187
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
188
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
189
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
190
|
+
return {
|
|
191
|
+
url: toPathString(localVarUrlObj),
|
|
192
|
+
options: localVarRequestOptions,
|
|
193
|
+
};
|
|
194
|
+
}),
|
|
166
195
|
/**
|
|
167
196
|
* Match camera.
|
|
168
197
|
* @param {string} [model]
|
|
@@ -454,39 +483,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
454
483
|
options: localVarRequestOptions,
|
|
455
484
|
};
|
|
456
485
|
}),
|
|
457
|
-
/**
|
|
458
|
-
* Create an observation instruction.
|
|
459
|
-
* @param {V1CreateObservationInstructionRequest} v1CreateObservationInstructionRequest
|
|
460
|
-
* @param {*} [options] Override http request option.
|
|
461
|
-
* @throws {RequiredError}
|
|
462
|
-
*/
|
|
463
|
-
v1CreateObservationInstruction: (v1CreateObservationInstructionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
464
|
-
// verify required parameter 'v1CreateObservationInstructionRequest' is not null or undefined
|
|
465
|
-
assertParamExists('v1CreateObservationInstruction', 'v1CreateObservationInstructionRequest', v1CreateObservationInstructionRequest);
|
|
466
|
-
const localVarPath = `/v1/observation-instruction`;
|
|
467
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
468
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
469
|
-
let baseOptions;
|
|
470
|
-
if (configuration) {
|
|
471
|
-
baseOptions = configuration.baseOptions;
|
|
472
|
-
}
|
|
473
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
474
|
-
const localVarHeaderParameter = {};
|
|
475
|
-
const localVarQueryParameter = {};
|
|
476
|
-
// authentication Roles required
|
|
477
|
-
// authentication BearerToken required
|
|
478
|
-
// http bearer authentication required
|
|
479
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
480
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
481
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
482
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
483
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
484
|
-
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateObservationInstructionRequest, localVarRequestOptions, configuration);
|
|
485
|
-
return {
|
|
486
|
-
url: toPathString(localVarUrlObj),
|
|
487
|
-
options: localVarRequestOptions,
|
|
488
|
-
};
|
|
489
|
-
}),
|
|
490
486
|
/**
|
|
491
487
|
* Create an optical tube.
|
|
492
488
|
* @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
|
|
@@ -1122,39 +1118,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1122
1118
|
options: localVarRequestOptions,
|
|
1123
1119
|
};
|
|
1124
1120
|
}),
|
|
1125
|
-
/**
|
|
1126
|
-
* Update node metrics.
|
|
1127
|
-
* @param {V1UpdateNodeMetricsRequest} v1UpdateNodeMetricsRequest
|
|
1128
|
-
* @param {*} [options] Override http request option.
|
|
1129
|
-
* @throws {RequiredError}
|
|
1130
|
-
*/
|
|
1131
|
-
v1UpdateNodeMetrics: (v1UpdateNodeMetricsRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1132
|
-
// verify required parameter 'v1UpdateNodeMetricsRequest' is not null or undefined
|
|
1133
|
-
assertParamExists('v1UpdateNodeMetrics', 'v1UpdateNodeMetricsRequest', v1UpdateNodeMetricsRequest);
|
|
1134
|
-
const localVarPath = `/v1/node-metrics`;
|
|
1135
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1136
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1137
|
-
let baseOptions;
|
|
1138
|
-
if (configuration) {
|
|
1139
|
-
baseOptions = configuration.baseOptions;
|
|
1140
|
-
}
|
|
1141
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1142
|
-
const localVarHeaderParameter = {};
|
|
1143
|
-
const localVarQueryParameter = {};
|
|
1144
|
-
// authentication Roles required
|
|
1145
|
-
// authentication BearerToken required
|
|
1146
|
-
// http bearer authentication required
|
|
1147
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1148
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1149
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1150
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1151
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1152
|
-
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateNodeMetricsRequest, localVarRequestOptions, configuration);
|
|
1153
|
-
return {
|
|
1154
|
-
url: toPathString(localVarUrlObj),
|
|
1155
|
-
options: localVarRequestOptions,
|
|
1156
|
-
};
|
|
1157
|
-
}),
|
|
1158
1121
|
/**
|
|
1159
1122
|
* Complete an observation utilizing the async pipeline.
|
|
1160
1123
|
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
@@ -1188,40 +1151,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1188
1151
|
options: localVarRequestOptions,
|
|
1189
1152
|
};
|
|
1190
1153
|
}),
|
|
1191
|
-
/**
|
|
1192
|
-
* Get next observation.
|
|
1193
|
-
* @param {string} nodeId
|
|
1194
|
-
* @param {*} [options] Override http request option.
|
|
1195
|
-
* @throws {RequiredError}
|
|
1196
|
-
*/
|
|
1197
|
-
v2GetObservation: (nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1198
|
-
// verify required parameter 'nodeId' is not null or undefined
|
|
1199
|
-
assertParamExists('v2GetObservation', 'nodeId', nodeId);
|
|
1200
|
-
const localVarPath = `/v2/observation`;
|
|
1201
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1202
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1203
|
-
let baseOptions;
|
|
1204
|
-
if (configuration) {
|
|
1205
|
-
baseOptions = configuration.baseOptions;
|
|
1206
|
-
}
|
|
1207
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1208
|
-
const localVarHeaderParameter = {};
|
|
1209
|
-
const localVarQueryParameter = {};
|
|
1210
|
-
// authentication Roles required
|
|
1211
|
-
// authentication BearerToken required
|
|
1212
|
-
// http bearer authentication required
|
|
1213
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1214
|
-
if (nodeId !== undefined) {
|
|
1215
|
-
localVarQueryParameter['nodeId'] = nodeId;
|
|
1216
|
-
}
|
|
1217
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1218
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1219
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1220
|
-
return {
|
|
1221
|
-
url: toPathString(localVarUrlObj),
|
|
1222
|
-
options: localVarRequestOptions,
|
|
1223
|
-
};
|
|
1224
|
-
}),
|
|
1225
1154
|
};
|
|
1226
1155
|
};
|
|
1227
1156
|
/**
|
|
@@ -1231,6 +1160,17 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1231
1160
|
export const DefaultApiFp = function (configuration) {
|
|
1232
1161
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration);
|
|
1233
1162
|
return {
|
|
1163
|
+
/**
|
|
1164
|
+
* Get the various tokens used in client applications
|
|
1165
|
+
* @param {*} [options] Override http request option.
|
|
1166
|
+
* @throws {RequiredError}
|
|
1167
|
+
*/
|
|
1168
|
+
getClientToken(options) {
|
|
1169
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1170
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getClientToken(options);
|
|
1171
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1172
|
+
});
|
|
1173
|
+
},
|
|
1234
1174
|
/**
|
|
1235
1175
|
* Match camera.
|
|
1236
1176
|
* @param {string} [model]
|
|
@@ -1334,18 +1274,6 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1334
1274
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1335
1275
|
});
|
|
1336
1276
|
},
|
|
1337
|
-
/**
|
|
1338
|
-
* Create an observation instruction.
|
|
1339
|
-
* @param {V1CreateObservationInstructionRequest} v1CreateObservationInstructionRequest
|
|
1340
|
-
* @param {*} [options] Override http request option.
|
|
1341
|
-
* @throws {RequiredError}
|
|
1342
|
-
*/
|
|
1343
|
-
v1CreateObservationInstruction(v1CreateObservationInstructionRequest, options) {
|
|
1344
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1345
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateObservationInstruction(v1CreateObservationInstructionRequest, options);
|
|
1346
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1347
|
-
});
|
|
1348
|
-
},
|
|
1349
1277
|
/**
|
|
1350
1278
|
* Create an optical tube.
|
|
1351
1279
|
* @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
|
|
@@ -1575,18 +1503,6 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1575
1503
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1576
1504
|
});
|
|
1577
1505
|
},
|
|
1578
|
-
/**
|
|
1579
|
-
* Update node metrics.
|
|
1580
|
-
* @param {V1UpdateNodeMetricsRequest} v1UpdateNodeMetricsRequest
|
|
1581
|
-
* @param {*} [options] Override http request option.
|
|
1582
|
-
* @throws {RequiredError}
|
|
1583
|
-
*/
|
|
1584
|
-
v1UpdateNodeMetrics(v1UpdateNodeMetricsRequest, options) {
|
|
1585
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1586
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1UpdateNodeMetrics(v1UpdateNodeMetricsRequest, options);
|
|
1587
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1588
|
-
});
|
|
1589
|
-
},
|
|
1590
1506
|
/**
|
|
1591
1507
|
* Complete an observation utilizing the async pipeline.
|
|
1592
1508
|
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
@@ -1599,18 +1515,6 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1599
1515
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1600
1516
|
});
|
|
1601
1517
|
},
|
|
1602
|
-
/**
|
|
1603
|
-
* Get next observation.
|
|
1604
|
-
* @param {string} nodeId
|
|
1605
|
-
* @param {*} [options] Override http request option.
|
|
1606
|
-
* @throws {RequiredError}
|
|
1607
|
-
*/
|
|
1608
|
-
v2GetObservation(nodeId, options) {
|
|
1609
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1610
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2GetObservation(nodeId, options);
|
|
1611
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1612
|
-
});
|
|
1613
|
-
},
|
|
1614
1518
|
};
|
|
1615
1519
|
};
|
|
1616
1520
|
/**
|
|
@@ -1620,6 +1524,14 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1620
1524
|
export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
1621
1525
|
const localVarFp = DefaultApiFp(configuration);
|
|
1622
1526
|
return {
|
|
1527
|
+
/**
|
|
1528
|
+
* Get the various tokens used in client applications
|
|
1529
|
+
* @param {*} [options] Override http request option.
|
|
1530
|
+
* @throws {RequiredError}
|
|
1531
|
+
*/
|
|
1532
|
+
getClientToken(options) {
|
|
1533
|
+
return localVarFp.getClientToken(options).then((request) => request(axios, basePath));
|
|
1534
|
+
},
|
|
1623
1535
|
/**
|
|
1624
1536
|
* Match camera.
|
|
1625
1537
|
* @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
|
|
@@ -1692,15 +1604,6 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1692
1604
|
v1CreateNodeDiagnostics(requestParameters, options) {
|
|
1693
1605
|
return localVarFp.v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(axios, basePath));
|
|
1694
1606
|
},
|
|
1695
|
-
/**
|
|
1696
|
-
* Create an observation instruction.
|
|
1697
|
-
* @param {DefaultApiV1CreateObservationInstructionRequest} requestParameters Request parameters.
|
|
1698
|
-
* @param {*} [options] Override http request option.
|
|
1699
|
-
* @throws {RequiredError}
|
|
1700
|
-
*/
|
|
1701
|
-
v1CreateObservationInstruction(requestParameters, options) {
|
|
1702
|
-
return localVarFp.v1CreateObservationInstruction(requestParameters.v1CreateObservationInstructionRequest, options).then((request) => request(axios, basePath));
|
|
1703
|
-
},
|
|
1704
1607
|
/**
|
|
1705
1608
|
* Create an optical tube.
|
|
1706
1609
|
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -1870,15 +1773,6 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1870
1773
|
v1UpdateNodeComponents(requestParameters, options) {
|
|
1871
1774
|
return localVarFp.v1UpdateNodeComponents(requestParameters.v1UpdateNodeComponentsRequest, options).then((request) => request(axios, basePath));
|
|
1872
1775
|
},
|
|
1873
|
-
/**
|
|
1874
|
-
* Update node metrics.
|
|
1875
|
-
* @param {DefaultApiV1UpdateNodeMetricsRequest} requestParameters Request parameters.
|
|
1876
|
-
* @param {*} [options] Override http request option.
|
|
1877
|
-
* @throws {RequiredError}
|
|
1878
|
-
*/
|
|
1879
|
-
v1UpdateNodeMetrics(requestParameters, options) {
|
|
1880
|
-
return localVarFp.v1UpdateNodeMetrics(requestParameters.v1UpdateNodeMetricsRequest, options).then((request) => request(axios, basePath));
|
|
1881
|
-
},
|
|
1882
1776
|
/**
|
|
1883
1777
|
* Complete an observation utilizing the async pipeline.
|
|
1884
1778
|
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -1888,15 +1782,6 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1888
1782
|
v2CompleteObservation(requestParameters, options) {
|
|
1889
1783
|
return localVarFp.v2CompleteObservation(requestParameters.v2CompleteObservationRequest, options).then((request) => request(axios, basePath));
|
|
1890
1784
|
},
|
|
1891
|
-
/**
|
|
1892
|
-
* Get next observation.
|
|
1893
|
-
* @param {DefaultApiV2GetObservationRequest} requestParameters Request parameters.
|
|
1894
|
-
* @param {*} [options] Override http request option.
|
|
1895
|
-
* @throws {RequiredError}
|
|
1896
|
-
*/
|
|
1897
|
-
v2GetObservation(requestParameters, options) {
|
|
1898
|
-
return localVarFp.v2GetObservation(requestParameters.nodeId, options).then((request) => request(axios, basePath));
|
|
1899
|
-
},
|
|
1900
1785
|
};
|
|
1901
1786
|
};
|
|
1902
1787
|
/**
|
|
@@ -1906,6 +1791,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1906
1791
|
* @extends {BaseAPI}
|
|
1907
1792
|
*/
|
|
1908
1793
|
export class DefaultApi extends BaseAPI {
|
|
1794
|
+
/**
|
|
1795
|
+
* Get the various tokens used in client applications
|
|
1796
|
+
* @param {*} [options] Override http request option.
|
|
1797
|
+
* @throws {RequiredError}
|
|
1798
|
+
* @memberof DefaultApi
|
|
1799
|
+
*/
|
|
1800
|
+
getClientToken(options) {
|
|
1801
|
+
return DefaultApiFp(this.configuration).getClientToken(options).then((request) => request(this.axios, this.basePath));
|
|
1802
|
+
}
|
|
1909
1803
|
/**
|
|
1910
1804
|
* Match camera.
|
|
1911
1805
|
* @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
|
|
@@ -1986,16 +1880,6 @@ export class DefaultApi extends BaseAPI {
|
|
|
1986
1880
|
v1CreateNodeDiagnostics(requestParameters, options) {
|
|
1987
1881
|
return DefaultApiFp(this.configuration).v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1988
1882
|
}
|
|
1989
|
-
/**
|
|
1990
|
-
* Create an observation instruction.
|
|
1991
|
-
* @param {DefaultApiV1CreateObservationInstructionRequest} requestParameters Request parameters.
|
|
1992
|
-
* @param {*} [options] Override http request option.
|
|
1993
|
-
* @throws {RequiredError}
|
|
1994
|
-
* @memberof DefaultApi
|
|
1995
|
-
*/
|
|
1996
|
-
v1CreateObservationInstruction(requestParameters, options) {
|
|
1997
|
-
return DefaultApiFp(this.configuration).v1CreateObservationInstruction(requestParameters.v1CreateObservationInstructionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1998
|
-
}
|
|
1999
1883
|
/**
|
|
2000
1884
|
* Create an optical tube.
|
|
2001
1885
|
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -2184,16 +2068,6 @@ export class DefaultApi extends BaseAPI {
|
|
|
2184
2068
|
v1UpdateNodeComponents(requestParameters, options) {
|
|
2185
2069
|
return DefaultApiFp(this.configuration).v1UpdateNodeComponents(requestParameters.v1UpdateNodeComponentsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2186
2070
|
}
|
|
2187
|
-
/**
|
|
2188
|
-
* Update node metrics.
|
|
2189
|
-
* @param {DefaultApiV1UpdateNodeMetricsRequest} requestParameters Request parameters.
|
|
2190
|
-
* @param {*} [options] Override http request option.
|
|
2191
|
-
* @throws {RequiredError}
|
|
2192
|
-
* @memberof DefaultApi
|
|
2193
|
-
*/
|
|
2194
|
-
v1UpdateNodeMetrics(requestParameters, options) {
|
|
2195
|
-
return DefaultApiFp(this.configuration).v1UpdateNodeMetrics(requestParameters.v1UpdateNodeMetricsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2196
|
-
}
|
|
2197
2071
|
/**
|
|
2198
2072
|
* Complete an observation utilizing the async pipeline.
|
|
2199
2073
|
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -2204,14 +2078,4 @@ export class DefaultApi extends BaseAPI {
|
|
|
2204
2078
|
v2CompleteObservation(requestParameters, options) {
|
|
2205
2079
|
return DefaultApiFp(this.configuration).v2CompleteObservation(requestParameters.v2CompleteObservationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2206
2080
|
}
|
|
2207
|
-
/**
|
|
2208
|
-
* Get next observation.
|
|
2209
|
-
* @param {DefaultApiV2GetObservationRequest} requestParameters Request parameters.
|
|
2210
|
-
* @param {*} [options] Override http request option.
|
|
2211
|
-
* @throws {RequiredError}
|
|
2212
|
-
* @memberof DefaultApi
|
|
2213
|
-
*/
|
|
2214
|
-
v2GetObservation(requestParameters, options) {
|
|
2215
|
-
return DefaultApiFp(this.configuration).v2GetObservation(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
|
|
2216
|
-
}
|
|
2217
2081
|
}
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
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.3197
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|