@ourskyai/astro-api 1.3.3836 → 1.3.3931
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 +383 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +251 -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 +251 -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.3931
|
|
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
|
|
@@ -2426,6 +2550,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2426
2550
|
* @throws {RequiredError}
|
|
2427
2551
|
*/
|
|
2428
2552
|
v1CreateCalibrationMaster: (v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2553
|
+
/**
|
|
2554
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
2555
|
+
* @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
|
|
2556
|
+
* @param {*} [options] Override http request option.
|
|
2557
|
+
* @throws {RequiredError}
|
|
2558
|
+
*/
|
|
2559
|
+
v1CreateCalibrationSet: (v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2560
|
+
/**
|
|
2561
|
+
* Create a calibration set image.
|
|
2562
|
+
* @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
|
|
2563
|
+
* @param {*} [options] Override http request option.
|
|
2564
|
+
* @throws {RequiredError}
|
|
2565
|
+
*/
|
|
2566
|
+
v1CreateCalibrationSetImage: (v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2429
2567
|
/**
|
|
2430
2568
|
* Create an image set.
|
|
2431
2569
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2588,6 +2726,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2588
2726
|
* @throws {RequiredError}
|
|
2589
2727
|
*/
|
|
2590
2728
|
v1GetJobLogs: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2729
|
+
/**
|
|
2730
|
+
* Get node by lineage id.
|
|
2731
|
+
* @param {string} lineageId
|
|
2732
|
+
* @param {*} [options] Override http request option.
|
|
2733
|
+
* @throws {RequiredError}
|
|
2734
|
+
*/
|
|
2735
|
+
v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2591
2736
|
/**
|
|
2592
2737
|
* Get nodes.
|
|
2593
2738
|
* @param {*} [options] Override http request option.
|
|
@@ -2739,6 +2884,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2739
2884
|
* @throws {RequiredError}
|
|
2740
2885
|
*/
|
|
2741
2886
|
v1CreateCalibrationMaster(v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationMasterResponse>>;
|
|
2887
|
+
/**
|
|
2888
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
2889
|
+
* @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
|
|
2890
|
+
* @param {*} [options] Override http request option.
|
|
2891
|
+
* @throws {RequiredError}
|
|
2892
|
+
*/
|
|
2893
|
+
v1CreateCalibrationSet(v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationSetResponse>>;
|
|
2894
|
+
/**
|
|
2895
|
+
* Create a calibration set image.
|
|
2896
|
+
* @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
|
|
2897
|
+
* @param {*} [options] Override http request option.
|
|
2898
|
+
* @throws {RequiredError}
|
|
2899
|
+
*/
|
|
2900
|
+
v1CreateCalibrationSetImage(v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateCalibrationSetImageResponse>>;
|
|
2742
2901
|
/**
|
|
2743
2902
|
* Create an image set.
|
|
2744
2903
|
* @param {V1CreateImageSetRequest} v1CreateImageSetRequest
|
|
@@ -2901,6 +3060,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2901
3060
|
* @throws {RequiredError}
|
|
2902
3061
|
*/
|
|
2903
3062
|
v1GetJobLogs(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1JobLog>>>;
|
|
3063
|
+
/**
|
|
3064
|
+
* Get node by lineage id.
|
|
3065
|
+
* @param {string} lineageId
|
|
3066
|
+
* @param {*} [options] Override http request option.
|
|
3067
|
+
* @throws {RequiredError}
|
|
3068
|
+
*/
|
|
3069
|
+
v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
|
|
2904
3070
|
/**
|
|
2905
3071
|
* Get nodes.
|
|
2906
3072
|
* @param {*} [options] Override http request option.
|
|
@@ -3045,6 +3211,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3045
3211
|
* @throws {RequiredError}
|
|
3046
3212
|
*/
|
|
3047
3213
|
v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationMasterResponse>;
|
|
3214
|
+
/**
|
|
3215
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
3216
|
+
* @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
|
|
3217
|
+
* @param {*} [options] Override http request option.
|
|
3218
|
+
* @throws {RequiredError}
|
|
3219
|
+
*/
|
|
3220
|
+
v1CreateCalibrationSet(requestParameters: DefaultApiV1CreateCalibrationSetRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationSetResponse>;
|
|
3221
|
+
/**
|
|
3222
|
+
* Create a calibration set image.
|
|
3223
|
+
* @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
|
|
3224
|
+
* @param {*} [options] Override http request option.
|
|
3225
|
+
* @throws {RequiredError}
|
|
3226
|
+
*/
|
|
3227
|
+
v1CreateCalibrationSetImage(requestParameters: DefaultApiV1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateCalibrationSetImageResponse>;
|
|
3048
3228
|
/**
|
|
3049
3229
|
* Create an image set.
|
|
3050
3230
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -3202,6 +3382,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3202
3382
|
* @throws {RequiredError}
|
|
3203
3383
|
*/
|
|
3204
3384
|
v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1JobLog>>;
|
|
3385
|
+
/**
|
|
3386
|
+
* Get node by lineage id.
|
|
3387
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
3388
|
+
* @param {*} [options] Override http request option.
|
|
3389
|
+
* @throws {RequiredError}
|
|
3390
|
+
*/
|
|
3391
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
3205
3392
|
/**
|
|
3206
3393
|
* Get nodes.
|
|
3207
3394
|
* @param {*} [options] Override http request option.
|
|
@@ -3418,6 +3605,32 @@ export interface DefaultApiV1CreateCalibrationMasterRequest {
|
|
|
3418
3605
|
*/
|
|
3419
3606
|
readonly v1CreateCalibrationMasterRequest: V1CreateCalibrationMasterRequest;
|
|
3420
3607
|
}
|
|
3608
|
+
/**
|
|
3609
|
+
* Request parameters for v1CreateCalibrationSet operation in DefaultApi.
|
|
3610
|
+
* @export
|
|
3611
|
+
* @interface DefaultApiV1CreateCalibrationSetRequest
|
|
3612
|
+
*/
|
|
3613
|
+
export interface DefaultApiV1CreateCalibrationSetRequest {
|
|
3614
|
+
/**
|
|
3615
|
+
*
|
|
3616
|
+
* @type {V1CreateCalibrationSetRequest}
|
|
3617
|
+
* @memberof DefaultApiV1CreateCalibrationSet
|
|
3618
|
+
*/
|
|
3619
|
+
readonly v1CreateCalibrationSetRequest: V1CreateCalibrationSetRequest;
|
|
3620
|
+
}
|
|
3621
|
+
/**
|
|
3622
|
+
* Request parameters for v1CreateCalibrationSetImage operation in DefaultApi.
|
|
3623
|
+
* @export
|
|
3624
|
+
* @interface DefaultApiV1CreateCalibrationSetImageRequest
|
|
3625
|
+
*/
|
|
3626
|
+
export interface DefaultApiV1CreateCalibrationSetImageRequest {
|
|
3627
|
+
/**
|
|
3628
|
+
*
|
|
3629
|
+
* @type {V1CreateCalibrationSetImageRequest}
|
|
3630
|
+
* @memberof DefaultApiV1CreateCalibrationSetImage
|
|
3631
|
+
*/
|
|
3632
|
+
readonly v1CreateCalibrationSetImageRequest: V1CreateCalibrationSetImageRequest;
|
|
3633
|
+
}
|
|
3421
3634
|
/**
|
|
3422
3635
|
* Request parameters for v1CreateImageSet operation in DefaultApi.
|
|
3423
3636
|
* @export
|
|
@@ -3695,6 +3908,19 @@ export interface DefaultApiV1GetJobLogsRequest {
|
|
|
3695
3908
|
*/
|
|
3696
3909
|
readonly astroProjectId: string;
|
|
3697
3910
|
}
|
|
3911
|
+
/**
|
|
3912
|
+
* Request parameters for v1GetNode operation in DefaultApi.
|
|
3913
|
+
* @export
|
|
3914
|
+
* @interface DefaultApiV1GetNodeRequest
|
|
3915
|
+
*/
|
|
3916
|
+
export interface DefaultApiV1GetNodeRequest {
|
|
3917
|
+
/**
|
|
3918
|
+
*
|
|
3919
|
+
* @type {string}
|
|
3920
|
+
* @memberof DefaultApiV1GetNode
|
|
3921
|
+
*/
|
|
3922
|
+
readonly lineageId: string;
|
|
3923
|
+
}
|
|
3698
3924
|
/**
|
|
3699
3925
|
* Request parameters for v1GetOrCreateCamera operation in DefaultApi.
|
|
3700
3926
|
* @export
|
|
@@ -3930,6 +4156,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3930
4156
|
* @memberof DefaultApi
|
|
3931
4157
|
*/
|
|
3932
4158
|
v1CreateCalibrationMaster(requestParameters: DefaultApiV1CreateCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateCalibrationMasterResponse, any>>;
|
|
4159
|
+
/**
|
|
4160
|
+
* Create a calibration set that should be stacked from individual calibration images.
|
|
4161
|
+
* @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
|
|
4162
|
+
* @param {*} [options] Override http request option.
|
|
4163
|
+
* @throws {RequiredError}
|
|
4164
|
+
* @memberof DefaultApi
|
|
4165
|
+
*/
|
|
4166
|
+
v1CreateCalibrationSet(requestParameters: DefaultApiV1CreateCalibrationSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateCalibrationSetResponse, any>>;
|
|
4167
|
+
/**
|
|
4168
|
+
* Create a calibration set image.
|
|
4169
|
+
* @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
|
|
4170
|
+
* @param {*} [options] Override http request option.
|
|
4171
|
+
* @throws {RequiredError}
|
|
4172
|
+
* @memberof DefaultApi
|
|
4173
|
+
*/
|
|
4174
|
+
v1CreateCalibrationSetImage(requestParameters: DefaultApiV1CreateCalibrationSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateCalibrationSetImageResponse, any>>;
|
|
3933
4175
|
/**
|
|
3934
4176
|
* Create an image set.
|
|
3935
4177
|
* @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
|
|
@@ -4110,6 +4352,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4110
4352
|
* @memberof DefaultApi
|
|
4111
4353
|
*/
|
|
4112
4354
|
v1GetJobLogs(requestParameters: DefaultApiV1GetJobLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1JobLog[], any>>;
|
|
4355
|
+
/**
|
|
4356
|
+
* Get node by lineage id.
|
|
4357
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
4358
|
+
* @param {*} [options] Override http request option.
|
|
4359
|
+
* @throws {RequiredError}
|
|
4360
|
+
* @memberof DefaultApi
|
|
4361
|
+
*/
|
|
4362
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
|
|
4113
4363
|
/**
|
|
4114
4364
|
* Get nodes.
|
|
4115
4365
|
* @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.3931
|
|
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.3931
|
|
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.3931
|
|
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.3931
|
|
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.3931
|
|
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.3931
|
|
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.3931
|
|
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.3931
|
|
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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|