@ourskyai/astro-api 1.3.5391 → 1.3.5447

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.5391
1
+ ## @ourskyai/astro-api@1.3.5447
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.5391 --save
39
+ npm install @ourskyai/astro-api@1.3.5447 --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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -308,6 +308,19 @@ export interface FitsHeader {
308
308
  */
309
309
  'value': string;
310
310
  }
311
+ /**
312
+ *
313
+ * @export
314
+ * @enum {string}
315
+ */
316
+
317
+ export const ImageSetType = {
318
+ ALL_SKY: 'ALL_SKY'
319
+ } as const;
320
+
321
+ export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
322
+
323
+
311
324
  /**
312
325
  * Location
313
326
  * @export
@@ -418,7 +431,8 @@ export interface SuccessfulCreate {
418
431
 
419
432
  export const TrackingType = {
420
433
  SIDEREAL: 'SIDEREAL',
421
- TARGET_RATE: 'TARGET_RATE'
434
+ TARGET_RATE: 'TARGET_RATE',
435
+ NONE: 'NONE'
422
436
  } as const;
423
437
 
424
438
  export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
@@ -1354,19 +1368,19 @@ export interface V1CreateImageSetRequest {
1354
1368
  * @type {string}
1355
1369
  * @memberof V1CreateImageSetRequest
1356
1370
  */
1357
- 'targetId': string;
1371
+ 'nodeId': string;
1358
1372
  /**
1359
1373
  *
1360
1374
  * @type {string}
1361
1375
  * @memberof V1CreateImageSetRequest
1362
1376
  */
1363
- 'nodeId': string;
1377
+ 'observationId'?: string;
1364
1378
  /**
1365
1379
  *
1366
- * @type {string}
1380
+ * @type {ImageSetType}
1367
1381
  * @memberof V1CreateImageSetRequest
1368
1382
  */
1369
- 'observationId'?: string;
1383
+ 'type': ImageSetType;
1370
1384
  /**
1371
1385
  *
1372
1386
  * @type {TrackingType}
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -282,6 +282,15 @@ export interface FitsHeader {
282
282
  */
283
283
  'value': string;
284
284
  }
285
+ /**
286
+ *
287
+ * @export
288
+ * @enum {string}
289
+ */
290
+ export declare const ImageSetType: {
291
+ readonly ALL_SKY: "ALL_SKY";
292
+ };
293
+ export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
285
294
  /**
286
295
  * Location
287
296
  * @export
@@ -376,6 +385,7 @@ export interface SuccessfulCreate {
376
385
  export declare const TrackingType: {
377
386
  readonly SIDEREAL: "SIDEREAL";
378
387
  readonly TARGET_RATE: "TARGET_RATE";
388
+ readonly NONE: "NONE";
379
389
  };
380
390
  export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
381
391
  /**
@@ -1292,19 +1302,19 @@ export interface V1CreateImageSetRequest {
1292
1302
  * @type {string}
1293
1303
  * @memberof V1CreateImageSetRequest
1294
1304
  */
1295
- 'targetId': string;
1305
+ 'nodeId': string;
1296
1306
  /**
1297
1307
  *
1298
1308
  * @type {string}
1299
1309
  * @memberof V1CreateImageSetRequest
1300
1310
  */
1301
- 'nodeId': string;
1311
+ 'observationId'?: string;
1302
1312
  /**
1303
1313
  *
1304
- * @type {string}
1314
+ * @type {ImageSetType}
1305
1315
  * @memberof V1CreateImageSetRequest
1306
1316
  */
1307
- 'observationId'?: string;
1317
+ 'type': ImageSetType;
1308
1318
  /**
1309
1319
  *
1310
1320
  * @type {TrackingType}
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.5391
8
+ * The version of the OpenAPI document: 1.3.5447
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.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.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
@@ -89,6 +89,14 @@ exports.FilterType = {
89
89
  PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
90
90
  PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
91
91
  };
92
+ /**
93
+ *
94
+ * @export
95
+ * @enum {string}
96
+ */
97
+ exports.ImageSetType = {
98
+ ALL_SKY: 'ALL_SKY'
99
+ };
92
100
  /**
93
101
  *
94
102
  * @export
@@ -140,7 +148,8 @@ exports.ShutterType = {
140
148
  */
141
149
  exports.TrackingType = {
142
150
  SIDEREAL: 'SIDEREAL',
143
- TARGET_RATE: 'TARGET_RATE'
151
+ TARGET_RATE: 'TARGET_RATE',
152
+ NONE: 'NONE'
144
153
  };
145
154
  /**
146
155
  *
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
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.5391
8
+ * The version of the OpenAPI document: 1.3.5447
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
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.5391
8
+ * The version of the OpenAPI document: 1.3.5447
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
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.5391
8
+ * The version of the OpenAPI document: 1.3.5447
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -282,6 +282,15 @@ export interface FitsHeader {
282
282
  */
283
283
  'value': string;
284
284
  }
285
+ /**
286
+ *
287
+ * @export
288
+ * @enum {string}
289
+ */
290
+ export declare const ImageSetType: {
291
+ readonly ALL_SKY: "ALL_SKY";
292
+ };
293
+ export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
285
294
  /**
286
295
  * Location
287
296
  * @export
@@ -376,6 +385,7 @@ export interface SuccessfulCreate {
376
385
  export declare const TrackingType: {
377
386
  readonly SIDEREAL: "SIDEREAL";
378
387
  readonly TARGET_RATE: "TARGET_RATE";
388
+ readonly NONE: "NONE";
379
389
  };
380
390
  export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
381
391
  /**
@@ -1292,19 +1302,19 @@ export interface V1CreateImageSetRequest {
1292
1302
  * @type {string}
1293
1303
  * @memberof V1CreateImageSetRequest
1294
1304
  */
1295
- 'targetId': string;
1305
+ 'nodeId': string;
1296
1306
  /**
1297
1307
  *
1298
1308
  * @type {string}
1299
1309
  * @memberof V1CreateImageSetRequest
1300
1310
  */
1301
- 'nodeId': string;
1311
+ 'observationId'?: string;
1302
1312
  /**
1303
1313
  *
1304
- * @type {string}
1314
+ * @type {ImageSetType}
1305
1315
  * @memberof V1CreateImageSetRequest
1306
1316
  */
1307
- 'observationId'?: string;
1317
+ 'type': ImageSetType;
1308
1318
  /**
1309
1319
  *
1310
1320
  * @type {TrackingType}
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -86,6 +86,14 @@ export const FilterType = {
86
86
  PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
87
87
  PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
88
88
  };
89
+ /**
90
+ *
91
+ * @export
92
+ * @enum {string}
93
+ */
94
+ export const ImageSetType = {
95
+ ALL_SKY: 'ALL_SKY'
96
+ };
89
97
  /**
90
98
  *
91
99
  * @export
@@ -137,7 +145,8 @@ export const ShutterType = {
137
145
  */
138
146
  export const TrackingType = {
139
147
  SIDEREAL: 'SIDEREAL',
140
- TARGET_RATE: 'TARGET_RATE'
148
+ TARGET_RATE: 'TARGET_RATE',
149
+ NONE: 'NONE'
141
150
  };
142
151
  /**
143
152
  *
@@ -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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
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.5391
5
+ * The version of the OpenAPI document: 1.3.5447
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.5391
8
+ * The version of the OpenAPI document: 1.3.5447
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.5391
7
+ * The version of the OpenAPI document: 1.3.5447
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.5391",
3
+ "version": "1.3.5447",
4
4
  "description": "OpenAPI client for @ourskyai/astro-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {