@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/dist/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.3836
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/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky Astro
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3836
8
+ * The version of the OpenAPI document: 1.3.3942
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -454,6 +454,72 @@ const DefaultApiAxiosParamCreator = function (configuration) {
454
454
  options: localVarRequestOptions,
455
455
  };
456
456
  }),
457
+ /**
458
+ * Create a calibration set that should be stacked from individual calibration images.
459
+ * @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
460
+ * @param {*} [options] Override http request option.
461
+ * @throws {RequiredError}
462
+ */
463
+ v1CreateCalibrationSet: (v1CreateCalibrationSetRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
464
+ // verify required parameter 'v1CreateCalibrationSetRequest' is not null or undefined
465
+ (0, common_1.assertParamExists)('v1CreateCalibrationSet', 'v1CreateCalibrationSetRequest', v1CreateCalibrationSetRequest);
466
+ const localVarPath = `/v1/calibration-set`;
467
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
468
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
469
+ let baseOptions;
470
+ if (configuration) {
471
+ baseOptions = configuration.baseOptions;
472
+ }
473
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
474
+ const localVarHeaderParameter = {};
475
+ const localVarQueryParameter = {};
476
+ // authentication Roles required
477
+ // authentication BearerToken required
478
+ // http bearer authentication required
479
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
480
+ localVarHeaderParameter['Content-Type'] = 'application/json';
481
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
482
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
483
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
484
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateCalibrationSetRequest, localVarRequestOptions, configuration);
485
+ return {
486
+ url: (0, common_1.toPathString)(localVarUrlObj),
487
+ options: localVarRequestOptions,
488
+ };
489
+ }),
490
+ /**
491
+ * Create a calibration set image.
492
+ * @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
493
+ * @param {*} [options] Override http request option.
494
+ * @throws {RequiredError}
495
+ */
496
+ v1CreateCalibrationSetImage: (v1CreateCalibrationSetImageRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
497
+ // verify required parameter 'v1CreateCalibrationSetImageRequest' is not null or undefined
498
+ (0, common_1.assertParamExists)('v1CreateCalibrationSetImage', 'v1CreateCalibrationSetImageRequest', v1CreateCalibrationSetImageRequest);
499
+ const localVarPath = `/v1/calibration-set-image`;
500
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
501
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
502
+ let baseOptions;
503
+ if (configuration) {
504
+ baseOptions = configuration.baseOptions;
505
+ }
506
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
507
+ const localVarHeaderParameter = {};
508
+ const localVarQueryParameter = {};
509
+ // authentication Roles required
510
+ // authentication BearerToken required
511
+ // http bearer authentication required
512
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
513
+ localVarHeaderParameter['Content-Type'] = 'application/json';
514
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
515
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
516
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
517
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateCalibrationSetImageRequest, localVarRequestOptions, configuration);
518
+ return {
519
+ url: (0, common_1.toPathString)(localVarUrlObj),
520
+ options: localVarRequestOptions,
521
+ };
522
+ }),
457
523
  /**
458
524
  * Create an image set.
459
525
  * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
@@ -1225,6 +1291,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1225
1291
  options: localVarRequestOptions,
1226
1292
  };
1227
1293
  }),
1294
+ /**
1295
+ * Get node by lineage id.
1296
+ * @param {string} lineageId
1297
+ * @param {*} [options] Override http request option.
1298
+ * @throws {RequiredError}
1299
+ */
1300
+ v1GetNode: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1301
+ // verify required parameter 'lineageId' is not null or undefined
1302
+ (0, common_1.assertParamExists)('v1GetNode', 'lineageId', lineageId);
1303
+ const localVarPath = `/v1/node`;
1304
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1305
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1306
+ let baseOptions;
1307
+ if (configuration) {
1308
+ baseOptions = configuration.baseOptions;
1309
+ }
1310
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1311
+ const localVarHeaderParameter = {};
1312
+ const localVarQueryParameter = {};
1313
+ // authentication Roles required
1314
+ // authentication BearerToken required
1315
+ // http bearer authentication required
1316
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1317
+ if (lineageId !== undefined) {
1318
+ localVarQueryParameter['lineageId'] = lineageId;
1319
+ }
1320
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1321
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1322
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1323
+ return {
1324
+ url: (0, common_1.toPathString)(localVarUrlObj),
1325
+ options: localVarRequestOptions,
1326
+ };
1327
+ }),
1228
1328
  /**
1229
1329
  * Get nodes.
1230
1330
  * @param {*} [options] Override http request option.
@@ -1751,6 +1851,30 @@ const DefaultApiFp = function (configuration) {
1751
1851
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1752
1852
  });
1753
1853
  },
1854
+ /**
1855
+ * Create a calibration set that should be stacked from individual calibration images.
1856
+ * @param {V1CreateCalibrationSetRequest} v1CreateCalibrationSetRequest
1857
+ * @param {*} [options] Override http request option.
1858
+ * @throws {RequiredError}
1859
+ */
1860
+ v1CreateCalibrationSet(v1CreateCalibrationSetRequest, options) {
1861
+ return __awaiter(this, void 0, void 0, function* () {
1862
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateCalibrationSet(v1CreateCalibrationSetRequest, options);
1863
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1864
+ });
1865
+ },
1866
+ /**
1867
+ * Create a calibration set image.
1868
+ * @param {V1CreateCalibrationSetImageRequest} v1CreateCalibrationSetImageRequest
1869
+ * @param {*} [options] Override http request option.
1870
+ * @throws {RequiredError}
1871
+ */
1872
+ v1CreateCalibrationSetImage(v1CreateCalibrationSetImageRequest, options) {
1873
+ return __awaiter(this, void 0, void 0, function* () {
1874
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateCalibrationSetImage(v1CreateCalibrationSetImageRequest, options);
1875
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1876
+ });
1877
+ },
1754
1878
  /**
1755
1879
  * Create an image set.
1756
1880
  * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
@@ -2028,6 +2152,18 @@ const DefaultApiFp = function (configuration) {
2028
2152
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2029
2153
  });
2030
2154
  },
2155
+ /**
2156
+ * Get node by lineage id.
2157
+ * @param {string} lineageId
2158
+ * @param {*} [options] Override http request option.
2159
+ * @throws {RequiredError}
2160
+ */
2161
+ v1GetNode(lineageId, options) {
2162
+ return __awaiter(this, void 0, void 0, function* () {
2163
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, options);
2164
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2165
+ });
2166
+ },
2031
2167
  /**
2032
2168
  * Get nodes.
2033
2169
  * @param {*} [options] Override http request option.
@@ -2250,6 +2386,24 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2250
2386
  v1CreateCalibrationMaster(requestParameters, options) {
2251
2387
  return localVarFp.v1CreateCalibrationMaster(requestParameters.v1CreateCalibrationMasterRequest, options).then((request) => request(axios, basePath));
2252
2388
  },
2389
+ /**
2390
+ * Create a calibration set that should be stacked from individual calibration images.
2391
+ * @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
2392
+ * @param {*} [options] Override http request option.
2393
+ * @throws {RequiredError}
2394
+ */
2395
+ v1CreateCalibrationSet(requestParameters, options) {
2396
+ return localVarFp.v1CreateCalibrationSet(requestParameters.v1CreateCalibrationSetRequest, options).then((request) => request(axios, basePath));
2397
+ },
2398
+ /**
2399
+ * Create a calibration set image.
2400
+ * @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
2401
+ * @param {*} [options] Override http request option.
2402
+ * @throws {RequiredError}
2403
+ */
2404
+ v1CreateCalibrationSetImage(requestParameters, options) {
2405
+ return localVarFp.v1CreateCalibrationSetImage(requestParameters.v1CreateCalibrationSetImageRequest, options).then((request) => request(axios, basePath));
2406
+ },
2253
2407
  /**
2254
2408
  * Create an image set.
2255
2409
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
@@ -2453,6 +2607,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2453
2607
  v1GetJobLogs(requestParameters, options) {
2454
2608
  return localVarFp.v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
2455
2609
  },
2610
+ /**
2611
+ * Get node by lineage id.
2612
+ * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
2613
+ * @param {*} [options] Override http request option.
2614
+ * @throws {RequiredError}
2615
+ */
2616
+ v1GetNode(requestParameters, options) {
2617
+ return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
2618
+ },
2456
2619
  /**
2457
2620
  * Get nodes.
2458
2621
  * @param {*} [options] Override http request option.
@@ -2639,6 +2802,26 @@ class DefaultApi extends base_1.BaseAPI {
2639
2802
  v1CreateCalibrationMaster(requestParameters, options) {
2640
2803
  return (0, exports.DefaultApiFp)(this.configuration).v1CreateCalibrationMaster(requestParameters.v1CreateCalibrationMasterRequest, options).then((request) => request(this.axios, this.basePath));
2641
2804
  }
2805
+ /**
2806
+ * Create a calibration set that should be stacked from individual calibration images.
2807
+ * @param {DefaultApiV1CreateCalibrationSetRequest} requestParameters Request parameters.
2808
+ * @param {*} [options] Override http request option.
2809
+ * @throws {RequiredError}
2810
+ * @memberof DefaultApi
2811
+ */
2812
+ v1CreateCalibrationSet(requestParameters, options) {
2813
+ return (0, exports.DefaultApiFp)(this.configuration).v1CreateCalibrationSet(requestParameters.v1CreateCalibrationSetRequest, options).then((request) => request(this.axios, this.basePath));
2814
+ }
2815
+ /**
2816
+ * Create a calibration set image.
2817
+ * @param {DefaultApiV1CreateCalibrationSetImageRequest} requestParameters Request parameters.
2818
+ * @param {*} [options] Override http request option.
2819
+ * @throws {RequiredError}
2820
+ * @memberof DefaultApi
2821
+ */
2822
+ v1CreateCalibrationSetImage(requestParameters, options) {
2823
+ return (0, exports.DefaultApiFp)(this.configuration).v1CreateCalibrationSetImage(requestParameters.v1CreateCalibrationSetImageRequest, options).then((request) => request(this.axios, this.basePath));
2824
+ }
2642
2825
  /**
2643
2826
  * Create an image set.
2644
2827
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
@@ -2865,6 +3048,16 @@ class DefaultApi extends base_1.BaseAPI {
2865
3048
  v1GetJobLogs(requestParameters, options) {
2866
3049
  return (0, exports.DefaultApiFp)(this.configuration).v1GetJobLogs(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
2867
3050
  }
3051
+ /**
3052
+ * Get node by lineage id.
3053
+ * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3054
+ * @param {*} [options] Override http request option.
3055
+ * @throws {RequiredError}
3056
+ * @memberof DefaultApi
3057
+ */
3058
+ v1GetNode(requestParameters, options) {
3059
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
3060
+ }
2868
3061
  /**
2869
3062
  * Get nodes.
2870
3063
  * @param {*} [options] Override http request option.
package/dist/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.3836
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/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky Astro
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3836
8
+ * The version of the OpenAPI document: 1.3.3942
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/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.3836
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/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky Astro
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3836
8
+ * The version of the OpenAPI document: 1.3.3942
9
9
  *
10
10
  *
11
11
  * 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.3836
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).
@@ -5,7 +5,7 @@
5
5
  * OurSky Astro
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.3836
8
+ * The version of the OpenAPI document: 1.3.3942
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).