@ourskyai/astro-api 1.3.1892 → 1.3.1945

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/dist/esm/api.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.1892
5
+ * The version of the OpenAPI document: 1.3.1945
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1132,6 +1132,195 @@ export interface V1GetNodes {
1132
1132
  */
1133
1133
  'nodes': Array<V1NodeWithLocation>;
1134
1134
  }
1135
+ /**
1136
+ *
1137
+ * @export
1138
+ * @interface V1GetOrCreateCameraRequest
1139
+ */
1140
+ export interface V1GetOrCreateCameraRequest {
1141
+ /**
1142
+ *
1143
+ * @type {string}
1144
+ * @memberof V1GetOrCreateCameraRequest
1145
+ */
1146
+ 'model'?: string;
1147
+ /**
1148
+ *
1149
+ * @type {number}
1150
+ * @memberof V1GetOrCreateCameraRequest
1151
+ */
1152
+ 'pixelSizeMicrons'?: number;
1153
+ /**
1154
+ *
1155
+ * @type {number}
1156
+ * @memberof V1GetOrCreateCameraRequest
1157
+ */
1158
+ 'fullWellCapacity'?: number;
1159
+ /**
1160
+ *
1161
+ * @type {number}
1162
+ * @memberof V1GetOrCreateCameraRequest
1163
+ */
1164
+ 'pixelsX'?: number;
1165
+ /**
1166
+ *
1167
+ * @type {number}
1168
+ * @memberof V1GetOrCreateCameraRequest
1169
+ */
1170
+ 'pixelsY'?: number;
1171
+ /**
1172
+ *
1173
+ * @type {number}
1174
+ * @memberof V1GetOrCreateCameraRequest
1175
+ */
1176
+ 'megapixels'?: number;
1177
+ /**
1178
+ *
1179
+ * @type {boolean}
1180
+ * @memberof V1GetOrCreateCameraRequest
1181
+ */
1182
+ 'chilled'?: boolean;
1183
+ /**
1184
+ *
1185
+ * @type {ShutterType}
1186
+ * @memberof V1GetOrCreateCameraRequest
1187
+ */
1188
+ 'shutterType'?: ShutterType;
1189
+ /**
1190
+ *
1191
+ * @type {boolean}
1192
+ * @memberof V1GetOrCreateCameraRequest
1193
+ */
1194
+ 'gpsTimestamps'?: boolean;
1195
+ /**
1196
+ *
1197
+ * @type {number}
1198
+ * @memberof V1GetOrCreateCameraRequest
1199
+ */
1200
+ 'sensorXmm'?: number;
1201
+ /**
1202
+ *
1203
+ * @type {number}
1204
+ * @memberof V1GetOrCreateCameraRequest
1205
+ */
1206
+ 'sensorYmm'?: number;
1207
+ /**
1208
+ *
1209
+ * @type {number}
1210
+ * @memberof V1GetOrCreateCameraRequest
1211
+ */
1212
+ 'unityGain'?: number;
1213
+ /**
1214
+ *
1215
+ * @type {number}
1216
+ * @memberof V1GetOrCreateCameraRequest
1217
+ */
1218
+ 'optimalNighttimeGain'?: number;
1219
+ /**
1220
+ *
1221
+ * @type {number}
1222
+ * @memberof V1GetOrCreateCameraRequest
1223
+ */
1224
+ 'optimalNighttimeGainOffset'?: number;
1225
+ /**
1226
+ *
1227
+ * @type {number}
1228
+ * @memberof V1GetOrCreateCameraRequest
1229
+ */
1230
+ 'optimalNighttimeGainMode'?: number;
1231
+ /**
1232
+ *
1233
+ * @type {boolean}
1234
+ * @memberof V1GetOrCreateCameraRequest
1235
+ */
1236
+ 'supportsVideoMode'?: boolean;
1237
+ /**
1238
+ *
1239
+ * @type {number}
1240
+ * @memberof V1GetOrCreateCameraRequest
1241
+ */
1242
+ 'adcBitDepth'?: number;
1243
+ /**
1244
+ *
1245
+ * @type {number}
1246
+ * @memberof V1GetOrCreateCameraRequest
1247
+ */
1248
+ 'quantumEfficiency'?: number;
1249
+ /**
1250
+ *
1251
+ * @type {Array<V1GainCurve>}
1252
+ * @memberof V1GetOrCreateCameraRequest
1253
+ */
1254
+ 'gainCurves'?: Array<V1GainCurve>;
1255
+ /**
1256
+ *
1257
+ * @type {Array<V1SetupAction>}
1258
+ * @memberof V1GetOrCreateCameraRequest
1259
+ */
1260
+ 'setupActions'?: Array<V1SetupAction>;
1261
+ /**
1262
+ *
1263
+ * @type {boolean}
1264
+ * @memberof V1GetOrCreateCameraRequest
1265
+ */
1266
+ 'isColor'?: boolean;
1267
+ }
1268
+ /**
1269
+ *
1270
+ * @export
1271
+ * @interface V1GetOrCreateMountRequest
1272
+ */
1273
+ export interface V1GetOrCreateMountRequest {
1274
+ /**
1275
+ *
1276
+ * @type {string}
1277
+ * @memberof V1GetOrCreateMountRequest
1278
+ */
1279
+ 'model'?: string;
1280
+ /**
1281
+ *
1282
+ * @type {MountType}
1283
+ * @memberof V1GetOrCreateMountRequest
1284
+ */
1285
+ 'type'?: MountType;
1286
+ /**
1287
+ *
1288
+ * @type {number}
1289
+ * @memberof V1GetOrCreateMountRequest
1290
+ */
1291
+ 'slewRate'?: number;
1292
+ }
1293
+ /**
1294
+ *
1295
+ * @export
1296
+ * @interface V1GetOrCreateOpticalTubeRequest
1297
+ */
1298
+ export interface V1GetOrCreateOpticalTubeRequest {
1299
+ /**
1300
+ *
1301
+ * @type {string}
1302
+ * @memberof V1GetOrCreateOpticalTubeRequest
1303
+ */
1304
+ 'model'?: string;
1305
+ /**
1306
+ *
1307
+ * @type {number}
1308
+ * @memberof V1GetOrCreateOpticalTubeRequest
1309
+ */
1310
+ 'focalLengthMm'?: number;
1311
+ /**
1312
+ *
1313
+ * @type {number}
1314
+ * @memberof V1GetOrCreateOpticalTubeRequest
1315
+ */
1316
+ 'apertureMm'?: number;
1317
+ /**
1318
+ *
1319
+ * @type {OpticalTubeType}
1320
+ * @memberof V1GetOrCreateOpticalTubeRequest
1321
+ */
1322
+ 'type'?: OpticalTubeType;
1323
+ }
1135
1324
  /**
1136
1325
  * An image set represents a contiguous set of observations of the same target captured by the same node.
1137
1326
  * @export
@@ -1980,6 +2169,27 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1980
2169
  * @throws {RequiredError}
1981
2170
  */
