@ourskyai/astro-api 1.3.6669 → 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.6669
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.6669 --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.6669
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];
@@ -1420,7 +1429,7 @@ export interface V1CreateImageSetImageRequest {
1420
1429
 
1421
1430
 
1422
1431
  /**
1423
- *
1432
+ * Response from image creation, with image ID and presigned S3 upload URL.
1424
1433
  * @export
1425
1434
  * @interface V1CreateImageSetImageResponse
1426
1435
  */
@@ -4297,14 +4306,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4297
4306
  };
4298
4307
  },
4299
4308
  /**
4300
- * Get node by lineage id.
4301
- * @param {string} lineageId
4309
+ * Get node by lineage id or node id.
4310
+ * @param {string} [lineageId]
4311
+ * @param {string} [nodeId]
4302
4312
  * @param {*} [options] Override http request option.
4303
4313
  * @throws {RequiredError}
4304
4314
  */
4305
- v1GetNode: async (lineageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4306
- // verify required parameter 'lineageId' is not null or undefined
4307
- assertParamExists('v1GetNode', 'lineageId', lineageId)
4315
+ v1GetNode: async (lineageId?: string, nodeId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4308
4316
  const localVarPath = `/v1/node`;
4309
4317
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4310
4318
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4327,6 +4335,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4327
4335
  localVarQueryParameter['lineageId'] = lineageId;
4328
4336
  }
4329
4337
 
4338
+ if (nodeId !== undefined) {
4339
+ localVarQueryParameter['nodeId'] = nodeId;
4340
+ }
4341
+
4330
4342
 
4331
4343
 
4332
4344
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5275,13 +5287,14 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5275
5287
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5276
5288
  },
5277
5289
  /**
5278
- * Get node by lineage id.
5279
- * @param {string} lineageId
5290
+ * Get node by lineage id or node id.
5291
+ * @param {string} [lineageId]
5292
+ * @param {string} [nodeId]
5280
5293
  * @param {*} [options] Override http request option.
5281
5294
  * @throws {RequiredError}
5282
5295
  */
5283
- async v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>> {
5284
- 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);
5285
5298
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5286
5299
  },
5287
5300
  /**
@@ -5741,13 +5754,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5741
5754
  return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
5742
5755
  },
5743
5756
  /**
5744
- * Get node by lineage id.
5757
+ * Get node by lineage id or node id.
5745
5758
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
5746
5759
  * @param {*} [options] Override http request option.
5747
5760
  * @throws {RequiredError}
5748
5761
  */
5749
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node> {
5750
- 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));
5751
5764
  },
5752
5765
  /**
5753
5766
  * Get nodes.
@@ -6403,7 +6416,14 @@ export interface DefaultApiV1GetNodeRequest {
6403
6416
  * @type {string}
6404
6417
  * @memberof DefaultApiV1GetNode
6405
6418
  */
6406
- readonly lineageId: string
6419
+ readonly lineageId?: string
6420
+
6421
+ /**
6422
+ *
6423
+ * @type {string}
6424
+ * @memberof DefaultApiV1GetNode
6425
+ */
6426
+ readonly nodeId?: string
6407
6427
  }
6408
6428
 
6409
6429
  /**
@@ -6998,14 +7018,14 @@ export class DefaultApi extends BaseAPI {
6998
7018
  }
6999
7019
 
7000
7020
  /**
7001
- * Get node by lineage id.
7021
+ * Get node by lineage id or node id.
7002
7022
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
7003
7023
  * @param {*} [options] Override http request option.
7004
7024
  * @throws {RequiredError}
7005
7025
  * @memberof DefaultApi
7006
7026
  */
7007
- public v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig) {
7008
- 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));
7009
7029
  }
7010
7030
 
7011
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.6669
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.6669
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.6669
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.6669
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
  /**
@@ -1350,7 +1359,7 @@ export interface V1CreateImageSetImageRequest {
1350
1359
  'capturedAt'?: string;
1351
1360
  }
1352
1361
  /**
1353
- *
1362
+ * Response from image creation, with image ID and presigned S3 upload URL.
1354
1363
  * @export
1355
1364
  * @interface V1CreateImageSetImageResponse
1356
1365
  */
@@ -2946,12 +2955,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2946
2955
  */
