@ourskyai/platform-api 1.3.3445 → 1.3.3644

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 Platform
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3445
8
+ * The version of the OpenAPI document: 1.3.3644
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlateSolveCatalogIdentifier = exports.V1NodeDiagnosticType = exports.V1NodeComponentType = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.FilterType = exports.CameraMode = void 0;
25
+ exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlateSolveCatalogFileDownloadActionEnum = exports.V1NodeDiagnosticType = exports.V1NodeComponentType = exports.V1FileType = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.FilterType = exports.CameraMode = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -126,6 +126,14 @@ exports.TrackingType = {
126
126
  SIDEREAL: 'SIDEREAL',
127
127
  TARGET_RATE: 'TARGET_RATE'
128
128
  };
129
+ /**
130
+ *
131
+ * @export
132
+ * @enum {string}
133
+ */
134
+ exports.V1FileType = {
135
+ ZIP: 'ZIP'
136
+ };
129
137
  /**
130
138
  *
131
139
  * @export
@@ -159,16 +167,14 @@ exports.V1NodeDiagnosticType = {
159
167
  APPLICATION_UPTIME_S: 'APPLICATION_UPTIME_S',
160
168
  APPLICATION_CPU_TIME_S: 'APPLICATION_CPU_TIME_S',
161
169
  CPU_USAGE_LAST_SECOND_PCT: 'CPU_USAGE_LAST_SECOND_PCT',
162
- CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT'
170
+ CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT',
171
+ FOCUS_HFR: 'FOCUS_HFR',
172
+ HAS_FOCUSER: 'HAS_FOCUSER'
163
173
  };
164
- /**
165
- *
166
- * @export
167
- * @enum {string}
168
- */
169
- exports.V1PlateSolveCatalogIdentifier = {
170
- TWO_MASS_4100: 'TWO_MASS_4100',
171
- TWO_MASS_LITE: 'TWO_MASS_LITE'
174
+ exports.V1PlateSolveCatalogFileDownloadActionEnum = {
175
+ DOWNLOAD: 'DOWNLOAD',
176
+ DELETE: 'DELETE',
177
+ NO_ACTION: 'NO_ACTION'
172
178
  };
173
179
  /**
174
180
  * DefaultApi - axios parameter creator
@@ -759,6 +765,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
759
765
  options: localVarRequestOptions,
760
766
  };
761
767
  }),
768
+ /**
769
+ * returns the current release for the node
770
+ * @param {string} lineageId lineage id
771
+ * @param {*} [options] Override http request option.
772
+ * @throws {RequiredError}
773
+ */
774
+ v1GetNodeControllerRelease: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
775
+ // verify required parameter 'lineageId' is not null or undefined
776
+ (0, common_1.assertParamExists)('v1GetNodeControllerRelease', 'lineageId', lineageId);
777
+ const localVarPath = `/v1/node-controller-releases`;
778
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
779
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
780
+ let baseOptions;
781
+ if (configuration) {
782
+ baseOptions = configuration.baseOptions;
783
+ }
784
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
785
+ const localVarHeaderParameter = {};
786
+ const localVarQueryParameter = {};
787
+ // authentication Roles required
788
+ // authentication BearerToken required
789
+ // http bearer authentication required
790
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
791
+ if (lineageId !== undefined) {
792
+ localVarQueryParameter['lineageId'] = lineageId;
793
+ }
794
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
795
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
796
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
797
+ return {
798
+ url: (0, common_1.toPathString)(localVarUrlObj),
799
+ options: localVarRequestOptions,
800
+ };
801
+ }),
762
802
  /**
763
803
  * Get node diagnostic tasks.
764
804
  * @param {string} nodeId
@@ -1415,6 +1455,18 @@ const DefaultApiFp = function (configuration) {
1415
1455
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1416
1456
  });
1417
1457
  },
1458
+ /**
1459
+ * returns the current release for the node
1460
+ * @param {string} lineageId lineage id
1461
+ * @param {*} [options] Override http request option.
1462
+ * @throws {RequiredError}
1463
+ */
1464
+ v1GetNodeControllerRelease(lineageId, options) {
1465
+ return __awaiter(this, void 0, void 0, function* () {
1466
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeControllerRelease(lineageId, options);
1467
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1468
+ });
1469
+ },
1418
1470
  /**
1419
1471
  * Get node diagnostic tasks.
1420
1472
  * @param {string} nodeId
@@ -1734,6 +1786,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1734
1786
  v1GetMount(requestParameters, options) {
1735
1787
  return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
1736
1788
  },
1789
+ /**
1790
+ * returns the current release for the node
1791
+ * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
1792
+ * @param {*} [options] Override http request option.
1793
+ * @throws {RequiredError}
1794
+ */
1795
+ v1GetNodeControllerRelease(requestParameters, options) {
1796
+ return localVarFp.v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(axios, basePath));
1797
+ },
1737
1798
  /**
1738
1799
  * Get node diagnostic tasks.
1739
1800
  * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
@@ -2028,6 +2089,16 @@ class DefaultApi extends base_1.BaseAPI {
2028
2089
  v1GetMount(requestParameters, options) {
2029
2090
  return (0, exports.DefaultApiFp)(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
2030
2091
  }
2092
+ /**
2093
+ * returns the current release for the node
2094
+ * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
2095
+ * @param {*} [options] Override http request option.
2096
+ * @throws {RequiredError}
2097
+ * @memberof DefaultApi
2098
+ */
2099
+ v1GetNodeControllerRelease(requestParameters, options) {
2100
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
2101
+ }
2031
2102
  /**
2032
2103
  * Get node diagnostic tasks.
2033
2104
  * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky Platform
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3445
5
+ * The version of the OpenAPI document: 1.3.3644
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 Platform
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3445
8
+ * The version of the OpenAPI document: 1.3.3644
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 Platform
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3445
5
+ * The version of the OpenAPI document: 1.3.3644
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 Platform
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3445
8
+ * The version of the OpenAPI document: 1.3.3644
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 Platform
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3445
5
+ * The version of the OpenAPI document: 1.3.3644
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 Platform
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3445
8
+ * The version of the OpenAPI document: 1.3.3644
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 Platform
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3445
5
+ * The version of the OpenAPI document: 1.3.3644
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -62,6 +62,25 @@ export declare const FilterType: {
62
62
  readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
63
63
  };
64
64
  export type FilterType = typeof FilterType[keyof typeof FilterType];
65
+ /**
66
+ *
67
+ * @export
68
+ * @interface FitsHeader
69
+ */
70
+ export interface FitsHeader {
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof FitsHeader
75
+ */
76
+ 'key': string;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof FitsHeader
81
+ */
82
+ 'value': string;
83
+ }
65
84
  /**
66
85
  * Location
67
86
  * @export
@@ -200,6 +219,38 @@ export declare const TrackingType: {
200
219
  readonly TARGET_RATE: "TARGET_RATE";
201
220
  };
202
221
  export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
222
+ /**
223
+ * Autofocus Instruction
224
+ * @export
225
+ * @interface V1AutoFocusInstruction
226
+ */
227
+ export interface V1AutoFocusInstruction {
228
+ /**
229
+ *
230
+ * @type {Array<V1AutoFocusInstructionCoordinatesInner>}
231
+ * @memberof V1AutoFocusInstruction
232
+ */
233
+ 'coordinates'?: Array<V1AutoFocusInstructionCoordinatesInner>;
234
+ }
235
+ /**
236
+ * Coordinates in degrees in epoch J2000
237
+ * @export
238
+ * @interface V1AutoFocusInstructionCoordinatesInner
239
+ */
240
+ export interface V1AutoFocusInstructionCoordinatesInner {
241
+ /**
242
+ *
243
+ * @type {number}
244
+ * @memberof V1AutoFocusInstructionCoordinatesInner
245
+ */
246
+ 'rightAscension'?: number;
247
+ /**
248
+ *
249
+ * @type {number}
250
+ * @memberof V1AutoFocusInstructionCoordinatesInner
251
+ */
252
+ 'declination'?: number;
253
+ }
203
254
  /**
204
255
  * Camera
205
256
  * @export
@@ -597,6 +648,15 @@ export interface V1ElevationMaskPoint {
597
648
  */