1982
2171
  v1GetNodes: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
2172
+ /**
2173
+ * Get or create camera.
2174
+ * @param {V1GetOrCreateCameraRequest} v1GetOrCreateCameraRequest
2175
+ * @param {*} [options] Override http request option.
2176
+ * @throws {RequiredError}
2177
+ */
2178
+ v1GetOrCreateCamera: (v1GetOrCreateCameraRequest: V1GetOrCreateCameraRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2179
+ /**
2180
+ * Get or create mount.
2181
+ * @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
2182
+ * @param {*} [options] Override http request option.
2183
+ * @throws {RequiredError}
2184
+ */
2185
+ v1GetOrCreateMount: (v1GetOrCreateMountRequest: V1GetOrCreateMountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2186
+ /**
2187
+ * Get or create optical tube.
2188
+ * @param {V1GetOrCreateOpticalTubeRequest} v1GetOrCreateOpticalTubeRequest
2189
+ * @param {*} [options] Override http request option.
2190
+ * @throws {RequiredError}
2191
+ */
2192
+ v1GetOrCreateOpticalTube: (v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1983
2193
  /**
1984
2194
  * Get platform credits.
1985
2195
  * @param {*} [options] Override http request option.
@@ -2233,6 +2443,27 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2233
2443
  * @throws {RequiredError}
2234
2444
  */
2235
2445
  v1GetNodes(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetNodes>>;
2446
+ /**
2447
+ * Get or create camera.
2448
+ * @param {V1GetOrCreateCameraRequest} v1GetOrCreateCameraRequest
2449
+ * @param {*} [options] Override http request option.
2450
+ * @throws {RequiredError}
2451
+ */
2452
+ v1GetOrCreateCamera(v1GetOrCreateCameraRequest: V1GetOrCreateCameraRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Camera>>;
2453
+ /**
2454
+ * Get or create mount.
2455
+ * @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
2456
+ * @param {*} [options] Override http request option.
2457
+ * @throws {RequiredError}
2458
+ */
2459
+ v1GetOrCreateMount(v1GetOrCreateMountRequest: V1GetOrCreateMountRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
2460
+ /**
2461
+ * Get or create optical tube.
2462
+ * @param {V1GetOrCreateOpticalTubeRequest} v1GetOrCreateOpticalTubeRequest
2463
+ * @param {*} [options] Override http request option.
2464
+ * @throws {RequiredError}
2465
+ */
2466
+ v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OpticalTube>>;
2236
2467
  /**
2237
2468
  * Get platform credits.
2238
2469
  * @param {*} [options] Override http request option.
@@ -2474,6 +2705,27 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2474
2705
  * @throws {RequiredError}
2475
2706
  */
2476
2707
  v1GetNodes(options?: AxiosRequestConfig): AxiosPromise<V1GetNodes>;
2708
+ /**
2709
+ * Get or create camera.
2710
+ * @param {DefaultApiV1GetOrCreateCameraRequest} requestParameters Request parameters.
2711
+ * @param {*} [options] Override http request option.
2712
+ * @throws {RequiredError}
2713
+ */
2714
+ v1GetOrCreateCamera(requestParameters: DefaultApiV1GetOrCreateCameraRequest, options?: AxiosRequestConfig): AxiosPromise<V1Camera>;
2715
+ /**
2716
+ * Get or create mount.
2717
+ * @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
2718
+ * @param {*} [options] Override http request option.
2719
+ * @throws {RequiredError}
2720
+ */
2721
+ v1GetOrCreateMount(requestParameters: DefaultApiV1GetOrCreateMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
2722
+ /**
2723
+ * Get or create optical tube.
2724
+ * @param {DefaultApiV1GetOrCreateOpticalTubeRequest} requestParameters Request parameters.
2725
+ * @param {*} [options] Override http request option.
2726
+ * @throws {RequiredError}
2727
+ */
2728
+ v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube>;
2477
2729
  /**
2478
2730
  * Get platform credits.
2479
2731
  * @param {*} [options] Override http request option.
@@ -2874,6 +3126,45 @@ export interface DefaultApiV1GetJobLogsRequest {
2874
3126
  */
2875
3127
  readonly astroProjectId: string;
2876
3128
  }
3129
+ /**
3130
+ * Request parameters for v1GetOrCreateCamera operation in DefaultApi.
3131
+ * @export
3132
+ * @interface DefaultApiV1GetOrCreateCameraRequest
3133
+ */
3134
+ export interface DefaultApiV1GetOrCreateCameraRequest {
3135
+ /**
3136
+ *
3137
+ * @type {V1GetOrCreateCameraRequest}
3138
+ * @memberof DefaultApiV1GetOrCreateCamera
3139
+ */
3140
+ readonly v1GetOrCreateCameraRequest: V1GetOrCreateCameraRequest;
3141
+ }
3142
+ /**
3143
+ * Request parameters for v1GetOrCreateMount operation in DefaultApi.
3144
+ * @export
3145
+ * @interface DefaultApiV1GetOrCreateMountRequest
3146
+ */
3147
+ export interface DefaultApiV1GetOrCreateMountRequest {
3148
+ /**
3149
+ *
3150
+ * @type {V1GetOrCreateMountRequest}
3151
+ * @memberof DefaultApiV1GetOrCreateMount
3152
+ */
3153
+ readonly v1GetOrCreateMountRequest: V1GetOrCreateMountRequest;
3154
+ }
3155
+ /**
3156
+ * Request parameters for v1GetOrCreateOpticalTube operation in DefaultApi.
3157
+ * @export
3158
+ * @interface DefaultApiV1GetOrCreateOpticalTubeRequest
3159
+ */
3160
+ export interface DefaultApiV1GetOrCreateOpticalTubeRequest {
3161
+ /**
3162
+ *
3163
+ * @type {V1GetOrCreateOpticalTubeRequest}
3164
+ * @memberof DefaultApiV1GetOrCreateOpticalTube
3165
+ */
3166
+ readonly v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest;
3167
+ }
2877
3168
  /**
2878
3169
  * Request parameters for v1MatchAstroProject operation in DefaultApi.
2879
3170
  * @export
@@ -3188,6 +3479,30 @@ export declare class DefaultApi extends BaseAPI {
3188
3479
  * @memberof DefaultApi
3189
3480
  */
3190
3481
  v1GetNodes(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetNodes, any>>;
3482
+ /**
3483
+ * Get or create camera.
3484
+ * @param {DefaultApiV1GetOrCreateCameraRequest} requestParameters Request parameters.
3485
+ * @param {*} [options] Override http request option.
3486
+ * @throws {RequiredError}
3487
+ * @memberof DefaultApi
3488
+ */
3489
+ v1GetOrCreateCamera(requestParameters: DefaultApiV1GetOrCreateCameraRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera, any>>;
3490
+ /**
3491
+ * Get or create mount.
3492
+ * @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
3493
+ * @param {*} [options] Override http request option.
3494
+ * @throws {RequiredError}
3495
+ * @memberof DefaultApi
3496
+ */
3497
+ v1GetOrCreateMount(requestParameters: DefaultApiV1GetOrCreateMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
3498
+ /**
3499
+ * Get or create optical tube.
3500
+ * @param {DefaultApiV1GetOrCreateOpticalTubeRequest} requestParameters Request parameters.
3501
+ * @param {*} [options] Override http request option.
3502
+ * @throws {RequiredError}
3503
+ * @memberof DefaultApi
3504
+ */
3505
+ v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube, any>>;
3191
3506
  /**
3192
3507
  * Get platform credits.
3193
3508
  * @param {*} [options] Override http request option.
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.1892
7
+ * The version of the OpenAPI document: 1.3.1945
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1141,6 +1141,105 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1141
1141
  options: localVarRequestOptions,
1142
1142
  };
1143
1143
  }),
1144
+ /**
1145
+ * Get or create camera.
1146
+ * @param {V1GetOrCreateCameraRequest} v1GetOrCreateCameraRequest
1147
+ * @param {*} [options] Override http request option.
1148
+ * @throws {RequiredError}
1149
+ */
1150
+ v1GetOrCreateCamera: (v1GetOrCreateCameraRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
1151
+ // verify required parameter 'v1GetOrCreateCameraRequest' is not null or undefined
1152
+ assertParamExists('v1GetOrCreateCamera', 'v1GetOrCreateCameraRequest', v1GetOrCreateCameraRequest);
1153
+ const localVarPath = `/v1/camera-match`;
1154
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1155
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1156
+ let baseOptions;
1157
+ if (configuration) {
1158
+ baseOptions = configuration.baseOptions;
1159
+ }
1160
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
1161
+ const localVarHeaderParameter = {};
1162
+ const localVarQueryParameter = {};
1163
+ // authentication Roles required
1164
+ // authentication BearerToken required
1165
+ // http bearer authentication required
1166
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1167
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1168
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1169
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1170
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1171
+ localVarRequestOptions.data = serializeDataIfNeeded(v1GetOrCreateCameraRequest, localVarRequestOptions, configuration);
1172
+ return {
1173
+ url: toPathString(localVarUrlObj),
1174
+ options: localVarRequestOptions,
1175
+ };
1176
+ }),
1177
+ /**
1178
+ * Get or create mount.
1179
+ * @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
1180
+ * @param {*} [options] Override http request option.
1181
+ * @throws {RequiredError}
1182
+ */
1183
+ v1GetOrCreateMount: (v1GetOrCreateMountRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
1184
+ // verify required parameter 'v1GetOrCreateMountRequest' is not null or undefined
1185
+ assertParamExists('v1GetOrCreateMount', 'v1GetOrCreateMountRequest', v1GetOrCreateMountRequest);
1186
+ const localVarPath = `/v1/mount-match`;
1187
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1188
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1189
+ let baseOptions;
1190
+ if (configuration) {
1191
+ baseOptions = configuration.baseOptions;
1192
+ }
1193
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
1194
+ const localVarHeaderParameter = {};
1195
+ const localVarQueryParameter = {};
1196
+ // authentication Roles required
1197
+ // authentication BearerToken required
1198
+ // http bearer authentication required
1199
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1200
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1201
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1202
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1203
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1204
+ localVarRequestOptions.data = serializeDataIfNeeded(v1GetOrCreateMountRequest, localVarRequestOptions, configuration);
1205
+ return {
1206
+ url: toPathString(localVarUrlObj),
1207
+ options: localVarRequestOptions,
1208
+ };
1209
+ }),
1210
+ /**
1211
+ * Get or create optical tube.
1212
+ * @param {V1GetOrCreateOpticalTubeRequest} v1GetOrCreateOpticalTubeRequest
1213
+ * @param {*} [options] Override http request option.
1214
+ * @throws {RequiredError}
1215
+ */
1216
+ v1GetOrCreateOpticalTube: (v1GetOrCreateOpticalTubeRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
1217
+ // verify required parameter 'v1GetOrCreateOpticalTubeRequest' is not null or undefined
1218
+ assertParamExists('v1GetOrCreateOpticalTube', 'v1GetOrCreateOpticalTubeRequest', v1GetOrCreateOpticalTubeRequest);
1219
+ const localVarPath = `/v1/optical-tube-match`;
1220
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1221
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1222
+ let baseOptions;
1223
+ if (configuration) {
1224
+ baseOptions = configuration.baseOptions;
1225
+ }
1226
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
1227
+ const localVarHeaderParameter = {};
1228
+ const localVarQueryParameter = {};
1229
+ // authentication Roles required
1230
+ // authentication BearerToken required
1231
+ // http bearer authentication required
1232
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1233
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1234
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1235
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1236
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1237
+ localVarRequestOptions.data = serializeDataIfNeeded(v1GetOrCreateOpticalTubeRequest, localVarRequestOptions, configuration);
1238
+ return {
1239
+ url: toPathString(localVarUrlObj),
1240
+ options: localVarRequestOptions,
1241
+ };
1242
+ }),
1144
1243
  /**
1145
1244
  * Get platform credits.
1146
1245
  * @param {*} [options] Override http request option.
@@ -1704,6 +1803,42 @@ export const DefaultApiFp = function (configuration) {
1704
1803
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1705
1804
  });
1706
1805
  },
1806
+ /**
1807
+ * Get or create camera.
1808
+ * @param {V1GetOrCreateCameraRequest} v1GetOrCreateCameraRequest
1809
+ * @param {*} [options] Override http request option.
1810
+ * @throws {RequiredError}
1811
+ */
1812
+ v1GetOrCreateCamera(v1GetOrCreateCameraRequest, options) {
1813
+ return __awaiter(this, void 0, void 0, function* () {
1814
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateCamera(v1GetOrCreateCameraRequest, options);
1815
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1816
+ });
1817
+ },
1818
+ /**
1819
+ * Get or create mount.
1820
+ * @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
1821
+ * @param {*} [options] Override http request option.
1822
+ * @throws {RequiredError}
1823
+ */
1824
+ v1GetOrCreateMount(v1GetOrCreateMountRequest, options) {
1825
+ return __awaiter(this, void 0, void 0, function* () {
1826
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateMount(v1GetOrCreateMountRequest, options);
1827
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1828
+ });
1829
+ },
1830
+ /**
1831
+ * Get or create optical tube.
1832
+ * @param {V1GetOrCreateOpticalTubeRequest} v1GetOrCreateOpticalTubeRequest
1833
+ * @param {*} [options] Override http request option.
1834
+ * @throws {RequiredError}
1835
+ */
1836
+ v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest, options) {
1837
+ return __awaiter(this, void 0, void 0, function* () {
1838
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest, options);
1839
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1840
+ });
1841
+ },
1707
1842
  /**
1708
1843
  * Get platform credits.
1709
1844
  * @param {*} [options] Override http request option.
@@ -2034,6 +2169,33 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2034
2169
  v1GetNodes(options) {
2035
2170
  return localVarFp.v1GetNodes(options).then((request) => request(axios, basePath));
2036
2171
  },
2172
+ /**
2173
+ * Get or create camera.
2174
+ * @param {DefaultApiV1GetOrCreateCameraRequest} requestParameters Request parameters.
2175
+ * @param {*} [options] Override http request option.
2176
+ * @throws {RequiredError}
2177
+ */
2178
+ v1GetOrCreateCamera(requestParameters, options) {
2179
+ return localVarFp.v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(axios, basePath));
2180
+ },
2181
+ /**
2182
+ * Get or create mount.
2183
+ * @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
2184
+ * @param {*} [options] Override http request option.
2185
+ * @throws {RequiredError}
2186
+ */
2187
+ v1GetOrCreateMount(requestParameters, options) {
2188
+ return localVarFp.v1GetOrCreateMount(requestParameters.v1GetOrCreateMountRequest, options).then((request) => request(axios, basePath));
2189
+ },
2190
+ /**
2191
+ * Get or create optical tube.
2192
+ * @param {DefaultApiV1GetOrCreateOpticalTubeRequest} requestParameters Request parameters.
2193
+ * @param {*} [options] Override http request option.
2194
+ * @throws {RequiredError}
2195
+ */
2196
+ v1GetOrCreateOpticalTube(requestParameters, options) {
2197
+ return localVarFp.v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(axios, basePath));
2198
+ },
2037
2199
  /**
2038
2200
  * Get platform credits.
2039
2201
  * @param {*} [options] Override http request option.
@@ -2370,6 +2532,36 @@ export class DefaultApi extends BaseAPI {
2370
2532
  v1GetNodes(options) {
2371
2533
  return DefaultApiFp(this.configuration).v1GetNodes(options).then((request) => request(this.axios, this.basePath));
2372
2534
  }
2535
+ /**
2536
+ * Get or create camera.
2537
+ * @param {DefaultApiV1GetOrCreateCameraRequest} requestParameters Request parameters.
2538
+ * @param {*} [options] Override http request option.
2539
+ * @throws {RequiredError}
2540
+ * @memberof DefaultApi
2541
+ */
2542
+ v1GetOrCreateCamera(requestParameters, options) {
2543
+ return DefaultApiFp(this.configuration).v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(this.axios, this.basePath));
2544
+ }
2545
+ /**
2546
+ * Get or create mount.
2547
+ * @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
2548
+ * @param {*} [options] Override http request option.
2549
+ * @throws {RequiredError}
2550
+ * @memberof DefaultApi
2551
+ */
2552
+ v1GetOrCreateMount(requestParameters, options) {
2553
+ return DefaultApiFp(this.configuration).v1GetOrCreateMount(requestParameters.v1GetOrCreateMountRequest, options).then((request) => request(this.axios, this.basePath));
2554
+ }
2555
+ /**
2556
+ * Get or create optical tube.
2557
+ * @param {DefaultApiV1GetOrCreateOpticalTubeRequest} requestParameters Request parameters.
2558
+ * @param {*} [options] Override http request option.
2559
+ * @throws {RequiredError}
2560
+ * @memberof DefaultApi
2561
+ */
2562
+ v1GetOrCreateOpticalTube(requestParameters, options) {
2563
+ return DefaultApiFp(this.configuration).v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(this.axios, this.basePath));
2564
+ }
2373
2565
  /**
2374
2566
  * Get platform credits.
2375
2567
  * @param {*} [options] Override http request option.
@@ -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.1892
5
+ * The version of the OpenAPI document: 1.3.1945
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.1892
7
+ * The version of the OpenAPI document: 1.3.1945
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.1892
5
+ * The version of the OpenAPI document: 1.3.1945
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.1892
7
+ * The version of the OpenAPI document: 1.3.1945
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.1892
5
+ * The version of the OpenAPI document: 1.3.1945
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.1892
7
+ * The version of the OpenAPI document: 1.3.1945
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.1892
5
+ * The version of the OpenAPI document: 1.3.1945
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.1892
7
+ * The version of the OpenAPI document: 1.3.1945
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.1892
5
+ * The version of the OpenAPI document: 1.3.1945
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).