@ourskyai/platform-api 1.3.1856 → 1.3.1905

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/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky Platform
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.1856
7
+ * The version of the OpenAPI document: 1.3.1905
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky Platform
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.1856
7
+ * The version of the OpenAPI document: 1.3.1905
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky Platform
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.1856
7
+ * The version of the OpenAPI document: 1.3.1905
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky Platform
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.1856
5
+ * The version of the OpenAPI document: 1.3.1905
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -63,7 +63,7 @@ export declare const FilterType: {
63
63
  };
64
64
  export type FilterType = typeof FilterType[keyof typeof FilterType];
65
65
  /**
66
- *
66
+ * Location
67
67
  * @export
68
68
  * @interface Location
69
69
  */
@@ -359,6 +359,49 @@ export interface V1CreateMountRequest {
359
359
  */
360
360
  'slewRate': number;
361
361
  }
362
+ /**
363
+ *
364
+ * @export
365
+ * @interface V1CreateNodeDiagnosticRequest
366
+ */
367
+ export interface V1CreateNodeDiagnosticRequest {
368
+ /**
369
+ *
370
+ * @type {string}
371
+ * @memberof V1CreateNodeDiagnosticRequest
372
+ */
373
+ 'nodeId': string;
374
+ /**
375
+ *
376
+ * @type {V1NodeComponentType}
377
+ * @memberof V1CreateNodeDiagnosticRequest
378
+ */
379
+ 'componentType': V1NodeComponentType;
380
+ /**
381
+ *
382
+ * @type {string}
383
+ * @memberof V1CreateNodeDiagnosticRequest
384
+ */
385
+ 'componentId': string;
386
+ /**
387
+ *
388
+ * @type {V1NodeDiagnosticType}
389
+ * @memberof V1CreateNodeDiagnosticRequest
390
+ */
391
+ 'diagnosticType': V1NodeDiagnosticType;
392
+ /**
393
+ *
394
+ * @type {string}
395
+ * @memberof V1CreateNodeDiagnosticRequest
396
+ */
397
+ 'value': string;
398
+ /**
399
+ *
400
+ * @type {string}
401
+ * @memberof V1CreateNodeDiagnosticRequest
402
+ */
403
+ 'measuredAt': string;
404
+ }
362
405
  /**
363
406
  *
364
407
  * @export
@@ -390,6 +433,50 @@ export interface V1CreateOpticalTubeRequest {
390
433
  */
391
434
  'type'?: OpticalTubeType;
392
435
  }
436
+ /**
437
+ * Gain Curve
438
+ * @export
439
+ * @interface V1GainCurve
440
+ */
441
+ export interface V1GainCurve {
442
+ /**
443
+ *
444
+ * @type {number}
445
+ * @memberof V1GainCurve
446
+ */
447
+ 'gainMode': number;
448
+ /**
449
+ *
450
+ * @type {Array<V1GainCurvePoint>}
451
+ * @memberof V1GainCurve
452
+ */
453
+ 'gainCurve': Array<V1GainCurvePoint>;
454
+ /**
455
+ *
456
+ * @type {Array<V1ReadNoisePoint>}
457
+ * @memberof V1GainCurve
458
+ */
459
+ 'readoutNoiseCurve'?: Array<V1ReadNoisePoint>;
460
+ }
461
+ /**
462
+ *
463
+ * @export
464
+ * @interface V1GainCurvePoint
465
+ */
466
+ export interface V1GainCurvePoint {
467
+ /**
468
+ *
469
+ * @type {number}
470
+ * @memberof V1GainCurvePoint
471
+ */
472
+ 'gain': number;
473
+ /**
474
+ *
475
+ * @type {number}
476
+ * @memberof V1GainCurvePoint
477
+ */
478
+ 'eADU': number;
479
+ }
393
480
  /**
394
481
  *
395
482
  * @export
@@ -757,7 +844,7 @@ export interface V1Mount {
757
844
  'model': string;
758
845
  }
759
846
  /**
760
- * v1Node
847
+ * Node
761
848
  * @export
762
849
  * @interface V1Node
763
850
  */
@@ -835,6 +922,31 @@ export interface V1Node {
835
922
  */
836
923
  'id': string;
837
924
  }