598
649
  'maxAltitudeDegrees': number;
599
650
  }
651
+ /**
652
+ *
653
+ * @export
654
+ * @enum {string}
655
+ */
656
+ export declare const V1FileType: {
657
+ readonly ZIP: "ZIP";
658
+ };
659
+ export type V1FileType = typeof V1FileType[keyof typeof V1FileType];
600
660
  /**
601
661
  * Gain Curve
602
662
  * @export
@@ -886,12 +946,6 @@ export interface V1GetOrCreateOpticalTubeRequest {
886
946
  * @interface V1GetPlateSolveCatalogDiffRequest
887
947
  */
888
948
  export interface V1GetPlateSolveCatalogDiffRequest {
889
- /**
890
- *
891
- * @type {V1PlateSolveCatalogIdentifier}
892
- * @memberof V1GetPlateSolveCatalogDiffRequest
893
- */
894
- 'identifier': V1PlateSolveCatalogIdentifier;
895
949
  /**
896
950
  *
897
951
  * @type {Array<V1PlateSolveCatalogFile>}
@@ -1201,6 +1255,12 @@ export interface V1ImageSetImage {
1201
1255
  * @memberof V1ImageSetImage
1202
1256
  */
1203
1257
  'exposureLength': number;
1258
+ /**
1259
+ *
1260
+ * @type {Array<FitsHeader>}
1261
+ * @memberof V1ImageSetImage
1262
+ */
1263
+ 'fitsHeaders': Array<FitsHeader>;
1204
1264
  }
