@ourskyai/astro-api 1.3.3703 → 1.3.3719

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/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.3703
8
+ * The version of the OpenAPI document: 1.3.3719
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -421,39 +421,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
421
421
  options: localVarRequestOptions,
422
422
  };
423
423
  }),
424
- /**
425
- * Create an autofocus result.
426
- * @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
427
- * @param {*} [options] Override http request option.
428
- * @throws {RequiredError}
429
- */
430
- v1CreateAutofocusResult: (v1CreateAutofocusResultRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
431
- // verify required parameter 'v1CreateAutofocusResultRequest' is not null or undefined
432
- (0, common_1.assertParamExists)('v1CreateAutofocusResult', 'v1CreateAutofocusResultRequest', v1CreateAutofocusResultRequest);
433
- const localVarPath = `/v1/autofocus`;
434
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
435
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
436
- let baseOptions;
437
- if (configuration) {
438
- baseOptions = configuration.baseOptions;
439
- }
440
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
441
- const localVarHeaderParameter = {};
442
- const localVarQueryParameter = {};
443
- // authentication Roles required
444
- // authentication BearerToken required
445
- // http bearer authentication required
446
- yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
447
- localVarHeaderParameter['Content-Type'] = 'application/json';
448
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
449
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
450
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
451
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateAutofocusResultRequest, localVarRequestOptions, configuration);
452
- return {
453
- url: (0, common_1.toPathString)(localVarUrlObj),
454
- options: localVarRequestOptions,
455
- };
456
- }),
457
424
  /**
458
425
  * Create a calibration master.
459
426
  * @param {V1CreateCalibrationMasterRequest} v1CreateCalibrationMasterRequest
@@ -1413,6 +1380,52 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1413
1380
  options: localVarRequestOptions,
1414
1381
  };
1415
1382
  }),
1383
+ /**
1384
+ * Get all astro targets visible to this specific node. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
1385
+ * @param {string} timestamp
1386
+ * @param {string} nodeId
1387
+ * @param {number} [offset]
1388
+ * @param {*} [options] Override http request option.
1389
+ * @throws {RequiredError}
1390
+ */
1391
+ v1GetVisibleAstroTargets: (timestamp, nodeId, offset, options = {}) => __awaiter(this, void 0, void 0, function* () {
1392
+ // verify required parameter 'timestamp' is not null or undefined
1393
+ (0, common_1.assertParamExists)('v1GetVisibleAstroTargets', 'timestamp', timestamp);
1394
+ // verify required parameter 'nodeId' is not null or undefined
1395
+ (0, common_1.assertParamExists)('v1GetVisibleAstroTargets', 'nodeId', nodeId);
1396
+ const localVarPath = `/v1/visible-astro-targets`;
1397
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1398
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1399
+ let baseOptions;
1400
+ if (configuration) {
1401
+ baseOptions = configuration.baseOptions;
1402
+ }
1403
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1404
+ const localVarHeaderParameter = {};
1405
+ const localVarQueryParameter = {};
1406
+ // authentication Roles required
1407
+ // authentication BearerToken required
1408
+ // http bearer authentication required
1409
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1410
+ if (offset !== undefined) {
1411
+ localVarQueryParameter['offset'] = offset;
1412
+ }
1413
+ if (timestamp !== undefined) {
1414
+ localVarQueryParameter['timestamp'] = (timestamp instanceof Date) ?
1415
+ timestamp.toISOString() :
1416
+ timestamp;
1417
+ }
1418
+ if (nodeId !== undefined) {
1419
+ localVarQueryParameter['nodeId'] = nodeId;
1420
+ }
1421
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1422
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1423
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1424
+ return {
1425
+ url: (0, common_1.toPathString)(localVarUrlObj),
1426
+ options: localVarRequestOptions,
1427
+ };
1428
+ }),
1416
1429
  /**
1417
1430
  * Get weather.
1418
1431
  * @param {number} latitude
@@ -1726,18 +1739,6 @@ const DefaultApiFp = function (configuration) {
1726
1739
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1727
1740
  });
1728
1741
  },
1729
- /**
1730
- * Create an autofocus result.
1731
- * @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
1732
- * @param {*} [options] Override http request option.
1733
- * @throws {RequiredError}
1734
- */
1735
- v1CreateAutofocusResult(v1CreateAutofocusResultRequest, options) {
1736
- return __awaiter(this, void 0, void 0, function* () {
1737
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateAutofocusResult(v1CreateAutofocusResultRequest, options);
1738
- return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1739
- });
1740
- },
1741
1742
  /**
1742
1743
  * Create a calibration master.
1743
1744
  * @param {V1CreateCalibrationMasterRequest} v1CreateCalibrationMasterRequest
@@ -2085,6 +2086,20 @@ const DefaultApiFp = function (configuration) {
2085
2086
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2086
2087
  });
2087
2088
  },
2089
+ /**
2090
+ * Get all astro targets visible to this specific node. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
2091
+ * @param {string} timestamp
2092
+ * @param {string} nodeId
2093
+ * @param {number} [offset]
2094
+ * @param {*} [options] Override http request option.
2095
+ * @throws {RequiredError}
2096
+ */
2097
+ v1GetVisibleAstroTargets(timestamp, nodeId, offset, options) {
2098
+ return __awaiter(this, void 0, void 0, function* () {
2099
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetVisibleAstroTargets(timestamp, nodeId, offset, options);
2100
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2101
+ });
2102
+ },
2088
2103
  /**
2089
2104
  * Get weather.
2090
2105
  * @param {number} latitude
@@ -2226,15 +2241,6 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2226
2241
  v1CreateAstroProjectImageSet(requestParameters, options) {
2227
2242
  return localVarFp.v1CreateAstroProjectImageSet(requestParameters.v1CreateAstroProjectImageSetRequest, options).then((request) => request(axios, basePath));
2228
2243
  },
2229
- /**
2230
- * Create an autofocus result.
2231
- * @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
2232
- * @param {*} [options] Override http request option.
2233
- * @throws {RequiredError}
2234
- */
2235
- v1CreateAutofocusResult(requestParameters, options) {
2236
- return localVarFp.v1CreateAutofocusResult(requestParameters.v1CreateAutofocusResultRequest, options).then((request) => request(axios, basePath));
2237
- },
2238
2244
  /**
2239
2245
  * Create a calibration master.
2240
2246
  * @param {DefaultApiV1CreateCalibrationMasterRequest} requestParameters Request parameters.
@@ -2490,6 +2496,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2490
2496
  v1GetPlatformCredits(options) {
2491
2497
  return localVarFp.v1GetPlatformCredits(options).then((request) => request(axios, basePath));
2492
2498
  },
2499
+ /**
2500
+ * Get all astro targets visible to this specific node. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
2501
+ * @param {DefaultApiV1GetVisibleAstroTargetsRequest} requestParameters Request parameters.
2502
+ * @param {*} [options] Override http request option.
2503
+ * @throws {RequiredError}
2504
+ */
2505
+ v1GetVisibleAstroTargets(requestParameters, options) {
2506
+ return localVarFp.v1GetVisibleAstroTargets(requestParameters.timestamp, requestParameters.nodeId, requestParameters.offset, options).then((request) => request(axios, basePath));
2507
+ },
2493
2508
  /**
2494
2509
  * Get weather.
2495
2510
  * @param {DefaultApiV1GetWeatherRequest} requestParameters Request parameters.
@@ -2614,16 +2629,6 @@ class DefaultApi extends base_1.BaseAPI {
2614
2629
  v1CreateAstroProjectImageSet(requestParameters, options) {
2615
2630
  return (0, exports.DefaultApiFp)(this.configuration).v1CreateAstroProjectImageSet(requestParameters.v1CreateAstroProjectImageSetRequest, options).then((request) => request(this.axios, this.basePath));
2616
2631
  }
2617
- /**
2618
- * Create an autofocus result.
2619
- * @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
2620
- * @param {*} [options] Override http request option.
2621
- * @throws {RequiredError}
2622
- * @memberof DefaultApi
2623
- */
2624
- v1CreateAutofocusResult(requestParameters, options) {
2625
- return (0, exports.DefaultApiFp)(this.configuration).v1CreateAutofocusResult(requestParameters.v1CreateAutofocusResultRequest, options).then((request) => request(this.axios, this.basePath));
2626
- }
2627
2632
  /**
2628
2633
  * Create a calibration master.
2629
2634
  * @param {DefaultApiV1CreateCalibrationMasterRequest} requestParameters Request parameters.
@@ -2908,6 +2913,16 @@ class DefaultApi extends base_1.BaseAPI {
2908
2913
  v1GetPlatformCredits(options) {
2909
2914
  return (0, exports.DefaultApiFp)(this.configuration).v1GetPlatformCredits(options).then((request) => request(this.axios, this.basePath));
2910
2915
  }
2916
+ /**
2917
+ * Get all astro targets visible to this specific node. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
2918
+ * @param {DefaultApiV1GetVisibleAstroTargetsRequest} requestParameters Request parameters.
2919
+ * @param {*} [options] Override http request option.
2920
+ * @throws {RequiredError}
2921
+ * @memberof DefaultApi
2922
+ */
2923
+ v1GetVisibleAstroTargets(requestParameters, options) {
2924
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetVisibleAstroTargets(requestParameters.timestamp, requestParameters.nodeId, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
2925
+ }
2911
2926
  /**
2912
2927
  * Get weather.
2913
2928
  * @param {DefaultApiV1GetWeatherRequest} 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.3703
5
+ * The version of the OpenAPI document: 1.3.3719
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.3703
8
+ * The version of the OpenAPI document: 1.3.3719
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.3703
5
+ * The version of the OpenAPI document: 1.3.3719
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.3703
8
+ * The version of the OpenAPI document: 1.3.3719
9
9
  *
10
10
  *
11
11
  * 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.3703
5
+ * The version of the OpenAPI document: 1.3.3719
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.3703
8
+ * The version of the OpenAPI document: 1.3.3719
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
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.3703
5
+ * The version of the OpenAPI document: 1.3.3719
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -868,43 +868,6 @@ export interface V1CreateAstroProjectResponse {
868
868
  */
869
869
  'imageSetId': string;
870
870
  }
871
- /**
872
- *
873
- * @export
874
- * @interface V1CreateAutofocusResultRequest
875
- */
876
- export interface V1CreateAutofocusResultRequest {
877
- /**
878
- * The autofocus id
879
- * @type {string}
880
- * @memberof V1CreateAutofocusResultRequest
881
- */
882
- 'id': string;
883
- /**
884
- * The node that autofocus was performed on.
885
- * @type {string}
886
- * @memberof V1CreateAutofocusResultRequest
887
- */
888
- 'node_id': string;
889
- /**
890
- * The timestamp when the autofocus operation was completed.
891
- * @type {string}
892
- * @memberof V1CreateAutofocusResultRequest
893
- */
894
- 'autofocus_time': string;
895
- /**
896
- * The HFR value before autofocusing.
897
- * @type {number}
898
- * @memberof V1CreateAutofocusResultRequest
899
- */
900
- 'hfrBefore': number;
901
- /**
902
- * The HFR value after autofocusing.
903
- * @type {number}
904
- * @memberof V1CreateAutofocusResultRequest
905
- */
906
- 'hfrAfter': number;
907
- }
908
871
  /**
909
872
  *
910
873
  * @export
@@ -2425,13 +2388,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2425
2388
  * @throws {RequiredError}
2426
2389
  */