925
+ /**
926
+ *
927
+ * @export
928
+ * @enum {string}
929
+ */
930
+ export declare const V1NodeComponentType: {
931
+ readonly CAMERA: "CAMERA";
932
+ readonly MOUNT: "MOUNT";
933
+ readonly OPTICAL_TUBE: "OPTICAL_TUBE";
934
+ };
935
+ export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
936
+ /**
937
+ *
938
+ * @export
939
+ * @enum {string}
940
+ */
941
+ export declare const V1NodeDiagnosticType: {
942
+ readonly MIN_SLEW_SPEED_MS: "MIN_SLEW_SPEED_MS";
943
+ readonly MAX_SLEW_SPEED_MS: "MAX_SLEW_SPEED_MS";
944
+ readonly MIN_SLEW_AND_CENTER_SPEED_MS: "MIN_SLEW_AND_CENTER_SPEED_MS";
945
+ readonly MAX_SLEW_AND_CENTER_SPEED_MS: "MAX_SLEW_AND_CENTER_SPEED_MS";
946
+ readonly MIN_SLEW_ACCURACY_ARCSECONDS: "MIN_SLEW_ACCURACY_ARCSECONDS";
947
+ readonly MAX_SLEW_ACCURACY_ARCSECONDS: "MAX_SLEW_ACCURACY_ARCSECONDS";
948
+ };
949
+ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
838
950
  /**
839
951
  * Node with location
840
952
  * @export
@@ -885,6 +997,25 @@ export interface V1OpticalTube {
885
997
  */
886
998
  'apertureMm': number;
887
999
  }
1000
+ /**
1001
+ *
1002
+ * @export
1003
+ * @interface V1ReadNoisePoint
1004
+ */
1005
+ export interface V1ReadNoisePoint {
1006
+ /**
1007
+ *
1008
+ * @type {number}
1009
+ * @memberof V1ReadNoisePoint
1010
+ */
1011
+ 'gain': number;
1012
+ /**
1013
+ *
1014
+ * @type {number}
1015
+ * @memberof V1ReadNoisePoint
1016
+ */
1017
+ 'eRMS': number;
1018
+ }
888
1019
  /**
889
1020
  * Setup Action
890
1021
  * @export
@@ -904,6 +1035,226 @@ export interface V1SetupAction {
904
1035
  */
905
1036
  'arguments'?: Array<string>;
906
1037
  }