1205
1265
  /**
1206
1266
  * Instruction
@@ -1226,6 +1286,12 @@ export interface V1Instruction {
1226
1286
  * @memberof V1Instruction
1227
1287
  */
1228
1288
  'search'?: Array<V1ObservationInstruction>;
1289
+ /**
1290
+ *
1291
+ * @type {V1AutoFocusInstruction}
1292
+ * @memberof V1Instruction
1293
+ */
1294
+ 'autofocus'?: V1AutoFocusInstruction;
1229
1295
  }
1230
1296
  /**
1231
1297
  *
@@ -1409,6 +1475,8 @@ export declare const V1NodeDiagnosticType: {
1409
1475
  readonly APPLICATION_CPU_TIME_S: "APPLICATION_CPU_TIME_S";
1410
1476
  readonly CPU_USAGE_LAST_SECOND_PCT: "CPU_USAGE_LAST_SECOND_PCT";
1411
1477
  readonly CPU_USAGE_LAST_MINUTE_PCT: "CPU_USAGE_LAST_MINUTE_PCT";
1478
+ readonly FOCUS_HFR: "FOCUS_HFR";
1479
+ readonly HAS_FOCUSER: "HAS_FOCUSER";
1412
1480
  };
1413
1481
  export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
1414
1482
  /**
@@ -1631,17 +1699,19 @@ export interface V1PlateSolveCatalogFileDownload {
1631
1699
  * @memberof V1PlateSolveCatalogFileDownload
1632
1700
  */
1633
1701
  'base64Sha256Checksum': string;
1702
+ /**
1703
+ *
1704
+ * @type {string}
1705
+ * @memberof V1PlateSolveCatalogFileDownload
1706
+ */
1707
+ 'action': V1PlateSolveCatalogFileDownloadActionEnum;
1634
1708
  }
1635
- /**
1636
- *
1637
- * @export
1638
- * @enum {string}
1639
- */
1640
- export declare const V1PlateSolveCatalogIdentifier: {
1641
- readonly TWO_MASS_4100: "TWO_MASS_4100";
1642
- readonly TWO_MASS_LITE: "TWO_MASS_LITE";
1709
+ export declare const V1PlateSolveCatalogFileDownloadActionEnum: {
1710
+ readonly DOWNLOAD: "DOWNLOAD";
1711
+ readonly DELETE: "DELETE";
1712
+ readonly NO_ACTION: "NO_ACTION";
1643
1713
  };
1644
- export type V1PlateSolveCatalogIdentifier = typeof V1PlateSolveCatalogIdentifier[keyof typeof V1PlateSolveCatalogIdentifier];
1714
+ export type V1PlateSolveCatalogFileDownloadActionEnum = typeof V1PlateSolveCatalogFileDownloadActionEnum[keyof typeof V1PlateSolveCatalogFileDownloadActionEnum];
1645
1715
  /**
1646
1716
  *
1647
1717
  * @export
@@ -1661,6 +1731,43 @@ export interface V1ReadNoisePoint {
1661
1731
  */
1662
1732
  'eRMS': number;
1663
1733
  }
1734
+ /**
1735
+ * Node Controller Release
1736
+ * @export
1737
+ * @interface V1Release
1738
+ */
1739
+ export interface V1Release {
1740
+ /**
1741
+ *
1742
+ * @type {string}
1743
+ * @memberof V1Release
1744
+ */
1745
+ 'id': string;
1746
+ /**
1747
+ * Semantic version 2.0 of this release.
1748
+ * @type {string}
1749
+ * @memberof V1Release
1750
+ */
1751
+ 'version': string;
1752
+ /**
1753
+ *
1754
+ * @type {string}
1755
+ * @memberof V1Release
1756
+ */
1757
+ 'url': string;
1758
+ /**
1759
+ * SHA256 checksum of the file
1760
+ * @type {string}
1761
+ * @memberof V1Release
1762
+ */
1763
+ 'checksum': string;
1764
+ /**
1765
+ *
1766
+ * @type {V1FileType}
1767
+ * @memberof V1Release
1768
+ */
1769
+ 'fileType': V1FileType;
1770
+ }
1664
1771
  /**
1665
1772
  * Setup Action
1666
1773
  * @export
@@ -2208,6 +2315,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2208
2315
  * @throws {RequiredError}
2209
2316
  */