2427
2390
  v1CreateAstroProjectImageSet: (v1CreateAstroProjectImageSetRequest: V1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2428
- /**
2429
- * Create an autofocus result.
2430
- * @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
2431
- * @param {*} [options] Override http request option.
2432
- * @throws {RequiredError}
2433
- */
2434
- v1CreateAutofocusResult: (v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2435
2391
  /**
2436
2392
  * Create a calibration master.
2437
2393
  * @param {V1CreateCalibrationMasterRequest} v1CreateCalibrationMasterRequest
@@ -2634,6 +2590,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2634
2590
  * @throws {RequiredError}
2635
2591
  */
2636
2592
  v1GetPlatformCredits: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
2593
+ /**
2594
+ * Get all astro targets visible to this specific node. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
2595
+ * @param {string} timestamp
2596
+ * @param {string} nodeId
2597
+ * @param {number} [offset]
2598
+ * @param {*} [options] Override http request option.
2599
+ * @throws {RequiredError}
2600
+ */
2601
+ v1GetVisibleAstroTargets: (timestamp: string, nodeId: string, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2637
2602
  /**
2638
2603
  * Get weather.
2639
2604
  * @param {number} latitude
@@ -2736,13 +2701,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2736
2701
  * @throws {RequiredError}
2737
2702
  */
2738
2703
  v1CreateAstroProjectImageSet(v1CreateAstroProjectImageSetRequest: V1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2739
- /**
2740
- * Create an autofocus result.
2741
- * @param {V1CreateAutofocusResultRequest} v1CreateAutofocusResultRequest
2742
- * @param {*} [options] Override http request option.
2743
- * @throws {RequiredError}
2744
- */
2745
- v1CreateAutofocusResult(v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2746
2704
  /**
2747
2705
  * Create a calibration master.
2748
2706
  * @param {V1CreateCalibrationMasterRequest} v1CreateCalibrationMasterRequest
@@ -2945,6 +2903,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2945
2903
  * @throws {RequiredError}
2946
2904
  */
2947
2905
  v1GetPlatformCredits(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlatformCredit>>>;
2906
+ /**
2907
+ * Get all astro targets visible to this specific node. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
2908
+ * @param {string} timestamp
2909
+ * @param {string} nodeId
2910
+ * @param {number} [offset]
2911
+ * @param {*} [options] Override http request option.
2912
+ * @throws {RequiredError}
2913
+ */
2914
+ v1GetVisibleAstroTargets(timestamp: string, nodeId: string, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1AstroTarget>>>;
2948
2915
  /**
2949
2916
  * Get weather.
2950
2917
  * @param {number} latitude
@@ -3040,13 +3007,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3040
3007
  * @throws {RequiredError}
3041
3008
  */
3042
3009
  v1CreateAstroProjectImageSet(requestParameters: DefaultApiV1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
3043
- /**
3044
- * Create an autofocus result.
3045
- * @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
3046
- * @param {*} [options] Override http request option.
3047
- * @throws {RequiredError}
3048
- */
3049
- v1CreateAutofocusResult(requestParameters: DefaultApiV1CreateAutofocusResultRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
3050
3010
  /**
3051
3011
  * Create a calibration master.
3052
3012
  * @param {DefaultApiV1CreateCalibrationMasterRequest} requestParameters Request parameters.
@@ -3244,6 +3204,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3244
3204
  * @throws {RequiredError}
3245
3205
  */
3246
3206
  v1GetPlatformCredits(options?: AxiosRequestConfig): AxiosPromise<Array<V1PlatformCredit>>;
3207
+ /**
3208
+ * Get all astro targets visible to this specific node. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
3209
+ * @param {DefaultApiV1GetVisibleAstroTargetsRequest} requestParameters Request parameters.
3210
+ * @param {*} [options] Override http request option.
3211
+ * @throws {RequiredError}
3212
+ */
3213
+ v1GetVisibleAstroTargets(requestParameters: DefaultApiV1GetVisibleAstroTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1AstroTarget>>;
3247
3214
  /**
3248
3215
  * Get weather.
3249
3216
  * @param {DefaultApiV1GetWeatherRequest} requestParameters Request parameters.
@@ -3407,19 +3374,6 @@ export interface DefaultApiV1CreateAstroProjectImageSetRequest {
3407
3374
  */
3408
3375
  readonly v1CreateAstroProjectImageSetRequest: V1CreateAstroProjectImageSetRequest;
3409
3376
  }
3410
- /**
3411
- * Request parameters for v1CreateAutofocusResult operation in DefaultApi.
3412
- * @export
3413
- * @interface DefaultApiV1CreateAutofocusResultRequest
3414
- */
3415
- export interface DefaultApiV1CreateAutofocusResultRequest {
3416
- /**
3417
- *
3418
- * @type {V1CreateAutofocusResultRequest}
3419
- * @memberof DefaultApiV1CreateAutofocusResult
3420
- */
3421
- readonly v1CreateAutofocusResultRequest: V1CreateAutofocusResultRequest;
3422
- }
3423
3377
  /**
3424
3378
  * Request parameters for v1CreateCalibrationMaster operation in DefaultApi.
3425
3379
  * @export
@@ -3749,6 +3703,31 @@ export interface DefaultApiV1GetOrCreateOpticalTubeRequest {
3749
3703
  */
3750
3704
  readonly v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest;
3751
3705
  }
3706
+ /**
3707
+ * Request parameters for v1GetVisibleAstroTargets operation in DefaultApi.
3708
+ * @export
3709
+ * @interface DefaultApiV1GetVisibleAstroTargetsRequest
3710
+ */
3711
+ export interface DefaultApiV1GetVisibleAstroTargetsRequest {
3712
+ /**
3713
+ *
3714
+ * @type {string}
3715
+ * @memberof DefaultApiV1GetVisibleAstroTargets
3716
+ */
3717
+ readonly timestamp: string;
3718
+ /**
3719
+ *
3720
+ * @type {string}
3721
+ * @memberof DefaultApiV1GetVisibleAstroTargets
3722
+ */
3723
+ readonly nodeId: string;
3724
+ /**
3725
+ *
3726
+ * @type {number}
3727
+ * @memberof DefaultApiV1GetVisibleAstroTargets
3728
+ */
3729
+ readonly offset?: number;
3730
+ }
3752
3731
  /**
3753
3732
  * Request parameters for v1GetWeather operation in DefaultApi.
3754
3733
  * @export
@@ -3912,14 +3891,6 @@ export declare class DefaultApi extends BaseAPI {
3912
3891
  * @memberof DefaultApi
3913
3892
  */
3914
3893
  v1CreateAstroProjectImageSet(requestParameters: DefaultApiV1CreateAstroProjectImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
3915
- /**
3916
- * Create an autofocus result.
3917
- * @param {DefaultApiV1CreateAutofocusResultRequest} requestParameters Request parameters.
3918
- * @param {*} [options] Override http request option.
3919
- * @throws {RequiredError}
3920
- * @memberof DefaultApi
3921
- */
3922
- v1CreateAutofocusResult(requestParameters: DefaultApiV1CreateAutofocusResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
3923
3894
  /**
3924
3895
  * Create a calibration master.
3925
3896
  * @param {DefaultApiV1CreateCalibrationMasterRequest} requestParameters Request parameters.
@@ -4146,6 +4117,14 @@ export declare class DefaultApi extends BaseAPI {
4146
4117
  * @memberof DefaultApi
4147
4118
  */
4148
4119
  v1GetPlatformCredits(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlatformCredit[], any>>;
4120
+ /**
4121
+ * Get all astro targets visible to this specific node. This response is paginated. It will only return at most 100 at a time. To get the next page, pass in the `id` of the last target in the current page as the `lastId` query parameter. Omitting this field fetches the first page.
4122
+ * @param {DefaultApiV1GetVisibleAstroTargetsRequest} requestParameters Request parameters.
4123
+ * @param {*} [options] Override http request option.
4124
+ * @throws {RequiredError}
4125
+ * @memberof DefaultApi
4126
+ */
4127
+ v1GetVisibleAstroTargets(requestParameters: DefaultApiV1GetVisibleAstroTargetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1AstroTarget[], any>>;
4149
4128
  /**
4150
4129
  * Get weather.
4151
4130
  * @param {DefaultApiV1GetWeatherRequest} requestParameters Request parameters.