1038
+ /**
1039
+ *
1040
+ * @export
1041
+ * @interface V1UpdateNodeComponentsRequest
1042
+ */
1043
+ export interface V1UpdateNodeComponentsRequest {
1044
+ /**
1045
+ *
1046
+ * @type {string}
1047
+ * @memberof V1UpdateNodeComponentsRequest
1048
+ */
1049
+ 'nodeId': string;
1050
+ /**
1051
+ *
1052
+ * @type {V1UpdateNodeComponentsRequestCamera}
1053
+ * @memberof V1UpdateNodeComponentsRequest
1054
+ */
1055
+ 'camera'?: V1UpdateNodeComponentsRequestCamera;
1056
+ /**
1057
+ *
1058
+ * @type {V1UpdateNodeComponentsRequestMount}
1059
+ * @memberof V1UpdateNodeComponentsRequest
1060
+ */
1061
+ 'mount'?: V1UpdateNodeComponentsRequestMount;
1062
+ /**
1063
+ *
1064
+ * @type {V1UpdateNodeComponentsRequestOpticalTube}
1065
+ * @memberof V1UpdateNodeComponentsRequest
1066
+ */
1067
+ 'opticalTube'?: V1UpdateNodeComponentsRequestOpticalTube;
1068
+ }
1069
+ /**
1070
+ *
1071
+ * @export
1072
+ * @interface V1UpdateNodeComponentsRequestCamera
1073
+ */
1074
+ export interface V1UpdateNodeComponentsRequestCamera {
1075
+ /**
1076
+ *
1077
+ * @type {string}
1078
+ * @memberof V1UpdateNodeComponentsRequestCamera
1079
+ */
1080
+ 'model'?: string;
1081
+ /**
1082
+ *
1083
+ * @type {number}
1084
+ * @memberof V1UpdateNodeComponentsRequestCamera
1085
+ */
1086
+ 'pixelSizeMicrons'?: number;
1087
+ /**
1088
+ *
1089
+ * @type {number}
1090
+ * @memberof V1UpdateNodeComponentsRequestCamera
1091
+ */
1092
+ 'fullWellCapacity'?: number;
1093
+ /**
1094
+ *
1095
+ * @type {number}
1096
+ * @memberof V1UpdateNodeComponentsRequestCamera
1097
+ */
1098
+ 'pixelsX'?: number;
1099
+ /**
1100
+ *
1101
+ * @type {number}
1102
+ * @memberof V1UpdateNodeComponentsRequestCamera
1103
+ */
1104
+ 'pixelsY'?: number;
1105
+ /**
1106
+ *
1107
+ * @type {number}
1108
+ * @memberof V1UpdateNodeComponentsRequestCamera
1109
+ */
1110
+ 'megapixels'?: number;
1111
+ /**
1112
+ *
1113
+ * @type {boolean}
1114
+ * @memberof V1UpdateNodeComponentsRequestCamera
1115
+ */
1116
+ 'chilled'?: boolean;
1117
+ /**
1118
+ *
1119
+ * @type {ShutterType}
1120
+ * @memberof V1UpdateNodeComponentsRequestCamera
1121
+ */
1122
+ 'shutterType'?: ShutterType;
1123
+ /**
1124
+ *
1125
+ * @type {boolean}
1126
+ * @memberof V1UpdateNodeComponentsRequestCamera
1127
+ */
1128
+ 'gpsTimestamps'?: boolean;
1129
+ /**
1130
+ *
1131
+ * @type {number}
1132
+ * @memberof V1UpdateNodeComponentsRequestCamera
1133
+ */
1134
+ 'sensorXmm'?: number;
1135
+ /**
1136
+ *
1137
+ * @type {number}
1138
+ * @memberof V1UpdateNodeComponentsRequestCamera
1139
+ */
1140
+ 'sensorYmm'?: number;
1141
+ /**
1142
+ *
1143
+ * @type {number}
1144
+ * @memberof V1UpdateNodeComponentsRequestCamera
1145
+ */
1146
+ 'unityGain'?: number;
1147
+ /**
1148
+ *
1149
+ * @type {number}
1150
+ * @memberof V1UpdateNodeComponentsRequestCamera
1151
+ */
1152
+ 'optimalNighttimeGain'?: number;
1153
+ /**
1154
+ *
1155
+ * @type {number}
1156
+ * @memberof V1UpdateNodeComponentsRequestCamera
1157
+ */
1158
+ 'optimalNighttimeGainOffset'?: number;
1159
+ /**
1160
+ *
1161
+ * @type {number}
1162
+ * @memberof V1UpdateNodeComponentsRequestCamera
1163
+ */
1164
+ 'optimalNighttimeGainMode'?: number;
1165
+ /**
1166
+ *
1167
+ * @type {boolean}
1168
+ * @memberof V1UpdateNodeComponentsRequestCamera
1169
+ */
1170
+ 'supportsVideoMode'?: boolean;
1171
+ /**
1172
+ *
1173
+ * @type {number}
1174
+ * @memberof V1UpdateNodeComponentsRequestCamera
1175
+ */
1176
+ 'adcBitDepth'?: number;
1177
+ /**
1178
+ *
1179
+ * @type {number}
1180
+ * @memberof V1UpdateNodeComponentsRequestCamera
1181
+ */
1182
+ 'quantumEfficiency'?: number;
1183
+ /**
1184
+ *
1185
+ * @type {Array<V1GainCurve>}
1186
+ * @memberof V1UpdateNodeComponentsRequestCamera
1187
+ */
1188
+ 'gainCurves'?: Array<V1GainCurve>;
1189
+ /**
1190
+ *
1191
+ * @type {Array<V1SetupAction>}
1192
+ * @memberof V1UpdateNodeComponentsRequestCamera
1193
+ */
1194
+ 'setupActions'?: Array<V1SetupAction>;
1195
+ /**
1196
+ *
1197
+ * @type {boolean}
1198
+ * @memberof V1UpdateNodeComponentsRequestCamera
1199
+ */
1200
+ 'isColor'?: boolean;
1201
+ }
1202
+ /**
1203
+ *
1204
+ * @export
1205
+ * @interface V1UpdateNodeComponentsRequestMount
1206
+ */
1207
+ export interface V1UpdateNodeComponentsRequestMount {
1208
+ /**
1209
+ *
1210
+ * @type {string}
1211
+ * @memberof V1UpdateNodeComponentsRequestMount
1212
+ */
1213
+ 'model'?: string;
1214
+ /**
1215
+ *
1216
+ * @type {MountType}
1217
+ * @memberof V1UpdateNodeComponentsRequestMount
1218
+ */
1219
+ 'mountType'?: MountType;
1220
+ /**
1221
+ *
1222
+ * @type {number}
1223
+ * @memberof V1UpdateNodeComponentsRequestMount
1224
+ */
1225
+ 'slewRate'?: number;
1226
+ }
1227
+ /**
1228
+ *
1229
+ * @export
1230
+ * @interface V1UpdateNodeComponentsRequestOpticalTube
1231
+ */
1232
+ export interface V1UpdateNodeComponentsRequestOpticalTube {
1233
+ /**
1234
+ *
1235
+ * @type {string}
1236
+ * @memberof V1UpdateNodeComponentsRequestOpticalTube
1237
+ */
1238
+ 'model'?: string;
1239
+ /**
1240
+ *
1241
+ * @type {number}
1242
+ * @memberof V1UpdateNodeComponentsRequestOpticalTube
1243
+ */
1244
+ 'focalLengthMm'?: number;
1245
+ /**
1246
+ *
1247
+ * @type {number}
1248
+ * @memberof V1UpdateNodeComponentsRequestOpticalTube
1249
+ */
1250
+ 'apertureMm'?: number;
1251
+ /**
1252
+ *
1253
+ * @type {OpticalTubeType}
1254
+ * @memberof V1UpdateNodeComponentsRequestOpticalTube
1255
+ */
1256
+ 'type'?: OpticalTubeType;
1257
+ }
907
1258
  /**
908
1259
  *
909
1260
  * @export
@@ -1140,6 +1491,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1140
1491
  * @throws {RequiredError}
1141
1492
  */
