@ourskyai/astro-api 1.3.3836 → 1.3.3942
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 +389 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +257 -1
- package/dist/api.js +194 -1
- 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 +257 -1
- package/dist/esm/api.js +194 -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.3942
|
|
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.3942 --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.3942
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1031,6 +1031,132 @@ export interface V1CreateCalibrationMasterResponse {
|
|
|
1031
1031
|
*/
|
|
1032
1032
|
'uploadUrl': string;
|
|
1033
1033
|
}
|
|
1034
|
+
/**
|
|
1035
|
+
*
|
|
1036
|
+
* @export
|
|
1037
|
+
* @interface V1CreateCalibrationSetImageRequest
|
|
1038
|
+
*/
|
|
1039
|
+
export interface V1CreateCalibrationSetImageRequest {
|
|
1040
|
+
/**
|
|
1041
|
+
*
|
|
1042
|
+
* @type {string}
|
|
1043
|
+
* @memberof V1CreateCalibrationSetImageRequest
|
|
1044
|
+
*/
|
|
1045
|
+
'calibrationSetId': string;
|
|
1046
|
+
/**
|
|
1047
|
+
*
|
|
1048
|
+
* @type {string}
|
|
1049
|
+
* @memberof V1CreateCalibrationSetImageRequest
|
|
1050
|
+
*/
|
|
1051
|
+
'nodeId': string;
|
|
1052
|
+
}
|
|
1053
|
+
/**
|
|
1054
|
+
*
|
|
1055
|
+
* @export
|
|
1056
|
+
* @interface V1CreateCalibrationSetImageResponse
|
|
1057
|
+
*/
|
|
1058
|
+
export interface V1CreateCalibrationSetImageResponse {
|
|
1059
|
+
/**
|
|
1060
|
+
*
|
|
1061
|
+
* @type {string}
|
|
1062
|
+
* @memberof V1CreateCalibrationSetImageResponse
|
|
1063
|
+
*/
|
|
1064
|
+
'id': string;
|
|
1065
|
+
/**
|
|
1066
|
+
*
|
|
1067
|
+
* @type {string}
|
|
1068
|
+
* @memberof V1CreateCalibrationSetImageResponse
|
|
1069
|
+
*/
|
|
1070
|
+
'uploadUrl': string;
|
|
1071
|
+
}
|
|
1072
|
+
/**
|
|
1073
|
+
*
|
|
1074
|
+
* @export
|
|
1075
|
+
* @interface V1CreateCalibrationSetRequest
|
|
1076
|
+
*/
|
|
1077
|
+
export interface V1CreateCalibrationSetRequest {
|
|
1078
|
+
/**
|
|
1079
|
+
*
|
|
1080
|
+
* @type {string}
|
|
1081
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1082
|
+
*/
|
|
1083
|
+
'nodeId': string;
|
|
1084
|
+
/**
|
|
1085
|
+
*
|
|
1086
|
+
* @type {CalibrationMasterType}
|
|
1087
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1088
|
+
*/
|
|
1089
|
+
'calibrationSetType': CalibrationMasterType;
|
|
1090
|
+
/**
|
|
1091
|
+
*
|
|
1092
|
+
* @type {FilterType}
|
|
1093
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1094
|
+
*/
|
|
1095
|
+
'filterType'?: FilterType;
|
|
1096
|
+
/**
|
|
1097
|
+
*
|
|
1098
|
+
* @type {number}
|
|
1099
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1100
|
+
*/
|
|
1101
|
+
'binXY': number;
|
|
1102
|
+
/**
|
|
1103
|
+
*
|
|
1104
|
+
* @type {number}
|
|
1105
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1106
|
+
*/
|
|
1107
|
+
'gain'?: number;
|
|
1108
|
+
/**
|
|
1109
|
+
*
|
|
1110
|
+
* @type {number}
|
|
1111
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1112
|
+
*/
|
|
1113
|
+
'readoutMode'?: number;
|
|
1114
|
+
/**
|
|
1115
|
+
* temperature in degrees celsius
|
|
1116
|
+
* @type {number}
|
|
1117
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1118
|
+
*/
|
|
1119
|
+
'temperature'?: number;
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @type {number}
|
|
1123
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1124
|
+
*/
|
|
1125
|
+
'exposureTime': number;
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {number}
|
|
1129
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1130
|
+
*/
|
|
1131
|
+
'rotatorAngle'?: number;
|
|
1132
|
+
/**
|
|
1133
|
+
*
|
|
1134
|
+
* @type {number}
|
|
1135
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1136
|
+
*/
|
|
1137
|
+
'offset'?: number;
|
|
1138
|
+
/**
|
|
1139
|
+
*
|
|
1140
|
+
* @type {string}
|
|
1141
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1142
|
+
*/
|
|
1143
|
+
'capturedAt'?: string;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
*
|
|
1149
|
+
* @export
|
|
1150
|
+
* @interface V1CreateCalibrationSetResponse
|
|
1151
|
+
*/
|
|
1152
|
+
export interface V1CreateCalibrationSetResponse {
|
|
1153
|
+
/**
|
|
1154
|
+
*
|
|
1155
|
+
* @type {string}
|
|
1156
|
+
* @memberof V1CreateCalibrationSetResponse
|
|
1157
|
+
*/
|
|
1158
|
+
'id': string;
|
|
1159
|
+
}
|
|
1034
1160
|
/**
|
|
1035
1161
|
*
|
|
1036
1162
|
* @export
|
|
@@ -2077,6 +2203,12 @@ export interface V1Node {
|
|
|
2077
2203
|
* @memberof V1Node
|
|
2078
2204
|
*/
|
|
2079
2205
|
'id': string;
|
|
2206
|
+
/**
|
|
2207
|
+
*
|
|
2208
|
+
* @type {Location}
|
|
2209
|
+
* @memberof V1Node
|
|
2210
|
+
*/
|
|
2211
|
+
'location': Location;
|
|
2080
2212
|
}
|
|
2081
2213
|
|
|
2082
2214
|
|
|
@@ -2795,6 +2927,88 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2795
2927
|
options: localVarRequestOptions,
|
|
2796
2928
|
};
|
|
2797
2929
|
},
|
|
2930
|
+
/**
|
|
2931
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
2932
|
+
* @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
|
|
2933
|
+
* @param {*} [options] Override http request option.
|
|
2934
|
+
* @throws {RequiredError}
|
|
2935
|
+
*/
|
|
2936
|
+
v1CreateCalibrationSet: async (v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2937
|
+
// verify required parameter 'v1CreateCalibrationSetRequest' is not null or undefined
|
|
2938
|
+
assertParamExists('v1CreateCalibrationSet', 'v1CreateCalibrationSetRequest', v1CreateCalibrationSetRequest)
|
|
2939
|
+
const localVarPath = `/v1/calibration-set`;
|
|
2940
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2941
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2942
|
+
let baseOptions;
|
|
2943
|
+
if (configuration) {
|
|
2944
|
+
baseOptions = configuration.baseOptions;
|
|
2945
|
+
}
|
|
2946
|
+
|
|
2947
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2948
|
+
const localVarHeaderParameter = {} as any;
|
|
2949
|
+
const localVarQueryParameter = {} as any;
|
|
2950
|
+
|
|
2951
|
+
// authentication Roles required
|
|
2952
|
+
|
|
2953
|
+
// authentication BearerToken required
|
|
2954
|
+
// http bearer authentication required
|
|
2955
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2956
|
+
|
|
2957
|
+
|
|
2958
|
+
|
|
2959
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2960
|
+
|
|
2961
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2962
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2963
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2964
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateCalibrationSetRequest, localVarRequestOptions, configuration)
|
|
2965
|
+
|
|
2966
|
+
return {
|
|
2967
|
+
url: toPathString(localVarUrlObj),
|
|
2968
|
+
options: localVarRequestOptions,
|
|
2969
|
+
};
|
|
2970
|
+
},
|
|
2971
|
+
/**
|
|
2972
|
+
* Create a calibration set image.
|
|
2973
|
+
* @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
|
|
2974
|
+
* @param {*} [options] Override http request option.
|
|
2975
|
+
* @throws {RequiredError}
|
|
2976
|
+
*/
|
|
2977
|
+
v1CreateCalibrationSetImage: async (v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2978
|
+
// verify required parameter 'v1CreateCalibrationSetImageRequest' is not null or undefined
|
|
2979
|
+
assertParamExists('v1CreateCalibrationSetImage', 'v1CreateCalibrationSetImageRequest', v1CreateCalibrationSetImageRequest)
|
|
2980
|
+
const localVarPath = `/v1/calibration-set-image`;
|
|
2981
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2982
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2983
|
+
let baseOptions;
|
|
2984
|
+
if (configuration) {
|
|
2985
|
+
baseOptions = configuration.baseOptions;
|
|
2986
|
+
}
|
|
2987
|
+
|
|
2988
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2989
|
+
const localVarHeaderParameter = {} as any;
|
|
2990
|
+
const localVarQueryParameter = {} as any;
|
|
2991
|
+
|
|
2992
|
+
// authentication Roles required
|
|
2993
|
+
|
|
2994
|
+
// authentication BearerToken required
|
|
2995
|
+
// http bearer authentication required
|
|
2996
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2997
|
+
|
|
2998
|
+
|
|
2999
|
+
|
|
3000
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3001
|
+
|
|
3002
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3003
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3004
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3005
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateCalibrationSetImageRequest, localVarRequestOptions, configuration)
|
|
3006
|
+
|
|
3007
|
+
return {
|
|
3008
|
+
url: toPathString(localVarUrlObj),
|
|
3009
|
+
options: localVarRequestOptions,
|
|
3010
|
+
};
|
|
3011
|
+
},
|
|
2798
3012
|
/**
|
|
2799
3013
|
* Create an image set.
|
|
2800
3014
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -3742,6 +3956,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3742
3956
|
|
|
3743
3957
|
|
|
3744
3958
|
|
|
3959
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3960
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3961
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3962
|
+
|
|
3963
|
+
return {
|
|
3964
|
+
url: toPathString(localVarUrlObj),
|
|
3965
|
+
options: localVarRequestOptions,
|
|
3966
|
+
};
|
|
3967
|
+
},
|
|
3968
|
+
/**
|
|
3969
|
+
* Get node by lineage id.
|
|
3970
|
+
* @param {string} lineageId
|
|
3971
|
+
* @param {*} [options] Override http request option.
|
|
3972
|
+
* @throws {RequiredError}
|
|
3973
|
+
*/
|
|
3974
|
+
v1GetNode: async (lineageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3975
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
3976
|
+
assertParamExists('v1GetNode', 'lineageId', lineageId)
|
|
3977
|
+
const localVarPath = `/v1/node`;
|
|
3978
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3979
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3980
|
+
let baseOptions;
|
|
3981
|
+
if (configuration) {
|
|
3982
|
+
baseOptions = configuration.baseOptions;
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3986
|
+
const localVarHeaderParameter = {} as any;
|
|
3987
|
+
const localVarQueryParameter = {} as any;
|
|
3988
|
+
|
|
3989
|
+
// authentication Roles required
|
|
3990
|
+
|
|
3991
|
+
// authentication BearerToken required
|
|
3992
|
+
// http bearer authentication required
|
|
3993
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3994
|
+
|
|
3995
|
+
if (lineageId !== undefined) {
|
|
3996
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
3997
|
+
}
|
|
3998
|
+
|
|
3999
|
+
|
|
4000
|
+
|
|
3745
4001
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3746
4002
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3747
4003
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4364,6 +4620,26 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4364
4620
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateCalibrationMaster(v1CreateCalibrationMasterRequest, options);
|
|
4365
4621
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4366
4622
|
},
|
|
4623
|
+
/**
|
|
4624
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
4625
|
+
* @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
|
|
4626
|
+
* @param {*} [options] Override http request option.
|
|
4627
|
+
* @throws {RequiredError}
|
|
4628
|
+
*/
|
|
4629
|
+
async v1CreateCalibrationSet(v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationSetResponse>> {
|
|
4630
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateCalibrationSet(v1CreateCalibrationSetRequest, options);
|
|
4631
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4632
|
+
},
|
|
4633
|
+
/**
|
|
4634
|
+
* Create a calibration set image.
|
|
4635
|
+
* @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
|
|
4636
|
+
* @param {*} [options] Override http request option.
|
|
4637
|
+
* @throws {RequiredError}
|
|
4638
|
+
*/
|
|
4639
|
+
async v1CreateCalibrationSetImage(v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationSetImageResponse>> {
|
|
4640
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateCalibrationSetImage(v1CreateCalibrationSetImageRequest, options);
|
|
4641
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4642
|
+
},
|
|
4367
4643
|
/**
|
|
4368
4644
|
* Create an image set.
|
|
4369
4645
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -4595,6 +4871,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4595
4871
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetJobLogs(astroProjectId, options);
|
|
4596
4872
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4597
4873
|
},
|
|
4874
|
+
/**
|
|
4875
|
+
* Get node by lineage id.
|
|
4876
|
+
* @param {string} lineageId
|
|
4877
|
+
* @param {*} [options] Override http request option.
|
|
4878
|
+
* @throws {RequiredError}
|
|
4879
|
+
*/
|
|
4880
|
+
async v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>> {
|
|
4881
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNode(lineageId, options);
|
|
4882
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4883
|
+
},
|
|
4598
4884
|
/**
|
|
4599
4885
|
* Get nodes.
|
|
4600
4886
|
* @param {*} [options] Override http request option.
|
|
@@ -4793,6 +5079,24 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4793
5079
|
v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationMasterResponse> {
|
|
4794
5080
|
return localVarFp.v1CreateCalibrationMaster(requestParameters.v1CreateCalibrationMasterRequest, options).then((request) => request(axios, basePath));
|
|
4795
5081
|
},
|
|
5082
|
+
/**
|
|
5083
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
5084
|
+
* @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
|
|
5085
|
+
* @param {*} [options] Override http request option.
|
|
5086
|
+
* @throws {RequiredError}
|
|
5087
|
+
*/
|
|
5088
|
+
v1CreateCalibrationSet(requestParameters: DefaultApiV1CreateCalibrationSetRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationSetResponse> {
|
|
5089
|
+
return localVarFp.v1CreateCalibrationSet(requestParameters.v1CreateCalibrationSetRequest, options).then((request) => request(axios, basePath));
|
|
5090
|
+
},
|
|
5091
|
+
/**
|
|
5092
|
+
* Create a calibration set image.
|
|
5093
|
+
* @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
|
|
5094
|
+
* @param {*} [options] Override http request option.
|
|
5095
|
+
* @throws {RequiredError}
|
|
5096
|
+
*/
|
|
5097
|
+
v1CreateCalibrationSetImage(requestParameters: DefaultApiV1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationSetImageResponse> {
|
|
5098
|
+
return localVarFp.v1CreateCalibrationSetImage(requestParameters.v1CreateCalibrationSetImageRequest, options).then((request) => request(axios, basePath));
|
|
5099
|
+
},
|
|
4796
5100
|
/**
|
|
4797
5101
|
* Create an image set.
|
|
4798
5102
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -4996,6 +5300,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4996
5300
|
v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1JobLog>> {
|
|
4997
5301
|
return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
|
|
4998
5302
|
},
|
|
5303
|
+
/**
|
|
5304
|
+
* Get node by lineage id.
|
|
5305
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
5306
|
+
* @param {*} [options] Override http request option.
|
|
5307
|
+
* @throws {RequiredError}
|
|
5308
|
+
*/
|
|
5309
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node> {
|
|
5310
|
+
return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
|
|
5311
|
+
},
|
|
4999
5312
|
/**
|
|
5000
5313
|
* Get nodes.
|
|
5001
5314
|
* @param {*} [options] Override http request option.
|
|
@@ -5252,6 +5565,34 @@ export interface DefaultApiV1CreateCalibrationMasterRequest {
|
|
|
5252
5565
|
readonly v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest
|
|
5253
5566
|
}
|
|
5254
5567
|
|
|
5568
|
+
/**
|
|
5569
|
+
* Request parameters for v1CreateCalibrationSet operation in DefaultApi.
|
|
5570
|
+
* @export
|
|
5571
|
+
* @interface DefaultApiV1CreateCalibrationSetRequest
|
|
5572
|
+
*/
|
|
5573
|
+
export interface DefaultApiV1CreateCalibrationSetRequest {
|
|
5574
|
+
/**
|
|
5575
|
+
*
|
|
5576
|
+
* @type {V1CreateCalibrationSetRequest}
|
|
5577
|
+
* @memberof DefaultApiV1CreateCalibrationSet
|
|
5578
|
+
*/
|
|
5579
|
+
readonly v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest
|
|
5580
|
+
}
|
|
5581
|
+
|
|
5582
|
+
/**
|
|
5583
|
+
* Request parameters for v1CreateCalibrationSetImage operation in DefaultApi.
|
|
5584
|
+
* @export
|
|
5585
|
+
* @interface DefaultApiV1CreateCalibrationSetImageRequest
|
|
5586
|
+
*/
|
|
5587
|
+
export interface DefaultApiV1CreateCalibrationSetImageRequest {
|
|
5588
|
+
/**
|
|
5589
|
+
*
|
|
5590
|
+
* @type {V1CreateCalibrationSetImageRequest}
|
|
5591
|
+
* @memberof DefaultApiV1CreateCalibrationSetImage
|
|
5592
|
+
*/
|
|
5593
|
+
readonly v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest
|
|
5594
|
+
}
|
|
5595
|
+
|
|
5255
5596
|
/**
|
|
5256
5597
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
5257
5598
|
* @export
|
|
@@ -5553,6 +5894,20 @@ export interface DefaultApiV1GetJobLogsRequest {
|
|
|
5553
5894
|
readonly astroProjectId: string
|
|
5554
5895
|
}
|
|
5555
5896
|
|
|
5897
|
+
/**
|
|
5898
|
+
* Request parameters for v1GetNode operation in DefaultApi.
|
|
5899
|
+
* @export
|
|
5900
|
+
* @interface DefaultApiV1GetNodeRequest
|
|
5901
|
+
*/
|
|
5902
|
+
export interface DefaultApiV1GetNodeRequest {
|
|
5903
|
+
/**
|
|
5904
|
+
*
|
|
5905
|
+
* @type {string}
|
|
5906
|
+
* @memberof DefaultApiV1GetNode
|
|
5907
|
+
*/
|
|
5908
|
+
readonly lineageId: string
|
|
5909
|
+
}
|
|
5910
|
+
|
|
5556
5911
|
/**
|
|
5557
5912
|
* Request parameters for v1GetOrCreateCamera operation in DefaultApi.
|
|
5558
5913
|
* @export
|
|
@@ -5826,6 +6181,28 @@ export class DefaultApi extends BaseAPI {
|
|
|
5826
6181
|
return DefaultApiFp(this.configuration).v1CreateCalibrationMaster(requestParameters.v1CreateCalibrationMasterRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5827
6182
|
}
|
|
5828
6183
|
|
|
6184
|
+
/**
|
|
6185
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
6186
|
+
* @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
|
|
6187
|
+
* @param {*} [options] Override http request option.
|
|
6188
|
+
* @throws {RequiredError}
|
|
6189
|
+
* @memberof DefaultApi
|
|
6190
|
+
*/
|
|
6191
|
+
public v1CreateCalibrationSet(requestParameters: DefaultApiV1CreateCalibrationSetRequest, options?: AxiosRequestConfig) {
|
|
6192
|
+
return DefaultApiFp(this.configuration).v1CreateCalibrationSet(requestParameters.v1CreateCalibrationSetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
6193
|
+
}
|
|
6194
|
+
|
|
6195
|
+
/**
|
|
6196
|
+
* Create a calibration set image.
|
|
6197
|
+
* @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
|
|
6198
|
+
* @param {*} [options] Override http request option.
|
|
6199
|
+
* @throws {RequiredError}
|
|
6200
|
+
* @memberof DefaultApi
|
|
6201
|
+
*/
|
|
6202
|
+
public v1CreateCalibrationSetImage(requestParameters: DefaultApiV1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig) {
|
|
6203
|
+
return DefaultApiFp(this.configuration).v1CreateCalibrationSetImage(requestParameters.v1CreateCalibrationSetImageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
6204
|
+
}
|
|
6205
|
+
|
|
5829
6206
|
/**
|
|
5830
6207
|
* Create an image set.
|
|
5831
6208
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -6075,6 +6452,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
6075
6452
|
return DefaultApiFp(this.configuration).v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
|
|
6076
6453
|
}
|
|
6077
6454
|
|
|
6455
|
+
/**
|
|
6456
|
+
* Get node by lineage id.
|
|
6457
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
6458
|
+
* @param {*} [options] Override http request option.
|
|
6459
|
+
* @throws {RequiredError}
|
|
6460
|
+
* @memberof DefaultApi
|
|
6461
|
+
*/
|
|
6462
|
+
public v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig) {
|
|
6463
|
+
return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
|
|
6464
|
+
}
|
|
6465
|
+
|
|
6078
6466
|
/**
|
|
6079
6467
|
* Get nodes.
|
|
6080
6468
|
* @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.3942
|
|
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.3942
|
|
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.3942
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|