@ourskyai/astro-api 1.3.8815 → 1.4.123
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/.openapi-generator/FILES +76 -0
- package/.openapi-generator/VERSION +1 -1
- package/README.md +155 -4
- package/api.ts +869 -3218
- package/base.ts +14 -24
- package/common.ts +20 -44
- package/configuration.ts +37 -17
- package/dist/api.d.ts +449 -2852
- package/dist/api.js +640 -619
- package/dist/base.d.ts +11 -23
- package/dist/base.js +5 -18
- package/dist/common.d.ts +6 -37
- package/dist/common.js +18 -40
- package/dist/configuration.d.ts +30 -15
- package/dist/configuration.js +5 -3
- package/dist/esm/api.d.ts +449 -2852
- package/dist/esm/api.js +640 -619
- package/dist/esm/base.d.ts +11 -23
- package/dist/esm/base.js +4 -17
- package/dist/esm/common.d.ts +6 -37
- package/dist/esm/common.js +16 -39
- package/dist/esm/configuration.d.ts +30 -15
- package/dist/esm/configuration.js +5 -3
- 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/docs/AssetFileType.md +18 -0
- package/docs/AssetType.md +16 -0
- package/docs/CalibrationMasterType.md +12 -0
- package/docs/DailyWeatherCity.md +22 -0
- package/docs/DailyWeatherForecastItem.md +40 -0
- package/docs/DailyWeatherForecastItemTemp.md +26 -0
- package/docs/DailyWeatherForecastItemWeatherInner.md +26 -0
- package/docs/DailyWeatherForecastListResponse.md +22 -0
- package/docs/DefaultApi.md +2560 -0
- package/docs/EmptySuccess.md +20 -0
- package/docs/FilterType.md +60 -0
- package/docs/FitsHeader.md +22 -0
- package/docs/ImageSetType.md +24 -0
- package/docs/IntegrationTime.md +27 -0
- package/docs/Location.md +25 -0
- package/docs/MountGeometry.md +10 -0
- package/docs/MountType.md +10 -0
- package/docs/NodeState.md +20 -0
- package/docs/OpticalTubeType.md +16 -0
- package/docs/ShutterType.md +10 -0
- package/docs/SuccessfulCreate.md +20 -0
- package/docs/TrackingType.md +12 -0
- package/docs/V1AstroProject.md +43 -0
- package/docs/V1AstroProjectAsset.md +41 -0
- package/docs/V1AstroProjectAssetMetadata.md +22 -0
- package/docs/V1AstroProjectAssetMetadataColorCombination.md +24 -0
- package/docs/V1AstroProjectJobLog.md +31 -0
- package/docs/V1AstroTarget.md +33 -0
- package/docs/V1CalibrationMaster.md +43 -0
- package/docs/V1Camera.md +47 -0
- package/docs/V1CreateAstroProjectImageSetRequest.md +24 -0
- package/docs/V1CreateAstroProjectRequest.md +30 -0
- package/docs/V1CreateAstroProjectResponse.md +23 -0
- package/docs/V1CreateCalibrationMasterRequest.md +42 -0
- package/docs/V1CreateCalibrationMasterResponse.md +22 -0
- package/docs/V1CreateCalibrationSetImageRequest.md +22 -0
- package/docs/V1CreateCalibrationSetImageResponse.md +22 -0
- package/docs/V1CreateCalibrationSetRequest.md +40 -0
- package/docs/V1CreateCalibrationSetResponse.md +20 -0
- package/docs/V1CreateImageSetImageRequest.md +32 -0
- package/docs/V1CreateImageSetImageResponse.md +23 -0
- package/docs/V1CreateImageSetRequest.md +28 -0
- package/docs/V1CreateNodeRequest.md +37 -0
- package/docs/V1CreateOpticalTrainInstanceRequest.md +28 -0
- package/docs/V1ElevationMaskPoint.md +25 -0
- package/docs/V1Focuser.md +27 -0
- package/docs/V1GainCurve.md +25 -0
- package/docs/V1GainCurvePoint.md +22 -0
- package/docs/V1GetAstroPlatformCreditBalanceResponse.md +21 -0
- package/docs/V1GetNodes.md +20 -0
- package/docs/V1GetOrCreateCameraRequest.md +60 -0
- package/docs/V1GetOrCreateFocuserRequest.md +24 -0
- package/docs/V1GetOrCreateMountRequest.md +24 -0
- package/docs/V1GetOrCreateOpticalTubeRequest.md +26 -0
- package/docs/V1ImageFileType.md +10 -0
- package/docs/V1ImageRejectionReason.md +64 -0
- package/docs/V1ImageSet.md +43 -0
- package/docs/V1ImageSetImage.md +77 -0
- package/docs/V1JobStatus.md +16 -0
- package/docs/V1Mount.md +23 -0
- package/docs/V1Node.md +59 -0
- package/docs/V1NodeWithLocation.md +23 -0
- package/docs/V1OpticalTrainInstance.md +43 -0
- package/docs/V1OpticalTube.md +27 -0
- package/docs/V1PlatformCredit.md +37 -0
- package/docs/V1PlatformCreditSource.md +14 -0
- package/docs/V1PlatformCreditType.md +8 -0
- package/docs/V1PlatformCreditUnit.md +8 -0
- package/docs/V1PredictedStreakLocation.md +26 -0
- package/docs/V1PutStackAstroProjectRequest.md +20 -0
- package/docs/V1PutStackAstroProjectResponse.md +23 -0
- package/docs/V1ReadNoisePoint.md +22 -0
- package/docs/V1SetupAction.md +23 -0
- package/docs/V1UpdateNodeRequest.md +51 -0
- package/docs/V1VideoModeFramerateProperty.md +28 -0
- package/docs/V2UpdateNodeRequest.md +43 -0
- package/index.ts +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# EmptySuccess
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**message** | **string** | | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { EmptySuccess } from '@ourskyai/astro-api';
|
|
14
|
+
|
|
15
|
+
const instance: EmptySuccess = {
|
|
16
|
+
message,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# FilterType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `NONE` (value: `'NONE'`)
|
|
7
|
+
|
|
8
|
+
* `RED` (value: `'RED'`)
|
|
9
|
+
|
|
10
|
+
* `BLUE` (value: `'BLUE'`)
|
|
11
|
+
|
|
12
|
+
* `GREEN` (value: `'GREEN'`)
|
|
13
|
+
|
|
14
|
+
* `UV` (value: `'UV'`)
|
|
15
|
+
|
|
16
|
+
* `IR` (value: `'IR'`)
|
|
17
|
+
|
|
18
|
+
* `LUMINANCE` (value: `'LUMINANCE'`)
|
|
19
|
+
|
|
20
|
+
* `ENHANCED_LUMINANCE` (value: `'ENHANCED_LUMINANCE'`)
|
|
21
|
+
|
|
22
|
+
* `H_ALPHA` (value: `'H_ALPHA'`)
|
|
23
|
+
|
|
24
|
+
* `H_BETA` (value: `'H_BETA'`)
|
|
25
|
+
|
|
26
|
+
* `S_II` (value: `'S_II'`)
|
|
27
|
+
|
|
28
|
+
* `O_III` (value: `'O_III'`)
|
|
29
|
+
|
|
30
|
+
* `DUAL_BAND` (value: `'DUAL_BAND'`)
|
|
31
|
+
|
|
32
|
+
* `PHOTO_JOHNSON_U` (value: `'PHOTO_JOHNSON_U'`)
|
|
33
|
+
|
|
34
|
+
* `PHOTO_JOHNSON_B` (value: `'PHOTO_JOHNSON_B'`)
|
|
35
|
+
|
|
36
|
+
* `PHOTO_JOHNSON_V` (value: `'PHOTO_JOHNSON_V'`)
|
|
37
|
+
|
|
38
|
+
* `PHOTO_COUSINS_R` (value: `'PHOTO_COUSINS_R'`)
|
|
39
|
+
|
|
40
|
+
* `PHOTO_COUSINS_I` (value: `'PHOTO_COUSINS_I'`)
|
|
41
|
+
|
|
42
|
+
* `PHOTO_SLOAN_U` (value: `'PHOTO_SLOAN_U'`)
|
|
43
|
+
|
|
44
|
+
* `PHOTO_SLOAN_G` (value: `'PHOTO_SLOAN_G'`)
|
|
45
|
+
|
|
46
|
+
* `PHOTO_SLOAN_R` (value: `'PHOTO_SLOAN_R'`)
|
|
47
|
+
|
|
48
|
+
* `PHOTO_SLOAN_I` (value: `'PHOTO_SLOAN_I'`)
|
|
49
|
+
|
|
50
|
+
* `PHOTO_SLOAN_Z` (value: `'PHOTO_SLOAN_Z'`)
|
|
51
|
+
|
|
52
|
+
* `TRIPLE_BAND` (value: `'TRIPLE_BAND'`)
|
|
53
|
+
|
|
54
|
+
* `QUAD_BAND` (value: `'QUAD_BAND'`)
|
|
55
|
+
|
|
56
|
+
* `DARK` (value: `'DARK'`)
|
|
57
|
+
|
|
58
|
+
* `OTHER` (value: `'OTHER'`)
|
|
59
|
+
|
|
60
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FitsHeader
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**key** | **string** | | [default to undefined]
|
|
9
|
+
**value** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { FitsHeader } from '@ourskyai/astro-api';
|
|
15
|
+
|
|
16
|
+
const instance: FitsHeader = {
|
|
17
|
+
key,
|
|
18
|
+
value,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# ImageSetType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `ASTRONOMICAL` (value: `'ASTRONOMICAL'`)
|
|
7
|
+
|
|
8
|
+
* `EARTH_ORBITAL` (value: `'EARTH_ORBITAL'`)
|
|
9
|
+
|
|
10
|
+
* `GNSS_CALIBRATION` (value: `'GNSS_CALIBRATION'`)
|
|
11
|
+
|
|
12
|
+
* `SATELLITE_CALIBRATION` (value: `'SATELLITE_CALIBRATION'`)
|
|
13
|
+
|
|
14
|
+
* `WAVEFRONT_SENSOR_FACTORY_CALIBRATION` (value: `'WAVEFRONT_SENSOR_FACTORY_CALIBRATION'`)
|
|
15
|
+
|
|
16
|
+
* `ALL_SKY` (value: `'ALL_SKY'`)
|
|
17
|
+
|
|
18
|
+
* `THERMAL` (value: `'THERMAL'`)
|
|
19
|
+
|
|
20
|
+
* `STACKED_ASTRONOMICAL` (value: `'STACKED_ASTRONOMICAL'`)
|
|
21
|
+
|
|
22
|
+
* `TERRESTRIAL_DOWNLINK` (value: `'TERRESTRIAL_DOWNLINK'`)
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# IntegrationTime
|
|
2
|
+
|
|
3
|
+
Stacked image integration times by filter
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**filterType** | [**FilterType**](FilterType.md) | | [default to undefined]
|
|
10
|
+
**imageCount** | **number** | | [default to undefined]
|
|
11
|
+
**exposureDurationSeconds** | **number** | | [default to undefined]
|
|
12
|
+
**combinedExposureSeconds** | **number** | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { IntegrationTime } from '@ourskyai/astro-api';
|
|
18
|
+
|
|
19
|
+
const instance: IntegrationTime = {
|
|
20
|
+
filterType,
|
|
21
|
+
imageCount,
|
|
22
|
+
exposureDurationSeconds,
|
|
23
|
+
combinedExposureSeconds,
|
|
24
|
+
};
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/Location.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Location
|
|
2
|
+
|
|
3
|
+
Location
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**latitude** | **number** | | [default to undefined]
|
|
10
|
+
**longitude** | **number** | | [default to undefined]
|
|
11
|
+
**altitude** | **number** | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { Location } from '@ourskyai/astro-api';
|
|
17
|
+
|
|
18
|
+
const instance: Location = {
|
|
19
|
+
latitude,
|
|
20
|
+
longitude,
|
|
21
|
+
altitude,
|
|
22
|
+
};
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# MountGeometry
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `ALT_AZ` (value: `'ALT_AZ'`)
|
|
7
|
+
|
|
8
|
+
* `EQUATORIAL` (value: `'EQUATORIAL'`)
|
|
9
|
+
|
|
10
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# MountType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `ALT_AZ` (value: `'ALT_AZ'`)
|
|
7
|
+
|
|
8
|
+
* `EQUITORIAL` (value: `'EQUITORIAL'`)
|
|
9
|
+
|
|
10
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# NodeState
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `READY` (value: `'READY'`)
|
|
7
|
+
|
|
8
|
+
* `PENDING` (value: `'PENDING'`)
|
|
9
|
+
|
|
10
|
+
* `OFFLINE` (value: `'OFFLINE'`)
|
|
11
|
+
|
|
12
|
+
* `UNAVAILABLE` (value: `'UNAVAILABLE'`)
|
|
13
|
+
|
|
14
|
+
* `UNKNOWN` (value: `'UNKNOWN'`)
|
|
15
|
+
|
|
16
|
+
* `SUPERSEDED` (value: `'SUPERSEDED'`)
|
|
17
|
+
|
|
18
|
+
* `DECOMMISSIONED` (value: `'DECOMMISSIONED'`)
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# OpticalTubeType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `NEWTONIAN` (value: `'NEWTONIAN'`)
|
|
7
|
+
|
|
8
|
+
* `SCT` (value: `'SCT'`)
|
|
9
|
+
|
|
10
|
+
* `MCT` (value: `'MCT'`)
|
|
11
|
+
|
|
12
|
+
* `RC` (value: `'RC'`)
|
|
13
|
+
|
|
14
|
+
* `REFRACTOR` (value: `'REFRACTOR'`)
|
|
15
|
+
|
|
16
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# ShutterType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `ROLLING` (value: `'ROLLING'`)
|
|
7
|
+
|
|
8
|
+
* `GLOBAL` (value: `'GLOBAL'`)
|
|
9
|
+
|
|
10
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# SuccessfulCreate
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { SuccessfulCreate } from '@ourskyai/astro-api';
|
|
14
|
+
|
|
15
|
+
const instance: SuccessfulCreate = {
|
|
16
|
+
id,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# TrackingType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `SIDEREAL` (value: `'SIDEREAL'`)
|
|
7
|
+
|
|
8
|
+
* `TARGET_RATE` (value: `'TARGET_RATE'`)
|
|
9
|
+
|
|
10
|
+
* `NONE` (value: `'NONE'`)
|
|
11
|
+
|
|
12
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# V1AstroProject
|
|
2
|
+
|
|
3
|
+
Astro Project
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**name** | **string** | | [default to undefined]
|
|
11
|
+
**targetId** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**ra** | **number** | | [optional] [default to undefined]
|
|
13
|
+
**dec** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**cameraId** | **string** | | [default to undefined]
|
|
15
|
+
**otaId** | **string** | | [default to undefined]
|
|
16
|
+
**imageSets** | **Array<string>** | | [optional] [default to undefined]
|
|
17
|
+
**createdAt** | **string** | | [default to undefined]
|
|
18
|
+
**updatedAt** | **string** | | [optional] [default to undefined]
|
|
19
|
+
**totalImages** | **number** | | [default to undefined]
|
|
20
|
+
**uploadedImages** | **number** | | [default to undefined]
|
|
21
|
+
|
|
22
|
+
## Example
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
import { V1AstroProject } from '@ourskyai/astro-api';
|
|
26
|
+
|
|
27
|
+
const instance: V1AstroProject = {
|
|
28
|
+
id,
|
|
29
|
+
name,
|
|
30
|
+
targetId,
|
|
31
|
+
ra,
|
|
32
|
+
dec,
|
|
33
|
+
cameraId,
|
|
34
|
+
otaId,
|
|
35
|
+
imageSets,
|
|
36
|
+
createdAt,
|
|
37
|
+
updatedAt,
|
|
38
|
+
totalImages,
|
|
39
|
+
uploadedImages,
|
|
40
|
+
};
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# V1AstroProjectAsset
|
|
2
|
+
|
|
3
|
+
Astro Project Asset
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**assetType** | [**AssetType**](AssetType.md) | | [default to undefined]
|
|
11
|
+
**filterType** | [**Array<FilterType>**](FilterType.md) | | [optional] [default to undefined]
|
|
12
|
+
**metadata** | [**V1AstroProjectAssetMetadata**](V1AstroProjectAssetMetadata.md) | | [optional] [default to undefined]
|
|
13
|
+
**url** | **string** | | [default to undefined]
|
|
14
|
+
**fileSizeMb** | **number** | | [optional] [default to undefined]
|
|
15
|
+
**fileType** | [**AssetFileType**](AssetFileType.md) | | [optional] [default to undefined]
|
|
16
|
+
**createdAt** | **string** | | [default to undefined]
|
|
17
|
+
**createdBy** | **string** | | [default to undefined]
|
|
18
|
+
**numberOfCombinedImages** | **number** | | [optional] [default to undefined]
|
|
19
|
+
**combinedExposureSeconds** | **number** | | [optional] [default to undefined]
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { V1AstroProjectAsset } from '@ourskyai/astro-api';
|
|
25
|
+
|
|
26
|
+
const instance: V1AstroProjectAsset = {
|
|
27
|
+
id,
|
|
28
|
+
assetType,
|
|
29
|
+
filterType,
|
|
30
|
+
metadata,
|
|
31
|
+
url,
|
|
32
|
+
fileSizeMb,
|
|
33
|
+
fileType,
|
|
34
|
+
createdAt,
|
|
35
|
+
createdBy,
|
|
36
|
+
numberOfCombinedImages,
|
|
37
|
+
combinedExposureSeconds,
|
|
38
|
+
};
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# V1AstroProjectAssetMetadata
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**integrationTime** | [**Array<IntegrationTime>**](IntegrationTime.md) | | [optional] [default to undefined]
|
|
9
|
+
**colorCombination** | [**V1AstroProjectAssetMetadataColorCombination**](V1AstroProjectAssetMetadataColorCombination.md) | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { V1AstroProjectAssetMetadata } from '@ourskyai/astro-api';
|
|
15
|
+
|
|
16
|
+
const instance: V1AstroProjectAssetMetadata = {
|
|
17
|
+
integrationTime,
|
|
18
|
+
colorCombination,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# V1AstroProjectAssetMetadataColorCombination
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**red** | [**Array<FilterType>**](FilterType.md) | | [optional] [default to undefined]
|
|
9
|
+
**green** | [**Array<FilterType>**](FilterType.md) | | [optional] [default to undefined]
|
|
10
|
+
**blue** | [**Array<FilterType>**](FilterType.md) | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { V1AstroProjectAssetMetadataColorCombination } from '@ourskyai/astro-api';
|
|
16
|
+
|
|
17
|
+
const instance: V1AstroProjectAssetMetadataColorCombination = {
|
|
18
|
+
red,
|
|
19
|
+
green,
|
|
20
|
+
blue,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# V1AstroProjectJobLog
|
|
2
|
+
|
|
3
|
+
Astro Project Job Log
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**jobStatus** | [**V1JobStatus**](V1JobStatus.md) | | [default to undefined]
|
|
11
|
+
**createdAt** | **string** | | [default to undefined]
|
|
12
|
+
**startedAt** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**finishedAt** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**progress** | **number** | | [optional] [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { V1AstroProjectJobLog } from '@ourskyai/astro-api';
|
|
20
|
+
|
|
21
|
+
const instance: V1AstroProjectJobLog = {
|
|
22
|
+
id,
|
|
23
|
+
jobStatus,
|
|
24
|
+
createdAt,
|
|
25
|
+
startedAt,
|
|
26
|
+
finishedAt,
|
|
27
|
+
progress,
|
|
28
|
+
};
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# V1AstroTarget
|
|
2
|
+
|
|
3
|
+
Astro Target
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**ngc_id** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**ic_id** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**name** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**messier_catalog_name** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**ra** | **number** | | [default to undefined]
|
|
15
|
+
**dec** | **number** | | [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { V1AstroTarget } from '@ourskyai/astro-api';
|
|
21
|
+
|
|
22
|
+
const instance: V1AstroTarget = {
|
|
23
|
+
id,
|
|
24
|
+
ngc_id,
|
|
25
|
+
ic_id,
|
|
26
|
+
name,
|
|
27
|
+
messier_catalog_name,
|
|
28
|
+
ra,
|
|
29
|
+
dec,
|
|
30
|
+
};
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# V1CalibrationMaster
|
|
2
|
+
|
|
3
|
+
Calibration Master
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**calibrationMasterType** | [**CalibrationMasterType**](CalibrationMasterType.md) | | [default to undefined]
|
|
11
|
+
**filterType** | [**FilterType**](FilterType.md) | | [optional] [default to undefined]
|
|
12
|
+
**binXY** | **number** | | [default to undefined]
|
|
13
|
+
**gain** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**readoutMode** | **number** | | [optional] [default to undefined]
|
|
15
|
+
**temperature** | **number** | temperature in degrees celsius | [optional] [default to undefined]
|
|
16
|
+
**exposureTime** | **number** | | [default to undefined]
|
|
17
|
+
**offset** | **number** | | [optional] [default to undefined]
|
|
18
|
+
**createdAt** | **string** | | [default to undefined]
|
|
19
|
+
**createdBy** | **string** | | [default to undefined]
|
|
20
|
+
**rotatorAngle** | **number** | | [optional] [default to undefined]
|
|
21
|
+
|
|
22
|
+
## Example
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
import { V1CalibrationMaster } from '@ourskyai/astro-api';
|
|
26
|
+
|
|
27
|
+
const instance: V1CalibrationMaster = {
|
|
28
|
+
id,
|
|
29
|
+
calibrationMasterType,
|
|
30
|
+
filterType,
|
|
31
|
+
binXY,
|
|
32
|
+
gain,
|
|
33
|
+
readoutMode,
|
|
34
|
+
temperature,
|
|
35
|
+
exposureTime,
|
|
36
|
+
offset,
|
|
37
|
+
createdAt,
|
|
38
|
+
createdBy,
|
|
39
|
+
rotatorAngle,
|
|
40
|
+
};
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/V1Camera.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# V1Camera
|
|
2
|
+
|
|
3
|
+
Camera
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**model** | **string** | | [default to undefined]
|
|
11
|
+
**pixelSizeMicrons** | **number** | | [default to undefined]
|
|
12
|
+
**pixelsX** | **number** | | [optional] [default to undefined]
|
|
13
|
+
**pixelsY** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**megapixels** | **number** | | [default to undefined]
|
|
15
|
+
**chilled** | **boolean** | | [default to undefined]
|
|
16
|
+
**adcBitDepth** | **number** | | [default to undefined]
|
|
17
|
+
**gpsTimestamps** | **boolean** | | [optional] [default to undefined]
|
|
18
|
+
**shutterType** | [**ShutterType**](ShutterType.md) | | [default to undefined]
|
|
19
|
+
**fullWellCapacity** | **number** | | [optional] [default to undefined]
|
|
20
|
+
**setupActions** | [**Array<V1SetupAction>**](V1SetupAction.md) | | [optional] [default to undefined]
|
|
21
|
+
**isColor** | **boolean** | | [default to undefined]
|
|
22
|
+
**videoModeFramerateProperties** | [**Array<V1VideoModeFramerateProperty>**](V1VideoModeFramerateProperty.md) | | [optional] [default to undefined]
|
|
23
|
+
|
|
24
|
+
## Example
|
|
25
|
+
|
|
26
|
+
```typescript
|
|
27
|
+
import { V1Camera } from '@ourskyai/astro-api';
|
|
28
|
+
|
|
29
|
+
const instance: V1Camera = {
|
|
30
|
+
id,
|
|
31
|
+
model,
|
|
32
|
+
pixelSizeMicrons,
|
|
33
|
+
pixelsX,
|
|
34
|
+
pixelsY,
|
|
35
|
+
megapixels,
|
|
36
|
+
chilled,
|
|
37
|
+
adcBitDepth,
|
|
38
|
+
gpsTimestamps,
|
|
39
|
+
shutterType,
|
|
40
|
+
fullWellCapacity,
|
|
41
|
+
setupActions,
|
|
42
|
+
isColor,
|
|
43
|
+
videoModeFramerateProperties,
|
|
44
|
+
};
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# V1CreateAstroProjectImageSetRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**projectId** | **string** | | [default to undefined]
|
|
9
|
+
**nodeId** | **string** | | [default to undefined]
|
|
10
|
+
**filterType** | [**FilterType**](FilterType.md) | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { V1CreateAstroProjectImageSetRequest } from '@ourskyai/astro-api';
|
|
16
|
+
|
|
17
|
+
const instance: V1CreateAstroProjectImageSetRequest = {
|
|
18
|
+
projectId,
|
|
19
|
+
nodeId,
|
|
20
|
+
filterType,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# V1CreateAstroProjectRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**name** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**targetId** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**ra** | **number** | | [optional] [default to undefined]
|
|
11
|
+
**dec** | **number** | | [optional] [default to undefined]
|
|
12
|
+
**nodeId** | **string** | | [default to undefined]
|
|
13
|
+
**filterType** | [**FilterType**](FilterType.md) | | [optional] [default to undefined]
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { V1CreateAstroProjectRequest } from '@ourskyai/astro-api';
|
|
19
|
+
|
|
20
|
+
const instance: V1CreateAstroProjectRequest = {
|
|
21
|
+
name,
|
|
22
|
+
targetId,
|
|
23
|
+
ra,
|
|
24
|
+
dec,
|
|
25
|
+
nodeId,
|
|
26
|
+
filterType,
|
|
27
|
+
};
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# V1CreateAstroProjectResponse
|
|
2
|
+
|
|
3
|
+
Create Astro Response
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**imageSetId** | **string** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { V1CreateAstroProjectResponse } from '@ourskyai/astro-api';
|
|
16
|
+
|
|
17
|
+
const instance: V1CreateAstroProjectResponse = {
|
|
18
|
+
id,
|
|
19
|
+
imageSetId,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|