2210
2317
  v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2318
+ /**
2319
+ * returns the current release for the node
2320
+ * @param {string} lineageId lineage id
2321
+ * @param {*} [options] Override http request option.
2322
+ * @throws {RequiredError}
2323
+ */
2324
+ v1GetNodeControllerRelease: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2211
2325
  /**
2212
2326
  * Get node diagnostic tasks.
2213
2327
  * @param {string} nodeId
@@ -2431,6 +2545,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2431
2545
  * @throws {RequiredError}
2432
2546
  */
2433
2547
  v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
2548
+ /**
2549
+ * returns the current release for the node
2550
+ * @param {string} lineageId lineage id
2551
+ * @param {*} [options] Override http request option.
2552
+ * @throws {RequiredError}
2553
+ */
2554
+ v1GetNodeControllerRelease(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Release>>;
2434
2555
  /**
2435
2556
  * Get node diagnostic tasks.
2436
2557
  * @param {string} nodeId
@@ -2647,6 +2768,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2647
2768
  * @throws {RequiredError}
2648
2769
  */
2649
2770
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
2771
+ /**
2772
+ * returns the current release for the node
2773
+ * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
2774
+ * @param {*} [options] Override http request option.
2775
+ * @throws {RequiredError}
2776
+ */
2777
+ v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): AxiosPromise<V1Release>;
2650
2778
  /**
2651
2779
  * Get node diagnostic tasks.
2652
2780
  * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
@@ -2975,6 +3103,19 @@ export interface DefaultApiV1GetMountRequest {
2975
3103
  */
2976
3104
  readonly id: string;
2977
3105
  }
3106
+ /**
3107
+ * Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
3108
+ * @export
3109
+ * @interface DefaultApiV1GetNodeControllerReleaseRequest
3110
+ */
3111
+ export interface DefaultApiV1GetNodeControllerReleaseRequest {
3112
+ /**
3113
+ * lineage id
3114
+ * @type {string}
3115
+ * @memberof DefaultApiV1GetNodeControllerRelease
3116
+ */
3117
+ readonly lineageId: string;
3118
+ }
2978
3119
  /**
2979
3120
  * Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
2980
3121
  * @export
@@ -3290,6 +3431,14 @@ export declare class DefaultApi extends BaseAPI {
3290
3431
  * @memberof DefaultApi
3291
3432
  */
