@ourskyai/astro-api 1.3.5602 → 1.3.6669
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 +2 -2
- package/api.ts +103 -2
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +95 -2
- package/dist/api.js +15 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +95 -2
- package/dist/esm/api.js +14 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/astro-api@1.3.
|
|
1
|
+
## @ourskyai/astro-api@1.3.6669
|
|
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.
|
|
39
|
+
npm install @ourskyai/astro-api@1.3.6669 --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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -315,12 +315,49 @@ export interface FitsHeader {
|
|
|
315
315
|
*/
|
|
316
316
|
|
|
317
317
|
export const ImageSetType = {
|
|
318
|
+
ASTRONOMICAL: 'ASTRONOMICAL',
|
|
319
|
+
EARTH_ORBITAL: 'EARTH_ORBITAL',
|
|
320
|
+
GNSS_CALIBRATION: 'GNSS_CALIBRATION',
|
|
321
|
+
SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
|
|
318
322
|
ALL_SKY: 'ALL_SKY'
|
|
319
323
|
} as const;
|
|
320
324
|
|
|
321
325
|
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
322
326
|
|
|
323
327
|
|
|
328
|
+
/**
|
|
329
|
+
* Stacked image integration times by filter
|
|
330
|
+
* @export
|
|
331
|
+
* @interface IntegrationTime
|
|
332
|
+
*/
|
|
333
|
+
export interface IntegrationTime {
|
|
334
|
+
/**
|
|
335
|
+
*
|
|
336
|
+
* @type {FilterType}
|
|
337
|
+
* @memberof IntegrationTime
|
|
338
|
+
*/
|
|
339
|
+
'filterType': FilterType;
|
|
340
|
+
/**
|
|
341
|
+
*
|
|
342
|
+
* @type {number}
|
|
343
|
+
* @memberof IntegrationTime
|
|
344
|
+
*/
|
|
345
|
+
'imageCount': number;
|
|
346
|
+
/**
|
|
347
|
+
*
|
|
348
|
+
* @type {number}
|
|
349
|
+
* @memberof IntegrationTime
|
|
350
|
+
*/
|
|
351
|
+
'exposureDurationSeconds': number;
|
|
352
|
+
/**
|
|
353
|
+
*
|
|
354
|
+
* @type {number}
|
|
355
|
+
* @memberof IntegrationTime
|
|
356
|
+
*/
|
|
357
|
+
'combinedExposureSeconds': number;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
|
|
324
361
|
/**
|
|
325
362
|
* Location
|
|
326
363
|
* @export
|
|
@@ -598,6 +635,12 @@ export interface V1AstroProjectAsset {
|
|
|
598
635
|
* @interface V1AstroProjectAssetMetadata
|
|
599
636
|
*/
|
|
600
637
|
export interface V1AstroProjectAssetMetadata {
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @type {Array<IntegrationTime>}
|
|
641
|
+
* @memberof V1AstroProjectAssetMetadata
|
|
642
|
+
*/
|
|
643
|
+
'integrationTime'?: Array<IntegrationTime>;
|
|
601
644
|
/**
|
|
602
645
|
*
|
|
603
646
|
* @type {V1AstroProjectAssetMetadataColorCombination}
|
|
@@ -1337,7 +1380,45 @@ export interface V1CreateImageSetImageRequest {
|
|
|
1337
1380
|
* @memberof V1CreateImageSetImageRequest
|
|
1338
1381
|
*/
|
|
1339
1382
|
'imageSetId': string;
|
|
1383
|
+
/**
|
|
1384
|
+
*
|
|
1385
|
+
* @type {V1ImageFileType}
|
|
1386
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1387
|
+
*/
|
|
1388
|
+
'imageFileType'?: V1ImageFileType;
|
|
1389
|
+
/**
|
|
1390
|
+
*
|
|
1391
|
+
* @type {number}
|
|
1392
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1393
|
+
*/
|
|
1394
|
+
'binning'?: number;
|
|
1395
|
+
/**
|
|
1396
|
+
*
|
|
1397
|
+
* @type {number}
|
|
1398
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1399
|
+
*/
|
|
1400
|
+
'exposureLength'?: number;
|
|
1401
|
+
/**
|
|
1402
|
+
*
|
|
1403
|
+
* @type {string}
|
|
1404
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1405
|
+
*/
|
|
1406
|
+
'imageSha'?: string;
|
|
1407
|
+
/**
|
|
1408
|
+
*
|
|
1409
|
+
* @type {number}
|
|
1410
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1411
|
+
*/
|
|
1412
|
+
'imageSizeMb'?: number;
|
|
1413
|
+
/**
|
|
1414
|
+
*
|
|
1415
|
+
* @type {string}
|
|
1416
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1417
|
+
*/
|
|
1418
|
+
'capturedAt'?: string;
|
|
1340
1419
|
}
|
|
1420
|
+
|
|
1421
|
+
|
|
1341
1422
|
/**
|
|
1342
1423
|
*
|
|
1343
1424
|
* @export
|
|
@@ -1537,7 +1618,7 @@ export interface V1ElevationMaskPoint {
|
|
|
1537
1618
|
'maxAltitudeDegrees': number;
|
|
1538
1619
|
}
|
|
1539
1620
|
/**
|
|
1540
|
-
*
|
|
1621
|
+
* Focuser
|
|
1541
1622
|
* @export
|
|
1542
1623
|
* @interface V1Focuser
|
|
1543
1624
|
*/
|
|
@@ -1839,6 +1920,20 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
1839
1920
|
}
|
|
1840
1921
|
|
|
1841
1922
|
|
|
1923
|
+
/**
|
|
1924
|
+
*
|
|
1925
|
+
* @export
|
|
1926
|
+
* @enum {string}
|
|
1927
|
+
*/
|
|
1928
|
+
|
|
1929
|
+
export const V1ImageFileType = {
|
|
1930
|
+
FITS: 'FITS',
|
|
1931
|
+
JPG: 'JPG'
|
|
1932
|
+
} as const;
|
|
1933
|
+
|
|
1934
|
+
export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
|
|
1935
|
+
|
|
1936
|
+
|
|
1842
1937
|
/**
|
|
1843
1938
|
* An image set represents a contiguous set of observations of the same target captured by the same node.
|
|
1844
1939
|
* @export
|
|
@@ -2268,6 +2363,12 @@ export interface V1Node {
|
|
|
2268
2363
|
* @memberof V1Node
|
|
2269
2364
|
*/
|
|
2270
2365
|
'id': string;
|
|
2366
|
+
/**
|
|
2367
|
+
*
|
|
2368
|
+
* @type {string}
|
|
2369
|
+
* @memberof V1Node
|
|
2370
|
+
*/
|
|
2371
|
+
'lineageId': string;
|
|
2271
2372
|
/**
|
|
2272
2373
|
*
|
|
2273
2374
|
* @type {Location}
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -288,9 +288,44 @@ export interface FitsHeader {
|
|
|
288
288
|
* @enum {string}
|
|
289
289
|
*/
|
|
290
290
|
export declare const ImageSetType: {
|
|
291
|
+
readonly ASTRONOMICAL: "ASTRONOMICAL";
|
|
292
|
+
readonly EARTH_ORBITAL: "EARTH_ORBITAL";
|
|
293
|
+
readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
|
|
294
|
+
readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
|
|
291
295
|
readonly ALL_SKY: "ALL_SKY";
|
|
292
296
|
};
|
|
293
297
|
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
298
|
+
/**
|
|
299
|
+
* Stacked image integration times by filter
|
|
300
|
+
* @export
|
|
301
|
+
* @interface IntegrationTime
|
|
302
|
+
*/
|
|
303
|
+
export interface IntegrationTime {
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
* @type {FilterType}
|
|
307
|
+
* @memberof IntegrationTime
|
|
308
|
+
*/
|
|
309
|
+
'filterType': FilterType;
|
|
310
|
+
/**
|
|
311
|
+
*
|
|
312
|
+
* @type {number}
|
|
313
|
+
* @memberof IntegrationTime
|
|
314
|
+
*/
|
|
315
|
+
'imageCount': number;
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @type {number}
|
|
319
|
+
* @memberof IntegrationTime
|
|
320
|
+
*/
|
|
321
|
+
'exposureDurationSeconds': number;
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {number}
|
|
325
|
+
* @memberof IntegrationTime
|
|
326
|
+
*/
|
|
327
|
+
'combinedExposureSeconds': number;
|
|
328
|
+
}
|
|
294
329
|
/**
|
|
295
330
|
* Location
|
|
296
331
|
* @export
|
|
@@ -546,6 +581,12 @@ export interface V1AstroProjectAsset {
|
|
|
546
581
|
* @interface V1AstroProjectAssetMetadata
|
|
547
582
|
*/
|
|
548
583
|
export interface V1AstroProjectAssetMetadata {
|
|
584
|
+
/**
|
|
585
|
+
*
|
|
586
|
+
* @type {Array<IntegrationTime>}
|
|
587
|
+
* @memberof V1AstroProjectAssetMetadata
|
|
588
|
+
*/
|
|
589
|
+
'integrationTime'?: Array<IntegrationTime>;
|
|
549
590
|
/**
|
|
550
591
|
*
|
|
551
592
|
* @type {V1AstroProjectAssetMetadataColorCombination}
|
|
@@ -1271,6 +1312,42 @@ export interface V1CreateImageSetImageRequest {
|
|
|
1271
1312
|
* @memberof V1CreateImageSetImageRequest
|
|
1272
1313
|
*/
|
|
1273
1314
|
'imageSetId': string;
|
|
1315
|
+
/**
|
|
1316
|
+
*
|
|
1317
|
+
* @type {V1ImageFileType}
|
|
1318
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1319
|
+
*/
|
|
1320
|
+
'imageFileType'?: V1ImageFileType;
|
|
1321
|
+
/**
|
|
1322
|
+
*
|
|
1323
|
+
* @type {number}
|
|
1324
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1325
|
+
*/
|
|
1326
|
+
'binning'?: number;
|
|
1327
|
+
/**
|
|
1328
|
+
*
|
|
1329
|
+
* @type {number}
|
|
1330
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1331
|
+
*/
|
|
1332
|
+
'exposureLength'?: number;
|
|
1333
|
+
/**
|
|
1334
|
+
*
|
|
1335
|
+
* @type {string}
|
|
1336
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1337
|
+
*/
|
|
1338
|
+
'imageSha'?: string;
|
|
1339
|
+
/**
|
|
1340
|
+
*
|
|
1341
|
+
* @type {number}
|
|
1342
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1343
|
+
*/
|
|
1344
|
+
'imageSizeMb'?: number;
|
|
1345
|
+
/**
|
|
1346
|
+
*
|
|
1347
|
+
* @type {string}
|
|
1348
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1349
|
+
*/
|
|
1350
|
+
'capturedAt'?: string;
|
|
1274
1351
|
}
|
|
1275
1352
|
/**
|
|
1276
1353
|
*
|
|
@@ -1465,7 +1542,7 @@ export interface V1ElevationMaskPoint {
|
|
|
1465
1542
|
'maxAltitudeDegrees': number;
|
|
1466
1543
|
}
|
|
1467
1544
|
/**
|
|
1468
|
-
*
|
|
1545
|
+
* Focuser
|
|
1469
1546
|
* @export
|
|
1470
1547
|
* @interface V1Focuser
|
|
1471
1548
|
*/
|
|
@@ -1761,6 +1838,16 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
1761
1838
|
*/
|
|
1762
1839
|
'type'?: OpticalTubeType;
|
|
1763
1840
|
}
|
|
1841
|
+
/**
|
|
1842
|
+
*
|
|
1843
|
+
* @export
|
|
1844
|
+
* @enum {string}
|
|
1845
|
+
*/
|
|
1846
|
+
export declare const V1ImageFileType: {
|
|
1847
|
+
readonly FITS: "FITS";
|
|
1848
|
+
readonly JPG: "JPG";
|
|
1849
|
+
};
|
|
1850
|
+
export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
|
|
1764
1851
|
/**
|
|
1765
1852
|
* An image set represents a contiguous set of observations of the same target captured by the same node.
|
|
1766
1853
|
* @export
|
|
@@ -2178,6 +2265,12 @@ export interface V1Node {
|
|
|
2178
2265
|
* @memberof V1Node
|
|
2179
2266
|
*/
|
|
2180
2267
|
'id': string;
|
|
2268
|
+
/**
|
|
2269
|
+
*
|
|
2270
|
+
* @type {string}
|
|
2271
|
+
* @memberof V1Node
|
|
2272
|
+
*/
|
|
2273
|
+
'lineageId': string;
|
|
2181
2274
|
/**
|
|
2182
2275
|
*
|
|
2183
2276
|
* @type {Location}
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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
|
|
@@ -95,6 +95,10 @@ exports.FilterType = {
|
|
|
95
95
|
* @enum {string}
|
|
96
96
|
*/
|
|
97
97
|
exports.ImageSetType = {
|
|
98
|
+
ASTRONOMICAL: 'ASTRONOMICAL',
|
|
99
|
+
EARTH_ORBITAL: 'EARTH_ORBITAL',
|
|
100
|
+
GNSS_CALIBRATION: 'GNSS_CALIBRATION',
|
|
101
|
+
SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
|
|
98
102
|
ALL_SKY: 'ALL_SKY'
|
|
99
103
|
};
|
|
100
104
|
/**
|
|
@@ -151,6 +155,15 @@ exports.TrackingType = {
|
|
|
151
155
|
TARGET_RATE: 'TARGET_RATE',
|
|
152
156
|
NONE: 'NONE'
|
|
153
157
|
};
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @export
|
|
161
|
+
* @enum {string}
|
|
162
|
+
*/
|
|
163
|
+
exports.V1ImageFileType = {
|
|
164
|
+
FITS: 'FITS',
|
|
165
|
+
JPG: 'JPG'
|
|
166
|
+
};
|
|
154
167
|
/**
|
|
155
168
|
*
|
|
156
169
|
* @export
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -288,9 +288,44 @@ export interface FitsHeader {
|
|
|
288
288
|
* @enum {string}
|
|
289
289
|
*/
|
|
290
290
|
export declare const ImageSetType: {
|
|
291
|
+
readonly ASTRONOMICAL: "ASTRONOMICAL";
|
|
292
|
+
readonly EARTH_ORBITAL: "EARTH_ORBITAL";
|
|
293
|
+
readonly GNSS_CALIBRATION: "GNSS_CALIBRATION";
|
|
294
|
+
readonly SATELLITE_CALIBRATION: "SATELLITE_CALIBRATION";
|
|
291
295
|
readonly ALL_SKY: "ALL_SKY";
|
|
292
296
|
};
|
|
293
297
|
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
298
|
+
/**
|
|
299
|
+
* Stacked image integration times by filter
|
|
300
|
+
* @export
|
|
301
|
+
* @interface IntegrationTime
|
|
302
|
+
*/
|
|
303
|
+
export interface IntegrationTime {
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
* @type {FilterType}
|
|
307
|
+
* @memberof IntegrationTime
|
|
308
|
+
*/
|
|
309
|
+
'filterType': FilterType;
|
|
310
|
+
/**
|
|
311
|
+
*
|
|
312
|
+
* @type {number}
|
|
313
|
+
* @memberof IntegrationTime
|
|
314
|
+
*/
|
|
315
|
+
'imageCount': number;
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @type {number}
|
|
319
|
+
* @memberof IntegrationTime
|
|
320
|
+
*/
|
|
321
|
+
'exposureDurationSeconds': number;
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {number}
|
|
325
|
+
* @memberof IntegrationTime
|
|
326
|
+
*/
|
|
327
|
+
'combinedExposureSeconds': number;
|
|
328
|
+
}
|
|
294
329
|
/**
|
|
295
330
|
* Location
|
|
296
331
|
* @export
|
|
@@ -546,6 +581,12 @@ export interface V1AstroProjectAsset {
|
|
|
546
581
|
* @interface V1AstroProjectAssetMetadata
|
|
547
582
|
*/
|
|
548
583
|
export interface V1AstroProjectAssetMetadata {
|
|
584
|
+
/**
|
|
585
|
+
*
|
|
586
|
+
* @type {Array<IntegrationTime>}
|
|
587
|
+
* @memberof V1AstroProjectAssetMetadata
|
|
588
|
+
*/
|
|
589
|
+
'integrationTime'?: Array<IntegrationTime>;
|
|
549
590
|
/**
|
|
550
591
|
*
|
|
551
592
|
* @type {V1AstroProjectAssetMetadataColorCombination}
|
|
@@ -1271,6 +1312,42 @@ export interface V1CreateImageSetImageRequest {
|
|
|
1271
1312
|
* @memberof V1CreateImageSetImageRequest
|
|
1272
1313
|
*/
|
|
1273
1314
|
'imageSetId': string;
|
|
1315
|
+
/**
|
|
1316
|
+
*
|
|
1317
|
+
* @type {V1ImageFileType}
|
|
1318
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1319
|
+
*/
|
|
1320
|
+
'imageFileType'?: V1ImageFileType;
|
|
1321
|
+
/**
|
|
1322
|
+
*
|
|
1323
|
+
* @type {number}
|
|
1324
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1325
|
+
*/
|
|
1326
|
+
'binning'?: number;
|
|
1327
|
+
/**
|
|
1328
|
+
*
|
|
1329
|
+
* @type {number}
|
|
1330
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1331
|
+
*/
|
|
1332
|
+
'exposureLength'?: number;
|
|
1333
|
+
/**
|
|
1334
|
+
*
|
|
1335
|
+
* @type {string}
|
|
1336
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1337
|
+
*/
|
|
1338
|
+
'imageSha'?: string;
|
|
1339
|
+
/**
|
|
1340
|
+
*
|
|
1341
|
+
* @type {number}
|
|
1342
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1343
|
+
*/
|
|
1344
|
+
'imageSizeMb'?: number;
|
|
1345
|
+
/**
|
|
1346
|
+
*
|
|
1347
|
+
* @type {string}
|
|
1348
|
+
* @memberof V1CreateImageSetImageRequest
|
|
1349
|
+
*/
|
|
1350
|
+
'capturedAt'?: string;
|
|
1274
1351
|
}
|
|
1275
1352
|
/**
|
|
1276
1353
|
*
|
|
@@ -1465,7 +1542,7 @@ export interface V1ElevationMaskPoint {
|
|
|
1465
1542
|
'maxAltitudeDegrees': number;
|
|
1466
1543
|
}
|
|
1467
1544
|
/**
|
|
1468
|
-
*
|
|
1545
|
+
* Focuser
|
|
1469
1546
|
* @export
|
|
1470
1547
|
* @interface V1Focuser
|
|
1471
1548
|
*/
|
|
@@ -1761,6 +1838,16 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
1761
1838
|
*/
|
|
1762
1839
|
'type'?: OpticalTubeType;
|
|
1763
1840
|
}
|
|
1841
|
+
/**
|
|
1842
|
+
*
|
|
1843
|
+
* @export
|
|
1844
|
+
* @enum {string}
|
|
1845
|
+
*/
|
|
1846
|
+
export declare const V1ImageFileType: {
|
|
1847
|
+
readonly FITS: "FITS";
|
|
1848
|
+
readonly JPG: "JPG";
|
|
1849
|
+
};
|
|
1850
|
+
export type V1ImageFileType = typeof V1ImageFileType[keyof typeof V1ImageFileType];
|
|
1764
1851
|
/**
|
|
1765
1852
|
* An image set represents a contiguous set of observations of the same target captured by the same node.
|
|
1766
1853
|
* @export
|
|
@@ -2178,6 +2265,12 @@ export interface V1Node {
|
|
|
2178
2265
|
* @memberof V1Node
|
|
2179
2266
|
*/
|
|
2180
2267
|
'id': string;
|
|
2268
|
+
/**
|
|
2269
|
+
*
|
|
2270
|
+
* @type {string}
|
|
2271
|
+
* @memberof V1Node
|
|
2272
|
+
*/
|
|
2273
|
+
'lineageId': string;
|
|
2181
2274
|
/**
|
|
2182
2275
|
*
|
|
2183
2276
|
* @type {Location}
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -92,6 +92,10 @@ export const FilterType = {
|
|
|
92
92
|
* @enum {string}
|
|
93
93
|
*/
|
|
94
94
|
export const ImageSetType = {
|
|
95
|
+
ASTRONOMICAL: 'ASTRONOMICAL',
|
|
96
|
+
EARTH_ORBITAL: 'EARTH_ORBITAL',
|
|
97
|
+
GNSS_CALIBRATION: 'GNSS_CALIBRATION',
|
|
98
|
+
SATELLITE_CALIBRATION: 'SATELLITE_CALIBRATION',
|
|
95
99
|
ALL_SKY: 'ALL_SKY'
|
|
96
100
|
};
|
|
97
101
|
/**
|
|
@@ -148,6 +152,15 @@ export const TrackingType = {
|
|
|
148
152
|
TARGET_RATE: 'TARGET_RATE',
|
|
149
153
|
NONE: 'NONE'
|
|
150
154
|
};
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @export
|
|
158
|
+
* @enum {string}
|
|
159
|
+
*/
|
|
160
|
+
export const V1ImageFileType = {
|
|
161
|
+
FITS: 'FITS',
|
|
162
|
+
JPG: 'JPG'
|
|
163
|
+
};
|
|
151
164
|
/**
|
|
152
165
|
*
|
|
153
166
|
* @export
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.6669
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|