@ourskyai/astro-api 1.3.1945 → 1.3.2151
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 +267 -65
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +180 -29
- package/dist/api.js +131 -57
- 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 +180 -29
- package/dist/esm/api.js +131 -57
- 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.2151
|
|
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.2151 --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.2151
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -619,6 +619,12 @@ export interface V1Camera {
|
|
|
619
619
|
* @memberof V1Camera
|
|
620
620
|
*/
|
|
621
621
|
'isColor': boolean;
|
|
622
|
+
/**
|
|
623
|
+
*
|
|
624
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
625
|
+
* @memberof V1Camera
|
|
626
|
+
*/
|
|
627
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
622
628
|
}
|
|
623
629
|
|
|
624
630
|
|
|
@@ -939,6 +945,12 @@ export interface V1CreateCameraRequest {
|
|
|
939
945
|
* @memberof V1CreateCameraRequest
|
|
940
946
|
*/
|
|
941
947
|
'isColor': boolean;
|
|
948
|
+
/**
|
|
949
|
+
*
|
|
950
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
951
|
+
* @memberof V1CreateCameraRequest
|
|
952
|
+
*/
|
|
953
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
942
954
|
}
|
|
943
955
|
|
|
944
956
|
|
|
@@ -1128,6 +1140,31 @@ export interface V1CreateOpticalTubeRequest {
|
|
|
1128
1140
|
}
|
|
1129
1141
|
|
|
1130
1142
|
|
|
1143
|
+
/**
|
|
1144
|
+
* Elevation Mask Point
|
|
1145
|
+
* @export
|
|
1146
|
+
* @interface V1ElevationMaskPoint
|
|
1147
|
+
*/
|
|
1148
|
+
export interface V1ElevationMaskPoint {
|
|
1149
|
+
/**
|
|
1150
|
+
*
|
|
1151
|
+
* @type {number}
|
|
1152
|
+
* @memberof V1ElevationMaskPoint
|
|
1153
|
+
*/
|
|
1154
|
+
'azimuthDegrees': number;
|
|
1155
|
+
/**
|
|
1156
|
+
*
|
|
1157
|
+
* @type {number}
|
|
1158
|
+
* @memberof V1ElevationMaskPoint
|
|
1159
|
+
*/
|
|
1160
|
+
'minAltitudeDegrees': number;
|
|
1161
|
+
/**
|
|
1162
|
+
*
|
|
1163
|
+
* @type {number}
|
|
1164
|
+
* @memberof V1ElevationMaskPoint
|
|
1165
|
+
*/
|
|
1166
|
+
'maxAltitudeDegrees': number;
|
|
1167
|
+
}
|
|
1131
1168
|
/**
|
|
1132
1169
|
* Gain Curve
|
|
1133
1170
|
* @export
|
|
@@ -1330,6 +1367,12 @@ export interface V1GetOrCreateCameraRequest {
|
|
|
1330
1367
|
* @memberof V1GetOrCreateCameraRequest
|
|
1331
1368
|
*/
|
|
1332
1369
|
'isColor'?: boolean;
|
|
1370
|
+
/**
|
|
1371
|
+
*
|
|
1372
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
1373
|
+
* @memberof V1GetOrCreateCameraRequest
|
|
1374
|
+
*/
|
|
1375
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
1333
1376
|
}
|
|
1334
1377
|
|
|
1335
1378
|
|
|
@@ -1762,6 +1805,12 @@ export interface V1Node {
|
|
|
1762
1805
|
* @memberof V1Node
|
|
1763
1806
|
*/
|
|
1764
1807
|
'minAltitude': number;
|
|
1808
|
+
/**
|
|
1809
|
+
*
|
|
1810
|
+
* @type {Array<V1ElevationMaskPoint>}
|
|
1811
|
+
* @memberof V1Node
|
|
1812
|
+
*/
|
|
1813
|
+
'elevationMask'?: Array<V1ElevationMaskPoint>;
|
|
1765
1814
|
/**
|
|
1766
1815
|
*
|
|
1767
1816
|
* @type {string}
|
|
@@ -2049,6 +2098,12 @@ export interface V1UpdateNodeRequest {
|
|
|
2049
2098
|
* @memberof V1UpdateNodeRequest
|
|
2050
2099
|
*/
|
|
2051
2100
|
'maxAltitude'?: number;
|
|
2101
|
+
/**
|
|
2102
|
+
*
|
|
2103
|
+
* @type {Array<V1ElevationMaskPoint>}
|
|
2104
|
+
* @memberof V1UpdateNodeRequest
|
|
2105
|
+
*/
|
|
2106
|
+
'elevationMask'?: Array<V1ElevationMaskPoint>;
|
|
2052
2107
|
/**
|
|
2053
2108
|
*
|
|
2054
2109
|
* @type {Location}
|
|
@@ -2064,6 +2119,43 @@ export interface V1UpdateNodeRequest {
|
|
|
2064
2119
|
}
|
|
2065
2120
|
|
|
2066
2121
|
|
|
2122
|
+
/**
|
|
2123
|
+
*
|
|
2124
|
+
* @export
|
|
2125
|
+
* @interface V1VideoModeFramerateProperty
|
|
2126
|
+
*/
|
|
2127
|
+
export interface V1VideoModeFramerateProperty {
|
|
2128
|
+
/**
|
|
2129
|
+
*
|
|
2130
|
+
* @type {number}
|
|
2131
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2132
|
+
*/
|
|
2133
|
+
'roiXPixels': number;
|
|
2134
|
+
/**
|
|
2135
|
+
*
|
|
2136
|
+
* @type {number}
|
|
2137
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2138
|
+
*/
|
|
2139
|
+
'roiYPixels': number;
|
|
2140
|
+
/**
|
|
2141
|
+
*
|
|
2142
|
+
* @type {number}
|
|
2143
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2144
|
+
*/
|
|
2145
|
+
'adcBitDepth': number;
|
|
2146
|
+
/**
|
|
2147
|
+
*
|
|
2148
|
+
* @type {number}
|
|
2149
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2150
|
+
*/
|
|
2151
|
+
'fps': number;
|
|
2152
|
+
/**
|
|
2153
|
+
*
|
|
2154
|
+
* @type {number}
|
|
2155
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2156
|
+
*/
|
|
2157
|
+
'binning': number;
|
|
2158
|
+
}
|
|
2067
2159
|
|
|
2068
2160
|
/**
|
|
2069
2161
|
* DefaultApi - axios parameter creator
|
|
@@ -2515,6 +2607,90 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2515
2607
|
options: localVarRequestOptions,
|
|
2516
2608
|
};
|
|
2517
2609
|
},
|
|
2610
|
+
/**
|
|
2611
|
+
* Delete an image set.
|
|
2612
|
+
* @param {string} id
|
|
2613
|
+
* @param {*} [options] Override http request option.
|
|
2614
|
+
* @throws {RequiredError}
|
|
2615
|
+
*/
|
|
2616
|
+
v1DeleteImageSet: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2617
|
+
// verify required parameter 'id' is not null or undefined
|
|
2618
|
+
assertParamExists('v1DeleteImageSet', 'id', id)
|
|
2619
|
+
const localVarPath = `/v1/image-set`;
|
|
2620
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2621
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2622
|
+
let baseOptions;
|
|
2623
|
+
if (configuration) {
|
|
2624
|
+
baseOptions = configuration.baseOptions;
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
2628
|
+
const localVarHeaderParameter = {} as any;
|
|
2629
|
+
const localVarQueryParameter = {} as any;
|
|
2630
|
+
|
|
2631
|
+
// authentication Roles required
|
|
2632
|
+
|
|
2633
|
+
// authentication BearerToken required
|
|
2634
|
+
// http bearer authentication required
|
|
2635
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2636
|
+
|
|
2637
|
+
if (id !== undefined) {
|
|
2638
|
+
localVarQueryParameter['id'] = id;
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2641
|
+
|
|
2642
|
+
|
|
2643
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2644
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2645
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2646
|
+
|
|
2647
|
+
return {
|
|
2648
|
+
url: toPathString(localVarUrlObj),
|
|
2649
|
+
options: localVarRequestOptions,
|
|
2650
|
+
};
|
|
2651
|
+
},
|
|
2652
|
+
/**
|
|
2653
|
+
* Delete an image.
|
|
2654
|
+
* @param {string} imageId
|
|
2655
|
+
* @param {*} [options] Override http request option.
|
|
2656
|
+
* @throws {RequiredError}
|
|
2657
|
+
*/
|
|
2658
|
+
v1DeleteImageSetImage: async (imageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2659
|
+
// verify required parameter 'imageId' is not null or undefined
|
|
2660
|
+
assertParamExists('v1DeleteImageSetImage', 'imageId', imageId)
|
|
2661
|
+
const localVarPath = `/v1/image-set-image`;
|
|
2662
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2663
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2664
|
+
let baseOptions;
|
|
2665
|
+
if (configuration) {
|
|
2666
|
+
baseOptions = configuration.baseOptions;
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
2670
|
+
const localVarHeaderParameter = {} as any;
|
|
2671
|
+
const localVarQueryParameter = {} as any;
|
|
2672
|
+
|
|
2673
|
+
// authentication Roles required
|
|
2674
|
+
|
|
2675
|
+
// authentication BearerToken required
|
|
2676
|
+
// http bearer authentication required
|
|
2677
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2678
|
+
|
|
2679
|
+
if (imageId !== undefined) {
|
|
2680
|
+
localVarQueryParameter['imageId'] = imageId;
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
|
|
2684
|
+
|
|
2685
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2686
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2687
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2688
|
+
|
|
2689
|
+
return {
|
|
2690
|
+
url: toPathString(localVarUrlObj),
|
|
2691
|
+
options: localVarRequestOptions,
|
|
2692
|
+
};
|
|
2693
|
+
},
|
|
2518
2694
|
/**
|
|
2519
2695
|
* Get an astro camera.
|
|
2520
2696
|
* @param {string} id
|
|
@@ -3171,41 +3347,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3171
3347
|
|
|
3172
3348
|
|
|
3173
3349
|
|
|
3174
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3175
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3176
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3177
|
-
|
|
3178
|
-
return {
|
|
3179
|
-
url: toPathString(localVarUrlObj),
|
|
3180
|
-
options: localVarRequestOptions,
|
|
3181
|
-
};
|
|
3182
|
-
},
|
|
3183
|
-
/**
|
|
3184
|
-
* Get mounts.
|
|
3185
|
-
* @param {*} [options] Override http request option.
|
|
3186
|
-
* @throws {RequiredError}
|
|
3187
|
-
*/
|
|
3188
|
-
v1GetMounts: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3189
|
-
const localVarPath = `/v1/mounts`;
|
|
3190
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3191
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3192
|
-
let baseOptions;
|
|
3193
|
-
if (configuration) {
|
|
3194
|
-
baseOptions = configuration.baseOptions;
|
|
3195
|
-
}
|
|
3196
|
-
|
|
3197
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3198
|
-
const localVarHeaderParameter = {} as any;
|
|
3199
|
-
const localVarQueryParameter = {} as any;
|
|
3200
|
-
|
|
3201
|
-
// authentication Roles required
|
|
3202
|
-
|
|
3203
|
-
// authentication BearerToken required
|
|
3204
|
-
// http bearer authentication required
|
|
3205
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
3350
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3210
3351
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3211
3352
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3753,6 +3894,26 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3753
3894
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateNode(v1CreateNodeRequest, options);
|
|
3754
3895
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3755
3896
|
},
|
|
3897
|
+
/**
|
|
3898
|
+
* Delete an image set.
|
|
3899
|
+
* @param {string} id
|
|
3900
|
+
* @param {*} [options] Override http request option.
|
|
3901
|
+
* @throws {RequiredError}
|
|
3902
|
+
*/
|
|
3903
|
+
async v1DeleteImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
3904
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteImageSet(id, options);
|
|
3905
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3906
|
+
},
|
|
3907
|
+
/**
|
|
3908
|
+
* Delete an image.
|
|
3909
|
+
* @param {string} imageId
|
|
3910
|
+
* @param {*} [options] Override http request option.
|
|
3911
|
+
* @throws {RequiredError}
|
|
3912
|
+
*/
|
|
3913
|
+
async v1DeleteImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
3914
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteImageSetImage(imageId, options);
|
|
3915
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3916
|
+
},
|
|
3756
3917
|
/**
|
|
3757
3918
|
* Get an astro camera.
|
|
3758
3919
|
* @param {string} id
|
|
@@ -3914,15 +4075,6 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3914
4075
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetJobLogs(astroProjectId, options);
|
|
3915
4076
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3916
4077
|
},
|
|
3917
|
-
/**
|
|
3918
|
-
* Get mounts.
|
|
3919
|
-
* @param {*} [options] Override http request option.
|
|
3920
|
-
* @throws {RequiredError}
|
|
3921
|
-
*/
|
|
3922
|
-
async v1GetMounts(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Mount>>> {
|
|
3923
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetMounts(options);
|
|
3924
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3925
|
-
},
|
|
3926
4078
|
/**
|
|
3927
4079
|
* Get nodes.
|
|
3928
4080
|
* @param {*} [options] Override http request option.
|
|
@@ -4011,7 +4163,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4011
4163
|
* @param {*} [options] Override http request option.
|
|
4012
4164
|
* @throws {RequiredError}
|
|
4013
4165
|
*/
|
|
4014
|
-
async v1PutStackAstroProject(v1PutStackAstroProjectRequest: V1PutStackAstroProjectRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4166
|
+
async v1PutStackAstroProject(v1PutStackAstroProjectRequest: V1PutStackAstroProjectRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
4015
4167
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1PutStackAstroProject(v1PutStackAstroProjectRequest, options);
|
|
4016
4168
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4017
4169
|
},
|
|
@@ -4125,6 +4277,24 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4125
4277
|
v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
4126
4278
|
return localVarFp.v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(axios, basePath));
|
|
4127
4279
|
},
|
|
4280
|
+
/**
|
|
4281
|
+
* Delete an image set.
|
|
4282
|
+
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
4283
|
+
* @param {*} [options] Override http request option.
|
|
4284
|
+
* @throws {RequiredError}
|
|
4285
|
+
*/
|
|
4286
|
+
v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4287
|
+
return localVarFp.v1DeleteImageSet(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4288
|
+
},
|
|
4289
|
+
/**
|
|
4290
|
+
* Delete an image.
|
|
4291
|
+
* @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
|
|
4292
|
+
* @param {*} [options] Override http request option.
|
|
4293
|
+
* @throws {RequiredError}
|
|
4294
|
+
*/
|
|
4295
|
+
v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4296
|
+
return localVarFp.v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(axios, basePath));
|
|
4297
|
+
},
|
|
4128
4298
|
/**
|
|
4129
4299
|
* Get an astro camera.
|
|
4130
4300
|
* @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
|
|
@@ -4265,14 +4435,6 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4265
4435
|
v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1JobLog>> {
|
|
4266
4436
|
return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
|
|
4267
4437
|
},
|
|
4268
|
-
/**
|
|
4269
|
-
* Get mounts.
|
|
4270
|
-
* @param {*} [options] Override http request option.
|
|
4271
|
-
* @throws {RequiredError}
|
|
4272
|
-
*/
|
|
4273
|
-
v1GetMounts(options?: AxiosRequestConfig): AxiosPromise<Array<V1Mount>> {
|
|
4274
|
-
return localVarFp.v1GetMounts(options).then((request) => request(axios, basePath));
|
|
4275
|
-
},
|
|
4276
4438
|
/**
|
|
4277
4439
|
* Get nodes.
|
|
4278
4440
|
* @param {*} [options] Override http request option.
|
|
@@ -4349,7 +4511,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4349
4511
|
* @param {*} [options] Override http request option.
|
|
4350
4512
|
* @throws {RequiredError}
|
|
4351
4513
|
*/
|
|
4352
|
-
v1PutStackAstroProject(requestParameters: DefaultApiV1PutStackAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4514
|
+
v1PutStackAstroProject(requestParameters: DefaultApiV1PutStackAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4353
4515
|
return localVarFp.v1PutStackAstroProject(requestParameters.v1PutStackAstroProjectRequest, options).then((request) => request(axios, basePath));
|
|
4354
4516
|
},
|
|
4355
4517
|
/**
|
|
@@ -4553,6 +4715,34 @@ export interface DefaultApiV1CreateNodeRequest {
|
|
|
4553
4715
|
readonly v1CreateNodeRequest: V1CreateNodeRequest
|
|
4554
4716
|
}
|
|
4555
4717
|
|
|
4718
|
+
/**
|
|
4719
|
+
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
4720
|
+
* @export
|
|
4721
|
+
* @interface DefaultApiV1DeleteImageSetRequest
|
|
4722
|
+
*/
|
|
4723
|
+
export interface DefaultApiV1DeleteImageSetRequest {
|
|
4724
|
+
/**
|
|
4725
|
+
*
|
|
4726
|
+
* @type {string}
|
|
4727
|
+
* @memberof DefaultApiV1DeleteImageSet
|
|
4728
|
+
*/
|
|
4729
|
+
readonly id: string
|
|
4730
|
+
}
|
|
4731
|
+
|
|
4732
|
+
/**
|
|
4733
|
+
* Request parameters for v1DeleteImageSetImage operation in DefaultApi.
|
|
4734
|
+
* @export
|
|
4735
|
+
* @interface DefaultApiV1DeleteImageSetImageRequest
|
|
4736
|
+
*/
|
|
4737
|
+
export interface DefaultApiV1DeleteImageSetImageRequest {
|
|
4738
|
+
/**
|
|
4739
|
+
*
|
|
4740
|
+
* @type {string}
|
|
4741
|
+
* @memberof DefaultApiV1DeleteImageSetImage
|
|
4742
|
+
*/
|
|
4743
|
+
readonly imageId: string
|
|
4744
|
+
}
|
|
4745
|
+
|
|
4556
4746
|
/**
|
|
4557
4747
|
* Request parameters for v1GetAstroCamera operation in DefaultApi.
|
|
4558
4748
|
* @export
|
|
@@ -5013,6 +5203,28 @@ export class DefaultApi extends BaseAPI {
|
|
|
5013
5203
|
return DefaultApiFp(this.configuration).v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5014
5204
|
}
|
|
5015
5205
|
|
|
5206
|
+
/**
|
|
5207
|
+
* Delete an image set.
|
|
5208
|
+
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
5209
|
+
* @param {*} [options] Override http request option.
|
|
5210
|
+
* @throws {RequiredError}
|
|
5211
|
+
* @memberof DefaultApi
|
|
5212
|
+
*/
|
|
5213
|
+
public v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig) {
|
|
5214
|
+
return DefaultApiFp(this.configuration).v1DeleteImageSet(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
5215
|
+
}
|
|
5216
|
+
|
|
5217
|
+
/**
|
|
5218
|
+
* Delete an image.
|
|
5219
|
+
* @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
|
|
5220
|
+
* @param {*} [options] Override http request option.
|
|
5221
|
+
* @throws {RequiredError}
|
|
5222
|
+
* @memberof DefaultApi
|
|
5223
|
+
*/
|
|
5224
|
+
public v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig) {
|
|
5225
|
+
return DefaultApiFp(this.configuration).v1DeleteImageSetImage(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
|
|
5226
|
+
}
|
|
5227
|
+
|
|
5016
5228
|
/**
|
|
5017
5229
|
* Get an astro camera.
|
|
5018
5230
|
* @param {DefaultApiV1GetAstroCameraRequest} requestParameters Request parameters.
|
|
@@ -5185,16 +5397,6 @@ export class DefaultApi extends BaseAPI {
|
|
|
5185
5397
|
return DefaultApiFp(this.configuration).v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
|
|
5186
5398
|
}
|
|
5187
5399
|
|
|
5188
|
-
/**
|
|
5189
|
-
* Get mounts.
|
|
5190
|
-
* @param {*} [options] Override http request option.
|
|
5191
|
-
* @throws {RequiredError}
|
|
5192
|
-
* @memberof DefaultApi
|
|
5193
|
-
*/
|
|
5194
|
-
public v1GetMounts(options?: AxiosRequestConfig) {
|
|
5195
|
-
return DefaultApiFp(this.configuration).v1GetMounts(options).then((request) => request(this.axios, this.basePath));
|
|
5196
|
-
}
|
|
5197
|
-
|
|
5198
5400
|
/**
|
|
5199
5401
|
* Get nodes.
|
|
5200
5402
|
* @param {*} [options] Override http request option.
|
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.2151
|
|
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.2151
|
|
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.2151
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|