@blueyerobotics/protocol-definitions 3.2.0-dfb1977f → 3.2.0-dfffd4a8

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.
@@ -1,6 +1,6 @@
1
1
  import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
2
2
  import { AquaTrollProbeMetadata, AquaTrollSensorMetadataArray, AquaTrollSensorParametersArray } from "./aquatroll";
3
- import { Altitude, Attitude, Battery, BatteryBQ40Z50, CalibrationState, CanisterHumidity, CanisterTemperature, ConnectedClient, ControlForce, ControllerHealth, ControlMode, CpProbe, CPUInfo, CPUTemperature, Depth, DiveTime, DroneInfo, DvlVelocity, ErrorFlags, FilterMessage, ForwardDistance, GenericServo, GuestPortCurrent, Imu, IperfStatus, KernelLogEntry, Laser, LatLongPosition, Lights, LogEntry, MagneticDeclination, MedusaSpectrometerData, MultibeamConfig, MultibeamDiscovery, MultibeamPing, MultibeamServo, Notification, NStreamers, PositionEstimate, RecordState, Reference, RemovableStorageDevice, StorageSpace, SurfaceUnitBatteryInfo, SurfaceUnitVersionInfo, SystemTime, ThicknessGauge, TiltAngle, TiltStabilizationState, TimeLapseState, WaterTemperature } from "./message_formats";
3
+ import { Altitude, Attitude, Battery, BatteryBQ40Z50, CalibrationState, CameraPanTiltZoom, CanisterHumidity, CanisterTemperature, ConnectedClient, ControlForce, ControllerHealth, ControlMode, CpProbe, CPUInfo, CPUTemperature, Depth, DiveTime, DroneInfo, DvlVelocity, ErrorFlags, FilterMessage, ForwardDistance, GenericServo, GuestPortCurrent, Imu, IperfStatus, KernelLogEntry, Laser, LaserDetection, LatLongPosition, Lights, LogEntry, MagneticDeclination, MedusaSpectrometerData, ModelDetections, MultibeamConfig, MultibeamDiscovery, MultibeamPing, MultibeamServo, Notification, NStreamers, PositionEstimate, RecordState, Reference, RemovableStorageDevice, SotState, StorageSpace, SurfaceUnitBatteryInfo, SurfaceUnitVersionInfo, SystemPerformanceInfo, SystemTime, ThicknessGauge, TiltAngle, TiltStabilizationState, TimeLapseState, WaterTemperature } from "./message_formats";
4
4
  import { MissionStatus, ReferenceAutoPilot } from "./mission_planning";
5
5
  /**
6
6
  * Telemetry
@@ -86,6 +86,8 @@ export interface GuestPortLightsTel {
86
86
  export interface LaserTel {
87
87
  /** Laser status. */
88
88
  laser: Laser | undefined;
89
+ /** Detection of the laser by the computer vision pipeline. Only */
90
+ laserDetection: LaserDetection | undefined;
89
91
  }
90
92
  /** Pilot position (originating from device GPS) for logging. */
91
93
  export interface PilotGPSPositionTel {
@@ -102,18 +104,32 @@ export interface TimeLapseStateTel {
102
104
  /** Time-lapse state. */
103
105
  timeLapseState: TimeLapseState | undefined;
104
106
  }
105
- /** Receive essential information about the battery status. */
107
+ /**
108
+ * Receive essential information about the battery status.
109
+ *
110
+ * On models with two batteries running in parallel (e.g. the X7), second_battery
111
+ * holds the essential information for the second battery. When only a single
112
+ * battery is used, second_battery is undefined (not set).
113
+ */
106
114
  export interface BatteryTel {
107
115
  /** Essential battery information. */
108
116
  battery: Battery | undefined;
117
+ /** Second battery, when present. Not set if only one battery is used. */
118
+ secondBattery: Battery | undefined;
109
119
  }
110
120
  /**
111
121
  * Receive detailed information about a battery using the
112
122
  * BQ40Z50 battery management system.
123
+ *
124
+ * On models with two batteries running in parallel (e.g. the X7), second_battery
125
+ * holds the detailed information for the second battery. When only a single
126
+ * battery is used, second_battery is undefined (not set).
113
127
  */
114
128
  export interface BatteryBQ40Z50Tel {
115
129
  /** Detailed battery information. */
116
130
  battery: BatteryBQ40Z50 | undefined;
131
+ /** Second battery, when present. Not set if only one battery is used. */
132
+ secondBattery: BatteryBQ40Z50 | undefined;
117
133
  }
118
134
  /** Receive the dive time of the drone. */
119
135
  export interface DiveTimeTel {
@@ -300,11 +316,21 @@ export interface MultibeamDiscoveryTel {
300
316
  /** Discovery data from a multibeam sonar. */
301
317
  discovery: MultibeamDiscovery | undefined;
302
318
  }
303
- /** Information about cpu and memory usage. */
319
+ /** Information about CPU and memory usage (deprecated, use SystemPerformanceInfoTel instead). */
304
320
  export interface CPUInfoTel {
305
321
  /** CPU information. */
306
322
  cpuInfo: CPUInfo | undefined;
307
323
  }
324
+ /**
325
+ * System performance telemetry message.
326
+ *
327
+ * Comprehensive performance metrics including per-core CPU, GPU, DLA,
328
+ * memory, thermals, and video codec utilization.
329
+ */
330
+ export interface SystemPerformanceInfoTel {
331
+ /** System performance information. */
332
+ systemPerformanceInfo: SystemPerformanceInfo | undefined;
333
+ }
308
334
  /** Surface Unit telemetry message. */
309
335
  export interface SurfaceUnitTel {
310
336
  /** Battery information. */
@@ -319,6 +345,11 @@ export interface LogEntryTel {
319
345
  /** Kernel log entry. */
320
346
  kernel?: KernelLogEntry | undefined;
321
347
  }
348
+ /** Object detections from all active computer vision models. */
349
+ export interface ObjectDetectionsTel {
350
+ /** Per-model detection results. */
351
+ modelDetections: ModelDetections[];
352
+ }
322
353
  /**
323
354
  * Turbidity filter settings telemetry message.
324
355
  *
@@ -328,6 +359,26 @@ export interface TurbidityFilterTel {
328
359
  /** Turbidity filter settings. */
329
360
  turbidityFilter: FilterMessage | undefined;
330
361
  }
362
+ /**
363
+ * Digital pan, tilt, and zoom telemetry from the main camera.
364
+ *
365
+ * Reports the actual pan, tilt, and zoom state of the camera.
366
+ * Only supported on X3 Ultra.
367
+ */
368
+ export interface CameraPanTiltZoomTel {
369
+ /** Current pan, tilt, and zoom state. */
370
+ cameraPanTiltZoom: CameraPanTiltZoom | undefined;
371
+ }
372
+ /**
373
+ * Single-object tracking (SOT) state telemetry from the computer vision pipeline.
374
+ *
375
+ * Reports the current tracking state and the tracked bounding box when active.
376
+ * Published periodically while the SOT pipeline is running.
377
+ */
378
+ export interface SotStateTel {
379
+ /** Current SOT state and bounding box. */
380
+ sotState: SotState | undefined;
381
+ }
331
382
  export declare const AttitudeTel: MessageFns<AttitudeTel>;
332
383
  export declare const MagneticDeclinationTel: MessageFns<MagneticDeclinationTel>;
333
384
  export declare const AltitudeTel: MessageFns<AltitudeTel>;
@@ -385,9 +436,13 @@ export declare const MultibeamPingTel: MessageFns<MultibeamPingTel>;
385
436
  export declare const MultibeamConfigTel: MessageFns<MultibeamConfigTel>;
386
437
  export declare const MultibeamDiscoveryTel: MessageFns<MultibeamDiscoveryTel>;
387
438
  export declare const CPUInfoTel: MessageFns<CPUInfoTel>;
439
+ export declare const SystemPerformanceInfoTel: MessageFns<SystemPerformanceInfoTel>;
388
440
  export declare const SurfaceUnitTel: MessageFns<SurfaceUnitTel>;
389
441
  export declare const LogEntryTel: MessageFns<LogEntryTel>;
442
+ export declare const ObjectDetectionsTel: MessageFns<ObjectDetectionsTel>;
390
443
  export declare const TurbidityFilterTel: MessageFns<TurbidityFilterTel>;
444
+ export declare const CameraPanTiltZoomTel: MessageFns<CameraPanTiltZoomTel>;
445
+ export declare const SotStateTel: MessageFns<SotStateTel>;
391
446
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
392
447
  type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
393
448
  [K in keyof T]?: DeepPartial<T[K]>;
package/dist/telemetry.js CHANGED
@@ -6,7 +6,7 @@
6
6
  // source: telemetry.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
8
  exports.Imu2Tel = exports.Imu1Tel = exports.CalibratedImuTel = exports.GuestPortCurrentTel = exports.MultibeamServoTel = exports.GenericServoTel = exports.ConnectedClientsTel = exports.AquaTrollSensorParametersTel = exports.AquaTrollSensorMetadataTel = exports.AquaTrollProbeMetadataTel = exports.CpProbeTel = exports.ThicknessGaugeTel = exports.ControlModeTel = exports.ErrorFlagsTel = exports.DroneInfoTel = exports.TiltAngleTel = exports.NStreamersTel = exports.IperfTel = exports.TiltStabilizationTel = exports.CalibrationStateTel = exports.DataStorageSpaceTel = exports.RemovableStorageTel = exports.VideoStorageSpaceTel = exports.CanisterBottomHumidityTel = exports.CanisterBottomTemperatureTel = exports.CPUTemperatureTel = exports.WaterTemperatureTel = exports.DroneTimeTel = exports.DiveTimeTel = exports.BatteryBQ40Z50Tel = exports.BatteryTel = exports.TimeLapseStateTel = exports.RecordStateTel = exports.PilotGPSPositionTel = exports.LaserTel = exports.GuestPortLightsTel = exports.LightsTel = exports.ControllerHealthTel = exports.ControlForceTel = exports.NotificationTel = exports.MissionStatusTel = exports.ReferenceAutoPilotTel = exports.ReferenceTel = exports.DepthTel = exports.PositionEstimateTel = exports.DvlVelocityTel = exports.ForwardDistanceTel = exports.AltitudeTel = exports.MagneticDeclinationTel = exports.AttitudeTel = void 0;
9
- exports.TurbidityFilterTel = exports.LogEntryTel = exports.SurfaceUnitTel = exports.CPUInfoTel = exports.MultibeamDiscoveryTel = exports.MultibeamConfigTel = exports.MultibeamPingTel = exports.MedusaSpectrometerDataTel = exports.CalibratedImuHpTel = exports.ImuHpTel = void 0;
9
+ exports.SotStateTel = exports.CameraPanTiltZoomTel = exports.TurbidityFilterTel = exports.ObjectDetectionsTel = exports.LogEntryTel = exports.SurfaceUnitTel = exports.SystemPerformanceInfoTel = exports.CPUInfoTel = exports.MultibeamDiscoveryTel = exports.MultibeamConfigTel = exports.MultibeamPingTel = exports.MedusaSpectrometerDataTel = exports.CalibratedImuHpTel = exports.ImuHpTel = void 0;
10
10
  /* eslint-disable */
11
11
  const wire_1 = require("@bufbuild/protobuf/wire");
12
12
  const aquatroll_1 = require("./aquatroll");
@@ -820,13 +820,16 @@ exports.GuestPortLightsTel = {
820
820
  },
821
821
  };
822
822
  function createBaseLaserTel() {
823
- return { laser: undefined };
823
+ return { laser: undefined, laserDetection: undefined };
824
824
  }
825
825
  exports.LaserTel = {
826
826
  encode(message, writer = new wire_1.BinaryWriter()) {
827
827
  if (message.laser !== undefined) {
828
828
  message_formats_1.Laser.encode(message.laser, writer.uint32(10).fork()).join();
829
829
  }
830
+ if (message.laserDetection !== undefined) {
831
+ message_formats_1.LaserDetection.encode(message.laserDetection, writer.uint32(18).fork()).join();
832
+ }
830
833
  return writer;
831
834
  },
832
835
  decode(input, length) {
@@ -843,6 +846,13 @@ exports.LaserTel = {
843
846
  message.laser = message_formats_1.Laser.decode(reader, reader.uint32());
844
847
  continue;
845
848
  }
849
+ case 2: {
850
+ if (tag !== 18) {
851
+ break;
852
+ }
853
+ message.laserDetection = message_formats_1.LaserDetection.decode(reader, reader.uint32());
854
+ continue;
855
+ }
846
856
  }
847
857
  if ((tag & 7) === 4 || tag === 0) {
848
858
  break;
@@ -852,13 +862,19 @@ exports.LaserTel = {
852
862
  return message;
853
863
  },
854
864
  fromJSON(object) {
855
- return { laser: isSet(object.laser) ? message_formats_1.Laser.fromJSON(object.laser) : undefined };
865
+ return {
866
+ laser: isSet(object.laser) ? message_formats_1.Laser.fromJSON(object.laser) : undefined,
867
+ laserDetection: isSet(object.laserDetection) ? message_formats_1.LaserDetection.fromJSON(object.laserDetection) : undefined,
868
+ };
856
869
  },
857
870
  toJSON(message) {
858
871
  const obj = {};
859
872
  if (message.laser !== undefined) {
860
873
  obj.laser = message_formats_1.Laser.toJSON(message.laser);
861
874
  }
875
+ if (message.laserDetection !== undefined) {
876
+ obj.laserDetection = message_formats_1.LaserDetection.toJSON(message.laserDetection);
877
+ }
862
878
  return obj;
863
879
  },
864
880
  create(base) {
@@ -867,6 +883,9 @@ exports.LaserTel = {
867
883
  fromPartial(object) {
868
884
  const message = createBaseLaserTel();
869
885
  message.laser = (object.laser !== undefined && object.laser !== null) ? message_formats_1.Laser.fromPartial(object.laser) : undefined;
886
+ message.laserDetection = (object.laserDetection !== undefined && object.laserDetection !== null)
887
+ ? message_formats_1.LaserDetection.fromPartial(object.laserDetection)
888
+ : undefined;
870
889
  return message;
871
890
  },
872
891
  };
@@ -1032,13 +1051,16 @@ exports.TimeLapseStateTel = {
1032
1051
  },
1033
1052
  };
1034
1053
  function createBaseBatteryTel() {
1035
- return { battery: undefined };
1054
+ return { battery: undefined, secondBattery: undefined };
1036
1055
  }
1037
1056
  exports.BatteryTel = {
1038
1057
  encode(message, writer = new wire_1.BinaryWriter()) {
1039
1058
  if (message.battery !== undefined) {
1040
1059
  message_formats_1.Battery.encode(message.battery, writer.uint32(10).fork()).join();
1041
1060
  }
1061
+ if (message.secondBattery !== undefined) {
1062
+ message_formats_1.Battery.encode(message.secondBattery, writer.uint32(18).fork()).join();
1063
+ }
1042
1064
  return writer;
1043
1065
  },
1044
1066
  decode(input, length) {
@@ -1055,6 +1077,13 @@ exports.BatteryTel = {
1055
1077
  message.battery = message_formats_1.Battery.decode(reader, reader.uint32());
1056
1078
  continue;
1057
1079
  }
1080
+ case 2: {
1081
+ if (tag !== 18) {
1082
+ break;
1083
+ }
1084
+ message.secondBattery = message_formats_1.Battery.decode(reader, reader.uint32());
1085
+ continue;
1086
+ }
1058
1087
  }
1059
1088
  if ((tag & 7) === 4 || tag === 0) {
1060
1089
  break;
@@ -1064,13 +1093,19 @@ exports.BatteryTel = {
1064
1093
  return message;
1065
1094
  },
1066
1095
  fromJSON(object) {
1067
- return { battery: isSet(object.battery) ? message_formats_1.Battery.fromJSON(object.battery) : undefined };
1096
+ return {
1097
+ battery: isSet(object.battery) ? message_formats_1.Battery.fromJSON(object.battery) : undefined,
1098
+ secondBattery: isSet(object.secondBattery) ? message_formats_1.Battery.fromJSON(object.secondBattery) : undefined,
1099
+ };
1068
1100
  },
1069
1101
  toJSON(message) {
1070
1102
  const obj = {};
1071
1103
  if (message.battery !== undefined) {
1072
1104
  obj.battery = message_formats_1.Battery.toJSON(message.battery);
1073
1105
  }
1106
+ if (message.secondBattery !== undefined) {
1107
+ obj.secondBattery = message_formats_1.Battery.toJSON(message.secondBattery);
1108
+ }
1074
1109
  return obj;
1075
1110
  },
1076
1111
  create(base) {
@@ -1081,17 +1116,23 @@ exports.BatteryTel = {
1081
1116
  message.battery = (object.battery !== undefined && object.battery !== null)
1082
1117
  ? message_formats_1.Battery.fromPartial(object.battery)
1083
1118
  : undefined;
1119
+ message.secondBattery = (object.secondBattery !== undefined && object.secondBattery !== null)
1120
+ ? message_formats_1.Battery.fromPartial(object.secondBattery)
1121
+ : undefined;
1084
1122
  return message;
1085
1123
  },
1086
1124
  };
1087
1125
  function createBaseBatteryBQ40Z50Tel() {
1088
- return { battery: undefined };
1126
+ return { battery: undefined, secondBattery: undefined };
1089
1127
  }
1090
1128
  exports.BatteryBQ40Z50Tel = {
1091
1129
  encode(message, writer = new wire_1.BinaryWriter()) {
1092
1130
  if (message.battery !== undefined) {
1093
1131
  message_formats_1.BatteryBQ40Z50.encode(message.battery, writer.uint32(10).fork()).join();
1094
1132
  }
1133
+ if (message.secondBattery !== undefined) {
1134
+ message_formats_1.BatteryBQ40Z50.encode(message.secondBattery, writer.uint32(18).fork()).join();
1135
+ }
1095
1136
  return writer;
1096
1137
  },
1097
1138
  decode(input, length) {
@@ -1108,6 +1149,13 @@ exports.BatteryBQ40Z50Tel = {
1108
1149
  message.battery = message_formats_1.BatteryBQ40Z50.decode(reader, reader.uint32());
1109
1150
  continue;
1110
1151
  }
1152
+ case 2: {
1153
+ if (tag !== 18) {
1154
+ break;
1155
+ }
1156
+ message.secondBattery = message_formats_1.BatteryBQ40Z50.decode(reader, reader.uint32());
1157
+ continue;
1158
+ }
1111
1159
  }
1112
1160
  if ((tag & 7) === 4 || tag === 0) {
1113
1161
  break;
@@ -1117,13 +1165,19 @@ exports.BatteryBQ40Z50Tel = {
1117
1165
  return message;
1118
1166
  },
1119
1167
  fromJSON(object) {
1120
- return { battery: isSet(object.battery) ? message_formats_1.BatteryBQ40Z50.fromJSON(object.battery) : undefined };
1168
+ return {
1169
+ battery: isSet(object.battery) ? message_formats_1.BatteryBQ40Z50.fromJSON(object.battery) : undefined,
1170
+ secondBattery: isSet(object.secondBattery) ? message_formats_1.BatteryBQ40Z50.fromJSON(object.secondBattery) : undefined,
1171
+ };
1121
1172
  },
1122
1173
  toJSON(message) {
1123
1174
  const obj = {};
1124
1175
  if (message.battery !== undefined) {
1125
1176
  obj.battery = message_formats_1.BatteryBQ40Z50.toJSON(message.battery);
1126
1177
  }
1178
+ if (message.secondBattery !== undefined) {
1179
+ obj.secondBattery = message_formats_1.BatteryBQ40Z50.toJSON(message.secondBattery);
1180
+ }
1127
1181
  return obj;
1128
1182
  },
1129
1183
  create(base) {
@@ -1134,6 +1188,9 @@ exports.BatteryBQ40Z50Tel = {
1134
1188
  message.battery = (object.battery !== undefined && object.battery !== null)
1135
1189
  ? message_formats_1.BatteryBQ40Z50.fromPartial(object.battery)
1136
1190
  : undefined;
1191
+ message.secondBattery = (object.secondBattery !== undefined && object.secondBattery !== null)
1192
+ ? message_formats_1.BatteryBQ40Z50.fromPartial(object.secondBattery)
1193
+ : undefined;
1137
1194
  return message;
1138
1195
  },
1139
1196
  };
@@ -3130,6 +3187,64 @@ exports.CPUInfoTel = {
3130
3187
  return message;
3131
3188
  },
3132
3189
  };
3190
+ function createBaseSystemPerformanceInfoTel() {
3191
+ return { systemPerformanceInfo: undefined };
3192
+ }
3193
+ exports.SystemPerformanceInfoTel = {
3194
+ encode(message, writer = new wire_1.BinaryWriter()) {
3195
+ if (message.systemPerformanceInfo !== undefined) {
3196
+ message_formats_1.SystemPerformanceInfo.encode(message.systemPerformanceInfo, writer.uint32(10).fork()).join();
3197
+ }
3198
+ return writer;
3199
+ },
3200
+ decode(input, length) {
3201
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
3202
+ const end = length === undefined ? reader.len : reader.pos + length;
3203
+ const message = createBaseSystemPerformanceInfoTel();
3204
+ while (reader.pos < end) {
3205
+ const tag = reader.uint32();
3206
+ switch (tag >>> 3) {
3207
+ case 1: {
3208
+ if (tag !== 10) {
3209
+ break;
3210
+ }
3211
+ message.systemPerformanceInfo = message_formats_1.SystemPerformanceInfo.decode(reader, reader.uint32());
3212
+ continue;
3213
+ }
3214
+ }
3215
+ if ((tag & 7) === 4 || tag === 0) {
3216
+ break;
3217
+ }
3218
+ reader.skip(tag & 7);
3219
+ }
3220
+ return message;
3221
+ },
3222
+ fromJSON(object) {
3223
+ return {
3224
+ systemPerformanceInfo: isSet(object.systemPerformanceInfo)
3225
+ ? message_formats_1.SystemPerformanceInfo.fromJSON(object.systemPerformanceInfo)
3226
+ : undefined,
3227
+ };
3228
+ },
3229
+ toJSON(message) {
3230
+ const obj = {};
3231
+ if (message.systemPerformanceInfo !== undefined) {
3232
+ obj.systemPerformanceInfo = message_formats_1.SystemPerformanceInfo.toJSON(message.systemPerformanceInfo);
3233
+ }
3234
+ return obj;
3235
+ },
3236
+ create(base) {
3237
+ return exports.SystemPerformanceInfoTel.fromPartial(base ?? {});
3238
+ },
3239
+ fromPartial(object) {
3240
+ const message = createBaseSystemPerformanceInfoTel();
3241
+ message.systemPerformanceInfo =
3242
+ (object.systemPerformanceInfo !== undefined && object.systemPerformanceInfo !== null)
3243
+ ? message_formats_1.SystemPerformanceInfo.fromPartial(object.systemPerformanceInfo)
3244
+ : undefined;
3245
+ return message;
3246
+ },
3247
+ };
3133
3248
  function createBaseSurfaceUnitTel() {
3134
3249
  return { batteryInfo: undefined, versionInfo: undefined };
3135
3250
  }
@@ -3274,6 +3389,61 @@ exports.LogEntryTel = {
3274
3389
  return message;
3275
3390
  },
3276
3391
  };
3392
+ function createBaseObjectDetectionsTel() {
3393
+ return { modelDetections: [] };
3394
+ }
3395
+ exports.ObjectDetectionsTel = {
3396
+ encode(message, writer = new wire_1.BinaryWriter()) {
3397
+ for (const v of message.modelDetections) {
3398
+ message_formats_1.ModelDetections.encode(v, writer.uint32(10).fork()).join();
3399
+ }
3400
+ return writer;
3401
+ },
3402
+ decode(input, length) {
3403
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
3404
+ const end = length === undefined ? reader.len : reader.pos + length;
3405
+ const message = createBaseObjectDetectionsTel();
3406
+ while (reader.pos < end) {
3407
+ const tag = reader.uint32();
3408
+ switch (tag >>> 3) {
3409
+ case 1: {
3410
+ if (tag !== 10) {
3411
+ break;
3412
+ }
3413
+ message.modelDetections.push(message_formats_1.ModelDetections.decode(reader, reader.uint32()));
3414
+ continue;
3415
+ }
3416
+ }
3417
+ if ((tag & 7) === 4 || tag === 0) {
3418
+ break;
3419
+ }
3420
+ reader.skip(tag & 7);
3421
+ }
3422
+ return message;
3423
+ },
3424
+ fromJSON(object) {
3425
+ return {
3426
+ modelDetections: gt.Array.isArray(object?.modelDetections)
3427
+ ? object.modelDetections.map((e) => message_formats_1.ModelDetections.fromJSON(e))
3428
+ : [],
3429
+ };
3430
+ },
3431
+ toJSON(message) {
3432
+ const obj = {};
3433
+ if (message.modelDetections?.length) {
3434
+ obj.modelDetections = message.modelDetections.map((e) => message_formats_1.ModelDetections.toJSON(e));
3435
+ }
3436
+ return obj;
3437
+ },
3438
+ create(base) {
3439
+ return exports.ObjectDetectionsTel.fromPartial(base ?? {});
3440
+ },
3441
+ fromPartial(object) {
3442
+ const message = createBaseObjectDetectionsTel();
3443
+ message.modelDetections = object.modelDetections?.map((e) => message_formats_1.ModelDetections.fromPartial(e)) || [];
3444
+ return message;
3445
+ },
3446
+ };
3277
3447
  function createBaseTurbidityFilterTel() {
3278
3448
  return { turbidityFilter: undefined };
3279
3449
  }
@@ -3329,6 +3499,116 @@ exports.TurbidityFilterTel = {
3329
3499
  return message;
3330
3500
  },
3331
3501
  };
3502
+ function createBaseCameraPanTiltZoomTel() {
3503
+ return { cameraPanTiltZoom: undefined };
3504
+ }
3505
+ exports.CameraPanTiltZoomTel = {
3506
+ encode(message, writer = new wire_1.BinaryWriter()) {
3507
+ if (message.cameraPanTiltZoom !== undefined) {
3508
+ message_formats_1.CameraPanTiltZoom.encode(message.cameraPanTiltZoom, writer.uint32(10).fork()).join();
3509
+ }
3510
+ return writer;
3511
+ },
3512
+ decode(input, length) {
3513
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
3514
+ const end = length === undefined ? reader.len : reader.pos + length;
3515
+ const message = createBaseCameraPanTiltZoomTel();
3516
+ while (reader.pos < end) {
3517
+ const tag = reader.uint32();
3518
+ switch (tag >>> 3) {
3519
+ case 1: {
3520
+ if (tag !== 10) {
3521
+ break;
3522
+ }
3523
+ message.cameraPanTiltZoom = message_formats_1.CameraPanTiltZoom.decode(reader, reader.uint32());
3524
+ continue;
3525
+ }
3526
+ }
3527
+ if ((tag & 7) === 4 || tag === 0) {
3528
+ break;
3529
+ }
3530
+ reader.skip(tag & 7);
3531
+ }
3532
+ return message;
3533
+ },
3534
+ fromJSON(object) {
3535
+ return {
3536
+ cameraPanTiltZoom: isSet(object.cameraPanTiltZoom)
3537
+ ? message_formats_1.CameraPanTiltZoom.fromJSON(object.cameraPanTiltZoom)
3538
+ : undefined,
3539
+ };
3540
+ },
3541
+ toJSON(message) {
3542
+ const obj = {};
3543
+ if (message.cameraPanTiltZoom !== undefined) {
3544
+ obj.cameraPanTiltZoom = message_formats_1.CameraPanTiltZoom.toJSON(message.cameraPanTiltZoom);
3545
+ }
3546
+ return obj;
3547
+ },
3548
+ create(base) {
3549
+ return exports.CameraPanTiltZoomTel.fromPartial(base ?? {});
3550
+ },
3551
+ fromPartial(object) {
3552
+ const message = createBaseCameraPanTiltZoomTel();
3553
+ message.cameraPanTiltZoom = (object.cameraPanTiltZoom !== undefined && object.cameraPanTiltZoom !== null)
3554
+ ? message_formats_1.CameraPanTiltZoom.fromPartial(object.cameraPanTiltZoom)
3555
+ : undefined;
3556
+ return message;
3557
+ },
3558
+ };
3559
+ function createBaseSotStateTel() {
3560
+ return { sotState: undefined };
3561
+ }
3562
+ exports.SotStateTel = {
3563
+ encode(message, writer = new wire_1.BinaryWriter()) {
3564
+ if (message.sotState !== undefined) {
3565
+ message_formats_1.SotState.encode(message.sotState, writer.uint32(10).fork()).join();
3566
+ }
3567
+ return writer;
3568
+ },
3569
+ decode(input, length) {
3570
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
3571
+ const end = length === undefined ? reader.len : reader.pos + length;
3572
+ const message = createBaseSotStateTel();
3573
+ while (reader.pos < end) {
3574
+ const tag = reader.uint32();
3575
+ switch (tag >>> 3) {
3576
+ case 1: {
3577
+ if (tag !== 10) {
3578
+ break;
3579
+ }
3580
+ message.sotState = message_formats_1.SotState.decode(reader, reader.uint32());
3581
+ continue;
3582
+ }
3583
+ }
3584
+ if ((tag & 7) === 4 || tag === 0) {
3585
+ break;
3586
+ }
3587
+ reader.skip(tag & 7);
3588
+ }
3589
+ return message;
3590
+ },
3591
+ fromJSON(object) {
3592
+ return { sotState: isSet(object.sotState) ? message_formats_1.SotState.fromJSON(object.sotState) : undefined };
3593
+ },
3594
+ toJSON(message) {
3595
+ const obj = {};
3596
+ if (message.sotState !== undefined) {
3597
+ obj.sotState = message_formats_1.SotState.toJSON(message.sotState);
3598
+ }
3599
+ return obj;
3600
+ },
3601
+ create(base) {
3602
+ return exports.SotStateTel.fromPartial(base ?? {});
3603
+ },
3604
+ fromPartial(object) {
3605
+ const message = createBaseSotStateTel();
3606
+ message.sotState = (object.sotState !== undefined && object.sotState !== null)
3607
+ ? message_formats_1.SotState.fromPartial(object.sotState)
3608
+ : undefined;
3609
+ return message;
3610
+ },
3611
+ };
3332
3612
  const gt = (() => {
3333
3613
  if (typeof globalThis !== "undefined") {
3334
3614
  return globalThis;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueyerobotics/protocol-definitions",
3
- "version": "3.2.0-dfb1977f",
3
+ "version": "3.2.0-dfffd4a8",
4
4
  "license": "LGPL-3.0-only",
5
5
  "description": "TypeScript definitions for Blueye Robotics protocols",
6
6
  "repository": {