3292
3433
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
3434
+ /**
3435
+ * returns the current release for the node
3436
+ * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
3437
+ * @param {*} [options] Override http request option.
3438
+ * @throws {RequiredError}
3439
+ * @memberof DefaultApi
3440
+ */
3441
+ v1GetNodeControllerRelease(requestParameters: DefaultApiV1GetNodeControllerReleaseRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Release, any>>;
3293
3442
  /**
3294
3443
  * Get node diagnostic tasks.
3295
3444
  * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky Platform
5
5
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3445
7
+ * The version of the OpenAPI document: 1.3.3644
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -123,6 +123,14 @@ export const TrackingType = {
123
123
  SIDEREAL: 'SIDEREAL',
124
124
  TARGET_RATE: 'TARGET_RATE'
125
125
  };
126
+ /**
127
+ *
128
+ * @export
129
+ * @enum {string}
130
+ */
131
+ export const V1FileType = {
132
+ ZIP: 'ZIP'
133
+ };
126
134
  /**
127
135
  *
128
136
  * @export
@@ -156,16 +164,14 @@ export const V1NodeDiagnosticType = {
156
164
  APPLICATION_UPTIME_S: 'APPLICATION_UPTIME_S',
157
165
  APPLICATION_CPU_TIME_S: 'APPLICATION_CPU_TIME_S',
158
166
  CPU_USAGE_LAST_SECOND_PCT: 'CPU_USAGE_LAST_SECOND_PCT',
159
- CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT'
167
+ CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT',
168
+ FOCUS_HFR: 'FOCUS_HFR',
169
+ HAS_FOCUSER: 'HAS_FOCUSER'
160
170
  };
161
- /**
162
- *
163
- * @export
164
- * @enum {string}
165
- */
166
- export const V1PlateSolveCatalogIdentifier = {
167
- TWO_MASS_4100: 'TWO_MASS_4100',
168
- TWO_MASS_LITE: 'TWO_MASS_LITE'
171
+ export const V1PlateSolveCatalogFileDownloadActionEnum = {
172
+ DOWNLOAD: 'DOWNLOAD',
173
+ DELETE: 'DELETE',
174
+ NO_ACTION: 'NO_ACTION'
169
175
  };
170
176
  /**
171
177
  * DefaultApi - axios parameter creator
@@ -756,6 +762,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
756
762
  options: localVarRequestOptions,
757
763
  };
758
764
  }),
765
+ /**
766
+ * returns the current release for the node
767
+ * @param {string} lineageId lineage id
768
+ * @param {*} [options] Override http request option.
769
+ * @throws {RequiredError}
770
+ */
771
+ v1GetNodeControllerRelease: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
772
+ // verify required parameter 'lineageId' is not null or undefined
773
+ assertParamExists('v1GetNodeControllerRelease', 'lineageId', lineageId);
774
+ const localVarPath = `/v1/node-controller-releases`;
775
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
776
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
777
+ let baseOptions;
778
+ if (configuration) {
779
+ baseOptions = configuration.baseOptions;
780
+ }
781
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
782
+ const localVarHeaderParameter = {};
783
+ const localVarQueryParameter = {};
784
+ // authentication Roles required
785
+ // authentication BearerToken required
786
+ // http bearer authentication required
787
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
788
+ if (lineageId !== undefined) {
789
+ localVarQueryParameter['lineageId'] = lineageId;
790
+ }
791
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
792
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
793
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
794
+ return {
795
+ url: toPathString(localVarUrlObj),
796
+ options: localVarRequestOptions,
797
+ };
798
+ }),
759
799
  /**
760
800
  * Get node diagnostic tasks.
761
801
  * @param {string} nodeId
@@ -1411,6 +1451,18 @@ export const DefaultApiFp = function (configuration) {
1411
1451
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1412
1452
  });
1413
1453
  },
1454
+ /**
1455
+ * returns the current release for the node
1456
+ * @param {string} lineageId lineage id
1457
+ * @param {*} [options] Override http request option.
1458
+ * @throws {RequiredError}
1459
+ */
1460
+ v1GetNodeControllerRelease(lineageId, options) {
1461
+ return __awaiter(this, void 0, void 0, function* () {
1462
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeControllerRelease(lineageId, options);
1463
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1464
+ });
1465
+ },
1414
1466
  /**
1415
1467
  * Get node diagnostic tasks.
1416
1468
  * @param {string} nodeId
@@ -1729,6 +1781,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
1729
1781
  v1GetMount(requestParameters, options) {
1730
1782
  return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
1731
1783
  },
1784
+ /**
1785
+ * returns the current release for the node
1786
+ * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
1787
+ * @param {*} [options] Override http request option.
1788
+ * @throws {RequiredError}
1789
+ */
1790
+ v1GetNodeControllerRelease(requestParameters, options) {
1791
+ return localVarFp.v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(axios, basePath));
1792
+ },
1732
1793
  /**
1733
1794
  * Get node diagnostic tasks.
1734
1795
  * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
@@ -2022,6 +2083,16 @@ export class DefaultApi extends BaseAPI {
2022
2083
  v1GetMount(requestParameters, options) {
2023
2084
  return DefaultApiFp(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
2024
2085
  }
2086
+ /**
2087
+ * returns the current release for the node
2088
+ * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
2089
+ * @param {*} [options] Override http request option.
2090
+ * @throws {RequiredError}
2091
+ * @memberof DefaultApi
2092
+ */
2093
+ v1GetNodeControllerRelease(requestParameters, options) {
2094
+ return DefaultApiFp(this.configuration).v1GetNodeControllerRelease(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
2095
+ }
2025
2096
  /**
2026
2097
  * Get node diagnostic tasks.
2027
2098
  * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
@@ -2,7 +2,7 @@
2
2
  * OurSky Platform
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3445
5
+ * The version of the OpenAPI document: 1.3.3644
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky Platform
5
5
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3445
7
+ * The version of the OpenAPI document: 1.3.3644
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky Platform
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3445
5
+ * The version of the OpenAPI document: 1.3.3644
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * OurSky Platform
5
5
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.3445
7
+ * The version of the OpenAPI document: 1.3.3644
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky Platform
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.3445
5
+ * The version of the OpenAPI document: 1.3.3644
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).