@ourskyai/platform-api 1.3.2078 → 1.3.2229
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 +512 -2
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +335 -1
- package/dist/api.js +261 -2
- 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 +335 -1
- package/dist/esm/api.js +261 -2
- 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.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -148,7 +148,8 @@ export const V1NodeDiagnosticType = {
|
|
|
148
148
|
POINTING_ERROR_DEGREES: 'POINTING_ERROR_DEGREES',
|
|
149
149
|
CAMERA_CHECKED: 'CAMERA_CHECKED',
|
|
150
150
|
MOUNT_CHECKED: 'MOUNT_CHECKED',
|
|
151
|
-
OPTICAL_TUBE_CHECKED: 'OPTICAL_TUBE_CHECKED'
|
|
151
|
+
OPTICAL_TUBE_CHECKED: 'OPTICAL_TUBE_CHECKED',
|
|
152
|
+
ELEVATION_MASK_CHECKED: 'ELEVATION_MASK_CHECKED'
|
|
152
153
|
};
|
|
153
154
|
/**
|
|
154
155
|
* DefaultApi - axios parameter creator
|
|
@@ -381,6 +382,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
381
382
|
options: localVarRequestOptions,
|
|
382
383
|
};
|
|
383
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
|
+
}),
|
|
384
418
|
/**
|
|
385
419
|
* Create node diagnostics.
|
|
386
420
|
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
@@ -447,6 +481,74 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
447
481
|
options: localVarRequestOptions,
|
|
448
482
|
};
|
|
449
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
|
+
}),
|
|
450
552
|
/**
|
|
451
553
|
* Get cameras.
|
|
452
554
|
* @param {*} [options] Override http request option.
|
|
@@ -878,6 +980,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
878
980
|
options: localVarRequestOptions,
|
|
879
981
|
};
|
|
880
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
|
+
}),
|
|
881
1016
|
/**
|
|
882
1017
|
* Update node components.
|
|
883
1018
|
* @param {V1UpdateNodeComponentsRequest} v1UpdateNodeComponentsRequest
|
|
@@ -1099,6 +1234,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1099
1234
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1100
1235
|
});
|
|
1101
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
|
+
},
|
|
1102
1249
|
/**
|
|
1103
1250
|
* Create node diagnostics.
|
|
1104
1251
|
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
@@ -1123,6 +1270,30 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1123
1270
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1124
1271
|
});
|
|
1125
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
|
+
},
|
|
1126
1297
|
/**
|
|
1127
1298
|
* Get cameras.
|
|
1128
1299
|
* @param {*} [options] Override http request option.
|
|
@@ -1279,6 +1450,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1279
1450
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1280
1451
|
});
|
|
1281
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
|
+
},
|
|
1282
1465
|
/**
|
|
1283
1466
|
* Update node components.
|
|
1284
1467
|
* @param {V1UpdateNodeComponentsRequest} v1UpdateNodeComponentsRequest
|
|
@@ -1390,6 +1573,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1390
1573
|
v1CreateMount(requestParameters, options) {
|
|
1391
1574
|
return localVarFp.v1CreateMount(requestParameters.v1CreateMountRequest, options).then((request) => request(axios, basePath));
|
|
1392
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
|
+
},
|
|
1393
1585
|
/**
|
|
1394
1586
|
* Create node diagnostics.
|
|
1395
1587
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -1408,6 +1600,24 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1408
1600
|
v1CreateOpticalTube(requestParameters, options) {
|
|
1409
1601
|
return localVarFp.v1CreateOpticalTube(requestParameters.v1CreateOpticalTubeRequest, options).then((request) => request(axios, basePath));
|
|
1410
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
|
+
},
|
|
1411
1621
|
/**
|
|
1412
1622
|
* Get cameras.
|
|
1413
1623
|
* @param {*} [options] Override http request option.
|
|
@@ -1523,6 +1733,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1523
1733
|
v1OpticalTubeMatch(requestParameters = {}, options) {
|
|
1524
1734
|
return localVarFp.v1OpticalTubeMatch(requestParameters.model, requestParameters.focalLengthMm, requestParameters.apertureMm, options).then((request) => request(axios, basePath));
|
|
1525
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
|
+
},
|
|
1526
1745
|
/**
|
|
1527
1746
|
* Update node components.
|
|
1528
1747
|
* @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.
|
|
@@ -1628,6 +1847,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
1628
1847
|
v1CreateMount(requestParameters, options) {
|
|
1629
1848
|
return DefaultApiFp(this.configuration).v1CreateMount(requestParameters.v1CreateMountRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1630
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
|
+
}
|
|
1631
1860
|
/**
|
|
1632
1861
|
* Create node diagnostics.
|
|
1633
1862
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -1648,6 +1877,26 @@ export class DefaultApi extends BaseAPI {
|
|
|
1648
1877
|
v1CreateOpticalTube(requestParameters, options) {
|
|
1649
1878
|
return DefaultApiFp(this.configuration).v1CreateOpticalTube(requestParameters.v1CreateOpticalTubeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1650
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
|
+
}
|
|
1651
1900
|
/**
|
|
1652
1901
|
* Get cameras.
|
|
1653
1902
|
* @param {*} [options] Override http request option.
|
|
@@ -1776,6 +2025,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
1776
2025
|
v1OpticalTubeMatch(requestParameters = {}, options) {
|
|
1777
2026
|
return DefaultApiFp(this.configuration).v1OpticalTubeMatch(requestParameters.model, requestParameters.focalLengthMm, requestParameters.apertureMm, options).then((request) => request(this.axios, this.basePath));
|
|
1778
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
|
+
}
|
|
1779
2038
|
/**
|
|
1780
2039
|
* Update node components.
|
|
1781
2040
|
* @param {DefaultApiV1UpdateNodeComponentsRequest} 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.2229
|
|
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.2229
|
|
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.2229
|
|
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.2229
|
|
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.2229
|
|
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.2229
|
|
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.2229
|
|
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.2229
|
|
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.2229
|
|
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.2229
|
|
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.2229
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|