@ourskyai/astro-api 1.3.5068 → 1.3.5184
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 +429 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +252 -1
- package/dist/api.js +262 -1
- 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 +252 -1
- package/dist/esm/api.js +262 -1
- 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/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
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.5184
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -289,6 +289,39 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
289
289
|
options: localVarRequestOptions,
|
|
290
290
|
};
|
|
291
291
|
}),
|
|
292
|
+
/**
|
|
293
|
+
* Create an astro focuser.
|
|
294
|
+
* @param {V1CreateFocuserRequest} v1CreateFocuserRequest
|
|
295
|
+
* @param {*} [options] Override http request option.
|
|
296
|
+
* @throws {RequiredError}
|
|
297
|
+
*/
|
|
298
|
+
v1CreateAstroFocuser: (v1CreateFocuserRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
299
|
+
// verify required parameter 'v1CreateFocuserRequest' is not null or undefined
|
|
300
|
+
(0, common_1.assertParamExists)('v1CreateAstroFocuser', 'v1CreateFocuserRequest', v1CreateFocuserRequest);
|
|
301
|
+
const localVarPath = `/v1/astro-focuser`;
|
|
302
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
303
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
304
|
+
let baseOptions;
|
|
305
|
+
if (configuration) {
|
|
306
|
+
baseOptions = configuration.baseOptions;
|
|
307
|
+
}
|
|
308
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
309
|
+
const localVarHeaderParameter = {};
|
|
310
|
+
const localVarQueryParameter = {};
|
|
311
|
+
// authentication Roles required
|
|
312
|
+
// authentication BearerToken required
|
|
313
|
+
// http bearer authentication required
|
|
314
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
315
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
316
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
317
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
318
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
319
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateFocuserRequest, localVarRequestOptions, configuration);
|
|
320
|
+
return {
|
|
321
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
322
|
+
options: localVarRequestOptions,
|
|
323
|
+
};
|
|
324
|
+
}),
|
|
292
325
|
/**
|
|
293
326
|
* Create an astro mount.
|
|
294
327
|
* @param {V1CreateMountRequest} v1CreateMountRequest
|
|
@@ -755,6 +788,42 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
755
788
|
options: localVarRequestOptions,
|
|
756
789
|
};
|
|
757
790
|
}),
|
|
791
|
+
/**
|
|
792
|
+
* Match focuser.
|
|
793
|
+
* @param {string} [model]
|
|
794
|
+
* @param {number} [travelDistanceMm]
|
|
795
|
+
* @param {*} [options] Override http request option.
|
|
796
|
+
* @throws {RequiredError}
|
|
797
|
+
*/
|
|
798
|
+
v1FocuserMatch: (model, travelDistanceMm, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
799
|
+
const localVarPath = `/v1/focuser-match`;
|
|
800
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
801
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
802
|
+
let baseOptions;
|
|
803
|
+
if (configuration) {
|
|
804
|
+
baseOptions = configuration.baseOptions;
|
|
805
|
+
}
|
|
806
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
807
|
+
const localVarHeaderParameter = {};
|
|
808
|
+
const localVarQueryParameter = {};
|
|
809
|
+
// authentication Roles required
|
|
810
|
+
// authentication BearerToken required
|
|
811
|
+
// http bearer authentication required
|
|
812
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
813
|
+
if (model !== undefined) {
|
|
814
|
+
localVarQueryParameter['model'] = model;
|
|
815
|
+
}
|
|
816
|
+
if (travelDistanceMm !== undefined) {
|
|
817
|
+
localVarQueryParameter['travelDistanceMm'] = travelDistanceMm;
|
|
818
|
+
}
|
|
819
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
820
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
821
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
822
|
+
return {
|
|
823
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
824
|
+
options: localVarRequestOptions,
|
|
825
|
+
};
|
|
826
|
+
}),
|
|
758
827
|
/**
|
|
759
828
|
* Get an astro camera.
|
|
760
829
|
* @param {string} id
|
|
@@ -789,6 +858,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
789
858
|
options: localVarRequestOptions,
|
|
790
859
|
};
|
|
791
860
|
}),
|
|
861
|
+
/**
|
|
862
|
+
* Get an astro focuser.
|
|
863
|
+
* @param {string} id
|
|
864
|
+
* @param {*} [options] Override http request option.
|
|
865
|
+
* @throws {RequiredError}
|
|
866
|
+
*/
|
|
867
|
+
v1GetAstroFocuser: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
868
|
+
// verify required parameter 'id' is not null or undefined
|
|
869
|
+
(0, common_1.assertParamExists)('v1GetAstroFocuser', 'id', id);
|
|
870
|
+
const localVarPath = `/v1/astro-focuser`;
|
|
871
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
872
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
873
|
+
let baseOptions;
|
|
874
|
+
if (configuration) {
|
|
875
|
+
baseOptions = configuration.baseOptions;
|
|
876
|
+
}
|
|
877
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
878
|
+
const localVarHeaderParameter = {};
|
|
879
|
+
const localVarQueryParameter = {};
|
|
880
|
+
// authentication Roles required
|
|
881
|
+
// authentication BearerToken required
|
|
882
|
+
// http bearer authentication required
|
|
883
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
884
|
+
if (id !== undefined) {
|
|
885
|
+
localVarQueryParameter['id'] = id;
|
|
886
|
+
}
|
|
887
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
888
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
889
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
890
|
+
return {
|
|
891
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
892
|
+
options: localVarRequestOptions,
|
|
893
|
+
};
|
|
894
|
+
}),
|
|
792
895
|
/**
|
|
793
896
|
* Get an astro mount.
|
|
794
897
|
* @param {string} id
|
|
@@ -1386,6 +1489,39 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1386
1489
|
options: localVarRequestOptions,
|
|
1387
1490
|
};
|
|
1388
1491
|
}),
|
|
1492
|
+
/**
|
|
1493
|
+
* Get or create focuser.
|
|
1494
|
+
* @param {V1GetOrCreateFocuserRequest} v1GetOrCreateFocuserRequest
|
|
1495
|
+
* @param {*} [options] Override http request option.
|
|
1496
|
+
* @throws {RequiredError}
|
|
1497
|
+
*/
|
|
1498
|
+
v1GetOrCreateFocuser: (v1GetOrCreateFocuserRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1499
|
+
// verify required parameter 'v1GetOrCreateFocuserRequest' is not null or undefined
|
|
1500
|
+
(0, common_1.assertParamExists)('v1GetOrCreateFocuser', 'v1GetOrCreateFocuserRequest', v1GetOrCreateFocuserRequest);
|
|
1501
|
+
const localVarPath = `/v1/focuser-match`;
|
|
1502
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1503
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1504
|
+
let baseOptions;
|
|
1505
|
+
if (configuration) {
|
|
1506
|
+
baseOptions = configuration.baseOptions;
|
|
1507
|
+
}
|
|
1508
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1509
|
+
const localVarHeaderParameter = {};
|
|
1510
|
+
const localVarQueryParameter = {};
|
|
1511
|
+
// authentication Roles required
|
|
1512
|
+
// authentication BearerToken required
|
|
1513
|
+
// http bearer authentication required
|
|
1514
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1515
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1516
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1517
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1518
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1519
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1GetOrCreateFocuserRequest, localVarRequestOptions, configuration);
|
|
1520
|
+
return {
|
|
1521
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1522
|
+
options: localVarRequestOptions,
|
|
1523
|
+
};
|
|
1524
|
+
}),
|
|
1389
1525
|
/**
|
|
1390
1526
|
* Get or create mount.
|
|
1391
1527
|
* @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
|
|
@@ -1791,6 +1927,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
1791
1927
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1792
1928
|
});
|
|
1793
1929
|
},
|
|
1930
|
+
/**
|
|
1931
|
+
* Create an astro focuser.
|
|
1932
|
+
* @param {V1CreateFocuserRequest} v1CreateFocuserRequest
|
|
1933
|
+
* @param {*} [options] Override http request option.
|
|
1934
|
+
* @throws {RequiredError}
|
|
1935
|
+
*/
|
|
1936
|
+
v1CreateAstroFocuser(v1CreateFocuserRequest, options) {
|
|
1937
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1938
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateAstroFocuser(v1CreateFocuserRequest, options);
|
|
1939
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1940
|
+
});
|
|
1941
|
+
},
|
|
1794
1942
|
/**
|
|
1795
1943
|
* Create an astro mount.
|
|
1796
1944
|
* @param {V1CreateMountRequest} v1CreateMountRequest
|
|
@@ -1959,6 +2107,19 @@ const DefaultApiFp = function (configuration) {
|
|
|
1959
2107
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1960
2108
|
});
|
|
1961
2109
|
},
|
|
2110
|
+
/**
|
|
2111
|
+
* Match focuser.
|
|
2112
|
+
* @param {string} [model]
|
|
2113
|
+
* @param {number} [travelDistanceMm]
|
|
2114
|
+
* @param {*} [options] Override http request option.
|
|
2115
|
+
* @throws {RequiredError}
|
|
2116
|
+
*/
|
|
2117
|
+
v1FocuserMatch(model, travelDistanceMm, options) {
|
|
2118
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2119
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1FocuserMatch(model, travelDistanceMm, options);
|
|
2120
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2121
|
+
});
|
|
2122
|
+
},
|
|
1962
2123
|
/**
|
|
1963
2124
|
* Get an astro camera.
|
|
1964
2125
|
* @param {string} id
|
|
@@ -1971,6 +2132,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
1971
2132
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1972
2133
|
});
|
|
1973
2134
|
},
|
|
2135
|
+
/**
|
|
2136
|
+
* Get an astro focuser.
|
|
2137
|
+
* @param {string} id
|
|
2138
|
+
* @param {*} [options] Override http request option.
|
|
2139
|
+
* @throws {RequiredError}
|
|
2140
|
+
*/
|
|
2141
|
+
v1GetAstroFocuser(id, options) {
|
|
2142
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2143
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetAstroFocuser(id, options);
|
|
2144
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2145
|
+
});
|
|
2146
|
+
},
|
|
1974
2147
|
/**
|
|
1975
2148
|
* Get an astro mount.
|
|
1976
2149
|
* @param {string} id
|
|
@@ -2187,6 +2360,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
2187
2360
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2188
2361
|
});
|
|
2189
2362
|
},
|
|
2363
|
+
/**
|
|
2364
|
+
* Get or create focuser.
|
|
2365
|
+
* @param {V1GetOrCreateFocuserRequest} v1GetOrCreateFocuserRequest
|
|
2366
|
+
* @param {*} [options] Override http request option.
|
|
2367
|
+
* @throws {RequiredError}
|
|
2368
|
+
*/
|
|
2369
|
+
v1GetOrCreateFocuser(v1GetOrCreateFocuserRequest, options) {
|
|
2370
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2371
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateFocuser(v1GetOrCreateFocuserRequest, options);
|
|
2372
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2373
|
+
});
|
|
2374
|
+
},
|
|
2190
2375
|
/**
|
|
2191
2376
|
* Get or create mount.
|
|
2192
2377
|
* @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
|
|
@@ -2341,6 +2526,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2341
2526
|
v1CreateAstroCamera(requestParameters, options) {
|
|
2342
2527
|
return localVarFp.v1CreateAstroCamera(requestParameters.v1CreateCameraRequest, options).then((request) => request(axios, basePath));
|
|
2343
2528
|
},
|
|
2529
|
+
/**
|
|
2530
|
+
* Create an astro focuser.
|
|
2531
|
+
* @param {DefaultApiV1CreateAstroFocuserRequest} requestParameters Request parameters.
|
|
2532
|
+
* @param {*} [options] Override http request option.
|
|
2533
|
+
* @throws {RequiredError}
|
|
2534
|
+
*/
|
|
2535
|
+
v1CreateAstroFocuser(requestParameters, options) {
|
|
2536
|
+
return localVarFp.v1CreateAstroFocuser(requestParameters.v1CreateFocuserRequest, options).then((request) => request(axios, basePath));
|
|
2537
|
+
},
|
|
2344
2538
|
/**
|
|
2345
2539
|
* Create an astro mount.
|
|
2346
2540
|
* @param {DefaultApiV1CreateAstroMountRequest} requestParameters Request parameters.
|
|
@@ -2467,6 +2661,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2467
2661
|
v1DeleteImageSetImage(requestParameters, options) {
|
|
2468
2662
|
return localVarFp.v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
2469
2663
|
},
|
|
2664
|
+
/**
|
|
2665
|
+
* Match focuser.
|
|
2666
|
+
* @param {DefaultApiV1FocuserMatchRequest} requestParameters Request parameters.
|
|
2667
|
+
* @param {*} [options] Override http request option.
|
|
2668
|
+
* @throws {RequiredError}
|
|
2669
|
+
*/
|
|
2670
|
+
v1FocuserMatch(requestParameters = {}, options) {
|
|
2671
|
+
return localVarFp.v1FocuserMatch(requestParameters.model, requestParameters.travelDistanceMm, options).then((request) => request(axios, basePath));
|
|
2672
|
+
},
|
|
2470
2673
|
/**
|
|
2471
2674
|
* Get an astro camera.
|
|
2472
2675
|
* @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
|
|
@@ -2476,6 +2679,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2476
2679
|
v1GetAstroCamera(requestParameters, options) {
|
|
2477
2680
|
return localVarFp.v1GetAstroCamera(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2478
2681
|
},
|
|
2682
|
+
/**
|
|
2683
|
+
* Get an astro focuser.
|
|
2684
|
+
* @param {DefaultApiV1GetAstroFocuserRequest} requestParameters Request parameters.
|
|
2685
|
+
* @param {*} [options] Override http request option.
|
|
2686
|
+
* @throws {RequiredError}
|
|
2687
|
+
*/
|
|
2688
|
+
v1GetAstroFocuser(requestParameters, options) {
|
|
2689
|
+
return localVarFp.v1GetAstroFocuser(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2690
|
+
},
|
|
2479
2691
|
/**
|
|
2480
2692
|
* Get an astro mount.
|
|
2481
2693
|
* @param {DefaultApiV1GetAstroMountRequest} requestParameters Request parameters.
|
|
@@ -2633,6 +2845,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2633
2845
|
v1GetOrCreateCamera(requestParameters, options) {
|
|
2634
2846
|
return localVarFp.v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(axios, basePath));
|
|
2635
2847
|
},
|
|
2848
|
+
/**
|
|
2849
|
+
* Get or create focuser.
|
|
2850
|
+
* @param {DefaultApiV1GetOrCreateFocuserRequest} requestParameters Request parameters.
|
|
2851
|
+
* @param {*} [options] Override http request option.
|
|
2852
|
+
* @throws {RequiredError}
|
|
2853
|
+
*/
|
|
2854
|
+
v1GetOrCreateFocuser(requestParameters, options) {
|
|
2855
|
+
return localVarFp.v1GetOrCreateFocuser(requestParameters.v1GetOrCreateFocuserRequest, options).then((request) => request(axios, basePath));
|
|
2856
|
+
},
|
|
2636
2857
|
/**
|
|
2637
2858
|
* Get or create mount.
|
|
2638
2859
|
* @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
|
|
@@ -2752,6 +2973,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2752
2973
|
v1CreateAstroCamera(requestParameters, options) {
|
|
2753
2974
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateAstroCamera(requestParameters.v1CreateCameraRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2754
2975
|
}
|
|
2976
|
+
/**
|
|
2977
|
+
* Create an astro focuser.
|
|
2978
|
+
* @param {DefaultApiV1CreateAstroFocuserRequest} requestParameters Request parameters.
|
|
2979
|
+
* @param {*} [options] Override http request option.
|
|
2980
|
+
* @throws {RequiredError}
|
|
2981
|
+
* @memberof DefaultApi
|
|
2982
|
+
*/
|
|
2983
|
+
v1CreateAstroFocuser(requestParameters, options) {
|
|
2984
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1CreateAstroFocuser(requestParameters.v1CreateFocuserRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2985
|
+
}
|
|
2755
2986
|
/**
|
|
2756
2987
|
* Create an astro mount.
|
|
2757
2988
|
* @param {DefaultApiV1CreateAstroMountRequest} requestParameters Request parameters.
|
|
@@ -2892,6 +3123,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2892
3123
|
v1DeleteImageSetImage(requestParameters, options) {
|
|
2893
3124
|
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
2894
3125
|
}
|
|
3126
|
+
/**
|
|
3127
|
+
* Match focuser.
|
|
3128
|
+
* @param {DefaultApiV1FocuserMatchRequest} requestParameters Request parameters.
|
|
3129
|
+
* @param {*} [options] Override http request option.
|
|
3130
|
+
* @throws {RequiredError}
|
|
3131
|
+
* @memberof DefaultApi
|
|
3132
|
+
*/
|
|
3133
|
+
v1FocuserMatch(requestParameters = {}, options) {
|
|
3134
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1FocuserMatch(requestParameters.model, requestParameters.travelDistanceMm, options).then((request) => request(this.axios, this.basePath));
|
|
3135
|
+
}
|
|
2895
3136
|
/**
|
|
2896
3137
|
* Get an astro camera.
|
|
2897
3138
|
* @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
|
|
@@ -2902,6 +3143,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2902
3143
|
v1GetAstroCamera(requestParameters, options) {
|
|
2903
3144
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetAstroCamera(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2904
3145
|
}
|
|
3146
|
+
/**
|
|
3147
|
+
* Get an astro focuser.
|
|
3148
|
+
* @param {DefaultApiV1GetAstroFocuserRequest} requestParameters Request parameters.
|
|
3149
|
+
* @param {*} [options] Override http request option.
|
|
3150
|
+
* @throws {RequiredError}
|
|
3151
|
+
* @memberof DefaultApi
|
|
3152
|
+
*/
|
|
3153
|
+
v1GetAstroFocuser(requestParameters, options) {
|
|
3154
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetAstroFocuser(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3155
|
+
}
|
|
2905
3156
|
/**
|
|
2906
3157
|
* Get an astro mount.
|
|
2907
3158
|
* @param {DefaultApiV1GetAstroMountRequest} requestParameters Request parameters.
|
|
@@ -3077,6 +3328,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3077
3328
|
v1GetOrCreateCamera(requestParameters, options) {
|
|
3078
3329
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3079
3330
|
}
|
|
3331
|
+
/**
|
|
3332
|
+
* Get or create focuser.
|
|
3333
|
+
* @param {DefaultApiV1GetOrCreateFocuserRequest} requestParameters Request parameters.
|
|
3334
|
+
* @param {*} [options] Override http request option.
|
|
3335
|
+
* @throws {RequiredError}
|
|
3336
|
+
* @memberof DefaultApi
|
|
3337
|
+
*/
|
|
3338
|
+
v1GetOrCreateFocuser(requestParameters, options) {
|
|
3339
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetOrCreateFocuser(requestParameters.v1GetOrCreateFocuserRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3340
|
+
}
|
|
3080
3341
|
/**
|
|
3081
3342
|
* Get or create mount.
|
|
3082
3343
|
* @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
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.5184
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
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.5184
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
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.5184
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
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.5184
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
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.5184
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
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.5184
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|