@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/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -973,6 +973,130 @@ export interface V1CreateCalibrationMasterResponse {
|
|
|
973
973
|
*/
|
|
974
974
|
'uploadUrl': string;
|
|
975
975
|
}
|
|
976
|
+
/**
|
|
977
|
+
*
|
|
978
|
+
* @export
|
|
979
|
+
* @interface V1CreateCalibrationSetImageRequest
|
|
980
|
+
*/
|
|
981
|
+
export interface V1CreateCalibrationSetImageRequest {
|
|
982
|
+
/**
|
|
983
|
+
*
|
|
984
|
+
* @type {string}
|
|
985
|
+
* @memberof V1CreateCalibrationSetImageRequest
|
|
986
|
+
*/
|
|
987
|
+
'calibrationSetId': string;
|
|
988
|
+
/**
|
|
989
|
+
*
|
|
990
|
+
* @type {string}
|
|
991
|
+
* @memberof V1CreateCalibrationSetImageRequest
|
|
992
|
+
*/
|
|
993
|
+
'nodeId': string;
|
|
994
|
+
}
|
|
995
|
+
/**
|
|
996
|
+
*
|
|
997
|
+
* @export
|
|
998
|
+
* @interface V1CreateCalibrationSetImageResponse
|
|
999
|
+
*/
|
|
1000
|
+
export interface V1CreateCalibrationSetImageResponse {
|
|
1001
|
+
/**
|
|
1002
|
+
*
|
|
1003
|
+
* @type {string}
|
|
1004
|
+
* @memberof V1CreateCalibrationSetImageResponse
|
|
1005
|
+
*/
|
|
1006
|
+
'id': string;
|
|
1007
|
+
/**
|
|
1008
|
+
*
|
|
1009
|
+
* @type {string}
|
|
1010
|
+
* @memberof V1CreateCalibrationSetImageResponse
|
|
1011
|
+
*/
|
|
1012
|
+
'uploadUrl': string;
|
|
1013
|
+
}
|
|
1014
|
+
/**
|
|
1015
|
+
*
|
|
1016
|
+
* @export
|
|
1017
|
+
* @interface V1CreateCalibrationSetRequest
|
|
1018
|
+
*/
|
|
1019
|
+
export interface V1CreateCalibrationSetRequest {
|
|
1020
|
+
/**
|
|
1021
|
+
*
|
|
1022
|
+
* @type {string}
|
|
1023
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1024
|
+
*/
|
|
1025
|
+
'nodeId': string;
|
|
1026
|
+
/**
|
|
1027
|
+
*
|
|
1028
|
+
* @type {CalibrationMasterType}
|
|
1029
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1030
|
+
*/
|
|
1031
|
+
'calibrationSetType': CalibrationMasterType;
|
|
1032
|
+
/**
|
|
1033
|
+
*
|
|
1034
|
+
* @type {FilterType}
|
|
1035
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1036
|
+
*/
|
|
1037
|
+
'filterType'?: FilterType;
|
|
1038
|
+
/**
|
|
1039
|
+
*
|
|
1040
|
+
* @type {number}
|
|
1041
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1042
|
+
*/
|
|
1043
|
+
'binXY': number;
|
|
1044
|
+
/**
|
|
1045
|
+
*
|
|
1046
|
+
* @type {number}
|
|
1047
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1048
|
+
*/
|
|
1049
|
+
'gain'?: number;
|
|
1050
|
+
/**
|
|
1051
|
+
*
|
|
1052
|
+
* @type {number}
|
|
1053
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1054
|
+
*/
|
|
1055
|
+
'readoutMode'?: number;
|
|
1056
|
+
/**
|
|
1057
|
+
* temperature in degrees celsius
|
|
1058
|
+
* @type {number}
|
|
1059
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1060
|
+
*/
|
|
1061
|
+
'temperature'?: number;
|
|
1062
|
+
/**
|
|
1063
|
+
*
|
|
1064
|
+
* @type {number}
|
|
1065
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1066
|
+
*/
|
|
1067
|
+
'exposureTime': number;
|
|
1068
|
+
/**
|
|
1069
|
+
*
|
|
1070
|
+
* @type {number}
|
|
1071
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1072
|
+
*/
|
|
1073
|
+
'rotatorAngle'?: number;
|
|
1074
|
+
/**
|
|
1075
|
+
*
|
|
1076
|
+
* @type {number}
|
|
1077
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1078
|
+
*/
|
|
1079
|
+
'offset'?: number;
|
|
1080
|
+
/**
|
|
1081
|
+
*
|
|
1082
|
+
* @type {string}
|
|
1083
|
+
* @memberof V1CreateCalibrationSetRequest
|
|
1084
|
+
*/
|
|
1085
|
+
'capturedAt'?: string;
|
|
1086
|
+
}
|
|
1087
|
+
/**
|
|
1088
|
+
*
|
|
1089
|
+
* @export
|
|
1090
|
+
* @interface V1CreateCalibrationSetResponse
|
|
1091
|
+
*/
|
|
1092
|
+
export interface V1CreateCalibrationSetResponse {
|
|
1093
|
+
/**
|
|
1094
|
+
*
|
|
1095
|
+
* @type {string}
|
|
1096
|
+
* @memberof V1CreateCalibrationSetResponse
|
|
1097
|
+
*/
|
|
1098
|
+
'id': string;
|
|
1099
|
+
}
|
|
976
1100
|
/**
|
|
977
1101
|
*
|
|
978
1102
|
* @export
|
|
@@ -1993,6 +2117,12 @@ export interface V1Node {
|
|
|
1993
2117
|
* @memberof V1Node
|
|
1994
2118
|
*/
|
|
1995
2119
|
'id': string;
|
|
2120
|
+
/**
|
|
2121
|
+
*
|
|
2122
|
+
* @type {Location}
|
|
2123
|
+
* @memberof V1Node
|
|
2124
|
+
*/
|
|
2125
|
+
'location': Location;
|
|
1996
2126
|
}
|
|
1997
2127
|
/**
|
|
1998
2128
|
* Node with location
|
|
@@ -2426,6 +2556,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2426
2556
|
* @throws {RequiredError}
|
|
2427
2557
|
*/
|
|
2428
2558
|
v1CreateCalibrationMaster: (v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2559
|
+
/**
|
|
2560
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
2561
|
+
* @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
|
|
2562
|
+
* @param {*} [options] Override http request option.
|
|
2563
|
+
* @throws {RequiredError}
|
|
2564
|
+
*/
|
|
2565
|
+
v1CreateCalibrationSet: (v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2566
|
+
/**
|
|
2567
|
+
* Create a calibration set image.
|
|
2568
|
+
* @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
|
|
2569
|
+
* @param {*} [options] Override http request option.
|
|
2570
|
+
* @throws {RequiredError}
|
|
2571
|
+
*/
|
|
2572
|
+
v1CreateCalibrationSetImage: (v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2429
2573
|
/**
|
|
2430
2574
|
* Create an image set.
|
|
2431
2575
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2588,6 +2732,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2588
2732
|
* @throws {RequiredError}
|
|
2589
2733
|
*/
|
|
2590
2734
|
v1GetJobLogs: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2735
|
+
/**
|
|
2736
|
+
* Get node by lineage id.
|
|
2737
|
+
* @param {string} lineageId
|
|
2738
|
+
* @param {*} [options] Override http request option.
|
|
2739
|
+
* @throws {RequiredError}
|
|
2740
|
+
*/
|
|
2741
|
+
v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2591
2742
|
/**
|
|
2592
2743
|
* Get nodes.
|
|
2593
2744
|
* @param {*} [options] Override http request option.
|
|
@@ -2739,6 +2890,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2739
2890
|
* @throws {RequiredError}
|
|
2740
2891
|
*/
|
|
2741
2892
|
v1CreateCalibrationMaster(v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationMasterResponse>>;
|
|
2893
|
+
/**
|
|
2894
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
2895
|
+
* @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
|
|
2896
|
+
* @param {*} [options] Override http request option.
|
|
2897
|
+
* @throws {RequiredError}
|
|
2898
|
+
*/
|
|
2899
|
+
v1CreateCalibrationSet(v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationSetResponse>>;
|
|
2900
|
+
/**
|
|
2901
|
+
* Create a calibration set image.
|
|
2902
|
+
* @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
|
|
2903
|
+
* @param {*} [options] Override http request option.
|
|
2904
|
+
* @throws {RequiredError}
|
|
2905
|
+
*/
|
|
2906
|
+
v1CreateCalibrationSetImage(v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationSetImageResponse>>;
|
|
2742
2907
|
/**
|
|
2743
2908
|
* Create an image set.
|
|
2744
2909
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2901,6 +3066,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2901
3066
|
* @throws {RequiredError}
|
|
2902
3067
|
*/
|
|
2903
3068
|
v1GetJobLogs(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1JobLog>>>;
|
|
3069
|
+
/**
|
|
3070
|
+
* Get node by lineage id.
|
|
3071
|
+
* @param {string} lineageId
|
|
3072
|
+
* @param {*} [options] Override http request option.
|
|
3073
|
+
* @throws {RequiredError}
|
|
3074
|
+
*/
|
|
3075
|
+
v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
|
|
2904
3076
|
/**
|
|
2905
3077
|
* Get nodes.
|
|
2906
3078
|
* @param {*} [options] Override http request option.
|
|
@@ -3045,6 +3217,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3045
3217
|
* @throws {RequiredError}
|
|
3046
3218
|
*/
|
|
3047
3219
|
v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationMasterResponse>;
|
|
3220
|
+
/**
|
|
3221
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
3222
|
+
* @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
|
|
3223
|
+
* @param {*} [options] Override http request option.
|
|
3224
|
+
* @throws {RequiredError}
|
|
3225
|
+
*/
|
|
3226
|
+
v1CreateCalibrationSet(requestParameters: DefaultApiV1CreateCalibrationSetRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationSetResponse>;
|
|
3227
|
+
/**
|
|
3228
|
+
* Create a calibration set image.
|
|
3229
|
+
* @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
|
|
3230
|
+
* @param {*} [options] Override http request option.
|
|
3231
|
+
* @throws {RequiredError}
|
|
3232
|
+
*/
|
|
3233
|
+
v1CreateCalibrationSetImage(requestParameters: DefaultApiV1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationSetImageResponse>;
|
|
3048
3234
|
/**
|
|
3049
3235
|
* Create an image set.
|
|
3050
3236
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -3202,6 +3388,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3202
3388
|
* @throws {RequiredError}
|
|
3203
3389
|
*/
|
|
3204
3390
|
v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1JobLog>>;
|
|
3391
|
+
/**
|
|
3392
|
+
* Get node by lineage id.
|
|
3393
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
3394
|
+
* @param {*} [options] Override http request option.
|
|
3395
|
+
* @throws {RequiredError}
|
|
3396
|
+
*/
|
|
3397
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
3205
3398
|
/**
|
|
3206
3399
|
* Get nodes.
|
|
3207
3400
|
* @param {*} [options] Override http request option.
|
|
@@ -3418,6 +3611,32 @@ export interface DefaultApiV1CreateCalibrationMasterRequest {
|
|
|
3418
3611
|
*/
|
|
3419
3612
|
readonly v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest;
|
|
3420
3613
|
}
|
|
3614
|
+
/**
|
|
3615
|
+
* Request parameters for v1CreateCalibrationSet operation in DefaultApi.
|
|
3616
|
+
* @export
|
|
3617
|
+
* @interface DefaultApiV1CreateCalibrationSetRequest
|
|
3618
|
+
*/
|
|
3619
|
+
export interface DefaultApiV1CreateCalibrationSetRequest {
|
|
3620
|
+
/**
|
|
3621
|
+
*
|
|
3622
|
+
* @type {V1CreateCalibrationSetRequest}
|
|
3623
|
+
* @memberof DefaultApiV1CreateCalibrationSet
|
|
3624
|
+
*/
|
|
3625
|
+
readonly v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest;
|
|
3626
|
+
}
|
|
3627
|
+
/**
|
|
3628
|
+
* Request parameters for v1CreateCalibrationSetImage operation in DefaultApi.
|
|
3629
|
+
* @export
|
|
3630
|
+
* @interface DefaultApiV1CreateCalibrationSetImageRequest
|
|
3631
|
+
*/
|
|
3632
|
+
export interface DefaultApiV1CreateCalibrationSetImageRequest {
|
|
3633
|
+
/**
|
|
3634
|
+
*
|
|
3635
|
+
* @type {V1CreateCalibrationSetImageRequest}
|
|
3636
|
+
* @memberof DefaultApiV1CreateCalibrationSetImage
|
|
3637
|
+
*/
|
|
3638
|
+
readonly v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest;
|
|
3639
|
+
}
|
|
3421
3640
|
/**
|
|
3422
3641
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
3423
3642
|
* @export
|
|
@@ -3695,6 +3914,19 @@ export interface DefaultApiV1GetJobLogsRequest {
|
|
|
3695
3914
|
*/
|
|
3696
3915
|
readonly astroProjectId: string;
|
|
3697
3916
|
}
|
|
3917
|
+
/**
|
|
3918
|
+
* Request parameters for v1GetNode operation in DefaultApi.
|
|
3919
|
+
* @export
|
|
3920
|
+
* @interface DefaultApiV1GetNodeRequest
|
|
3921
|
+
*/
|
|
3922
|
+
export interface DefaultApiV1GetNodeRequest {
|
|
3923
|
+
/**
|
|
3924
|
+
*
|
|
3925
|
+
* @type {string}
|
|
3926
|
+
* @memberof DefaultApiV1GetNode
|
|
3927
|
+
*/
|
|
3928
|
+
readonly lineageId: string;
|
|
3929
|
+
}
|
|
3698
3930
|
/**
|
|
3699
3931
|
* Request parameters for v1GetOrCreateCamera operation in DefaultApi.
|
|
3700
3932
|
* @export
|
|
@@ -3930,6 +4162,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3930
4162
|
* @memberof DefaultApi
|
|
3931
4163
|
*/
|
|
3932
4164
|
v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateCalibrationMasterResponse, any>>;
|
|
4165
|
+
/**
|
|
4166
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
4167
|
+
* @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
|
|
4168
|
+
* @param {*} [options] Override http request option.
|
|
4169
|
+
* @throws {RequiredError}
|
|
4170
|
+
* @memberof DefaultApi
|
|
4171
|
+
*/
|
|
4172
|
+
v1CreateCalibrationSet(requestParameters: DefaultApiV1CreateCalibrationSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateCalibrationSetResponse, any>>;
|
|
4173
|
+
/**
|
|
4174
|
+
* Create a calibration set image.
|
|
4175
|
+
* @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
|
|
4176
|
+
* @param {*} [options] Override http request option.
|
|
4177
|
+
* @throws {RequiredError}
|
|
4178
|
+
* @memberof DefaultApi
|
|
4179
|
+
*/
|
|
4180
|
+
v1CreateCalibrationSetImage(requestParameters: DefaultApiV1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateCalibrationSetImageResponse, any>>;
|
|
3933
4181
|
/**
|
|
3934
4182
|
* Create an image set.
|
|
3935
4183
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -4110,6 +4358,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4110
4358
|
* @memberof DefaultApi
|
|
4111
4359
|
*/
|
|
4112
4360
|
v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1JobLog[], any>>;
|
|
4361
|
+
/**
|
|
4362
|
+
* Get node by lineage id.
|
|
4363
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
4364
|
+
* @param {*} [options] Override http request option.
|
|
4365
|
+
* @throws {RequiredError}
|
|
4366
|
+
* @memberof DefaultApi
|
|
4367
|
+
*/
|
|
4368
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
|
|
4113
4369
|
/**
|
|
4114
4370
|
* Get nodes.
|
|
4115
4371
|
* @param {*} [options] Override http request option.
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -451,6 +451,72 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
451
451
|
options: localVarRequestOptions,
|
|
452
452
|
};
|
|
453
453
|
}),
|
|
454
|
+
/**
|
|
455
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
456
|
+
* @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
|
|
457
|
+
* @param {*} [options] Override http request option.
|
|
458
|
+
* @throws {RequiredError}
|
|
459
|
+
*/
|
|
460
|
+
v1CreateCalibrationSet: (v1CreateCalibrationSetRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
461
|
+
// verify required parameter 'v1CreateCalibrationSetRequest' is not null or undefined
|
|
462
|
+
assertParamExists('v1CreateCalibrationSet', 'v1CreateCalibrationSetRequest', v1CreateCalibrationSetRequest);
|
|
463
|
+
const localVarPath = `/v1/calibration-set`;
|
|
464
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
465
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
466
|
+
let baseOptions;
|
|
467
|
+
if (configuration) {
|
|
468
|
+
baseOptions = configuration.baseOptions;
|
|
469
|
+
}
|
|
470
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
471
|
+
const localVarHeaderParameter = {};
|
|
472
|
+
const localVarQueryParameter = {};
|
|
473
|
+
// authentication Roles required
|
|
474
|
+
// authentication BearerToken required
|
|
475
|
+
// http bearer authentication required
|
|
476
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
477
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
478
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
479
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
480
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
481
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateCalibrationSetRequest, localVarRequestOptions, configuration);
|
|
482
|
+
return {
|
|
483
|
+
url: toPathString(localVarUrlObj),
|
|
484
|
+
options: localVarRequestOptions,
|
|
485
|
+
};
|
|
486
|
+
}),
|
|
487
|
+
/**
|
|
488
|
+
* Create a calibration set image.
|
|
489
|
+
* @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
|
|
490
|
+
* @param {*} [options] Override http request option.
|
|
491
|
+
* @throws {RequiredError}
|
|
492
|
+
*/
|
|
493
|
+
v1CreateCalibrationSetImage: (v1CreateCalibrationSetImageRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
494
|
+
// verify required parameter 'v1CreateCalibrationSetImageRequest' is not null or undefined
|
|
495
|
+
assertParamExists('v1CreateCalibrationSetImage', 'v1CreateCalibrationSetImageRequest', v1CreateCalibrationSetImageRequest);
|
|
496
|
+
const localVarPath = `/v1/calibration-set-image`;
|
|
497
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
498
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
499
|
+
let baseOptions;
|
|
500
|
+
if (configuration) {
|
|
501
|
+
baseOptions = configuration.baseOptions;
|
|
502
|
+
}
|
|
503
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
504
|
+
const localVarHeaderParameter = {};
|
|
505
|
+
const localVarQueryParameter = {};
|
|
506
|
+
// authentication Roles required
|
|
507
|
+
// authentication BearerToken required
|
|
508
|
+
// http bearer authentication required
|
|
509
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
510
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
511
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
512
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
513
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
514
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateCalibrationSetImageRequest, localVarRequestOptions, configuration);
|
|
515
|
+
return {
|
|
516
|
+
url: toPathString(localVarUrlObj),
|
|
517
|
+
options: localVarRequestOptions,
|
|
518
|
+
};
|
|
519
|
+
}),
|
|
454
520
|
/**
|
|
455
521
|
* Create an image set.
|
|
456
522
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -1222,6 +1288,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1222
1288
|
options: localVarRequestOptions,
|
|
1223
1289
|
};
|
|
1224
1290
|
}),
|
|
1291
|
+
/**
|
|
1292
|
+
* Get node by lineage id.
|
|
1293
|
+
* @param {string} lineageId
|
|
1294
|
+
* @param {*} [options] Override http request option.
|
|
1295
|
+
* @throws {RequiredError}
|
|
1296
|
+
*/
|
|
1297
|
+
v1GetNode: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1298
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
1299
|
+
assertParamExists('v1GetNode', 'lineageId', lineageId);
|
|
1300
|
+
const localVarPath = `/v1/node`;
|
|
1301
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1302
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1303
|
+
let baseOptions;
|
|
1304
|
+
if (configuration) {
|
|
1305
|
+
baseOptions = configuration.baseOptions;
|
|
1306
|
+
}
|
|
1307
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1308
|
+
const localVarHeaderParameter = {};
|
|
1309
|
+
const localVarQueryParameter = {};
|
|
1310
|
+
// authentication Roles required
|
|
1311
|
+
// authentication BearerToken required
|
|
1312
|
+
// http bearer authentication required
|
|
1313
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1314
|
+
if (lineageId !== undefined) {
|
|
1315
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
1316
|
+
}
|
|
1317
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1318
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1319
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1320
|
+
return {
|
|
1321
|
+
url: toPathString(localVarUrlObj),
|
|
1322
|
+
options: localVarRequestOptions,
|
|
1323
|
+
};
|
|
1324
|
+
}),
|
|
1225
1325
|
/**
|
|
1226
1326
|
* Get nodes.
|
|
1227
1327
|
* @param {*} [options] Override http request option.
|
|
@@ -1747,6 +1847,30 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1747
1847
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1748
1848
|
});
|
|
1749
1849
|
},
|
|
1850
|
+
/**
|
|
1851
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
1852
|
+
* @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
|
|
1853
|
+
* @param {*} [options] Override http request option.
|
|
1854
|
+
* @throws {RequiredError}
|
|
1855
|
+
*/
|
|
1856
|
+
v1CreateCalibrationSet(v1CreateCalibrationSetRequest, options) {
|
|
1857
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1858
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateCalibrationSet(v1CreateCalibrationSetRequest, options);
|
|
1859
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1860
|
+
});
|
|
1861
|
+
},
|
|
1862
|
+
/**
|
|
1863
|
+
* Create a calibration set image.
|
|
1864
|
+
* @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
|
|
1865
|
+
* @param {*} [options] Override http request option.
|
|
1866
|
+
* @throws {RequiredError}
|
|
1867
|
+
*/
|
|
1868
|
+
v1CreateCalibrationSetImage(v1CreateCalibrationSetImageRequest, options) {
|
|
1869
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1870
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateCalibrationSetImage(v1CreateCalibrationSetImageRequest, options);
|
|
1871
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1872
|
+
});
|
|
1873
|
+
},
|
|
1750
1874
|
/**
|
|
1751
1875
|
* Create an image set.
|
|
1752
1876
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2024,6 +2148,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2024
2148
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2025
2149
|
});
|
|
2026
2150
|
},
|
|
2151
|
+
/**
|
|
2152
|
+
* Get node by lineage id.
|
|
2153
|
+
* @param {string} lineageId
|
|
2154
|
+
* @param {*} [options] Override http request option.
|
|
2155
|
+
* @throws {RequiredError}
|
|
2156
|
+
*/
|
|
2157
|
+
v1GetNode(lineageId, options) {
|
|
2158
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2159
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, options);
|
|
2160
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2161
|
+
});
|
|
2162
|
+
},
|
|
2027
2163
|
/**
|
|
2028
2164
|
* Get nodes.
|
|
2029
2165
|
* @param {*} [options] Override http request option.
|
|
@@ -2245,6 +2381,24 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2245
2381
|
v1CreateCalibrationMaster(requestParameters, options) {
|
|
2246
2382
|
return localVarFp.v1CreateCalibrationMaster(requestParameters.v1CreateCalibrationMasterRequest, options).then((request) => request(axios, basePath));
|
|
2247
2383
|
},
|
|
2384
|
+
/**
|
|
2385
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
2386
|
+
* @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
|
|
2387
|
+
* @param {*} [options] Override http request option.
|
|
2388
|
+
* @throws {RequiredError}
|
|
2389
|
+
*/
|
|
2390
|
+
v1CreateCalibrationSet(requestParameters, options) {
|
|
2391
|
+
return localVarFp.v1CreateCalibrationSet(requestParameters.v1CreateCalibrationSetRequest, options).then((request) => request(axios, basePath));
|
|
2392
|
+
},
|
|
2393
|
+
/**
|
|
2394
|
+
* Create a calibration set image.
|
|
2395
|
+
* @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
|
|
2396
|
+
* @param {*} [options] Override http request option.
|
|
2397
|
+
* @throws {RequiredError}
|
|
2398
|
+
*/
|
|
2399
|
+
v1CreateCalibrationSetImage(requestParameters, options) {
|
|
2400
|
+
return localVarFp.v1CreateCalibrationSetImage(requestParameters.v1CreateCalibrationSetImageRequest, options).then((request) => request(axios, basePath));
|
|
2401
|
+
},
|
|
2248
2402
|
/**
|
|
2249
2403
|
* Create an image set.
|
|
2250
2404
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2448,6 +2602,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2448
2602
|
v1GetJobLogs(requestParameters, options) {
|
|
2449
2603
|
return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
|
|
2450
2604
|
},
|
|
2605
|
+
/**
|
|
2606
|
+
* Get node by lineage id.
|
|
2607
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
2608
|
+
* @param {*} [options] Override http request option.
|
|
2609
|
+
* @throws {RequiredError}
|
|
2610
|
+
*/
|
|
2611
|
+
v1GetNode(requestParameters, options) {
|
|
2612
|
+
return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
|
|
2613
|
+
},
|
|
2451
2614
|
/**
|
|
2452
2615
|
* Get nodes.
|
|
2453
2616
|
* @param {*} [options] Override http request option.
|
|
@@ -2633,6 +2796,26 @@ export class DefaultApi extends BaseAPI {
|
|
|
2633
2796
|
v1CreateCalibrationMaster(requestParameters, options) {
|
|
2634
2797
|
return DefaultApiFp(this.configuration).v1CreateCalibrationMaster(requestParameters.v1CreateCalibrationMasterRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2635
2798
|
}
|
|
2799
|
+
/**
|
|
2800
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
2801
|
+
* @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
|
|
2802
|
+
* @param {*} [options] Override http request option.
|
|
2803
|
+
* @throws {RequiredError}
|
|
2804
|
+
* @memberof DefaultApi
|
|
2805
|
+
*/
|
|
2806
|
+
v1CreateCalibrationSet(requestParameters, options) {
|
|
2807
|
+
return DefaultApiFp(this.configuration).v1CreateCalibrationSet(requestParameters.v1CreateCalibrationSetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2808
|
+
}
|
|
2809
|
+
/**
|
|
2810
|
+
* Create a calibration set image.
|
|
2811
|
+
* @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
|
|
2812
|
+
* @param {*} [options] Override http request option.
|
|
2813
|
+
* @throws {RequiredError}
|
|
2814
|
+
* @memberof DefaultApi
|
|
2815
|
+
*/
|
|
2816
|
+
v1CreateCalibrationSetImage(requestParameters, options) {
|
|
2817
|
+
return DefaultApiFp(this.configuration).v1CreateCalibrationSetImage(requestParameters.v1CreateCalibrationSetImageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2818
|
+
}
|
|
2636
2819
|
/**
|
|
2637
2820
|
* Create an image set.
|
|
2638
2821
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -2859,6 +3042,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2859
3042
|
v1GetJobLogs(requestParameters, options) {
|
|
2860
3043
|
return DefaultApiFp(this.configuration).v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
|
|
2861
3044
|
}
|
|
3045
|
+
/**
|
|
3046
|
+
* Get node by lineage id.
|
|
3047
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
3048
|
+
* @param {*} [options] Override http request option.
|
|
3049
|
+
* @throws {RequiredError}
|
|
3050
|
+
* @memberof DefaultApi
|
|
3051
|
+
*/
|
|
3052
|
+
v1GetNode(requestParameters, options) {
|
|
3053
|
+
return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
|
|
3054
|
+
}
|
|
2862
3055
|
/**
|
|
2863
3056
|
* Get nodes.
|
|
2864
3057
|
* @param {*} [options] Override http request option.
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3942
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|