2947
2956
  v1GetJobLogs: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2948
2957
  /**
2949
- * Get node by lineage id.
2950
- * @param {string} lineageId
2958
+ * Get node by lineage id or node id.
2959
+ * @param {string} [lineageId]
2960
+ * @param {string} [nodeId]
2951
2961
  * @param {*} [options] Override http request option.
2952
2962
  * @throws {RequiredError}
2953
2963
  */
2954
- v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2964
+ v1GetNode: (lineageId?: string, nodeId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2955
2965
  /**
2956
2966
  * Get nodes.
2957
2967
  * @param {*} [options] Override http request option.
@@ -3309,12 +3319,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3309
3319
  */
3310
3320
  v1GetJobLogs(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1JobLog>>>;
3311
3321
  /**
3312
- * Get node by lineage id.
3313
- * @param {string} lineageId
3322
+ * Get node by lineage id or node id.
3323
+ * @param {string} [lineageId]
3324
+ * @param {string} [nodeId]
3314
3325
  * @param {*} [options] Override http request option.
3315
3326
  * @throws {RequiredError}
3316
3327
  */
3317
- 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>>;
3318
3329
  /**
3319
3330
  * Get nodes.
3320
3331
  * @param {*} [options] Override http request option.
@@ -3659,12 +3670,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3659
3670
  */
3660
3671
  v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1JobLog>>;
3661
3672
  /**
3662
- * Get node by lineage id.
3673
+ * Get node by lineage id or node id.
3663
3674
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3664
3675
  * @param {*} [options] Override http request option.
3665
3676
  * @throws {RequiredError}
3666
3677
  */
3667
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3678
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3668
3679
  /**
3669
3680
  * Get nodes.
3670
3681
  * @param {*} [options] Override http request option.
@@ -4247,7 +4258,13 @@ export interface DefaultApiV1GetNodeRequest {
4247
4258
  * @type {string}
4248
4259
  * @memberof DefaultApiV1GetNode
4249
4260
  */
4250
- readonly lineageId: string;
4261
+ readonly lineageId?: string;
4262
+ /**
4263
+ *
4264
+ * @type {string}
4265
+ * @memberof DefaultApiV1GetNode
4266
+ */
4267
+ readonly nodeId?: string;
4251
4268
  }
4252
4269
  /**
4253
4270
  * Request parameters for v1GetOrCreateCamera operation in DefaultApi.
@@ -4718,13 +4735,13 @@ export declare class DefaultApi extends BaseAPI {
4718
4735
  */
4719
4736
  v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1JobLog[], any>>;
4720
4737
  /**
4721
- * Get node by lineage id.
4738
+ * Get node by lineage id or node id.
4722
4739
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
4723
4740
  * @param {*} [options] Override http request option.
4724
4741
  * @throws {RequiredError}
4725
4742
  * @memberof DefaultApi
4726
4743
  */
4727
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4744
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4728
4745
  /**
4729
4746
  * Get nodes.
4730
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.6669
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).
@@ -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
  *
@@ -1417,14 +1426,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1417
1426
  };
1418
1427
  }),
1419
1428
  /**
1420
- * Get node by lineage id.
1421
- * @param {string} lineageId
1429
+ * Get node by lineage id or node id.
1430
+ * @param {string} [lineageId]
1431
+ * @param {string} [nodeId]
1422
1432
  * @param {*} [options] Override http request option.
1423
1433
  * @throws {RequiredError}
1424
1434
  */
1425
- v1GetNode: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1426
- // verify required parameter 'lineageId' is not null or undefined
1427
- (0, common_1.assertParamExists)('v1GetNode', 'lineageId', lineageId);
1435
+ v1GetNode: (lineageId, nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1428
1436
  const localVarPath = `/v1/node`;
1429
1437
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1430
1438
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1442,6 +1450,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1442
1450
  if (lineageId !== undefined) {
1443
1451
  localVarQueryParameter['lineageId'] = lineageId;
1444
1452
  }
1453
+ if (nodeId !== undefined) {
1454
+ localVarQueryParameter['nodeId'] = nodeId;
1455
+ }
1445
1456
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1446
1457
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1447
1458
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -2348,14 +2359,15 @@ const DefaultApiFp = function (configuration) {
2348
2359
  });
2349
2360
  },
