@ourskyai/astro-api 1.3.5064 → 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/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.5184
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -286,6 +286,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
286
286
|
options: localVarRequestOptions,
|
|
287
287
|
};
|
|
288
288
|
}),
|
|
289
|
+
/**
|
|
290
|
+
* Create an astro focuser.
|
|
291
|
+
* @param {V1CreateFocuserRequest} v1CreateFocuserRequest
|
|
292
|
+
* @param {*} [options] Override http request option.
|
|
293
|
+
* @throws {RequiredError}
|
|
294
|
+
*/
|
|
295
|
+
v1CreateAstroFocuser: (v1CreateFocuserRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
296
|
+
// verify required parameter 'v1CreateFocuserRequest' is not null or undefined
|
|
297
|
+
assertParamExists('v1CreateAstroFocuser', 'v1CreateFocuserRequest', v1CreateFocuserRequest);
|
|
298
|
+
const localVarPath = `/v1/astro-focuser`;
|
|
299
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
300
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
301
|
+
let baseOptions;
|
|
302
|
+
if (configuration) {
|
|
303
|
+
baseOptions = configuration.baseOptions;
|
|
304
|
+
}
|
|
305
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
306
|
+
const localVarHeaderParameter = {};
|
|
307
|
+
const localVarQueryParameter = {};
|
|
308
|
+
// authentication Roles required
|
|
309
|
+
// authentication BearerToken required
|
|
310
|
+
// http bearer authentication required
|
|
311
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
312
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
313
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
314
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
315
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
316
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateFocuserRequest, localVarRequestOptions, configuration);
|
|
317
|
+
return {
|
|
318
|
+
url: toPathString(localVarUrlObj),
|
|
319
|
+
options: localVarRequestOptions,
|
|
320
|
+
};
|
|
321
|
+
}),
|
|
289
322
|
/**
|
|
290
323
|
* Create an astro mount.
|
|
291
324
|
* @param {V1CreateMountRequest} v1CreateMountRequest
|
|
@@ -752,6 +785,42 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
752
785
|
options: localVarRequestOptions,
|
|
753
786
|
};
|
|
754
787
|
}),
|
|
788
|
+
/**
|
|
789
|
+
* Match focuser.
|
|
790
|
+
* @param {string} [model]
|
|
791
|
+
* @param {number} [travelDistanceMm]
|
|
792
|
+
* @param {*} [options] Override http request option.
|
|
793
|
+
* @throws {RequiredError}
|
|
794
|
+
*/
|
|
795
|
+
v1FocuserMatch: (model, travelDistanceMm, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
796
|
+
const localVarPath = `/v1/focuser-match`;
|
|
797
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
798
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
799
|
+
let baseOptions;
|
|
800
|
+
if (configuration) {
|
|
801
|
+
baseOptions = configuration.baseOptions;
|
|
802
|
+
}
|
|
803
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
804
|
+
const localVarHeaderParameter = {};
|
|
805
|
+
const localVarQueryParameter = {};
|
|
806
|
+
// authentication Roles required
|
|
807
|
+
// authentication BearerToken required
|
|
808
|
+
// http bearer authentication required
|
|
809
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
810
|
+
if (model !== undefined) {
|
|
811
|
+
localVarQueryParameter['model'] = model;
|
|
812
|
+
}
|
|
813
|
+
if (travelDistanceMm !== undefined) {
|
|
814
|
+
localVarQueryParameter['travelDistanceMm'] = travelDistanceMm;
|
|
815
|
+
}
|
|
816
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
817
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
818
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
819
|
+
return {
|
|
820
|
+
url: toPathString(localVarUrlObj),
|
|
821
|
+
options: localVarRequestOptions,
|
|
822
|
+
};
|
|
823
|
+
}),
|
|
755
824
|
/**
|
|
756
825
|
* Get an astro camera.
|
|
757
826
|
* @param {string} id
|
|
@@ -786,6 +855,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
786
855
|
options: localVarRequestOptions,
|
|
787
856
|
};
|
|
788
857
|
}),
|
|
858
|
+
/**
|
|
859
|
+
* Get an astro focuser.
|
|
860
|
+
* @param {string} id
|
|
861
|
+
* @param {*} [options] Override http request option.
|
|
862
|
+
* @throws {RequiredError}
|
|
863
|
+
*/
|
|
864
|
+
v1GetAstroFocuser: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
865
|
+
// verify required parameter 'id' is not null or undefined
|
|
866
|
+
assertParamExists('v1GetAstroFocuser', 'id', id);
|
|
867
|
+
const localVarPath = `/v1/astro-focuser`;
|
|
868
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
869
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
870
|
+
let baseOptions;
|
|
871
|
+
if (configuration) {
|
|
872
|
+
baseOptions = configuration.baseOptions;
|
|
873
|
+
}
|
|
874
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
875
|
+
const localVarHeaderParameter = {};
|
|
876
|
+
const localVarQueryParameter = {};
|
|
877
|
+
// authentication Roles required
|
|
878
|
+
// authentication BearerToken required
|
|
879
|
+
// http bearer authentication required
|
|
880
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
881
|
+
if (id !== undefined) {
|
|
882
|
+
localVarQueryParameter['id'] = id;
|
|
883
|
+
}
|
|
884
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
885
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
886
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
887
|
+
return {
|
|
888
|
+
url: toPathString(localVarUrlObj),
|
|
889
|
+
options: localVarRequestOptions,
|
|
890
|
+
};
|
|
891
|
+
}),
|
|
789
892
|
/**
|
|
790
893
|
* Get an astro mount.
|
|
791
894
|
* @param {string} id
|
|
@@ -1383,6 +1486,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1383
1486
|
options: localVarRequestOptions,
|
|
1384
1487
|
};
|
|
1385
1488
|
}),
|
|
1489
|
+
/**
|
|
1490
|
+
* Get or create focuser.
|
|
1491
|
+
* @param {V1GetOrCreateFocuserRequest} v1GetOrCreateFocuserRequest
|
|
1492
|
+
* @param {*} [options] Override http request option.
|
|
1493
|
+
* @throws {RequiredError}
|
|
1494
|
+
*/
|
|
1495
|
+
v1GetOrCreateFocuser: (v1GetOrCreateFocuserRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1496
|
+
// verify required parameter 'v1GetOrCreateFocuserRequest' is not null or undefined
|
|
1497
|
+
assertParamExists('v1GetOrCreateFocuser', 'v1GetOrCreateFocuserRequest', v1GetOrCreateFocuserRequest);
|
|
1498
|
+
const localVarPath = `/v1/focuser-match`;
|
|
1499
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1500
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1501
|
+
let baseOptions;
|
|
1502
|
+
if (configuration) {
|
|
1503
|
+
baseOptions = configuration.baseOptions;
|
|
1504
|
+
}
|
|
1505
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1506
|
+
const localVarHeaderParameter = {};
|
|
1507
|
+
const localVarQueryParameter = {};
|
|
1508
|
+
// authentication Roles required
|
|
1509
|
+
// authentication BearerToken required
|
|
1510
|
+
// http bearer authentication required
|
|
1511
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1512
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1513
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1514
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1515
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1516
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1GetOrCreateFocuserRequest, localVarRequestOptions, configuration);
|
|
1517
|
+
return {
|
|
1518
|
+
url: toPathString(localVarUrlObj),
|
|
1519
|
+
options: localVarRequestOptions,
|
|
1520
|
+
};
|
|
1521
|
+
}),
|
|
1386
1522
|
/**
|
|
1387
1523
|
* Get or create mount.
|
|
1388
1524
|
* @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
|
|
@@ -1787,6 +1923,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1787
1923
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1788
1924
|
});
|
|
1789
1925
|
},
|
|
1926
|
+
/**
|
|
1927
|
+
* Create an astro focuser.
|
|
1928
|
+
* @param {V1CreateFocuserRequest} v1CreateFocuserRequest
|
|
1929
|
+
* @param {*} [options] Override http request option.
|
|
1930
|
+
* @throws {RequiredError}
|
|
1931
|
+
*/
|
|
1932
|
+
v1CreateAstroFocuser(v1CreateFocuserRequest, options) {
|
|
1933
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1934
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateAstroFocuser(v1CreateFocuserRequest, options);
|
|
1935
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1936
|
+
});
|
|
1937
|
+
},
|
|
1790
1938
|
/**
|
|
1791
1939
|
* Create an astro mount.
|
|
1792
1940
|
* @param {V1CreateMountRequest} v1CreateMountRequest
|
|
@@ -1955,6 +2103,19 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1955
2103
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1956
2104
|
});
|
|
1957
2105
|
},
|
|
2106
|
+
/**
|
|
2107
|
+
* Match focuser.
|
|
2108
|
+
* @param {string} [model]
|
|
2109
|
+
* @param {number} [travelDistanceMm]
|
|
2110
|
+
* @param {*} [options] Override http request option.
|
|
2111
|
+
* @throws {RequiredError}
|
|
2112
|
+
*/
|
|
2113
|
+
v1FocuserMatch(model, travelDistanceMm, options) {
|
|
2114
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2115
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1FocuserMatch(model, travelDistanceMm, options);
|
|
2116
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2117
|
+
});
|
|
2118
|
+
},
|
|
1958
2119
|
/**
|
|
1959
2120
|
* Get an astro camera.
|
|
1960
2121
|
* @param {string} id
|
|
@@ -1967,6 +2128,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1967
2128
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1968
2129
|
});
|
|
1969
2130
|
},
|
|
2131
|
+
/**
|
|
2132
|
+
* Get an astro focuser.
|
|
2133
|
+
* @param {string} id
|
|
2134
|
+
* @param {*} [options] Override http request option.
|
|
2135
|
+
* @throws {RequiredError}
|
|
2136
|
+
*/
|
|
2137
|
+
v1GetAstroFocuser(id, options) {
|
|
2138
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2139
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetAstroFocuser(id, options);
|
|
2140
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2141
|
+
});
|
|
2142
|
+
},
|
|
1970
2143
|
/**
|
|
1971
2144
|
* Get an astro mount.
|
|
1972
2145
|
* @param {string} id
|
|
@@ -2183,6 +2356,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2183
2356
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2184
2357
|
});
|
|
2185
2358
|
},
|
|
2359
|
+
/**
|
|
2360
|
+
* Get or create focuser.
|
|
2361
|
+
* @param {V1GetOrCreateFocuserRequest} v1GetOrCreateFocuserRequest
|
|
2362
|
+
* @param {*} [options] Override http request option.
|
|
2363
|
+
* @throws {RequiredError}
|
|
2364
|
+
*/
|
|
2365
|
+
v1GetOrCreateFocuser(v1GetOrCreateFocuserRequest, options) {
|
|
2366
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2367
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateFocuser(v1GetOrCreateFocuserRequest, options);
|
|
2368
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2369
|
+
});
|
|
2370
|
+
},
|
|
2186
2371
|
/**
|
|
2187
2372
|
* Get or create mount.
|
|
2188
2373
|
* @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
|
|
@@ -2336,6 +2521,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2336
2521
|
v1CreateAstroCamera(requestParameters, options) {
|
|
2337
2522
|
return localVarFp.v1CreateAstroCamera(requestParameters.v1CreateCameraRequest, options).then((request) => request(axios, basePath));
|
|
2338
2523
|
},
|
|
2524
|
+
/**
|
|
2525
|
+
* Create an astro focuser.
|
|
2526
|
+
* @param {DefaultApiV1CreateAstroFocuserRequest} requestParameters Request parameters.
|
|
2527
|
+
* @param {*} [options] Override http request option.
|
|
2528
|
+
* @throws {RequiredError}
|
|
2529
|
+
*/
|
|
2530
|
+
v1CreateAstroFocuser(requestParameters, options) {
|
|
2531
|
+
return localVarFp.v1CreateAstroFocuser(requestParameters.v1CreateFocuserRequest, options).then((request) => request(axios, basePath));
|
|
2532
|
+
},
|
|
2339
2533
|
/**
|
|
2340
2534
|
* Create an astro mount.
|
|
2341
2535
|
* @param {DefaultApiV1CreateAstroMountRequest} requestParameters Request parameters.
|
|
@@ -2462,6 +2656,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2462
2656
|
v1DeleteImageSetImage(requestParameters, options) {
|
|
2463
2657
|
return localVarFp.v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
2464
2658
|
},
|
|
2659
|
+
/**
|
|
2660
|
+
* Match focuser.
|
|
2661
|
+
* @param {DefaultApiV1FocuserMatchRequest} requestParameters Request parameters.
|
|
2662
|
+
* @param {*} [options] Override http request option.
|
|
2663
|
+
* @throws {RequiredError}
|
|
2664
|
+
*/
|
|
2665
|
+
v1FocuserMatch(requestParameters = {}, options) {
|
|
2666
|
+
return localVarFp.v1FocuserMatch(requestParameters.model, requestParameters.travelDistanceMm, options).then((request) => request(axios, basePath));
|
|
2667
|
+
},
|
|
2465
2668
|
/**
|
|
2466
2669
|
* Get an astro camera.
|
|
2467
2670
|
* @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
|
|
@@ -2471,6 +2674,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2471
2674
|
v1GetAstroCamera(requestParameters, options) {
|
|
2472
2675
|
return localVarFp.v1GetAstroCamera(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2473
2676
|
},
|
|
2677
|
+
/**
|
|
2678
|
+
* Get an astro focuser.
|
|
2679
|
+
* @param {DefaultApiV1GetAstroFocuserRequest} requestParameters Request parameters.
|
|
2680
|
+
* @param {*} [options] Override http request option.
|
|
2681
|
+
* @throws {RequiredError}
|
|
2682
|
+
*/
|
|
2683
|
+
v1GetAstroFocuser(requestParameters, options) {
|
|
2684
|
+
return localVarFp.v1GetAstroFocuser(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
2685
|
+
},
|
|
2474
2686
|
/**
|
|
2475
2687
|
* Get an astro mount.
|
|
2476
2688
|
* @param {DefaultApiV1GetAstroMountRequest} requestParameters Request parameters.
|
|
@@ -2628,6 +2840,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2628
2840
|
v1GetOrCreateCamera(requestParameters, options) {
|
|
2629
2841
|
return localVarFp.v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(axios, basePath));
|
|
2630
2842
|
},
|
|
2843
|
+
/**
|
|
2844
|
+
* Get or create focuser.
|
|
2845
|
+
* @param {DefaultApiV1GetOrCreateFocuserRequest} requestParameters Request parameters.
|
|
2846
|
+
* @param {*} [options] Override http request option.
|
|
2847
|
+
* @throws {RequiredError}
|
|
2848
|
+
*/
|
|
2849
|
+
v1GetOrCreateFocuser(requestParameters, options) {
|
|
2850
|
+
return localVarFp.v1GetOrCreateFocuser(requestParameters.v1GetOrCreateFocuserRequest, options).then((request) => request(axios, basePath));
|
|
2851
|
+
},
|
|
2631
2852
|
/**
|
|
2632
2853
|
* Get or create mount.
|
|
2633
2854
|
* @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
|
|
@@ -2746,6 +2967,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2746
2967
|
v1CreateAstroCamera(requestParameters, options) {
|
|
2747
2968
|
return DefaultApiFp(this.configuration).v1CreateAstroCamera(requestParameters.v1CreateCameraRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2748
2969
|
}
|
|
2970
|
+
/**
|
|
2971
|
+
* Create an astro focuser.
|
|
2972
|
+
* @param {DefaultApiV1CreateAstroFocuserRequest} requestParameters Request parameters.
|
|
2973
|
+
* @param {*} [options] Override http request option.
|
|
2974
|
+
* @throws {RequiredError}
|
|
2975
|
+
* @memberof DefaultApi
|
|
2976
|
+
*/
|
|
2977
|
+
v1CreateAstroFocuser(requestParameters, options) {
|
|
2978
|
+
return DefaultApiFp(this.configuration).v1CreateAstroFocuser(requestParameters.v1CreateFocuserRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2979
|
+
}
|
|
2749
2980
|
/**
|
|
2750
2981
|
* Create an astro mount.
|
|
2751
2982
|
* @param {DefaultApiV1CreateAstroMountRequest} requestParameters Request parameters.
|
|
@@ -2886,6 +3117,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2886
3117
|
v1DeleteImageSetImage(requestParameters, options) {
|
|
2887
3118
|
return DefaultApiFp(this.configuration).v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
2888
3119
|
}
|
|
3120
|
+
/**
|
|
3121
|
+
* Match focuser.
|
|
3122
|
+
* @param {DefaultApiV1FocuserMatchRequest} requestParameters Request parameters.
|
|
3123
|
+
* @param {*} [options] Override http request option.
|
|
3124
|
+
* @throws {RequiredError}
|
|
3125
|
+
* @memberof DefaultApi
|
|
3126
|
+
*/
|
|
3127
|
+
v1FocuserMatch(requestParameters = {}, options) {
|
|
3128
|
+
return DefaultApiFp(this.configuration).v1FocuserMatch(requestParameters.model, requestParameters.travelDistanceMm, options).then((request) => request(this.axios, this.basePath));
|
|
3129
|
+
}
|
|
2889
3130
|
/**
|
|
2890
3131
|
* Get an astro camera.
|
|
2891
3132
|
* @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
|
|
@@ -2896,6 +3137,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2896
3137
|
v1GetAstroCamera(requestParameters, options) {
|
|
2897
3138
|
return DefaultApiFp(this.configuration).v1GetAstroCamera(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2898
3139
|
}
|
|
3140
|
+
/**
|
|
3141
|
+
* Get an astro focuser.
|
|
3142
|
+
* @param {DefaultApiV1GetAstroFocuserRequest} requestParameters Request parameters.
|
|
3143
|
+
* @param {*} [options] Override http request option.
|
|
3144
|
+
* @throws {RequiredError}
|
|
3145
|
+
* @memberof DefaultApi
|
|
3146
|
+
*/
|
|
3147
|
+
v1GetAstroFocuser(requestParameters, options) {
|
|
3148
|
+
return DefaultApiFp(this.configuration).v1GetAstroFocuser(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
3149
|
+
}
|
|
2899
3150
|
/**
|
|
2900
3151
|
* Get an astro mount.
|
|
2901
3152
|
* @param {DefaultApiV1GetAstroMountRequest} requestParameters Request parameters.
|
|
@@ -3071,6 +3322,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
3071
3322
|
v1GetOrCreateCamera(requestParameters, options) {
|
|
3072
3323
|
return DefaultApiFp(this.configuration).v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3073
3324
|
}
|
|
3325
|
+
/**
|
|
3326
|
+
* Get or create focuser.
|
|
3327
|
+
* @param {DefaultApiV1GetOrCreateFocuserRequest} requestParameters Request parameters.
|
|
3328
|
+
* @param {*} [options] Override http request option.
|
|
3329
|
+
* @throws {RequiredError}
|
|
3330
|
+
* @memberof DefaultApi
|
|
3331
|
+
*/
|
|
3332
|
+
v1GetOrCreateFocuser(requestParameters, options) {
|
|
3333
|
+
return DefaultApiFp(this.configuration).v1GetOrCreateFocuser(requestParameters.v1GetOrCreateFocuserRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3334
|
+
}
|
|
3074
3335
|
/**
|
|
3075
3336
|
* Get or create mount.
|
|
3076
3337
|
* @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
|
package/dist/esm/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/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.5184
|
|
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 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/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.5184
|
|
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 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).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.5184
|
|
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 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/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.5184
|
|
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 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/index.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/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.5184
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|