@ourskyai/platform-api 1.3.2765 → 1.3.3181
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 +190 -471
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +153 -337
- package/dist/api.js +57 -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 +153 -337
- package/dist/esm/api.js +57 -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.3181
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -163,6 +163,34 @@ export const V1NodeDiagnosticType = {
|
|
|
163
163
|
*/
|
|
164
164
|
export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
165
165
|
return {
|
|
166
|
+
/**
|
|
167
|
+
* Get the various tokens used in client applications
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
getClientToken: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
172
|
+
const localVarPath = `/v1/client-tokens`;
|
|
173
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
174
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
175
|
+
let baseOptions;
|
|
176
|
+
if (configuration) {
|
|
177
|
+
baseOptions = configuration.baseOptions;
|
|
178
|
+
}
|
|
179
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
180
|
+
const localVarHeaderParameter = {};
|
|
181
|
+
const localVarQueryParameter = {};
|
|
182
|
+
// authentication Roles required
|
|
183
|
+
// authentication BearerToken required
|
|
184
|
+
// http bearer authentication required
|
|
185
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
186
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
187
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
188
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
189
|
+
return {
|
|
190
|
+
url: toPathString(localVarUrlObj),
|
|
191
|
+
options: localVarRequestOptions,
|
|
192
|
+
};
|
|
193
|
+
}),
|
|
166
194
|
/**
|
|
167
195
|
* Match camera.
|
|
168
196
|
* @param {string} [model]
|
|
@@ -454,39 +482,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
454
482
|
options: localVarRequestOptions,
|
|
455
483
|
};
|
|
456
484
|
}),
|
|
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
485
|
/**
|
|
491
486
|
* Create an optical tube.
|
|
492
487
|
* @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
|
|
@@ -1122,39 +1117,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1122
1117
|
options: localVarRequestOptions,
|
|
1123
1118
|
};
|
|
1124
1119
|
}),
|
|
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
1120
|
/**
|
|
1159
1121
|
* Complete an observation utilizing the async pipeline.
|
|
1160
1122
|
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
@@ -1188,40 +1150,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1188
1150
|
options: localVarRequestOptions,
|
|
1189
1151
|
};
|
|
1190
1152
|
}),
|
|
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
1153
|
};
|
|
1226
1154
|
};
|
|
1227
1155
|
/**
|
|
@@ -1231,6 +1159,17 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1231
1159
|
export const DefaultApiFp = function (configuration) {
|
|
1232
1160
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration);
|
|
1233
1161
|
return {
|
|
1162
|
+
/**
|
|
1163
|
+
* Get the various tokens used in client applications
|
|
1164
|
+
* @param {*} [options] Override http request option.
|
|
1165
|
+
* @throws {RequiredError}
|
|
1166
|
+
*/
|
|
1167
|
+
getClientToken(options) {
|
|
1168
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1169
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getClientToken(options);
|
|
1170
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1171
|
+
});
|
|
1172
|
+
},
|
|
1234
1173
|
/**
|
|
1235
1174
|
* Match camera.
|
|
1236
1175
|
* @param {string} [model]
|
|
@@ -1334,18 +1273,6 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1334
1273
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1335
1274
|
});
|
|
1336
1275
|
},
|
|
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
1276
|
/**
|
|
1350
1277
|
* Create an optical tube.
|
|
1351
1278
|
* @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
|
|
@@ -1575,18 +1502,6 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1575
1502
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1576
1503
|
});
|
|
1577
1504
|
},
|
|
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
1505
|
/**
|
|
1591
1506
|
* Complete an observation utilizing the async pipeline.
|
|
1592
1507
|
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
@@ -1599,18 +1514,6 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1599
1514
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1600
1515
|
});
|
|
1601
1516
|
},
|
|
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
1517
|
};
|
|
1615
1518
|
};
|
|
1616
1519
|
/**
|
|
@@ -1620,6 +1523,14 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1620
1523
|
export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
1621
1524
|
const localVarFp = DefaultApiFp(configuration);
|
|
1622
1525
|
return {
|
|
1526
|
+
/**
|
|
1527
|
+
* Get the various tokens used in client applications
|
|
1528
|
+
* @param {*} [options] Override http request option.
|
|
1529
|
+
* @throws {RequiredError}
|
|
1530
|
+
*/
|
|
1531
|
+
getClientToken(options) {
|
|
1532
|
+
return localVarFp.getClientToken(options).then((request) => request(axios, basePath));
|
|
1533
|
+
},
|
|
1623
1534
|
/**
|
|
1624
1535
|
* Match camera.
|
|
1625
1536
|
* @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
|
|
@@ -1692,15 +1603,6 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1692
1603
|
v1CreateNodeDiagnostics(requestParameters, options) {
|
|
1693
1604
|
return localVarFp.v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(axios, basePath));
|
|
1694
1605
|
},
|
|
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
1606
|
/**
|
|
1705
1607
|
* Create an optical tube.
|
|
1706
1608
|
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -1870,15 +1772,6 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1870
1772
|
v1UpdateNodeComponents(requestParameters, options) {
|
|
1871
1773
|
return localVarFp.v1UpdateNodeComponents(requestParameters.v1UpdateNodeComponentsRequest, options).then((request) => request(axios, basePath));
|
|
1872
1774
|
},
|
|
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
1775
|
/**
|
|
1883
1776
|
* Complete an observation utilizing the async pipeline.
|
|
1884
1777
|
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -1888,15 +1781,6 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1888
1781
|
v2CompleteObservation(requestParameters, options) {
|
|
1889
1782
|
return localVarFp.v2CompleteObservation(requestParameters.v2CompleteObservationRequest, options).then((request) => request(axios, basePath));
|
|
1890
1783
|
},
|
|
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
1784
|
};
|
|
1901
1785
|
};
|
|
1902
1786
|
/**
|
|
@@ -1906,6 +1790,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1906
1790
|
* @extends {BaseAPI}
|
|
1907
1791
|
*/
|
|
1908
1792
|
export class DefaultApi extends BaseAPI {
|
|
1793
|
+
/**
|
|
1794
|
+
* Get the various tokens used in client applications
|
|
1795
|
+
* @param {*} [options] Override http request option.
|
|
1796
|
+
* @throws {RequiredError}
|
|
1797
|
+
* @memberof DefaultApi
|
|
1798
|
+
*/
|
|
1799
|
+
getClientToken(options) {
|
|
1800
|
+
return DefaultApiFp(this.configuration).getClientToken(options).then((request) => request(this.axios, this.basePath));
|
|
1801
|
+
}
|
|
1909
1802
|
/**
|
|
1910
1803
|
* Match camera.
|
|
1911
1804
|
* @param {DefaultApiV1CameraMatchRequest} requestParameters Request parameters.
|
|
@@ -1986,16 +1879,6 @@ export class DefaultApi extends BaseAPI {
|
|
|
1986
1879
|
v1CreateNodeDiagnostics(requestParameters, options) {
|
|
1987
1880
|
return DefaultApiFp(this.configuration).v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1988
1881
|
}
|
|
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
1882
|
/**
|
|
2000
1883
|
* Create an optical tube.
|
|
2001
1884
|
* @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -2184,16 +2067,6 @@ export class DefaultApi extends BaseAPI {
|
|
|
2184
2067
|
v1UpdateNodeComponents(requestParameters, options) {
|
|
2185
2068
|
return DefaultApiFp(this.configuration).v1UpdateNodeComponents(requestParameters.v1UpdateNodeComponentsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2186
2069
|
}
|
|
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
2070
|
/**
|
|
2198
2071
|
* Complete an observation utilizing the async pipeline.
|
|
2199
2072
|
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
@@ -2204,14 +2077,4 @@ export class DefaultApi extends BaseAPI {
|
|
|
2204
2077
|
v2CompleteObservation(requestParameters, options) {
|
|
2205
2078
|
return DefaultApiFp(this.configuration).v2CompleteObservation(requestParameters.v2CompleteObservationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2206
2079
|
}
|
|
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
2080
|
}
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
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.3181
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|