2350
2361
  /**
2351
- * Get node by lineage id.
2352
- * @param {string} lineageId
2362
+ * Get node by lineage id or node id.
2363
+ * @param {string} [lineageId]
2364
+ * @param {string} [nodeId]
2353
2365
  * @param {*} [options] Override http request option.
2354
2366
  * @throws {RequiredError}
2355
2367
  */
2356
- v1GetNode(lineageId, options) {
2368
+ v1GetNode(lineageId, nodeId, options) {
2357
2369
  return __awaiter(this, void 0, void 0, function* () {
2358
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, options);
2370
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, nodeId, options);
2359
2371
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2360
2372
  });
2361
2373
  },
@@ -2842,13 +2854,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2842
2854
  return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
2843
2855
  },
2844
2856
  /**
2845
- * Get node by lineage id.
2857
+ * Get node by lineage id or node id.
2846
2858
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
2847
2859
  * @param {*} [options] Override http request option.
2848
2860
  * @throws {RequiredError}
2849
2861
  */
2850
- v1GetNode(requestParameters, options) {
2851
- 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));
2852
2864
  },
2853
2865
  /**
2854
2866
  * Get nodes.
@@ -3322,14 +3334,14 @@ class DefaultApi extends base_1.BaseAPI {
3322
3334
  return (0, exports.DefaultApiFp)(this.configuration).v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
3323
3335
  }
3324
3336
  /**
3325
- * Get node by lineage id.
3337
+ * Get node by lineage id or node id.
3326
3338
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3327
3339
  * @param {*} [options] Override http request option.
3328
3340
  * @throws {RequiredError}
3329
3341
  * @memberof DefaultApi
3330
3342
  */
3331
- v1GetNode(requestParameters, options) {
3332
- 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));
3333
3345
  }
3334
3346
  /**
3335
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669
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
  /**
@@ -1350,7 +1359,7 @@ export interface V1CreateImageSetImageRequest {
1350
1359
  'capturedAt'?: string;
1351
1360
  }
1352
1361
  /**
1353
- *
1362
+ * Response from image creation, with image ID and presigned S3 upload URL.
1354
1363
  * @export
1355
1364
  * @interface V1CreateImageSetImageResponse
1356
1365
  */
@@ -2946,12 +2955,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2946
2955
  */
2947
2956
  v1GetJobLogs: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2948
2957
  /**
2949
- * Get node by lineage id.
2950
- * @param {string} lineageId
2958
+ * Get node by lineage id or node id.
2959
+ * @param {string} [lineageId]
2960
+ * @param {string} [nodeId]
2951
2961
  * @param {*} [options] Override http request option.
2952
2962
  * @throws {RequiredError}
2953
2963
  */
