@ourskyai/platform-api 1.3.1905 → 1.3.2078
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 +650 -28
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +465 -21
- package/dist/api.js +274 -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 +465 -21
- package/dist/esm/api.js +274 -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.2078
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -142,7 +142,13 @@ 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'
|
|
146
152
|
};
|
|
147
153
|
/**
|
|
148
154
|
* DefaultApi - axios parameter creator
|
|
@@ -377,13 +383,13 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
377
383
|
}),
|
|
378
384
|
/**
|
|
379
385
|
* Create node diagnostics.
|
|
380
|
-
* @param {
|
|
386
|
+
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
381
387
|
* @param {*} [options] Override http request option.
|
|
382
388
|
* @throws {RequiredError}
|
|
383
389
|
*/
|
|
384
|
-
v1CreateNodeDiagnostics: (
|
|
385
|
-
// verify required parameter '
|
|
386
|
-
assertParamExists('v1CreateNodeDiagnostics', '
|
|
390
|
+
v1CreateNodeDiagnostics: (v1CreateNodeDiagnosticsRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
391
|
+
// verify required parameter 'v1CreateNodeDiagnosticsRequest' is not null or undefined
|
|
392
|
+
assertParamExists('v1CreateNodeDiagnostics', 'v1CreateNodeDiagnosticsRequest', v1CreateNodeDiagnosticsRequest);
|
|
387
393
|
const localVarPath = `/v1/node-diagnostics`;
|
|
388
394
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
389
395
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -402,7 +408,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
402
408
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
403
409
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
404
410
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
405
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
411
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeDiagnosticsRequest, localVarRequestOptions, configuration);
|
|
406
412
|
return {
|
|
407
413
|
url: toPathString(localVarUrlObj),
|
|
408
414
|
options: localVarRequestOptions,
|
|
@@ -701,6 +707,105 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
701
707
|
options: localVarRequestOptions,
|
|
702
708
|
};
|
|
703
709
|
}),
|
|
710
|
+
/**
|
|
711
|
+
* Get or create camera.
|
|
712
|
+
* @param {V1GetOrCreateCameraRequest} v1GetOrCreateCameraRequest
|
|
713
|
+
* @param {*} [options] Override http request option.
|
|
714
|
+
* @throws {RequiredError}
|
|
715
|
+
*/
|
|
716
|
+
v1GetOrCreateCamera: (v1GetOrCreateCameraRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
717
|
+
// verify required parameter 'v1GetOrCreateCameraRequest' is not null or undefined
|
|
718
|
+
assertParamExists('v1GetOrCreateCamera', 'v1GetOrCreateCameraRequest', v1GetOrCreateCameraRequest);
|
|
719
|
+
const localVarPath = `/v1/camera-match`;
|
|
720
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
721
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
722
|
+
let baseOptions;
|
|
723
|
+
if (configuration) {
|
|
724
|
+
baseOptions = configuration.baseOptions;
|
|
725
|
+
}
|
|
726
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
727
|
+
const localVarHeaderParameter = {};
|
|
728
|
+
const localVarQueryParameter = {};
|
|
729
|
+
// authentication Roles required
|
|
730
|
+
// authentication BearerToken required
|
|
731
|
+
// http bearer authentication required
|
|
732
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
733
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
734
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
735
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
736
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
737
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1GetOrCreateCameraRequest, localVarRequestOptions, configuration);
|
|
738
|
+
return {
|
|
739
|
+
url: toPathString(localVarUrlObj),
|
|
740
|
+
options: localVarRequestOptions,
|
|
741
|
+
};
|
|
742
|
+
}),
|
|
743
|
+
/**
|
|
744
|
+
* Get or create mount.
|
|
745
|
+
* @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
|
|
746
|
+
* @param {*} [options] Override http request option.
|
|
747
|
+
* @throws {RequiredError}
|
|
748
|
+
*/
|
|
749
|
+
v1GetOrCreateMount: (v1GetOrCreateMountRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
750
|
+
// verify required parameter 'v1GetOrCreateMountRequest' is not null or undefined
|
|
751
|
+
assertParamExists('v1GetOrCreateMount', 'v1GetOrCreateMountRequest', v1GetOrCreateMountRequest);
|
|
752
|
+
const localVarPath = `/v1/mount-match`;
|
|
753
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
754
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
755
|
+
let baseOptions;
|
|
756
|
+
if (configuration) {
|
|
757
|
+
baseOptions = configuration.baseOptions;
|
|
758
|
+
}
|
|
759
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
760
|
+
const localVarHeaderParameter = {};
|
|
761
|
+
const localVarQueryParameter = {};
|
|
762
|
+
// authentication Roles required
|
|
763
|
+
// authentication BearerToken required
|
|
764
|
+
// http bearer authentication required
|
|
765
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
766
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
767
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
768
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
769
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
770
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1GetOrCreateMountRequest, localVarRequestOptions, configuration);
|
|
771
|
+
return {
|
|
772
|
+
url: toPathString(localVarUrlObj),
|
|
773
|
+
options: localVarRequestOptions,
|
|
774
|
+
};
|
|
775
|
+
}),
|
|
776
|
+
/**
|
|
777
|
+
* Get or create optical tube.
|
|
778
|
+
* @param {V1GetOrCreateOpticalTubeRequest} v1GetOrCreateOpticalTubeRequest
|
|
779
|
+
* @param {*} [options] Override http request option.
|
|
780
|
+
* @throws {RequiredError}
|
|
781
|
+
*/
|
|
782
|
+
v1GetOrCreateOpticalTube: (v1GetOrCreateOpticalTubeRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
783
|
+
// verify required parameter 'v1GetOrCreateOpticalTubeRequest' is not null or undefined
|
|
784
|
+
assertParamExists('v1GetOrCreateOpticalTube', 'v1GetOrCreateOpticalTubeRequest', v1GetOrCreateOpticalTubeRequest);
|
|
785
|
+
const localVarPath = `/v1/optical-tube-match`;
|
|
786
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
787
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
788
|
+
let baseOptions;
|
|
789
|
+
if (configuration) {
|
|
790
|
+
baseOptions = configuration.baseOptions;
|
|
791
|
+
}
|
|
792
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
793
|
+
const localVarHeaderParameter = {};
|
|
794
|
+
const localVarQueryParameter = {};
|
|
795
|
+
// authentication Roles required
|
|
796
|
+
// authentication BearerToken required
|
|
797
|
+
// http bearer authentication required
|
|
798
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
799
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
800
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
801
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
802
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
803
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1GetOrCreateOpticalTubeRequest, localVarRequestOptions, configuration);
|
|
804
|
+
return {
|
|
805
|
+
url: toPathString(localVarUrlObj),
|
|
806
|
+
options: localVarRequestOptions,
|
|
807
|
+
};
|
|
808
|
+
}),
|
|
704
809
|
/**
|
|
705
810
|
* Match mount.
|
|
706
811
|
* @param {string} [model]
|
|
@@ -839,6 +944,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
839
944
|
options: localVarRequestOptions,
|
|
840
945
|
};
|
|
841
946
|
}),
|
|
947
|
+
/**
|
|
948
|
+
* Complete an observation utilizing the async pipeline.
|
|
949
|
+
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
950
|
+
* @param {*} [options] Override http request option.
|
|
951
|
+
* @throws {RequiredError}
|
|
952
|
+
*/
|
|
953
|
+
v2CompleteObservation: (v2CompleteObservationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
954
|
+
// verify required parameter 'v2CompleteObservationRequest' is not null or undefined
|
|
955
|
+
assertParamExists('v2CompleteObservation', 'v2CompleteObservationRequest', v2CompleteObservationRequest);
|
|
956
|
+
const localVarPath = `/v2/observation-complete`;
|
|
957
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
958
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
959
|
+
let baseOptions;
|
|
960
|
+
if (configuration) {
|
|
961
|
+
baseOptions = configuration.baseOptions;
|
|
962
|
+
}
|
|
963
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
964
|
+
const localVarHeaderParameter = {};
|
|
965
|
+
const localVarQueryParameter = {};
|
|
966
|
+
// authentication Roles required
|
|
967
|
+
// authentication BearerToken required
|
|
968
|
+
// http bearer authentication required
|
|
969
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
970
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
971
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
972
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
973
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
974
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v2CompleteObservationRequest, localVarRequestOptions, configuration);
|
|
975
|
+
return {
|
|
976
|
+
url: toPathString(localVarUrlObj),
|
|
977
|
+
options: localVarRequestOptions,
|
|
978
|
+
};
|
|
979
|
+
}),
|
|
842
980
|
/**
|
|
843
981
|
* Get next observation.
|
|
844
982
|
* @param {string} nodeId
|
|
@@ -963,13 +1101,13 @@ export const DefaultApiFp = function (configuration) {
|
|
|
963
1101
|
},
|
|
964
1102
|
/**
|
|
965
1103
|
* Create node diagnostics.
|
|
966
|
-
* @param {
|
|
1104
|
+
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
967
1105
|
* @param {*} [options] Override http request option.
|
|
968
1106
|
* @throws {RequiredError}
|
|
969
1107
|
*/
|
|
970
|
-
v1CreateNodeDiagnostics(
|
|
1108
|
+
v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest, options) {
|
|
971
1109
|
return __awaiter(this, void 0, void 0, function* () {
|
|
972
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateNodeDiagnostics(
|
|
1110
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest, options);
|
|
973
1111
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
974
1112
|
});
|
|
975
1113
|
},
|
|
@@ -1079,6 +1217,42 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1079
1217
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1080
1218
|
});
|
|
1081
1219
|
},
|
|
1220
|
+
/**
|
|
1221
|
+
* Get or create camera.
|
|
1222
|
+
* @param {V1GetOrCreateCameraRequest} v1GetOrCreateCameraRequest
|
|
1223
|
+
* @param {*} [options] Override http request option.
|
|
1224
|
+
* @throws {RequiredError}
|
|
1225
|
+
*/
|
|
1226
|
+
v1GetOrCreateCamera(v1GetOrCreateCameraRequest, options) {
|
|
1227
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1228
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateCamera(v1GetOrCreateCameraRequest, options);
|
|
1229
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1230
|
+
});
|
|
1231
|
+
},
|
|
1232
|
+
/**
|
|
1233
|
+
* Get or create mount.
|
|
1234
|
+
* @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
|
|
1235
|
+
* @param {*} [options] Override http request option.
|
|
1236
|
+
* @throws {RequiredError}
|
|
1237
|
+
*/
|
|
1238
|
+
v1GetOrCreateMount(v1GetOrCreateMountRequest, options) {
|
|
1239
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1240
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateMount(v1GetOrCreateMountRequest, options);
|
|
1241
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1242
|
+
});
|
|
1243
|
+
},
|
|
1244
|
+
/**
|
|
1245
|
+
* Get or create optical tube.
|
|
1246
|
+
* @param {V1GetOrCreateOpticalTubeRequest} v1GetOrCreateOpticalTubeRequest
|
|
1247
|
+
* @param {*} [options] Override http request option.
|
|
1248
|
+
* @throws {RequiredError}
|
|
1249
|
+
*/
|
|
1250
|
+
v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest, options) {
|
|
1251
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1252
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest, options);
|
|
1253
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1254
|
+
});
|
|
1255
|
+
},
|
|
1082
1256
|
/**
|
|
1083
1257
|
* Match mount.
|
|
1084
1258
|
* @param {string} [model]
|
|
@@ -1129,6 +1303,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1129
1303
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1130
1304
|
});
|
|
1131
1305
|
},
|
|
1306
|
+
/**
|
|
1307
|
+
* Complete an observation utilizing the async pipeline.
|
|
1308
|
+
* @param {V2CompleteObservationRequest} v2CompleteObservationRequest
|
|
1309
|
+
* @param {*} [options] Override http request option.
|
|
1310
|
+
* @throws {RequiredError}
|
|
1311
|
+
*/
|
|
1312
|
+
v2CompleteObservation(v2CompleteObservationRequest, options) {
|
|
1313
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1314
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v2CompleteObservation(v2CompleteObservationRequest, options);
|
|
1315
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1316
|
+
});
|
|
1317
|
+
},
|
|
1132
1318
|
/**
|
|
1133
1319
|
* Get next observation.
|
|
1134
1320
|
* @param {string} nodeId
|
|
@@ -1211,7 +1397,7 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1211
1397
|
* @throws {RequiredError}
|
|
1212
1398
|
*/
|
|
1213
1399
|
v1CreateNodeDiagnostics(requestParameters, options) {
|
|
1214
|
-
return localVarFp.v1CreateNodeDiagnostics(requestParameters.
|
|
1400
|
+
return localVarFp.v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(axios, basePath));
|
|
1215
1401
|
},
|
|
1216
1402
|
/**
|
|
1217
1403
|
* Create an optical tube.
|
|
@@ -1292,6 +1478,33 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1292
1478
|
v1GetOpticalTube(requestParameters, options) {
|
|
1293
1479
|
return localVarFp.v1GetOpticalTube(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
1294
1480
|
},
|
|
1481
|
+
/**
|
|
1482
|
+
* Get or create camera.
|
|
1483
|
+
* @param {DefaultApiV1GetOrCreateCameraRequest} requestParameters Request parameters.
|
|
1484
|
+
* @param {*} [options] Override http request option.
|
|
1485
|
+
* @throws {RequiredError}
|
|
1486
|
+
*/
|
|
1487
|
+
v1GetOrCreateCamera(requestParameters, options) {
|
|
1488
|
+
return localVarFp.v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(axios, basePath));
|
|
1489
|
+
},
|
|
1490
|
+
/**
|
|
1491
|
+
* Get or create mount.
|
|
1492
|
+
* @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
|
|
1493
|
+
* @param {*} [options] Override http request option.
|
|
1494
|
+
* @throws {RequiredError}
|
|
1495
|
+
*/
|
|
1496
|
+
v1GetOrCreateMount(requestParameters, options) {
|
|
1497
|
+
return localVarFp.v1GetOrCreateMount(requestParameters.v1GetOrCreateMountRequest, options).then((request) => request(axios, basePath));
|
|
1498
|
+
},
|
|
1499
|
+
/**
|
|
1500
|
+
* Get or create optical tube.
|
|
1501
|
+
* @param {DefaultApiV1GetOrCreateOpticalTubeRequest} requestParameters Request parameters.
|
|
1502
|
+
* @param {*} [options] Override http request option.
|
|
1503
|
+
* @throws {RequiredError}
|
|
1504
|
+
*/
|
|
1505
|
+
v1GetOrCreateOpticalTube(requestParameters, options) {
|
|
1506
|
+
return localVarFp.v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(axios, basePath));
|
|
1507
|
+
},
|
|
1295
1508
|
/**
|
|
1296
1509
|
* Match mount.
|
|
1297
1510
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -1328,6 +1541,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1328
1541
|
v1UpdateNodeMetrics(requestParameters, options) {
|
|
1329
1542
|
return localVarFp.v1UpdateNodeMetrics(requestParameters.v1UpdateNodeMetricsRequest, options).then((request) => request(axios, basePath));
|
|
1330
1543
|
},
|
|
1544
|
+
/**
|
|
1545
|
+
* Complete an observation utilizing the async pipeline.
|
|
1546
|
+
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
1547
|
+
* @param {*} [options] Override http request option.
|
|
1548
|
+
* @throws {RequiredError}
|
|
1549
|
+
*/
|
|
1550
|
+
v2CompleteObservation(requestParameters, options) {
|
|
1551
|
+
return localVarFp.v2CompleteObservation(requestParameters.v2CompleteObservationRequest, options).then((request) => request(axios, basePath));
|
|
1552
|
+
},
|
|
1331
1553
|
/**
|
|
1332
1554
|
* Get next observation.
|
|
1333
1555
|
* @param {DefaultApiV2GetObservationRequest} requestParameters Request parameters.
|
|
@@ -1414,7 +1636,7 @@ export class DefaultApi extends BaseAPI {
|
|
|
1414
1636
|
* @memberof DefaultApi
|
|
1415
1637
|
*/
|
|
1416
1638
|
v1CreateNodeDiagnostics(requestParameters, options) {
|
|
1417
|
-
return DefaultApiFp(this.configuration).v1CreateNodeDiagnostics(requestParameters.
|
|
1639
|
+
return DefaultApiFp(this.configuration).v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1418
1640
|
}
|
|
1419
1641
|
/**
|
|
1420
1642
|
* Create an optical tube.
|
|
@@ -1504,6 +1726,36 @@ export class DefaultApi extends BaseAPI {
|
|
|
1504
1726
|
v1GetOpticalTube(requestParameters, options) {
|
|
1505
1727
|
return DefaultApiFp(this.configuration).v1GetOpticalTube(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
1506
1728
|
}
|
|
1729
|
+
/**
|
|
1730
|
+
* Get or create camera.
|
|
1731
|
+
* @param {DefaultApiV1GetOrCreateCameraRequest} requestParameters Request parameters.
|
|
1732
|
+
* @param {*} [options] Override http request option.
|
|
1733
|
+
* @throws {RequiredError}
|
|
1734
|
+
* @memberof DefaultApi
|
|
1735
|
+
*/
|
|
1736
|
+
v1GetOrCreateCamera(requestParameters, options) {
|
|
1737
|
+
return DefaultApiFp(this.configuration).v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1738
|
+
}
|
|
1739
|
+
/**
|
|
1740
|
+
* Get or create mount.
|
|
1741
|
+
* @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
|
|
1742
|
+
* @param {*} [options] Override http request option.
|
|
1743
|
+
* @throws {RequiredError}
|
|
1744
|
+
* @memberof DefaultApi
|
|
1745
|
+
*/
|
|
1746
|
+
v1GetOrCreateMount(requestParameters, options) {
|
|
1747
|
+
return DefaultApiFp(this.configuration).v1GetOrCreateMount(requestParameters.v1GetOrCreateMountRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1748
|
+
}
|
|
1749
|
+
/**
|
|
1750
|
+
* Get or create optical tube.
|
|
1751
|
+
* @param {DefaultApiV1GetOrCreateOpticalTubeRequest} requestParameters Request parameters.
|
|
1752
|
+
* @param {*} [options] Override http request option.
|
|
1753
|
+
* @throws {RequiredError}
|
|
1754
|
+
* @memberof DefaultApi
|
|
1755
|
+
*/
|
|
1756
|
+
v1GetOrCreateOpticalTube(requestParameters, options) {
|
|
1757
|
+
return DefaultApiFp(this.configuration).v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1758
|
+
}
|
|
1507
1759
|
/**
|
|
1508
1760
|
* Match mount.
|
|
1509
1761
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -1544,6 +1796,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
1544
1796
|
v1UpdateNodeMetrics(requestParameters, options) {
|
|
1545
1797
|
return DefaultApiFp(this.configuration).v1UpdateNodeMetrics(requestParameters.v1UpdateNodeMetricsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1546
1798
|
}
|
|
1799
|
+
/**
|
|
1800
|
+
* Complete an observation utilizing the async pipeline.
|
|
1801
|
+
* @param {DefaultApiV2CompleteObservationRequest} requestParameters Request parameters.
|
|
1802
|
+
* @param {*} [options] Override http request option.
|
|
1803
|
+
* @throws {RequiredError}
|
|
1804
|
+
* @memberof DefaultApi
|
|
1805
|
+
*/
|
|
1806
|
+
v2CompleteObservation(requestParameters, options) {
|
|
1807
|
+
return DefaultApiFp(this.configuration).v2CompleteObservation(requestParameters.v2CompleteObservationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1808
|
+
}
|
|
1547
1809
|
/**
|
|
1548
1810
|
* Get next observation.
|
|
1549
1811
|
* @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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|