@ourskyai/astro-api 1.3.3830 → 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/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.3830
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/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.3830
8
+ * The version of the OpenAPI document: 1.3.3931
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.3830
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/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.3830
8
+ * The version of the OpenAPI document: 1.3.3931
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.3830
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/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.3830
8
+ * The version of the OpenAPI document: 1.3.3931
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.3830
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).
@@ -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.3830
8
+ * The version of the OpenAPI document: 1.3.3931
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).