@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,42 @@
|
|
|
1
|
+
# V1CreateCalibrationMasterRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**nodeId** | **string** | | [default to undefined]
|
|
9
|
+
**calibrationMasterType** | [**CalibrationMasterType**](CalibrationMasterType.md) | | [default to undefined]
|
|
10
|
+
**filterType** | [**FilterType**](FilterType.md) | | [optional] [default to undefined]
|
|
11
|
+
**binXY** | **number** | | [default to undefined]
|
|
12
|
+
**gain** | **number** | | [optional] [default to undefined]
|
|
13
|
+
**readoutMode** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**temperature** | **number** | temperature in degrees celsius | [optional] [default to undefined]
|
|
15
|
+
**exposureTime** | **number** | | [default to undefined]
|
|
16
|
+
**rotatorAngle** | **number** | | [optional] [default to undefined]
|
|
17
|
+
**offset** | **number** | | [optional] [default to undefined]
|
|
18
|
+
**overwrite** | **boolean** | | [optional] [default to undefined]
|
|
19
|
+
**capturedAt** | **string** | | [optional] [default to undefined]
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { V1CreateCalibrationMasterRequest } from '@ourskyai/astro-api';
|
|
25
|
+
|
|
26
|
+
const instance: V1CreateCalibrationMasterRequest = {
|
|
27
|
+
nodeId,
|
|
28
|
+
calibrationMasterType,
|
|
29
|
+
filterType,
|
|
30
|
+
binXY,
|
|
31
|
+
gain,
|
|
32
|
+
readoutMode,
|
|
33
|
+
temperature,
|
|
34
|
+
exposureTime,
|
|
35
|
+
rotatorAngle,
|
|
36
|
+
offset,
|
|
37
|
+
overwrite,
|
|
38
|
+
capturedAt,
|
|
39
|
+
};
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
[[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
|
+
# V1CreateCalibrationMasterResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**uploadUrl** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { V1CreateCalibrationMasterResponse } from '@ourskyai/astro-api';
|
|
15
|
+
|
|
16
|
+
const instance: V1CreateCalibrationMasterResponse = {
|
|
17
|
+
id,
|
|
18
|
+
uploadUrl,
|
|
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,22 @@
|
|
|
1
|
+
# V1CreateCalibrationSetImageRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**calibrationSetId** | **string** | | [default to undefined]
|
|
9
|
+
**nodeId** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { V1CreateCalibrationSetImageRequest } from '@ourskyai/astro-api';
|
|
15
|
+
|
|
16
|
+
const instance: V1CreateCalibrationSetImageRequest = {
|
|
17
|
+
calibrationSetId,
|
|
18
|
+
nodeId,
|
|
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,22 @@
|
|
|
1
|
+
# V1CreateCalibrationSetImageResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**uploadUrl** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { V1CreateCalibrationSetImageResponse } from '@ourskyai/astro-api';
|
|
15
|
+
|
|
16
|
+
const instance: V1CreateCalibrationSetImageResponse = {
|
|
17
|
+
id,
|
|
18
|
+
uploadUrl,
|
|
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,40 @@
|
|
|
1
|
+
# V1CreateCalibrationSetRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**nodeId** | **string** | | [default to undefined]
|
|
9
|
+
**calibrationSetType** | [**CalibrationMasterType**](CalibrationMasterType.md) | | [default to undefined]
|
|
10
|
+
**filterType** | [**FilterType**](FilterType.md) | | [optional] [default to undefined]
|
|
11
|
+
**binXY** | **number** | | [default to undefined]
|
|
12
|
+
**gain** | **number** | | [optional] [default to undefined]
|
|
13
|
+
**readoutMode** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**temperature** | **number** | temperature in degrees celsius | [optional] [default to undefined]
|
|
15
|
+
**exposureTime** | **number** | | [default to undefined]
|
|
16
|
+
**rotatorAngle** | **number** | | [optional] [default to undefined]
|
|
17
|
+
**offset** | **number** | | [optional] [default to undefined]
|
|
18
|
+
**capturedAt** | **string** | | [optional] [default to undefined]
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import { V1CreateCalibrationSetRequest } from '@ourskyai/astro-api';
|
|
24
|
+
|
|
25
|
+
const instance: V1CreateCalibrationSetRequest = {
|
|
26
|
+
nodeId,
|
|
27
|
+
calibrationSetType,
|
|
28
|
+
filterType,
|
|
29
|
+
binXY,
|
|
30
|
+
gain,
|
|
31
|
+
readoutMode,
|
|
32
|
+
temperature,
|
|
33
|
+
exposureTime,
|
|
34
|
+
rotatorAngle,
|
|
35
|
+
offset,
|
|
36
|
+
capturedAt,
|
|
37
|
+
};
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
[[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
|
+
# V1CreateCalibrationSetResponse
|
|
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 { V1CreateCalibrationSetResponse } from '@ourskyai/astro-api';
|
|
14
|
+
|
|
15
|
+
const instance: V1CreateCalibrationSetResponse = {
|
|
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,32 @@
|
|
|
1
|
+
# V1CreateImageSetImageRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**imageSetId** | **string** | | [default to undefined]
|
|
9
|
+
**imageFileType** | [**V1ImageFileType**](V1ImageFileType.md) | | [optional] [default to undefined]
|
|
10
|
+
**binning** | **number** | | [optional] [default to undefined]
|
|
11
|
+
**exposureLength** | **number** | | [optional] [default to undefined]
|
|
12
|
+
**imageSha** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**imageSizeMb** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**capturedAt** | **string** | | [optional] [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { V1CreateImageSetImageRequest } from '@ourskyai/astro-api';
|
|
20
|
+
|
|
21
|
+
const instance: V1CreateImageSetImageRequest = {
|
|
22
|
+
imageSetId,
|
|
23
|
+
imageFileType,
|
|
24
|
+
binning,
|
|
25
|
+
exposureLength,
|
|
26
|
+
imageSha,
|
|
27
|
+
imageSizeMb,
|
|
28
|
+
capturedAt,
|
|
29
|
+
};
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
[[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
|
+
# V1CreateImageSetImageResponse
|
|
2
|
+
|
|
3
|
+
Response from image creation, with image ID and presigned S3 upload URL.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**uploadUrl** | **string** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { V1CreateImageSetImageResponse } from '@ourskyai/astro-api';
|
|
16
|
+
|
|
17
|
+
const instance: V1CreateImageSetImageResponse = {
|
|
18
|
+
id,
|
|
19
|
+
uploadUrl,
|
|
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)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# V1CreateImageSetRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**nodeId** | **string** | | [default to undefined]
|
|
9
|
+
**observationId** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**type** | [**ImageSetType**](ImageSetType.md) | | [default to undefined]
|
|
11
|
+
**trackingType** | [**TrackingType**](TrackingType.md) | | [optional] [default to undefined]
|
|
12
|
+
**filterType** | [**FilterType**](FilterType.md) | | [optional] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { V1CreateImageSetRequest } from '@ourskyai/astro-api';
|
|
18
|
+
|
|
19
|
+
const instance: V1CreateImageSetRequest = {
|
|
20
|
+
nodeId,
|
|
21
|
+
observationId,
|
|
22
|
+
type,
|
|
23
|
+
trackingType,
|
|
24
|
+
filterType,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[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,37 @@
|
|
|
1
|
+
# V1CreateNodeRequest
|
|
2
|
+
|
|
3
|
+
Create Node
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**name** | **string** | | [default to undefined]
|
|
10
|
+
**observatoryId** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**cameraId** | **string** | | [default to undefined]
|
|
12
|
+
**opticalTubeId** | **string** | | [default to undefined]
|
|
13
|
+
**mountId** | **string** | | [default to undefined]
|
|
14
|
+
**filterWheelId** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**focuserId** | **string** | | [optional] [default to undefined]
|
|
16
|
+
**maxAltitude** | **number** | | [default to undefined]
|
|
17
|
+
**location** | [**Location**](Location.md) | | [default to undefined]
|
|
18
|
+
|
|
19
|
+
## Example
|
|
20
|
+
|
|
21
|
+
```typescript
|
|
22
|
+
import { V1CreateNodeRequest } from '@ourskyai/astro-api';
|
|
23
|
+
|
|
24
|
+
const instance: V1CreateNodeRequest = {
|
|
25
|
+
name,
|
|
26
|
+
observatoryId,
|
|
27
|
+
cameraId,
|
|
28
|
+
opticalTubeId,
|
|
29
|
+
mountId,
|
|
30
|
+
filterWheelId,
|
|
31
|
+
focuserId,
|
|
32
|
+
maxAltitude,
|
|
33
|
+
location,
|
|
34
|
+
};
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
[[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,28 @@
|
|
|
1
|
+
# V1CreateOpticalTrainInstanceRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**cameraInstanceId** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**rotatorInstanceId** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**filterWheelInstanceId** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**focuserInstanceId** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**opticalTubeInstanceId** | **string** | | [optional] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { V1CreateOpticalTrainInstanceRequest } from '@ourskyai/astro-api';
|
|
18
|
+
|
|
19
|
+
const instance: V1CreateOpticalTrainInstanceRequest = {
|
|
20
|
+
cameraInstanceId,
|
|
21
|
+
rotatorInstanceId,
|
|
22
|
+
filterWheelInstanceId,
|
|
23
|
+
focuserInstanceId,
|
|
24
|
+
opticalTubeInstanceId,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[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,25 @@
|
|
|
1
|
+
# V1ElevationMaskPoint
|
|
2
|
+
|
|
3
|
+
Elevation Mask Point
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**azimuthDegrees** | **number** | | [default to undefined]
|
|
10
|
+
**minAltitudeDegrees** | **number** | | [default to undefined]
|
|
11
|
+
**maxAltitudeDegrees** | **number** | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { V1ElevationMaskPoint } from '@ourskyai/astro-api';
|
|
17
|
+
|
|
18
|
+
const instance: V1ElevationMaskPoint = {
|
|
19
|
+
azimuthDegrees,
|
|
20
|
+
minAltitudeDegrees,
|
|
21
|
+
maxAltitudeDegrees,
|
|
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,27 @@
|
|
|
1
|
+
# V1Focuser
|
|
2
|
+
|
|
3
|
+
Focuser
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | | [default to undefined]
|
|
10
|
+
**model** | **string** | | [default to undefined]
|
|
11
|
+
**manufacturer** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**travelDistanceMm** | **number** | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { V1Focuser } from '@ourskyai/astro-api';
|
|
18
|
+
|
|
19
|
+
const instance: V1Focuser = {
|
|
20
|
+
id,
|
|
21
|
+
model,
|
|
22
|
+
manufacturer,
|
|
23
|
+
travelDistanceMm,
|
|
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)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# V1GainCurve
|
|
2
|
+
|
|
3
|
+
Gain Curve
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**gainMode** | **number** | | [default to undefined]
|
|
10
|
+
**gainCurve** | [**Array<V1GainCurvePoint>**](V1GainCurvePoint.md) | | [default to undefined]
|
|
11
|
+
**readoutNoiseCurve** | [**Array<V1ReadNoisePoint>**](V1ReadNoisePoint.md) | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { V1GainCurve } from '@ourskyai/astro-api';
|
|
17
|
+
|
|
18
|
+
const instance: V1GainCurve = {
|
|
19
|
+
gainMode,
|
|
20
|
+
gainCurve,
|
|
21
|
+
readoutNoiseCurve,
|
|
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,22 @@
|
|
|
1
|
+
# V1GainCurvePoint
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**gain** | **number** | | [default to undefined]
|
|
9
|
+
**eADU** | **number** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { V1GainCurvePoint } from '@ourskyai/astro-api';
|
|
15
|
+
|
|
16
|
+
const instance: V1GainCurvePoint = {
|
|
17
|
+
gain,
|
|
18
|
+
eADU,
|
|
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,21 @@
|
|
|
1
|
+
# V1GetAstroPlatformCreditBalanceResponse
|
|
2
|
+
|
|
3
|
+
Astro Platform Credit Balance
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**amount** | **number** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { V1GetAstroPlatformCreditBalanceResponse } from '@ourskyai/astro-api';
|
|
15
|
+
|
|
16
|
+
const instance: V1GetAstroPlatformCreditBalanceResponse = {
|
|
17
|
+
amount,
|
|
18
|
+
};
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
[[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
|
+
# V1GetNodes
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**nodes** | [**Array<V1NodeWithLocation>**](V1NodeWithLocation.md) | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { V1GetNodes } from '@ourskyai/astro-api';
|
|
14
|
+
|
|
15
|
+
const instance: V1GetNodes = {
|
|
16
|
+
nodes,
|
|
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
|
+
# V1GetOrCreateCameraRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**model** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**pixelSizeMicrons** | **number** | | [optional] [default to undefined]
|
|
10
|
+
**fullWellCapacity** | **number** | | [optional] [default to undefined]
|
|
11
|
+
**pixelsX** | **number** | | [optional] [default to undefined]
|
|
12
|
+
**pixelsY** | **number** | | [optional] [default to undefined]
|
|
13
|
+
**megapixels** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**chilled** | **boolean** | | [optional] [default to undefined]
|
|
15
|
+
**shutterType** | [**ShutterType**](ShutterType.md) | | [optional] [default to undefined]
|
|
16
|
+
**sensorXmm** | **number** | | [optional] [default to undefined]
|
|
17
|
+
**sensorYmm** | **number** | | [optional] [default to undefined]
|
|
18
|
+
**unityGain** | **number** | | [optional] [default to undefined]
|
|
19
|
+
**optimalNighttimeGain** | **number** | | [optional] [default to undefined]
|
|
20
|
+
**optimalNighttimeGainOffset** | **number** | | [optional] [default to undefined]
|
|
21
|
+
**optimalNighttimeGainMode** | **number** | | [optional] [default to undefined]
|
|
22
|
+
**supportsVideoMode** | **boolean** | | [optional] [default to undefined]
|
|
23
|
+
**adcBitDepth** | **number** | | [optional] [default to undefined]
|
|
24
|
+
**quantumEfficiency** | **number** | | [optional] [default to undefined]
|
|
25
|
+
**gainCurves** | [**Array<V1GainCurve>**](V1GainCurve.md) | | [optional] [default to undefined]
|
|
26
|
+
**setupActions** | [**Array<V1SetupAction>**](V1SetupAction.md) | | [optional] [default to undefined]
|
|
27
|
+
**isColor** | **boolean** | | [optional] [default to undefined]
|
|
28
|
+
**videoModeFramerateProperties** | [**Array<V1VideoModeFramerateProperty>**](V1VideoModeFramerateProperty.md) | | [optional] [default to undefined]
|
|
29
|
+
|
|
30
|
+
## Example
|
|
31
|
+
|
|
32
|
+
```typescript
|
|
33
|
+
import { V1GetOrCreateCameraRequest } from '@ourskyai/astro-api';
|
|
34
|
+
|
|
35
|
+
const instance: V1GetOrCreateCameraRequest = {
|
|
36
|
+
model,
|
|
37
|
+
pixelSizeMicrons,
|
|
38
|
+
fullWellCapacity,
|
|
39
|
+
pixelsX,
|
|
40
|
+
pixelsY,
|
|
41
|
+
megapixels,
|
|
42
|
+
chilled,
|
|
43
|
+
shutterType,
|
|
44
|
+
sensorXmm,
|
|
45
|
+
sensorYmm,
|
|
46
|
+
unityGain,
|
|
47
|
+
optimalNighttimeGain,
|
|
48
|
+
optimalNighttimeGainOffset,
|
|
49
|
+
optimalNighttimeGainMode,
|
|
50
|
+
supportsVideoMode,
|
|
51
|
+
adcBitDepth,
|
|
52
|
+
quantumEfficiency,
|
|
53
|
+
gainCurves,
|
|
54
|
+
setupActions,
|
|
55
|
+
isColor,
|
|
56
|
+
videoModeFramerateProperties,
|
|
57
|
+
};
|
|
58
|
+
```
|
|
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,24 @@
|
|
|
1
|
+
# V1GetOrCreateFocuserRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**model** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**manufacturer** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**travelDistanceMm** | **number** | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { V1GetOrCreateFocuserRequest } from '@ourskyai/astro-api';
|
|
16
|
+
|
|
17
|
+
const instance: V1GetOrCreateFocuserRequest = {
|
|
18
|
+
model,
|
|
19
|
+
manufacturer,
|
|
20
|
+
travelDistanceMm,
|
|
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,24 @@
|
|
|
1
|
+
# V1GetOrCreateMountRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**model** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**type** | [**MountType**](MountType.md) | | [optional] [default to undefined]
|
|
10
|
+
**geometry** | [**MountGeometry**](MountGeometry.md) | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { V1GetOrCreateMountRequest } from '@ourskyai/astro-api';
|
|
16
|
+
|
|
17
|
+
const instance: V1GetOrCreateMountRequest = {
|
|
18
|
+
model,
|
|
19
|
+
type,
|
|
20
|
+
geometry,
|
|
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,26 @@
|
|
|
1
|
+
# V1GetOrCreateOpticalTubeRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**model** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**focalLengthMm** | **number** | | [optional] [default to undefined]
|
|
10
|
+
**apertureMm** | **number** | | [optional] [default to undefined]
|
|
11
|
+
**type** | [**OpticalTubeType**](OpticalTubeType.md) | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { V1GetOrCreateOpticalTubeRequest } from '@ourskyai/astro-api';
|
|
17
|
+
|
|
18
|
+
const instance: V1GetOrCreateOpticalTubeRequest = {
|
|
19
|
+
model,
|
|
20
|
+
focalLengthMm,
|
|
21
|
+
apertureMm,
|
|
22
|
+
type,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|