1142
1493
  v1CreateMount: (v1CreateMountRequest: V1CreateMountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1494
+ /**
1495
+ * Create node diagnostics.
1496
+ * @param {Array<V1CreateNodeDiagnosticRequest>} v1CreateNodeDiagnosticRequest
1497
+ * @param {*} [options] Override http request option.
1498
+ * @throws {RequiredError}
1499
+ */
1500
+ v1CreateNodeDiagnostics: (v1CreateNodeDiagnosticRequest: Array<V1CreateNodeDiagnosticRequest>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1143
1501
  /**
1144
1502
  * Create an optical tube.
1145
1503
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -1174,6 +1532,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1174
1532
  * @throws {RequiredError}
1175
1533
  */
1176
1534
  v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1535
+ /**
1536
+ * Get node diagnostic tasks.
1537
+ * @param {string} nodeId
1538
+ * @param {*} [options] Override http request option.
1539
+ * @throws {RequiredError}
1540
+ */
1541
+ v1GetNodeDiagnosticTasks: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1177
1542
  /**
1178
1543
  * Get node properties.
1179
1544
  * @param {string} nodeId
@@ -1210,6 +1575,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1210
1575
  * @throws {RequiredError}
1211
1576
  */
1212
1577
  v1OpticalTubeMatch: (model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1578
+ /**
1579
+ * Update node components.
1580
+ * @param {V1UpdateNodeComponentsRequest} v1UpdateNodeComponentsRequest
1581
+ * @param {*} [options] Override http request option.
1582
+ * @throws {RequiredError}
1583
+ */
1584
+ v1UpdateNodeComponents: (v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1213
1585
  /**
1214
1586
  * Update node metrics.
1215
1587
  * @param {V1UpdateNodeMetricsRequest} v1UpdateNodeMetricsRequest
@@ -1279,6 +1651,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1279
1651
  * @throws {RequiredError}
1280
1652
  */
1281
1653
  v1CreateMount(v1CreateMountRequest: V1CreateMountRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1654
+ /**
1655
+ * Create node diagnostics.
1656
+ * @param {Array<V1CreateNodeDiagnosticRequest>} v1CreateNodeDiagnosticRequest
1657
+ * @param {*} [options] Override http request option.
1658
+ * @throws {RequiredError}
1659
+ */
1660
+ v1CreateNodeDiagnostics(v1CreateNodeDiagnosticRequest: Array<V1CreateNodeDiagnosticRequest>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
1282
1661
  /**
1283
1662
  * Create an optical tube.
1284
1663
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -1313,6 +1692,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1313
1692
  * @throws {RequiredError}
1314
1693
  */
1315
1694
  v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
1695
+ /**
1696
+ * Get node diagnostic tasks.
1697
+ * @param {string} nodeId
1698
+ * @param {*} [options] Override http request option.
1699
+ * @throws {RequiredError}
1700
+ */
1701
+ v1GetNodeDiagnosticTasks(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeDiagnosticType>>>;
1316
1702
  /**
1317
1703
  * Get node properties.
1318
1704
  * @param {string} nodeId
@@ -1349,6 +1735,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1349
1735
  * @throws {RequiredError}
1350
1736
  */
1351
1737
  v1OpticalTubeMatch(model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1OpticalTube>>>;
1738
+ /**
1739
+ * Update node components.
1740
+ * @param {V1UpdateNodeComponentsRequest} v1UpdateNodeComponentsRequest
1741
+ * @param {*} [options] Override http request option.
1742
+ * @throws {RequiredError}
1743
+ */
1744
+ v1UpdateNodeComponents(v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
1352
1745
  /**
1353
1746
  * Update node metrics.
1354
1747
  * @param {V1UpdateNodeMetricsRequest} v1UpdateNodeMetricsRequest
@@ -1411,6 +1804,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
1411
1804
  * @throws {RequiredError}
1412
1805
  */
1413
1806
  v1CreateMount(requestParameters: DefaultApiV1CreateMountRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
1807
+ /**
1808
+ * Create node diagnostics.
1809
+ * @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
1810
+ * @param {*} [options] Override http request option.
1811
+ * @throws {RequiredError}
1812
+ */
1813
+ v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
1414
1814
  /**
1415
1815
  * Create an optical tube.
1416
1816
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -1445,6 +1845,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
1445
1845
  * @throws {RequiredError}
1446
1846
  */
1447
1847
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
1848
+ /**
1849
+ * Get node diagnostic tasks.
1850
+ * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
1851
+ * @param {*} [options] Override http request option.
1852
+ * @throws {RequiredError}
1853
+ */
1854
+ v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeDiagnosticType>>;
1448
1855
  /**
1449
1856
  * Get node properties.
1450
1857
  * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
@@ -1479,6 +1886,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
1479
1886
  * @throws {RequiredError}
1480
1887
  */
1481
1888
  v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1OpticalTube>>;
1889
+ /**
1890
+ * Update node components.
1891
+ * @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.
1892
+ * @param {*} [options] Override http request option.
1893
+ * @throws {RequiredError}
1894
+ */
1895
+ v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
1482
1896
  /**
1483
1897
  * Update node metrics.
1484
1898
  * @param {DefaultApiV1UpdateNodeMetricsRequest} requestParameters Request parameters.
@@ -1614,6 +2028,19 @@ export interface DefaultApiV1CreateMountRequest {
1614
2028
  */
1615
2029
  readonly v1CreateMountRequest: V1CreateMountRequest;
1616
2030
  }
2031
+ /**
2032
+ * Request parameters for v1CreateNodeDiagnostics operation in DefaultApi.
2033
+ * @export
2034
+ * @interface DefaultApiV1CreateNodeDiagnosticsRequest
2035
+ */
2036
+ export interface DefaultApiV1CreateNodeDiagnosticsRequest {
2037
+ /**
2038
+ *
2039
+ * @type {Array<V1CreateNodeDiagnosticRequest>}
2040
+ * @memberof DefaultApiV1CreateNodeDiagnostics
2041
+ */
2042
+ readonly v1CreateNodeDiagnosticRequest: Array<V1CreateNodeDiagnosticRequest>;
2043
+ }
1617
2044
  /**
1618
2045
  * Request parameters for v1CreateOpticalTube operation in DefaultApi.
1619
2046
  * @export
@@ -1666,6 +2093,19 @@ export interface DefaultApiV1GetMountRequest {
1666
2093
  */
1667
2094
  readonly id: string;
1668
2095
  }
2096
+ /**
2097
+ * Request parameters for v1GetNodeDiagnosticTasks operation in DefaultApi.
2098
+ * @export
2099
+ * @interface DefaultApiV1GetNodeDiagnosticTasksRequest
2100
+ */
2101
+ export interface DefaultApiV1GetNodeDiagnosticTasksRequest {
2102
+ /**
2103
+ *
2104
+ * @type {string}
2105
+ * @memberof DefaultApiV1GetNodeDiagnosticTasks
2106
+ */
2107
+ readonly nodeId: string;
2108
+ }
1669
2109
  /**
1670
2110
  * Request parameters for v1GetNodeProperties operation in DefaultApi.
1671
2111
  * @export
@@ -1730,6 +2170,19 @@ export interface DefaultApiV1OpticalTubeMatchRequest {
1730
2170
  */
1731
2171
  readonly apertureMm?: number;
1732
2172
  }
2173
+ /**
2174
+ * Request parameters for v1UpdateNodeComponents operation in DefaultApi.
2175
+ * @export
2176
+ * @interface DefaultApiV1UpdateNodeComponentsRequest
2177
+ */
2178
+ export interface DefaultApiV1UpdateNodeComponentsRequest {
2179
+ /**
2180
+ *
2181
+ * @type {V1UpdateNodeComponentsRequest}
2182
+ * @memberof DefaultApiV1UpdateNodeComponents
2183
+ */
2184
+ readonly v1UpdateNodeComponentsRequest: V1UpdateNodeComponentsRequest;
2185
+ }
1733
2186
  /**
1734
2187
  * Request parameters for v1UpdateNodeMetrics operation in DefaultApi.
1735
2188
  * @export
@@ -1811,6 +2264,14 @@ export declare class DefaultApi extends BaseAPI {
1811
2264
  * @memberof DefaultApi
1812
2265
  */
1813
2266
  v1CreateMount(requestParameters: DefaultApiV1CreateMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2267
+ /**
2268
+ * Create node diagnostics.
2269
+ * @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
2270
+ * @param {*} [options] Override http request option.
2271
+ * @throws {RequiredError}
2272
+ * @memberof DefaultApi
2273
+ */
2274
+ v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
1814
2275
  /**
1815
2276
  * Create an optical tube.
1816
2277
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -1850,6 +2311,14 @@ export declare class DefaultApi extends BaseAPI {
1850
2311
  * @memberof DefaultApi
1851
2312
  */
1852
2313
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
2314
+ /**
2315
+ * Get node diagnostic tasks.
2316
+ * @param {DefaultApiV1GetNodeDiagnosticTasksRequest} requestParameters Request parameters.
2317
+ * @param {*} [options] Override http request option.
2318
+ * @throws {RequiredError}
2319
+ * @memberof DefaultApi
2320
+ */
2321
+ v1GetNodeDiagnosticTasks(requestParameters: DefaultApiV1GetNodeDiagnosticTasksRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeDiagnosticType[], any>>;
1853
2322
  /**
1854
2323
  * Get node properties.
1855
2324
  * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
@@ -1889,6 +2358,14 @@ export declare class DefaultApi extends BaseAPI {
1889
2358
  * @memberof DefaultApi
1890
2359
  */
1891
2360
  v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube[], any>>;
2361
+ /**
2362
+ * Update node components.
2363
+ * @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.
2364
+ * @param {*} [options] Override http request option.
2365
+ * @throws {RequiredError}
2366
+ * @memberof DefaultApi
2367
+ */
2368
+ v1UpdateNodeComponents(requestParameters: DefaultApiV1UpdateNodeComponentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
1892
2369
  /**
1893
2370
  * Update node metrics.
1894
2371
  * @param {DefaultApiV1UpdateNodeMetricsRequest} requestParameters Request parameters.