2954
- v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2964
+ v1GetNode: (lineageId?: string, nodeId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2955
2965
  /**
2956
2966
  * Get nodes.
2957
2967
  * @param {*} [options] Override http request option.
@@ -3309,12 +3319,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3309
3319
  */
3310
3320
  v1GetJobLogs(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1JobLog>>>;
3311
3321
  /**
3312
- * Get node by lineage id.
3313
- * @param {string} lineageId
3322
+ * Get node by lineage id or node id.
3323
+ * @param {string} [lineageId]
3324
+ * @param {string} [nodeId]
3314
3325
  * @param {*} [options] Override http request option.
3315
3326
  * @throws {RequiredError}
3316
3327
  */
3317
- 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>>;
3318
3329
  /**
3319
3330
  * Get nodes.
3320
3331
  * @param {*} [options] Override http request option.
@@ -3659,12 +3670,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3659
3670
  */
3660
3671
  v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1JobLog>>;
3661
3672
  /**
3662
- * Get node by lineage id.
3673
+ * Get node by lineage id or node id.
3663
3674
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3664
3675
  * @param {*} [options] Override http request option.
3665
3676
  * @throws {RequiredError}
3666
3677
  */
3667
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3678
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
3668
3679
  /**
3669
3680
  * Get nodes.
3670
3681
  * @param {*} [options] Override http request option.
@@ -4247,7 +4258,13 @@ export interface DefaultApiV1GetNodeRequest {
4247
4258
  * @type {string}
4248
4259
  * @memberof DefaultApiV1GetNode
4249
4260
  */
4250
- readonly lineageId: string;
4261
+ readonly lineageId?: string;
4262
+ /**
4263
+ *
4264
+ * @type {string}
4265
+ * @memberof DefaultApiV1GetNode
4266
+ */
4267
+ readonly nodeId?: string;
4251
4268
  }
4252
4269
  /**
4253
4270
  * Request parameters for v1GetOrCreateCamera operation in DefaultApi.
@@ -4718,13 +4735,13 @@ export declare class DefaultApi extends BaseAPI {
4718
4735
  */
4719
4736
  v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1JobLog[], any>>;
4720
4737
  /**
4721
- * Get node by lineage id.
4738
+ * Get node by lineage id or node id.
4722
4739
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
4723
4740
  * @param {*} [options] Override http request option.
4724
4741
  * @throws {RequiredError}
4725
4742
  * @memberof DefaultApi
4726
4743
  */
4727
- v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4744
+ v1GetNode(requestParameters?: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
4728
4745
  /**
4729
4746
  * Get nodes.
4730
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.6669
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
  *
@@ -1414,14 +1423,13 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1414
1423
  };
1415
1424
  }),
1416
1425
  /**
1417
- * Get node by lineage id.
1418
- * @param {string} lineageId
1426
+ * Get node by lineage id or node id.
1427
+ * @param {string} [lineageId]
1428
+ * @param {string} [nodeId]
1419
1429
  * @param {*} [options] Override http request option.
1420
1430
  * @throws {RequiredError}
1421
1431
  */
1422
- v1GetNode: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1423
- // verify required parameter 'lineageId' is not null or undefined
1424
- assertParamExists('v1GetNode', 'lineageId', lineageId);
1432
+ v1GetNode: (lineageId, nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1425
1433
  const localVarPath = `/v1/node`;
1426
1434
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1427
1435
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1439,6 +1447,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1439
1447
  if (lineageId !== undefined) {
1440
1448
  localVarQueryParameter['lineageId'] = lineageId;
1441
1449
  }
1450
+ if (nodeId !== undefined) {
1451
+ localVarQueryParameter['nodeId'] = nodeId;
1452
+ }
1442
1453
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1443
1454
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1444
1455
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -2344,14 +2355,15 @@ export const DefaultApiFp = function (configuration) {
2344
2355
  });
2345
2356
  },
2346
2357
  /**
2347
- * Get node by lineage id.
2348
- * @param {string} lineageId
2358
+ * Get node by lineage id or node id.
2359
+ * @param {string} [lineageId]
2360
+ * @param {string} [nodeId]
2349
2361
  * @param {*} [options] Override http request option.
2350
2362
  * @throws {RequiredError}
2351
2363
  */
2352
- v1GetNode(lineageId, options) {
2364
+ v1GetNode(lineageId, nodeId, options) {
2353
2365
  return __awaiter(this, void 0, void 0, function* () {
2354
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, options);
2366
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, nodeId, options);
2355
2367
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2356
2368
  });
2357
2369
  },
@@ -2837,13 +2849,13 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2837
2849
  return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
2838
2850
  },
2839
2851
  /**
2840
- * Get node by lineage id.
2852
+ * Get node by lineage id or node id.
2841
2853
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
2842
2854
  * @param {*} [options] Override http request option.
2843
2855
  * @throws {RequiredError}
2844
2856
  */
2845
- v1GetNode(requestParameters, options) {
2846
- 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));
2847
2859
  },
2848
2860
  /**
2849
2861
  * Get nodes.
@@ -3316,14 +3328,14 @@ export class DefaultApi extends BaseAPI {
3316
3328
  return DefaultApiFp(this.configuration).v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
3317
3329
  }
3318
3330
  /**
3319
- * Get node by lineage id.
3331
+ * Get node by lineage id or node id.
3320
3332
  * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3321
3333
  * @param {*} [options] Override http request option.
3322
3334
  * @throws {RequiredError}
3323
3335
  * @memberof DefaultApi
3324
3336
  */
3325
- v1GetNode(requestParameters, options) {
3326
- 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));
3327
3339
  }
3328
3340
  /**
3329
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669
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.6669",
3
+ "version": "1.3.8106",
4
4
  "description": "OpenAPI client for @ourskyai/astro-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {