@ourskyai/astro-api 1.3.5667 → 1.3.8106

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @ourskyai/astro-api@1.3.5667
1
+ ## @ourskyai/astro-api@1.3.8106
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @ourskyai/astro-api@1.3.5667 --save
39
+ npm install @ourskyai/astro-api@1.3.8106 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -99,7 +99,7 @@ export interface DailyWeatherCity {
99
99
  */
100
100
  export interface DailyWeatherForecastItem {
101
101
  /**
102
- * Timestamp of the weather data
102
+ * Timestamp of the weather data in UNIX timestamp
103
103
  * @type {number}
104
104
  * @memberof DailyWeatherForecastItem
105
105
  */
@@ -283,7 +283,16 @@ export const FilterType = {
283
283
  PHOTO_JOHNSON_B: 'PHOTO_JOHNSON_B',
284
284
  PHOTO_JOHNSON_V: 'PHOTO_JOHNSON_V',
285
285
  PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
286
- PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
286
+ PHOTO_COUSINS_I: 'PHOTO_COUSINS_I',
287
+ PHOTO_SLOAN_U: 'PHOTO_SLOAN_U',
288
+ PHOTO_SLOAN_G: 'PHOTO_SLOAN_G',
289
+ PHOTO_SLOAN_R: 'PHOTO_SLOAN_R',
290
+ PHOTO_SLOAN_I: 'PHOTO_SLOAN_I',
291
+ PHOTO_SLOAN_Z: 'PHOTO_SLOAN_Z',
292
+ TRIPLE_BAND: 'TRIPLE_BAND',
293
+ QUAD_BAND: 'QUAD_BAND',
294
+ DARK: 'DARK',
295
+ OTHER: 'OTHER'
287
296
  } as const;
288
297
 
289
298
  export type FilterType = typeof FilterType[keyof typeof FilterType];
@@ -315,12 +324,49 @@ export interface FitsHeader {
315
324
  */
316
325
 
317
326
  export const ImageSetType = {
327
+ ASTRONOMICAL: 'ASTRONOMICAL',
328
+ EARTH_ORBITAL: 'EARTH_ORBITAL',
329
+ GNSS_CALIBRATION: 'GNSS_CALIBRATION',
330
+ SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
318
331
  ALL_SKY: 'ALL_SKY'
319
332
  } as const;
320
333
 
321
334
  export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
322
335
 
323
336
 
337
+ /**
338
+ * Stacked image integration times by filter
339
+ * @export
340
+ * @interface IntegrationTime
341
+ */
342
+ export interface IntegrationTime {
343
+ /**
344
+ *
345
+ * @type {FilterType}
346
+ * @memberof IntegrationTime
347
+ */
348
+ 'filterType': FilterType;
349
+ /**
350
+ *
351
+ * @type {number}
352
+ * @memberof IntegrationTime
353
+ */
354
+ 'imageCount': number;
355
+ /**
356
+ *
357
+ * @type {number}
358
+ * @memberof IntegrationTime
359
+ */
360
+ 'exposureDurationSeconds': number;
361
+ /**
362
+ *
363
+ * @type {number}
364
+ * @memberof IntegrationTime
365
+ */
366
+ 'combinedExposureSeconds': number;
367
+ }
368
+
369
+
324
370
  /**
325
371
  * Location
326
372
  * @export
@@ -598,6 +644,12 @@ export interface V1AstroProjectAsset {
598
644
  * @interface V1AstroProjectAssetMetadata
599
645
  */
600
646
  export interface V1AstroProjectAssetMetadata {
647
+ /**
648
+ *
649
+ * @type {Array<IntegrationTime>}
650
+ * @memberof V1AstroProjectAssetMetadata
651
+ */
652
+ 'integrationTime'?: Array<IntegrationTime>;
601
653
  /**
602
654
  *
603
655
  * @type {V1AstroProjectAssetMetadataColorCombination}
@@ -1337,9 +1389,47 @@ export interface V1CreateImageSetImageRequest {
1337
1389
  * @memberof V1CreateImageSetImageRequest
1338
1390
  */
1339
1391
  'imageSetId': string;
1392
+ /**
1393
+ *
1394
+ * @type {V1ImageFileType}
1395
+ * @memberof V1CreateImageSetImageRequest
1396
+ */
1397
+ 'imageFileType'?: V1ImageFileType;
1398
+ /**
1399
+ *
1400
+ * @type {number}
1401
+ * @memberof V1CreateImageSetImageRequest
1402
+ */
1403
+ 'binning'?: number;
1404
+ /**
1405
+ *
1406
+ * @type {number}
1407
+ * @memberof V1CreateImageSetImageRequest
1408
+ */
1409
+ 'exposureLength'?: number;
1410
+ /**
1411
+ *
1412
+ * @type {string}
1413
+ * @memberof V1CreateImageSetImageRequest
1414
+ */
1415
+ 'imageSha'?: string;
1416
+ /**
1417
+ *
1418
+ * @type {number}
1419
+ * @memberof V1CreateImageSetImageRequest
1420
+ */
1421
+ 'imageSizeMb'?: number;
1422
+ /**
1423
+ *
1424
+ * @type {string}
1425
+ * @memberof V1CreateImageSetImageRequest
1426
+ */
1427
+ 'capturedAt'?: string;
1340
1428
  }
1429
+
1430
+
1341
1431
  /**
1342
- *
1432
+ * Response from image creation, with image ID and presigned S3 upload URL.
1343
1433
  * @export
1344
1434
  * @interface V1CreateImageSetImageResponse
1345
1435
  */
@@ -1537,7 +1627,7 @@ export interface V1ElevationMaskPoint {
1537
1627
  'maxAltitudeDegrees': number;
1538
1628
  }
1539
1629
  /**
1540
- * Optical Tube
1630
+ * Focuser
1541
1631
  * @export
1542
1632
  * @interface V1Focuser
1543
1633
  */
@@ -1839,6 +1929,20 @@ export interface V1GetOrCreateOpticalTubeRequest {
1839
1929
  }
1840
1930
 
1841
1931
 
1932
+ /**
1933
+ *
1934
+ * @export
1935
+ * @enum {string}
1936
+ */
1937
+
1938
+ export const V1ImageFileType = {
1939
+ FITS: 'FITS',
1940
+ JPG: 'JPG'
1941
+ } as const;
1942
+
1943
+ export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
1944
+
1945
+
1842
1946
  /**
1843
1947
  * An image set represents a contiguous set of observations of the same target captured by the same node.
1844
1948
  * @export
@@ -2268,6 +2372,12 @@ export interface V1Node {
2268
2372
  * @memberof V1Node
2269
2373
  */
2270
2374
  'id': string;
2375
+ /**
2376
+ *
2377
+ * @type {string}
2378
+ * @memberof V1Node
2379
+ */
2380
+ 'lineageId': string;
2271
2381
  /**
2272
2382
  *
2273
2383
  * @type {Location}
@@ -4196,14 +4306,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4196
4306
  };
4197
4307
  },
4198
4308
  /**
4199
- * Get node by lineage id.
4200
- * @param {string} lineageId
4309
+ * Get node by lineage id or node id.
4310
+ * @param {string} [lineageId]
4311
+ * @param {string} [nodeId]
4201
4312
  * @param {*} [options] Override http request option.
4202
4313
  * @throws {RequiredError}
4203
4314
  */
4204
- v1GetNode: async (lineageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4205
- // verify required parameter 'lineageId' is not null or undefined
4206
- assertParamExists('v1GetNode', 'lineageId', lineageId)
4315
+ v1GetNode: async (lineageId?: string, nodeId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4207
4316
  const localVarPath = `/v1/node`;
4208
4317
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4209
4318
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4226,6 +4335,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4226
4335
  localVarQueryParameter['lineageId'] = lineageId;
4227
4336
  }
4228
4337
 
4338
+ if (nodeId !== undefined) {
4339
+ localVarQueryParameter['nodeId'] = nodeId;
4340
+ }
4341
+
4229
4342
 
4230
4343
 
4231
4344
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5174,13 +5287,14 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5174
5287
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5175
5288
  },
5176
5289
  /**
5177
- * Get node by lineage id.
5178
- * @param {string} lineageId
5290
+ * Get node by lineage id or node id.
5291
+ * @param {string} [lineageId]
5292
+ * @param {string} [nodeId]
5179
5293
  * @param {*} [options] Override http request option.
5180
5294
  * @throws {RequiredError}
5181
5295
  */
5182
- async v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>> {
5183
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNode(lineageId, options);
5296
+ async v1GetNode(lineageId?: string, nodeId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>> {
5297
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNode(lineageId, nodeId, options);
5184
5298
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5185
5299
  },
5186
5300
  /**
@@ -5640,13 +5754,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5640
5754
  return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
5641
5755
  },
5642
5756
  /**
5643
- * Get node by lineage id.
5757
+ * Get node by lineage id or node id.
5644
5758
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
5645
5759
  * @param {*} [options] Override http request option.
5646
5760
  * @throws {RequiredError}
5647
5761
  */
5648
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node> {
5649
- return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
5762
+ v1GetNode(requestParameters: DefaultApiV1GetNodeRequest = {}, options?: AxiosRequestConfig): AxiosPromise<V1Node> {
5763
+ return localVarFp.v1GetNode(requestParameters.lineageId, requestParameters.nodeId, options).then((request) => request(axios, basePath));
5650
5764
  },
5651
5765
  /**
5652
5766
  * Get nodes.
@@ -6302,7 +6416,14 @@ export interface DefaultApiV1GetNodeRequest {
6302
6416
  * @type {string}
6303
6417
  * @memberof DefaultApiV1GetNode
6304
6418
  */
6305
- readonly lineageId: string
6419
+ readonly lineageId?: string
6420
+
6421
+ /**
6422
+ *
6423
+ * @type {string}
6424
+ * @memberof DefaultApiV1GetNode
6425
+ */
6426
+ readonly nodeId?: string
6306
6427
  }
6307
6428
 
6308
6429
  /**
@@ -6897,14 +7018,14 @@ export class DefaultApi extends BaseAPI {
6897
7018
  }
6898
7019
 
6899
7020
  /**
6900
- * Get node by lineage id.
7021
+ * Get node by lineage id or node id.
6901
7022
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
6902
7023
  * @param {*} [options] Override http request option.
6903
7024
  * @throws {RequiredError}
6904
7025
  * @memberof DefaultApi
6905
7026
  */
6906
- public v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig) {
6907
- return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
7027
+ public v1GetNode(requestParameters: DefaultApiV1GetNodeRequest = {}, options?: AxiosRequestConfig) {
7028
+ return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
6908
7029
  }
6909
7030
 
6910
7031
  /**
package/base.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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -77,7 +77,7 @@ export interface DailyWeatherCity {
77
77
  */
78
78
  export interface DailyWeatherForecastItem {
79
79
  /**
80
- * Timestamp of the weather data
80
+ * Timestamp of the weather data in UNIX timestamp
81
81
  * @type {number}
82
82
  * @memberof DailyWeatherForecastItem
83
83
  */
@@ -261,6 +261,15 @@ export declare const FilterType: {
261
261
  readonly PHOTO_JOHNSON_V: "PHOTO_JOHNSON_V";
262
262
  readonly PHOTO_COUSINS_R: "PHOTO_COUSINS_R";
263
263
  readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
264
+ readonly PHOTO_SLOAN_U: "PHOTO_SLOAN_U";
265
+ readonly PHOTO_SLOAN_G: "PHOTO_SLOAN_G";
266
+ readonly PHOTO_SLOAN_R: "PHOTO_SLOAN_R";
267
+ readonly PHOTO_SLOAN_I: "PHOTO_SLOAN_I";
268
+ readonly PHOTO_SLOAN_Z: "PHOTO_SLOAN_Z";
269
+ readonly TRIPLE_BAND: "TRIPLE_BAND";
270
+ readonly QUAD_BAND: "QUAD_BAND";
271
+ readonly DARK: "DARK";
272
+ readonly OTHER: "OTHER";
264
273
  };
265
274
  export type FilterType = typeof FilterType[keyof typeof FilterType];
266
275
  /**
@@ -288,9 +297,44 @@ export interface FitsHeader {
288
297
  * @enum {string}
289
298
  */
290
299
  export declare const ImageSetType: {
300
+ readonly ASTRONOMICAL: "ASTRONOMICAL";
301
+ readonly EARTH_ORBITAL: "EARTH_ORBITAL";
302
+ readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
303
+ readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
291
304
  readonly ALL_SKY: "ALL_SKY";
292
305
  };
293
306
  export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
307
+ /**
308
+ * Stacked image integration times by filter
309
+ * @export
310
+ * @interface IntegrationTime
311
+ */
312
+ export interface IntegrationTime {
313
+ /**
314
+ *
315
+ * @type {FilterType}
316
+ * @memberof IntegrationTime
317
+ */
318
+ 'filterType': FilterType;
319
+ /**
320
+ *
321
+ * @type {number}
322
+ * @memberof IntegrationTime
323
+ */
324
+ 'imageCount': number;
325
+ /**
326
+ *
327
+ * @type {number}
328
+ * @memberof IntegrationTime
329
+ */
330
+ 'exposureDurationSeconds': number;
331
+ /**
332
+ *
333
+ * @type {number}
334
+ * @memberof IntegrationTime
335
+ */
336
+ 'combinedExposureSeconds': number;
337
+ }
294
338
  /**
295
339
  * Location
296
340
  * @export
@@ -546,6 +590,12 @@ export interface V1AstroProjectAsset {
546
590
  * @interface V1AstroProjectAssetMetadata
547
591
  */
548
592
  export interface V1AstroProjectAssetMetadata {
593
+ /**
594
+ *
595
+ * @type {Array<IntegrationTime>}
596
+ * @memberof V1AstroProjectAssetMetadata
597
+ */
598
+ 'integrationTime'?: Array<IntegrationTime>;
549
599
  /**
550
600
  *
551
601
  * @type {V1AstroProjectAssetMetadataColorCombination}
@@ -1271,9 +1321,45 @@ export interface V1CreateImageSetImageRequest {
1271
1321
  * @memberof V1CreateImageSetImageRequest
1272
1322
  */
1273
1323
  'imageSetId': string;
1324
+ /**
1325
+ *
1326
+ * @type {V1ImageFileType}
1327
+ * @memberof V1CreateImageSetImageRequest
1328
+ */
1329
+ 'imageFileType'?: V1ImageFileType;
1330
+ /**
1331
+ *
1332
+ * @type {number}
1333
+ * @memberof V1CreateImageSetImageRequest
1334
+ */
1335
+ 'binning'?: number;
1336
+ /**
1337
+ *
1338
+ * @type {number}
1339
+ * @memberof V1CreateImageSetImageRequest
1340
+ */
1341
+ 'exposureLength'?: number;
1342
+ /**
1343
+ *
1344
+ * @type {string}
1345
+ * @memberof V1CreateImageSetImageRequest
1346
+ */
1347
+ 'imageSha'?: string;
1348
+ /**
1349
+ *
1350
+ * @type {number}
1351
+ * @memberof V1CreateImageSetImageRequest
1352
+ */
1353
+ 'imageSizeMb'?: number;
1354
+ /**
1355
+ *
1356
+ * @type {string}
1357
+ * @memberof V1CreateImageSetImageRequest
1358
+ */
1359
+ 'capturedAt'?: string;
1274
1360
  }
1275
1361
  /**
1276
- *
1362
+ * Response from image creation, with image ID and presigned S3 upload URL.
1277
1363
  * @export
1278
1364
  * @interface V1CreateImageSetImageResponse
1279
1365
  */
@@ -1465,7 +1551,7 @@ export interface V1ElevationMaskPoint {
1465
1551
  'maxAltitudeDegrees': number;
1466
1552
  }
1467
1553
  /**
1468
- * Optical Tube
1554
+ * Focuser
1469
1555
  * @export
1470
1556
  * @interface V1Focuser
1471
1557
  */
@@ -1761,6 +1847,16 @@ export interface V1GetOrCreateOpticalTubeRequest {
1761
1847
  */
1762
1848
  'type'?: OpticalTubeType;
1763
1849
  }
1850
+ /**
1851
+ *
1852
+ * @export
1853
+ * @enum {string}
1854
+ */
1855
+ export declare const V1ImageFileType: {
1856
+ readonly FITS: "FITS";
1857
+ readonly JPG: "JPG";
1858
+ };
1859
+ export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
1764
1860
  /**
1765
1861
  * An image set represents a contiguous set of observations of the same target captured by the same node.
1766
1862
  * @export
@@ -2178,6 +2274,12 @@ export interface V1Node {
2178
2274
  * @memberof V1Node
2179
2275
  */
2180
2276
  'id': string;
2277
+ /**
2278
+ *
2279
+ * @type {string}
2280
+ * @memberof V1Node
2281
+ */
2282
+ 'lineageId': string;
2181
2283
  /**
2182
2284
  *
2183
2285
  * @type {Location}
@@ -2853,12 +2955,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2853
2955
  */
2854
2956
  v1GetJobLogs: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2855
2957
  /**
2856
- * Get node by lineage id.
2857
- * @param {string} lineageId
2958
+ * Get node by lineage id or node id.
2959
+ * @param {string} [lineageId]
2960
+ * @param {string} [nodeId]
2858
2961
  * @param {*} [options] Override http request option.
2859
2962
  * @throws {RequiredError}
2860
2963
  */
2861
- v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2964
+ v1GetNode: (lineageId?: string, nodeId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2862
2965
  /**
2863
2966
  * Get nodes.
2864
2967
  * @param {*} [options] Override http request option.
@@ -3216,12 +3319,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3216
3319
  */
3217
3320
  v1GetJobLogs(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1JobLog>>>;
3218
3321
  /**
3219
- * Get node by lineage id.
3220
- * @param {string} lineageId
3322
+ * Get node by lineage id or node id.
3323
+ * @param {string} [lineageId]
3324
+ * @param {string} [nodeId]
3221
3325
  * @param {*} [options] Override http request option.
3222
3326
  * @throws {RequiredError}
3223
3327
  */
3224
- v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
3328
+ v1GetNode(lineageId?: string, nodeId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
3225
3329
  /**
3226
3330
  * Get nodes.
3227
3331
  * @param {*} [options] Override http request option.
@@ -3566,12 +3670,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3566
3670
  */
3567
3671
  v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1JobLog>>;
3568
3672
  /**
3569
- * Get node by lineage id.
3673
+ * Get node by lineage id or node id.
3570
3674
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3571
3675
  * @param {*} [options] Override http request option.
3572
3676
  * @throws {RequiredError}
3573
3677
  */
3574
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3678
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3575
3679
  /**
3576
3680
  * Get nodes.
3577
3681
  * @param {*} [options] Override http request option.
@@ -4154,7 +4258,13 @@ export interface DefaultApiV1GetNodeRequest {
4154
4258
  * @type {string}
4155
4259
  * @memberof DefaultApiV1GetNode
4156
4260
  */
4157
- readonly lineageId: string;
4261
+ readonly lineageId?: string;
4262
+ /**
4263
+ *
4264
+ * @type {string}
4265
+ * @memberof DefaultApiV1GetNode
4266
+ */
4267
+ readonly nodeId?: string;
4158
4268
  }
4159
4269
  /**
4160
4270
  * Request parameters for v1GetOrCreateCamera operation in DefaultApi.
@@ -4625,13 +4735,13 @@ export declare class DefaultApi extends BaseAPI {
4625
4735
  */
4626
4736
  v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1JobLog[], any>>;
4627
4737
  /**
4628
- * Get node by lineage id.
4738
+ * Get node by lineage id or node id.
4629
4739
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
4630
4740
  * @param {*} [options] Override http request option.
4631
4741
  * @throws {RequiredError}
4632
4742
  * @memberof DefaultApi
4633
4743
  */
4634
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4744
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4635
4745
  /**
4636
4746
  * Get nodes.
4637
4747
  * @param {*} [options] Override http request option.
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.5667
8
+ * The version of the OpenAPI document: 1.3.8106
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.V1PlatformCreditUnit = exports.V1PlatformCreditType = exports.V1PlatformCreditSource = exports.V1JobStatus = exports.V1JobKind = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.ImageSetType = exports.FilterType = exports.CalibrationMasterType = exports.AssetType = exports.AssetFileType = void 0;
25
+ exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlatformCreditUnit = exports.V1PlatformCreditType = exports.V1PlatformCreditSource = exports.V1JobStatus = exports.V1JobKind = exports.V1ImageFileType = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.ImageSetType = exports.FilterType = exports.CalibrationMasterType = exports.AssetType = exports.AssetFileType = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -87,7 +87,16 @@ exports.FilterType = {
87
87
  PHOTO_JOHNSON_B: 'PHOTO_JOHNSON_B',
88
88
  PHOTO_JOHNSON_V: 'PHOTO_JOHNSON_V',
89
89
  PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
90
- PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
90
+ PHOTO_COUSINS_I: 'PHOTO_COUSINS_I',
91
+ PHOTO_SLOAN_U: 'PHOTO_SLOAN_U',
92
+ PHOTO_SLOAN_G: 'PHOTO_SLOAN_G',
93
+ PHOTO_SLOAN_R: 'PHOTO_SLOAN_R',
94
+ PHOTO_SLOAN_I: 'PHOTO_SLOAN_I',
95
+ PHOTO_SLOAN_Z: 'PHOTO_SLOAN_Z',
96
+ TRIPLE_BAND: 'TRIPLE_BAND',
97
+ QUAD_BAND: 'QUAD_BAND',
98
+ DARK: 'DARK',
99
+ OTHER: 'OTHER'
91
100
  };
92
101
  /**
93
102
  *
@@ -95,6 +104,10 @@ exports.FilterType = {
95
104
  * @enum {string}
96
105
  */
97
106
  exports.ImageSetType = {
107
+ ASTRONOMICAL: 'ASTRONOMICAL',
108
+ EARTH_ORBITAL: 'EARTH_ORBITAL',
109
+ GNSS_CALIBRATION: 'GNSS_CALIBRATION',
110
+ SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
98
111
  ALL_SKY: 'ALL_SKY'
99
112
  };
100
113
  /**
@@ -151,6 +164,15 @@ exports.TrackingType = {
151
164
  TARGET_RATE: 'TARGET_RATE',
152
165
  NONE: 'NONE'
153
166
  };
167
+ /**
168
+ *
169
+ * @export
170
+ * @enum {string}
171
+ */
172
+ exports.V1ImageFileType = {
173
+ FITS: 'FITS',
174
+ JPG: 'JPG'
175
+ };
154
176
  /**
155
177
  *
156
178
  * @export
@@ -1404,14 +1426,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1404
1426
  };
1405
1427
  }),
1406
1428
  /**
1407
- * Get node by lineage id.
1408
- * @param {string} lineageId
1429
+ * Get node by lineage id or node id.
1430
+ * @param {string} [lineageId]
1431
+ * @param {string} [nodeId]
1409
1432
  * @param {*} [options] Override http request option.
1410
1433
  * @throws {RequiredError}
1411
1434
  */
1412
- v1GetNode: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1413
- // verify required parameter 'lineageId' is not null or undefined
1414
- (0, common_1.assertParamExists)('v1GetNode', 'lineageId', lineageId);
1435
+ v1GetNode: (lineageId, nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1415
1436
  const localVarPath = `/v1/node`;
1416
1437
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1417
1438
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1429,6 +1450,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1429
1450
  if (lineageId !== undefined) {
1430
1451
  localVarQueryParameter['lineageId'] = lineageId;
1431
1452
  }
1453
+ if (nodeId !== undefined) {
1454
+ localVarQueryParameter['nodeId'] = nodeId;
1455
+ }
1432
1456
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1433
1457
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1434
1458
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -2335,14 +2359,15 @@ const DefaultApiFp = function (configuration) {
2335
2359
  });
2336
2360
  },
2337
2361
  /**
2338
- * Get node by lineage id.
2339
- * @param {string} lineageId
2362
+ * Get node by lineage id or node id.
2363
+ * @param {string} [lineageId]
2364
+ * @param {string} [nodeId]
2340
2365
  * @param {*} [options] Override http request option.
2341
2366
  * @throws {RequiredError}
2342
2367
  */
2343
- v1GetNode(lineageId, options) {
2368
+ v1GetNode(lineageId, nodeId, options) {
2344
2369
  return __awaiter(this, void 0, void 0, function* () {
2345
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, options);
2370
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, nodeId, options);
2346
2371
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2347
2372
  });
2348
2373
  },
@@ -2829,13 +2854,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2829
2854
  return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
2830
2855
  },
2831
2856
  /**
2832
- * Get node by lineage id.
2857
+ * Get node by lineage id or node id.
2833
2858
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
2834
2859
  * @param {*} [options] Override http request option.
2835
2860
  * @throws {RequiredError}
2836
2861
  */
2837
- v1GetNode(requestParameters, options) {
2838
- return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
2862
+ v1GetNode(requestParameters = {}, options) {
2863
+ return localVarFp.v1GetNode(requestParameters.lineageId, requestParameters.nodeId, options).then((request) => request(axios, basePath));
2839
2864
  },
2840
2865
  /**
2841
2866
  * Get nodes.
@@ -3309,14 +3334,14 @@ class DefaultApi extends base_1.BaseAPI {
3309
3334
  return (0, exports.DefaultApiFp)(this.configuration).v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
3310
3335
  }
3311
3336
  /**
3312
- * Get node by lineage id.
3337
+ * Get node by lineage id or node id.
3313
3338
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3314
3339
  * @param {*} [options] Override http request option.
3315
3340
  * @throws {RequiredError}
3316
3341
  * @memberof DefaultApi
3317
3342
  */
3318
- v1GetNode(requestParameters, options) {
3319
- return (0, exports.DefaultApiFp)(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
3343
+ v1GetNode(requestParameters = {}, options) {
3344
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetNode(requestParameters.lineageId, requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
3320
3345
  }
3321
3346
  /**
3322
3347
  * Get nodes.
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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
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.5667
8
+ * The version of the OpenAPI document: 1.3.8106
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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
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.5667
8
+ * The version of the OpenAPI document: 1.3.8106
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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
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.5667
8
+ * The version of the OpenAPI document: 1.3.8106
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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -77,7 +77,7 @@ export interface DailyWeatherCity {
77
77
  */
78
78
  export interface DailyWeatherForecastItem {
79
79
  /**
80
- * Timestamp of the weather data
80
+ * Timestamp of the weather data in UNIX timestamp
81
81
  * @type {number}
82
82
  * @memberof DailyWeatherForecastItem
83
83
  */
@@ -261,6 +261,15 @@ export declare const FilterType: {
261
261
  readonly PHOTO_JOHNSON_V: "PHOTO_JOHNSON_V";
262
262
  readonly PHOTO_COUSINS_R: "PHOTO_COUSINS_R";
263
263
  readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
264
+ readonly PHOTO_SLOAN_U: "PHOTO_SLOAN_U";
265
+ readonly PHOTO_SLOAN_G: "PHOTO_SLOAN_G";
266
+ readonly PHOTO_SLOAN_R: "PHOTO_SLOAN_R";
267
+ readonly PHOTO_SLOAN_I: "PHOTO_SLOAN_I";
268
+ readonly PHOTO_SLOAN_Z: "PHOTO_SLOAN_Z";
269
+ readonly TRIPLE_BAND: "TRIPLE_BAND";
270
+ readonly QUAD_BAND: "QUAD_BAND";
271
+ readonly DARK: "DARK";
272
+ readonly OTHER: "OTHER";
264
273
  };
265
274
  export type FilterType = typeof FilterType[keyof typeof FilterType];
266
275
  /**
@@ -288,9 +297,44 @@ export interface FitsHeader {
288
297
  * @enum {string}
289
298
  */
290
299
  export declare const ImageSetType: {
300
+ readonly ASTRONOMICAL: "ASTRONOMICAL";
301
+ readonly EARTH_ORBITAL: "EARTH_ORBITAL";
302
+ readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
303
+ readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
291
304
  readonly ALL_SKY: "ALL_SKY";
292
305
  };
293
306
  export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
307
+ /**
308
+ * Stacked image integration times by filter
309
+ * @export
310
+ * @interface IntegrationTime
311
+ */
312
+ export interface IntegrationTime {
313
+ /**
314
+ *
315
+ * @type {FilterType}
316
+ * @memberof IntegrationTime
317
+ */
318
+ 'filterType': FilterType;
319
+ /**
320
+ *
321
+ * @type {number}
322
+ * @memberof IntegrationTime
323
+ */
324
+ 'imageCount': number;
325
+ /**
326
+ *
327
+ * @type {number}
328
+ * @memberof IntegrationTime
329
+ */
330
+ 'exposureDurationSeconds': number;
331
+ /**
332
+ *
333
+ * @type {number}
334
+ * @memberof IntegrationTime
335
+ */
336
+ 'combinedExposureSeconds': number;
337
+ }
294
338
  /**
295
339
  * Location
296
340
  * @export
@@ -546,6 +590,12 @@ export interface V1AstroProjectAsset {
546
590
  * @interface V1AstroProjectAssetMetadata
547
591
  */
548
592
  export interface V1AstroProjectAssetMetadata {
593
+ /**
594
+ *
595
+ * @type {Array<IntegrationTime>}
596
+ * @memberof V1AstroProjectAssetMetadata
597
+ */
598
+ 'integrationTime'?: Array<IntegrationTime>;
549
599
  /**
550
600
  *
551
601
  * @type {V1AstroProjectAssetMetadataColorCombination}
@@ -1271,9 +1321,45 @@ export interface V1CreateImageSetImageRequest {
1271
1321
  * @memberof V1CreateImageSetImageRequest
1272
1322
  */
1273
1323
  'imageSetId': string;
1324
+ /**
1325
+ *
1326
+ * @type {V1ImageFileType}
1327
+ * @memberof V1CreateImageSetImageRequest
1328
+ */
1329
+ 'imageFileType'?: V1ImageFileType;
1330
+ /**
1331
+ *
1332
+ * @type {number}
1333
+ * @memberof V1CreateImageSetImageRequest
1334
+ */
1335
+ 'binning'?: number;
1336
+ /**
1337
+ *
1338
+ * @type {number}
1339
+ * @memberof V1CreateImageSetImageRequest
1340
+ */
1341
+ 'exposureLength'?: number;
1342
+ /**
1343
+ *
1344
+ * @type {string}
1345
+ * @memberof V1CreateImageSetImageRequest
1346
+ */
1347
+ 'imageSha'?: string;
1348
+ /**
1349
+ *
1350
+ * @type {number}
1351
+ * @memberof V1CreateImageSetImageRequest
1352
+ */
1353
+ 'imageSizeMb'?: number;
1354
+ /**
1355
+ *
1356
+ * @type {string}
1357
+ * @memberof V1CreateImageSetImageRequest
1358
+ */
1359
+ 'capturedAt'?: string;
1274
1360
  }
1275
1361
  /**
1276
- *
1362
+ * Response from image creation, with image ID and presigned S3 upload URL.
1277
1363
  * @export
1278
1364
  * @interface V1CreateImageSetImageResponse
1279
1365
  */
@@ -1465,7 +1551,7 @@ export interface V1ElevationMaskPoint {
1465
1551
  'maxAltitudeDegrees': number;
1466
1552
  }
1467
1553
  /**
1468
- * Optical Tube
1554
+ * Focuser
1469
1555
  * @export
1470
1556
  * @interface V1Focuser
1471
1557
  */
@@ -1761,6 +1847,16 @@ export interface V1GetOrCreateOpticalTubeRequest {
1761
1847
  */
1762
1848
  'type'?: OpticalTubeType;
1763
1849
  }
1850
+ /**
1851
+ *
1852
+ * @export
1853
+ * @enum {string}
1854
+ */
1855
+ export declare const V1ImageFileType: {
1856
+ readonly FITS: "FITS";
1857
+ readonly JPG: "JPG";
1858
+ };
1859
+ export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
1764
1860
  /**
1765
1861
  * An image set represents a contiguous set of observations of the same target captured by the same node.
1766
1862
  * @export
@@ -2178,6 +2274,12 @@ export interface V1Node {
2178
2274
  * @memberof V1Node
2179
2275
  */
2180
2276
  'id': string;
2277
+ /**
2278
+ *
2279
+ * @type {string}
2280
+ * @memberof V1Node
2281
+ */
2282
+ 'lineageId': string;
2181
2283
  /**
2182
2284
  *
2183
2285
  * @type {Location}
@@ -2853,12 +2955,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2853
2955
  */
2854
2956
  v1GetJobLogs: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2855
2957
  /**
2856
- * Get node by lineage id.
2857
- * @param {string} lineageId
2958
+ * Get node by lineage id or node id.
2959
+ * @param {string} [lineageId]
2960
+ * @param {string} [nodeId]
2858
2961
  * @param {*} [options] Override http request option.
2859
2962
  * @throws {RequiredError}
2860
2963
  */
2861
- v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2964
+ v1GetNode: (lineageId?: string, nodeId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2862
2965
  /**
2863
2966
  * Get nodes.
2864
2967
  * @param {*} [options] Override http request option.
@@ -3216,12 +3319,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3216
3319
  */
3217
3320
  v1GetJobLogs(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1JobLog>>>;
3218
3321
  /**
3219
- * Get node by lineage id.
3220
- * @param {string} lineageId
3322
+ * Get node by lineage id or node id.
3323
+ * @param {string} [lineageId]
3324
+ * @param {string} [nodeId]
3221
3325
  * @param {*} [options] Override http request option.
3222
3326
  * @throws {RequiredError}
3223
3327
  */
3224
- v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
3328
+ v1GetNode(lineageId?: string, nodeId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
3225
3329
  /**
3226
3330
  * Get nodes.
3227
3331
  * @param {*} [options] Override http request option.
@@ -3566,12 +3670,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3566
3670
  */
3567
3671
  v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1JobLog>>;
3568
3672
  /**
3569
- * Get node by lineage id.
3673
+ * Get node by lineage id or node id.
3570
3674
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3571
3675
  * @param {*} [options] Override http request option.
3572
3676
  * @throws {RequiredError}
3573
3677
  */
3574
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3678
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3575
3679
  /**
3576
3680
  * Get nodes.
3577
3681
  * @param {*} [options] Override http request option.
@@ -4154,7 +4258,13 @@ export interface DefaultApiV1GetNodeRequest {
4154
4258
  * @type {string}
4155
4259
  * @memberof DefaultApiV1GetNode
4156
4260
  */
4157
- readonly lineageId: string;
4261
+ readonly lineageId?: string;
4262
+ /**
4263
+ *
4264
+ * @type {string}
4265
+ * @memberof DefaultApiV1GetNode
4266
+ */
4267
+ readonly nodeId?: string;
4158
4268
  }
4159
4269
  /**
4160
4270
  * Request parameters for v1GetOrCreateCamera operation in DefaultApi.
@@ -4625,13 +4735,13 @@ export declare class DefaultApi extends BaseAPI {
4625
4735
  */
4626
4736
  v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1JobLog[], any>>;
4627
4737
  /**
4628
- * Get node by lineage id.
4738
+ * Get node by lineage id or node id.
4629
4739
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
4630
4740
  * @param {*} [options] Override http request option.
4631
4741
  * @throws {RequiredError}
4632
4742
  * @memberof DefaultApi
4633
4743
  */
4634
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4744
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4635
4745
  /**
4636
4746
  * Get nodes.
4637
4747
  * @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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -84,7 +84,16 @@ export const FilterType = {
84
84
  PHOTO_JOHNSON_B: 'PHOTO_JOHNSON_B',
85
85
  PHOTO_JOHNSON_V: 'PHOTO_JOHNSON_V',
86
86
  PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
87
- PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
87
+ PHOTO_COUSINS_I: 'PHOTO_COUSINS_I',
88
+ PHOTO_SLOAN_U: 'PHOTO_SLOAN_U',
89
+ PHOTO_SLOAN_G: 'PHOTO_SLOAN_G',
90
+ PHOTO_SLOAN_R: 'PHOTO_SLOAN_R',
91
+ PHOTO_SLOAN_I: 'PHOTO_SLOAN_I',
92
+ PHOTO_SLOAN_Z: 'PHOTO_SLOAN_Z',
93
+ TRIPLE_BAND: 'TRIPLE_BAND',
94
+ QUAD_BAND: 'QUAD_BAND',
95
+ DARK: 'DARK',
96
+ OTHER: 'OTHER'
88
97
  };
89
98
  /**
90
99
  *
@@ -92,6 +101,10 @@ export const FilterType = {
92
101
  * @enum {string}
93
102
  */
94
103
  export const ImageSetType = {
104
+ ASTRONOMICAL: 'ASTRONOMICAL',
105
+ EARTH_ORBITAL: 'EARTH_ORBITAL',
106
+ GNSS_CALIBRATION: 'GNSS_CALIBRATION',
107
+ SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
95
108
  ALL_SKY: 'ALL_SKY'
96
109
  };
97
110
  /**
@@ -148,6 +161,15 @@ export const TrackingType = {
148
161
  TARGET_RATE: 'TARGET_RATE',
149
162
  NONE: 'NONE'
150
163
  };
164
+ /**
165
+ *
166
+ * @export
167
+ * @enum {string}
168
+ */
169
+ export const V1ImageFileType = {
170
+ FITS: 'FITS',
171
+ JPG: 'JPG'
172
+ };
151
173
  /**
152
174
  *
153
175
  * @export
@@ -1401,14 +1423,13 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1401
1423
  };
1402
1424
  }),
1403
1425
  /**
1404
- * Get node by lineage id.
1405
- * @param {string} lineageId
1426
+ * Get node by lineage id or node id.
1427
+ * @param {string} [lineageId]
1428
+ * @param {string} [nodeId]
1406
1429
  * @param {*} [options] Override http request option.
1407
1430
  * @throws {RequiredError}
1408
1431
  */
1409
- v1GetNode: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1410
- // verify required parameter 'lineageId' is not null or undefined
1411
- assertParamExists('v1GetNode', 'lineageId', lineageId);
1432
+ v1GetNode: (lineageId, nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1412
1433
  const localVarPath = `/v1/node`;
1413
1434
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1414
1435
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1426,6 +1447,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1426
1447
  if (lineageId !== undefined) {
1427
1448
  localVarQueryParameter['lineageId'] = lineageId;
1428
1449
  }
1450
+ if (nodeId !== undefined) {
1451
+ localVarQueryParameter['nodeId'] = nodeId;
1452
+ }
1429
1453
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1430
1454
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1431
1455
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -2331,14 +2355,15 @@ export const DefaultApiFp = function (configuration) {
2331
2355
  });
2332
2356
  },
2333
2357
  /**
2334
- * Get node by lineage id.
2335
- * @param {string} lineageId
2358
+ * Get node by lineage id or node id.
2359
+ * @param {string} [lineageId]
2360
+ * @param {string} [nodeId]
2336
2361
  * @param {*} [options] Override http request option.
2337
2362
  * @throws {RequiredError}
2338
2363
  */
2339
- v1GetNode(lineageId, options) {
2364
+ v1GetNode(lineageId, nodeId, options) {
2340
2365
  return __awaiter(this, void 0, void 0, function* () {
2341
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, options);
2366
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, nodeId, options);
2342
2367
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2343
2368
  });
2344
2369
  },
@@ -2824,13 +2849,13 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2824
2849
  return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
2825
2850
  },
2826
2851
  /**
2827
- * Get node by lineage id.
2852
+ * Get node by lineage id or node id.
2828
2853
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
2829
2854
  * @param {*} [options] Override http request option.
2830
2855
  * @throws {RequiredError}
2831
2856
  */
2832
- v1GetNode(requestParameters, options) {
2833
- return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
2857
+ v1GetNode(requestParameters = {}, options) {
2858
+ return localVarFp.v1GetNode(requestParameters.lineageId, requestParameters.nodeId, options).then((request) => request(axios, basePath));
2834
2859
  },
2835
2860
  /**
2836
2861
  * Get nodes.
@@ -3303,14 +3328,14 @@ export class DefaultApi extends BaseAPI {
3303
3328
  return DefaultApiFp(this.configuration).v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
3304
3329
  }
3305
3330
  /**
3306
- * Get node by lineage id.
3331
+ * Get node by lineage id or node id.
3307
3332
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3308
3333
  * @param {*} [options] Override http request option.
3309
3334
  * @throws {RequiredError}
3310
3335
  * @memberof DefaultApi
3311
3336
  */
3312
- v1GetNode(requestParameters, options) {
3313
- return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
3337
+ v1GetNode(requestParameters = {}, options) {
3338
+ return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
3314
3339
  }
3315
3340
  /**
3316
3341
  * Get nodes.
@@ -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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
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.5667
5
+ * The version of the OpenAPI document: 1.3.8106
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.5667
8
+ * The version of the OpenAPI document: 1.3.8106
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.5667
7
+ * The version of the OpenAPI document: 1.3.8106
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourskyai/astro-api",
3
- "version": "1.3.5667",
3
+ "version": "1.3.8106",
4
4
  "description": "OpenAPI client for @ourskyai/astro-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {