@ourskyai/platform-api 1.3.1945 → 1.3.2151
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 +703 -27
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +477 -20
- package/dist/api.js +341 -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 +477 -20
- package/dist/esm/api.js +341 -12
- 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.2151
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -142,7 +142,14 @@ export const V1NodeDiagnosticType = {
|
|
|
142
142
|
MIN_SLEW_AND_CENTER_SPEED_MS: 'MIN_SLEW_AND_CENTER_SPEED_MS',
|
|
143
143
|
MAX_SLEW_AND_CENTER_SPEED_MS: 'MAX_SLEW_AND_CENTER_SPEED_MS',
|
|
144
144
|
MIN_SLEW_ACCURACY_ARCSECONDS: 'MIN_SLEW_ACCURACY_ARCSECONDS',
|
|
145
|
-
MAX_SLEW_ACCURACY_ARCSECONDS: 'MAX_SLEW_ACCURACY_ARCSECONDS'
|
|
145
|
+
MAX_SLEW_ACCURACY_ARCSECONDS: 'MAX_SLEW_ACCURACY_ARCSECONDS',
|
|
146
|
+
SLEW_SPEED_DEGREES_PER_SECOND: 'SLEW_SPEED_DEGREES_PER_SECOND',
|
|
147
|
+
CENTERING_TIME_MS: 'CENTERING_TIME_MS',
|
|
148
|
+
POINTING_ERROR_DEGREES: 'POINTING_ERROR_DEGREES',
|
|
149
|
+
CAMERA_CHECKED: 'CAMERA_CHECKED',
|
|
150
|
+
MOUNT_CHECKED: 'MOUNT_CHECKED',
|
|
151
|
+
OPTICAL_TUBE_CHECKED: 'OPTICAL_TUBE_CHECKED',
|
|
152
|
+
ELEVATION_MASK_CHECKED: 'ELEVATION_MASK_CHECKED'
|
|
146
153
|
};
|
|
147
154
|
/**
|
|
148
155
|
* DefaultApi - axios parameter creator
|
|
@@ -375,15 +382,48 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
375
382
|
options: localVarRequestOptions,
|
|
376
383
|
};
|
|
377
384
|
}),
|
|
385
|
+
/**
|
|
386
|
+
* Create a node.
|
|
387
|
+
* @param {V1CreateNodeRequest} v1CreateNodeRequest
|
|
388
|
+
* @param {*} [options] Override http request option.
|
|
389
|
+
* @throws {RequiredError}
|
|
390
|
+
*/
|
|
391
|
+
v1CreateNode: (v1CreateNodeRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
392
|
+
// verify required parameter 'v1CreateNodeRequest' is not null or undefined
|
|
393
|
+
assertParamExists('v1CreateNode', 'v1CreateNodeRequest', v1CreateNodeRequest);
|
|
394
|
+
const localVarPath = `/v1/node`;
|
|
395
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
396
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
397
|
+
let baseOptions;
|
|
398
|
+
if (configuration) {
|
|
399
|
+
baseOptions = configuration.baseOptions;
|
|
400
|
+
}
|
|
401
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
402
|
+
const localVarHeaderParameter = {};
|
|
403
|
+
const localVarQueryParameter = {};
|
|
404
|
+
// authentication Roles required
|
|
405
|
+
// authentication BearerToken required
|
|
406
|
+
// http bearer authentication required
|
|
407
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
408
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
409
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
410
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
411
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
412
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeRequest, localVarRequestOptions, configuration);
|
|
413
|
+
return {
|
|
414
|
+
url: toPathString(localVarUrlObj),
|
|
415
|
+
options: localVarRequestOptions,
|
|
416
|
+
};
|
|
417
|
+
}),
|
|
378
418
|
/**
|
|
379
419
|
* Create node diagnostics.
|
|
380
|
-
* @param {
|
|
420
|
+
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
381
421
|
* @param {*} [options] Override http request option.
|
|
382
422
|
* @throws {RequiredError}
|
|
383
423
|
*/
|
|
384
|
-
v1CreateNodeDiagnostics: (
|
|
385
|
-
// verify required parameter '
|
|
386
|
-
assertParamExists('v1CreateNodeDiagnostics', '
|
|
424
|
+
v1CreateNodeDiagnostics: (v1CreateNodeDiagnosticsRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
425
|
+
// verify required parameter 'v1CreateNodeDiagnosticsRequest' is not null or undefined
|
|
426
|
+
assertParamExists('v1CreateNodeDiagnostics', 'v1CreateNodeDiagnosticsRequest', v1CreateNodeDiagnosticsRequest);
|
|
387
427
|
const localVarPath = `/v1/node-diagnostics`;
|
|
388
428
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
389
429
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -402,7 +442,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
402
442
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
403
443
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
404
444
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
405
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
445
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeDiagnosticsRequest, localVarRequestOptions, configuration);
|
|
406
446
|
return {
|
|
407
447
|
url: toPathString(localVarUrlObj),
|
|
408
448
|
options: localVarRequestOptions,
|
|
@@ -441,6 +481,74 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
441
481
|
options: localVarRequestOptions,
|
|
442
482
|
};
|
|
443
483
|
}),
|
|
484
|
+
/**
|
|
485
|
+
* Delete an image set.
|
|
486
|
+
* @param {string} id
|
|
487
|
+
* @param {*} [options] Override http request option.
|
|
488
|
+
* @throws {RequiredError}
|
|
489
|
+
*/
|
|
490
|
+
v1DeleteImageSet: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
491
|
+
// verify required parameter 'id' is not null or undefined
|
|
492
|
+
assertParamExists('v1DeleteImageSet', 'id', id);
|
|
493
|
+
const localVarPath = `/v1/image-set`;
|
|
494
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
495
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
496
|
+
let baseOptions;
|
|
497
|
+
if (configuration) {
|
|
498
|
+
baseOptions = configuration.baseOptions;
|
|
499
|
+
}
|
|
500
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
501
|
+
const localVarHeaderParameter = {};
|
|
502
|
+
const localVarQueryParameter = {};
|
|
503
|
+
// authentication Roles required
|
|
504
|
+
// authentication BearerToken required
|
|
505
|
+
// http bearer authentication required
|
|
506
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
507
|
+
if (id !== undefined) {
|
|
508
|
+
localVarQueryParameter['id'] = id;
|
|
509
|
+
}
|
|
510
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
511
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
512
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
513
|
+
return {
|
|
514
|
+
url: toPathString(localVarUrlObj),
|
|
515
|
+
options: localVarRequestOptions,
|
|
516
|
+
};
|
|
517
|
+
}),
|
|
518
|
+
/**
|
|
519
|
+
* Delete an image.
|
|
520
|
+
* @param {string} imageId
|
|
521
|
+
* @param {*} [options] Override http request option.
|
|
522
|
+
* @throws {RequiredError}
|
|
523
|
+
*/
|
|
524
|
+
v1DeleteImageSetImage: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
525
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
526
|
+
assertParamExists('v1DeleteImageSetImage', 'imageId', imageId);
|
|
527
|
+
const localVarPath = `/v1/image-set-image`;
|
|
528
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
529
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
530
|
+
let baseOptions;
|
|
531
|
+
if (configuration) {
|
|
532
|
+
baseOptions = configuration.baseOptions;
|
|
533
|
+
}
|
|
534
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
535
|
+
const localVarHeaderParameter = {};
|
|
536
|
+
const localVarQueryParameter = {};
|
|
537
|
+
// authentication Roles required
|
|
538
|
+
// authentication BearerToken required
|
|
539
|
+
// http bearer authentication required
|
|
540
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
541
|
+
if (imageId !== undefined) {
|
|
542
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
543
|
+
}
|
|
544
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
545
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
546
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
547
|
+
return {
|
|
548
|
+
url: toPathString(localVarUrlObj),
|
|
549
|
+
options: localVarRequestOptions,
|
|
550
|
+
};
|
|
551
|
+
}),
|
|
444
552
|
/**
|
|
445
553
|
* Get cameras.
|
|
446
554
|
* @param {*} [options] Override http request option.
|
|
@@ -872,6 +980,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
872
980
|
options: localVarRequestOptions,
|
|
873
981
|
};
|
|
874
982
|
}),
|
|
983
|
+
/**
|
|
984
|
+
* Update a node.
|
|
985
|
+
* @param {V1UpdateNodeRequest} v1UpdateNodeRequest
|
|
986
|
+
* @param {*} [options] Override http request option.
|
|
987
|
+
* @throws {RequiredError}
|
|
988
|
+
*/
|
|
989
|
+
v1UpdateNode: (v1UpdateNodeRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
990
|
+
// verify required parameter 'v1UpdateNodeRequest' is not null or undefined
|
|
991
|
+
assertParamExists('v1UpdateNode', 'v1UpdateNodeRequest', v1UpdateNodeRequest);
|
|
992
|
+
const localVarPath = `/v1/node`;
|
|
993
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
994
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
995
|
+
let baseOptions;
|
|
996
|
+
if (configuration) {
|
|
997
|
+
baseOptions = configuration.baseOptions;
|
|
998
|
+
}
|
|
999
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1000
|
+
const localVarHeaderParameter = {};
|
|
1001
|
+
const localVarQueryParameter = {};
|
|
1002
|
+
// authentication Roles required
|
|
1003
|
+
// authentication BearerToken required
|
|
1004
|
+
// http bearer authentication required
|
|
1005
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1006
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1007
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1008
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1009
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1010
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1UpdateNodeRequest, localVarRequestOptions, configuration);
|
|
1011
|
+
return {
|
|
1012
|
+
url: toPathString(localVarUrlObj),
|
|
1013
|
+
options: localVarRequestOptions,
|
|
1014
|
+
};
|
|
1015
|
+
}),
|
|
875
1016
|
/**
|
|
876
1017
|
* Update node components.
|
|
877
1018
|
* @param {V1UpdateNodeComponentsRequest} v1UpdateNodeComponentsRequest
|
|
@@ -938,6 +1079,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
938
1079
|
options: localVarRequestOptions,
|
|
939
1080
|
};
|
|
940
1081
|
}),
|
|
1082
|
+
/**
|
|
1083
|
+
* Complete an observation utilizing the async pipeline.
|
|
1084
|
+
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
1085
|
+
* @param {*} [options] Override http request option.
|
|
1086
|
+
* @throws {RequiredError}
|
|
1087
|
+
*/
|
|
1088
|
+
v2CompleteObservation: (v2CompleteObservationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1089
|
+
// verify required parameter 'v2CompleteObservationRequest' is not null or undefined
|
|
1090
|
+
assertParamExists('v2CompleteObservation', 'v2CompleteObservationRequest', v2CompleteObservationRequest);
|
|
1091
|
+
const localVarPath = `/v2/observation-complete`;
|
|
1092
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1093
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1094
|
+
let baseOptions;
|
|
1095
|
+
if (configuration) {
|
|
1096
|
+
baseOptions = configuration.baseOptions;
|
|
1097
|
+
}
|
|
1098
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1099
|
+
const localVarHeaderParameter = {};
|
|
1100
|
+
const localVarQueryParameter = {};
|
|
1101
|
+
// authentication Roles required
|
|
1102
|
+
// authentication BearerToken required
|
|
1103
|
+
// http bearer authentication required
|
|
1104
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1105
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1106
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1107
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1108
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1109
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v2CompleteObservationRequest, localVarRequestOptions, configuration);
|
|
1110
|
+
return {
|
|
1111
|
+
url: toPathString(localVarUrlObj),
|
|
1112
|
+
options: localVarRequestOptions,
|
|
1113
|
+
};
|
|
1114
|
+
}),
|
|
941
1115
|
/**
|
|
942
1116
|
* Get next observation.
|
|
943
1117
|
* @param {string} nodeId
|
|
@@ -1060,15 +1234,27 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1060
1234
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1061
1235
|
});
|
|
1062
1236
|
},
|
|
1237
|
+
/**
|
|
1238
|
+
* Create a node.
|
|
1239
|
+
* @param {V1CreateNodeRequest} v1CreateNodeRequest
|
|
1240
|
+
* @param {*} [options] Override http request option.
|
|
1241
|
+
* @throws {RequiredError}
|
|
1242
|
+
*/
|
|
1243
|
+
v1CreateNode(v1CreateNodeRequest, options) {
|
|
1244
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1245
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateNode(v1CreateNodeRequest, options);
|
|
1246
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1247
|
+
});
|
|
1248
|
+
},
|
|
1063
1249
|
/**
|
|
1064
1250
|
* Create node diagnostics.
|
|
1065
|
-
* @param {
|
|
1251
|
+
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
1066
1252
|
* @param {*} [options] Override http request option.
|
|
1067
1253
|
* @throws {RequiredError}
|
|
1068
1254
|
*/
|
|
1069
|
-
v1CreateNodeDiagnostics(
|
|
1255
|
+
v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest, options) {
|
|
1070
1256
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1071
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateNodeDiagnostics(
|
|
1257
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest, options);
|
|
1072
1258
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1073
1259
|
});
|
|
1074
1260
|
},
|
|
@@ -1084,6 +1270,30 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1084
1270
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1085
1271
|
});
|
|
1086
1272
|
},
|
|
1273
|
+
/**
|
|
1274
|
+
* Delete an image set.
|
|
1275
|
+
* @param {string} id
|
|
1276
|
+
* @param {*} [options] Override http request option.
|
|
1277
|
+
* @throws {RequiredError}
|
|
1278
|
+
*/
|
|
1279
|
+
v1DeleteImageSet(id, options) {
|
|
1280
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1281
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteImageSet(id, options);
|
|
1282
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1283
|
+
});
|
|
1284
|
+
},
|
|
1285
|
+
/**
|
|
1286
|
+
* Delete an image.
|
|
1287
|
+
* @param {string} imageId
|
|
1288
|
+
* @param {*} [options] Override http request option.
|
|
1289
|
+
* @throws {RequiredError}
|
|
1290
|
+
*/
|
|
1291
|
+
v1DeleteImageSetImage(imageId, options) {
|
|
1292
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1293
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteImageSetImage(imageId, options);
|
|
1294
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1295
|
+
});
|
|
1296
|
+
},
|
|
1087
1297
|
/**
|
|
1088
1298
|
* Get cameras.
|
|
1089
1299
|
* @param {*} [options] Override http request option.
|
|
@@ -1240,6 +1450,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1240
1450
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1241
1451
|
});
|
|
1242
1452
|
},
|
|
1453
|
+
/**
|
|
1454
|
+
* Update a node.
|
|
1455
|
+
* @param {V1UpdateNodeRequest} v1UpdateNodeRequest
|
|
1456
|
+
* @param {*} [options] Override http request option.
|
|
1457
|
+
* @throws {RequiredError}
|
|
1458
|
+
*/
|
|
1459
|
+
v1UpdateNode(v1UpdateNodeRequest, options) {
|
|
1460
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1461
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1UpdateNode(v1UpdateNodeRequest, options);
|
|
1462
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1463
|
+
});
|
|
1464
|
+
},
|
|
1243
1465
|
/**
|
|
1244
1466
|
* Update node components.
|
|
1245
1467
|
* @param {V1UpdateNodeComponentsRequest} v1UpdateNodeComponentsRequest
|
|
@@ -1264,6 +1486,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1264
1486
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1265
1487
|
});
|
|
1266
1488
|
},
|
|
1489
|
+
/**
|
|
1490
|
+
* Complete an observation utilizing the async pipeline.
|
|
1491
|
+
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
1492
|
+
* @param {*} [options] Override http request option.
|
|
1493
|
+
* @throws {RequiredError}
|
|
1494
|
+
*/
|
|
1495
|
+
v2CompleteObservation(v2CompleteObservationRequest, options) {
|
|
1496
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1497
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2CompleteObservation(v2CompleteObservationRequest, options);
|
|
1498
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1499
|
+
});
|
|
1500
|
+
},
|
|
1267
1501
|
/**
|
|
1268
1502
|
* Get next observation.
|
|
1269
1503
|
* @param {string} nodeId
|
|
@@ -1339,6 +1573,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1339
1573
|
v1CreateMount(requestParameters, options) {
|
|
1340
1574
|
return localVarFp.v1CreateMount(requestParameters.v1CreateMountRequest, options).then((request) => request(axios, basePath));
|
|
1341
1575
|
},
|
|
1576
|
+
/**
|
|
1577
|
+
* Create a node.
|
|
1578
|
+
* @param {DefaultApiV1CreateNodeRequest} requestParameters Request parameters.
|
|
1579
|
+
* @param {*} [options] Override http request option.
|
|
1580
|
+
* @throws {RequiredError}
|
|
1581
|
+
*/
|
|
1582
|
+
v1CreateNode(requestParameters, options) {
|
|
1583
|
+
return localVarFp.v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(axios, basePath));
|
|
1584
|
+
},
|
|
1342
1585
|
/**
|
|
1343
1586
|
* Create node diagnostics.
|
|
1344
1587
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -1346,7 +1589,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1346
1589
|
* @throws {RequiredError}
|
|
1347
1590
|
*/
|
|
1348
1591
|
v1CreateNodeDiagnostics(requestParameters, options) {
|
|
1349
|
-
return localVarFp.v1CreateNodeDiagnostics(requestParameters.
|
|
1592
|
+
return localVarFp.v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(axios, basePath));
|
|
1350
1593
|
},
|
|
1351
1594
|
/**
|
|
1352
1595
|
* Create an optical tube.
|
|
@@ -1357,6 +1600,24 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1357
1600
|
v1CreateOpticalTube(requestParameters, options) {
|
|
1358
1601
|
return localVarFp.v1CreateOpticalTube(requestParameters.v1CreateOpticalTubeRequest, options).then((request) => request(axios, basePath));
|
|
1359
1602
|
},
|
|
1603
|
+
/**
|
|
1604
|
+
* Delete an image set.
|
|
1605
|
+
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
1606
|
+
* @param {*} [options] Override http request option.
|
|
1607
|
+
* @throws {RequiredError}
|
|
1608
|
+
*/
|
|
1609
|
+
v1DeleteImageSet(requestParameters, options) {
|
|
1610
|
+
return localVarFp.v1DeleteImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
1611
|
+
},
|
|
1612
|
+
/**
|
|
1613
|
+
* Delete an image.
|
|
1614
|
+
* @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
|
|
1615
|
+
* @param {*} [options] Override http request option.
|
|
1616
|
+
* @throws {RequiredError}
|
|
1617
|
+
*/
|
|
1618
|
+
v1DeleteImageSetImage(requestParameters, options) {
|
|
1619
|
+
return localVarFp.v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
1620
|
+
},
|
|
1360
1621
|
/**
|
|
1361
1622
|
* Get cameras.
|
|
1362
1623
|
* @param {*} [options] Override http request option.
|
|
@@ -1472,6 +1733,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1472
1733
|
v1OpticalTubeMatch(requestParameters = {}, options) {
|
|
1473
1734
|
return localVarFp.v1OpticalTubeMatch(requestParameters.model, requestParameters.focalLengthMm, requestParameters.apertureMm, options).then((request) => request(axios, basePath));
|
|
1474
1735
|
},
|
|
1736
|
+
/**
|
|
1737
|
+
* Update a node.
|
|
1738
|
+
* @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
|
|
1739
|
+
* @param {*} [options] Override http request option.
|
|
1740
|
+
* @throws {RequiredError}
|
|
1741
|
+
*/
|
|
1742
|
+
v1UpdateNode(requestParameters, options) {
|
|
1743
|
+
return localVarFp.v1UpdateNode(requestParameters.v1UpdateNodeRequest, options).then((request) => request(axios, basePath));
|
|
1744
|
+
},
|
|
1475
1745
|
/**
|
|
1476
1746
|
* Update node components.
|
|
1477
1747
|
* @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.
|
|
@@ -1490,6 +1760,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1490
1760
|
v1UpdateNodeMetrics(requestParameters, options) {
|
|
1491
1761
|
return localVarFp.v1UpdateNodeMetrics(requestParameters.v1UpdateNodeMetricsRequest, options).then((request) => request(axios, basePath));
|
|
1492
1762
|
},
|
|
1763
|
+
/**
|
|
1764
|
+
* Complete an observation utilizing the async pipeline.
|
|
1765
|
+
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
1766
|
+
* @param {*} [options] Override http request option.
|
|
1767
|
+
* @throws {RequiredError}
|
|
1768
|
+
*/
|
|
1769
|
+
v2CompleteObservation(requestParameters, options) {
|
|
1770
|
+
return localVarFp.v2CompleteObservation(requestParameters.v2CompleteObservationRequest, options).then((request) => request(axios, basePath));
|
|
1771
|
+
},
|
|
1493
1772
|
/**
|
|
1494
1773
|
* Get next observation.
|
|
1495
1774
|
* @param {DefaultApiV2GetObservationRequest} requestParameters Request parameters.
|
|
@@ -1568,6 +1847,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
1568
1847
|
v1CreateMount(requestParameters, options) {
|
|
1569
1848
|
return DefaultApiFp(this.configuration).v1CreateMount(requestParameters.v1CreateMountRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1570
1849
|
}
|
|
1850
|
+
/**
|
|
1851
|
+
* Create a node.
|
|
1852
|
+
* @param {DefaultApiV1CreateNodeRequest} requestParameters Request parameters.
|
|
1853
|
+
* @param {*} [options] Override http request option.
|
|
1854
|
+
* @throws {RequiredError}
|
|
1855
|
+
* @memberof DefaultApi
|
|
1856
|
+
*/
|
|
1857
|
+
v1CreateNode(requestParameters, options) {
|
|
1858
|
+
return DefaultApiFp(this.configuration).v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1859
|
+
}
|
|
1571
1860
|
/**
|
|
1572
1861
|
* Create node diagnostics.
|
|
1573
1862
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -1576,7 +1865,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1576
1865
|
* @memberof DefaultApi
|
|
1577
1866
|
*/
|
|
1578
1867
|
v1CreateNodeDiagnostics(requestParameters, options) {
|
|
1579
|
-
return DefaultApiFp(this.configuration).v1CreateNodeDiagnostics(requestParameters.
|
|
1868
|
+
return DefaultApiFp(this.configuration).v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1580
1869
|
}
|
|
1581
1870
|
/**
|
|
1582
1871
|
* Create an optical tube.
|
|
@@ -1588,6 +1877,26 @@ export class DefaultApi extends BaseAPI {
|
|
|
1588
1877
|
v1CreateOpticalTube(requestParameters, options) {
|
|
1589
1878
|
return DefaultApiFp(this.configuration).v1CreateOpticalTube(requestParameters.v1CreateOpticalTubeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1590
1879
|
}
|
|
1880
|
+
/**
|
|
1881
|
+
* Delete an image set.
|
|
1882
|
+
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
1883
|
+
* @param {*} [options] Override http request option.
|
|
1884
|
+
* @throws {RequiredError}
|
|
1885
|
+
* @memberof DefaultApi
|
|
1886
|
+
*/
|
|
1887
|
+
v1DeleteImageSet(requestParameters, options) {
|
|
1888
|
+
return DefaultApiFp(this.configuration).v1DeleteImageSet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
1889
|
+
}
|
|
1890
|
+
/**
|
|
1891
|
+
* Delete an image.
|
|
1892
|
+
* @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
|
|
1893
|
+
* @param {*} [options] Override http request option.
|
|
1894
|
+
* @throws {RequiredError}
|
|
1895
|
+
* @memberof DefaultApi
|
|
1896
|
+
*/
|
|
1897
|
+
v1DeleteImageSetImage(requestParameters, options) {
|
|
1898
|
+
return DefaultApiFp(this.configuration).v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
1899
|
+
}
|
|
1591
1900
|
/**
|
|
1592
1901
|
* Get cameras.
|
|
1593
1902
|
* @param {*} [options] Override http request option.
|
|
@@ -1716,6 +2025,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
1716
2025
|
v1OpticalTubeMatch(requestParameters = {}, options) {
|
|
1717
2026
|
return DefaultApiFp(this.configuration).v1OpticalTubeMatch(requestParameters.model, requestParameters.focalLengthMm, requestParameters.apertureMm, options).then((request) => request(this.axios, this.basePath));
|
|
1718
2027
|
}
|
|
2028
|
+
/**
|
|
2029
|
+
* Update a node.
|
|
2030
|
+
* @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
|
|
2031
|
+
* @param {*} [options] Override http request option.
|
|
2032
|
+
* @throws {RequiredError}
|
|
2033
|
+
* @memberof DefaultApi
|
|
2034
|
+
*/
|
|
2035
|
+
v1UpdateNode(requestParameters, options) {
|
|
2036
|
+
return DefaultApiFp(this.configuration).v1UpdateNode(requestParameters.v1UpdateNodeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2037
|
+
}
|
|
1719
2038
|
/**
|
|
1720
2039
|
* Update node components.
|
|
1721
2040
|
* @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.
|
|
@@ -1736,6 +2055,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
1736
2055
|
v1UpdateNodeMetrics(requestParameters, options) {
|
|
1737
2056
|
return DefaultApiFp(this.configuration).v1UpdateNodeMetrics(requestParameters.v1UpdateNodeMetricsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1738
2057
|
}
|
|
2058
|
+
/**
|
|
2059
|
+
* Complete an observation utilizing the async pipeline.
|
|
2060
|
+
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
2061
|
+
* @param {*} [options] Override http request option.
|
|
2062
|
+
* @throws {RequiredError}
|
|
2063
|
+
* @memberof DefaultApi
|
|
2064
|
+
*/
|
|
2065
|
+
v2CompleteObservation(requestParameters, options) {
|
|
2066
|
+
return DefaultApiFp(this.configuration).v2CompleteObservation(requestParameters.v2CompleteObservationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2067
|
+
}
|
|
1739
2068
|
/**
|
|
1740
2069
|
* Get next observation.
|
|
1741
2070
|
* @param {DefaultApiV2GetObservationRequest} 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.2151
|
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|