@blueyerobotics/protocol-definitions 3.2.0-9a7703f5 → 3.2.0-ac052e11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # @blueyerobotics/protocol-definitions
2
+
3
+ TypeScript protobuf definitions for Blueye Robotics protocols generated using [ts-proto](https://github.com/stephenh/ts-proto).
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @blueyerobotics/protocol-definitions
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ import { blueye } from "@blueyerobotics/protocol-definitions";
15
+
16
+ // Create a new GetBatteryReq message
17
+ const request = blueye.protocol.GetBatteryReq.create();
18
+
19
+ // Serialize the message to a Uint8Array (binary)
20
+ const binary = blueye.protocol.GetBatteryReq.encode(request).finish();
21
+
22
+ // ...
23
+
24
+ // For demonstration, we will simulate a response from the device
25
+ const response = blueye.protocol.GetBatteryRep.create({
26
+ battery: {
27
+ level: 85,
28
+ voltage: 12.5,
29
+ temperature: 25,
30
+ },
31
+ });
32
+
33
+ const binaryResponse = blueye.protocol.GetBatteryRep.encode(response).finish();
34
+
35
+ // Decode a binary response back into a message
36
+ const decoded = blueye.protocol.GetBatteryRep.decode(binaryResponse);
37
+
38
+ // Access fields
39
+ console.log(decoded.battery?.level);
40
+ ```
@@ -424,18 +424,12 @@ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefi
424
424
  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 {} ? {
425
425
  [K in keyof T]?: DeepPartial<T[K]>;
426
426
  } : Partial<T>;
427
- type KeysOfUnion<T> = T extends T ? keyof T : never;
428
- type Exact<P, I extends P> = P extends Builtin ? P : P & {
429
- [K in keyof P]: Exact<P[K], I[K]>;
430
- } & {
431
- [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
432
- };
433
427
  interface MessageFns<T> {
434
428
  encode(message: T, writer?: BinaryWriter): BinaryWriter;
435
429
  decode(input: BinaryReader | Uint8Array, length?: number): T;
436
430
  fromJSON(object: any): T;
437
431
  toJSON(message: T): unknown;
438
- create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
439
- fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
432
+ create(base?: DeepPartial<T>): T;
433
+ fromPartial(object: DeepPartial<T>): T;
440
434
  }
441
435
  export {};
package/dist/aquatroll.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  // source: aquatroll.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
package/dist/control.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
2
2
  import { SetAquaTrollConnectionStatus, SetAquaTrollParameterUnit } from "./aquatroll";
3
- import { AutoAltitudeState, AutoDepthState, AutoHeadingState, AutoPilotHeaveState, AutoPilotSurgeYawState, ConnectionDuration, GenericServo, GripperVelocities, GuestPortRestartInfo, Laser, LatLongPosition, Lights, MotionInput, MultibeamConfig, MultibeamServo, PingerConfiguration, RecordOn, ResetPositionSettings, StationKeepingState, SystemTime, TiltStabilizationState, TiltVelocity, WaterDensity, WeatherVaningState } from "./message_formats";
3
+ import { AutoAltitudeState, AutoDepthState, AutoHeadingState, AutoPilotHeaveState, AutoPilotSurgeYawState, ConnectionDuration, GenericServo, GripperVelocities, GuestPortRestartInfo, Laser, LatLongPosition, Lights, MotionInput, MultibeamConfig, MultibeamServo, PingerConfiguration, RecordOn, ResetPositionSettings, StationKeepingState, StorageLocation, SystemTime, TiltStabilizationState, TiltVelocity, WaterDensity, WeatherVaningState } from "./message_formats";
4
4
  /**
5
5
  * Control
6
6
  *
@@ -48,13 +48,17 @@ export interface WatchdogCtrl {
48
48
  /** The ID of the client, received in the ConnectClientRep response. */
49
49
  clientId: number;
50
50
  }
51
- /** Issue a command to start video recording. */
51
+ /** Issue a command to start video or multibeam recording. */
52
52
  export interface RecordCtrl {
53
53
  /** Message specifying which cameras to record. */
54
54
  recordOn: RecordOn | undefined;
55
+ /** Storage location to use for the recordings. */
56
+ storageLocation: StorageLocation;
55
57
  }
56
58
  /** Issue a command to take a picture. */
57
59
  export interface TakePictureCtrl {
60
+ /** Storage location to use for the picture. */
61
+ storageLocation: StorageLocation;
58
62
  }
59
63
  /** Issue a command to start compass calibration. */
60
64
  export interface StartCalibrationCtrl {
@@ -205,6 +209,16 @@ export interface StartDiveCtrl {
205
209
  */
206
210
  export interface EndDiveCtrl {
207
211
  }
212
+ /**
213
+ * Message sent when the user wants to format a connected removable storage device.
214
+ *
215
+ * The app will receive a RemovableStorageTel message with information about the newly formatted drive.
216
+ *
217
+ * Warning: The drone will delete any partitions and format the drive with a single exFat partition.
218
+ * Any data on the drive will be lost.
219
+ */
220
+ export interface FormatRemovableStorageDeviceCtrl {
221
+ }
208
222
  export declare const MotionInputCtrl: MessageFns<MotionInputCtrl>;
209
223
  export declare const TiltVelocityCtrl: MessageFns<TiltVelocityCtrl>;
210
224
  export declare const LightsCtrl: MessageFns<LightsCtrl>;
@@ -247,22 +261,17 @@ export declare const ActivateMultibeamCtrl: MessageFns<ActivateMultibeamCtrl>;
247
261
  export declare const DeactivateMultibeamCtrl: MessageFns<DeactivateMultibeamCtrl>;
248
262
  export declare const StartDiveCtrl: MessageFns<StartDiveCtrl>;
249
263
  export declare const EndDiveCtrl: MessageFns<EndDiveCtrl>;
264
+ export declare const FormatRemovableStorageDeviceCtrl: MessageFns<FormatRemovableStorageDeviceCtrl>;
250
265
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
251
266
  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 {} ? {
252
267
  [K in keyof T]?: DeepPartial<T[K]>;
253
268
  } : Partial<T>;
254
- type KeysOfUnion<T> = T extends T ? keyof T : never;
255
- type Exact<P, I extends P> = P extends Builtin ? P : P & {
256
- [K in keyof P]: Exact<P[K], I[K]>;
257
- } & {
258
- [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
259
- };
260
269
  interface MessageFns<T> {
261
270
  encode(message: T, writer?: BinaryWriter): BinaryWriter;
262
271
  decode(input: BinaryReader | Uint8Array, length?: number): T;
263
272
  fromJSON(object: any): T;
264
273
  toJSON(message: T): unknown;
265
- create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
266
- fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
274
+ create(base?: DeepPartial<T>): T;
275
+ fromPartial(object: DeepPartial<T>): T;
267
276
  }
268
277
  export {};
package/dist/control.js CHANGED
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  // source: control.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
- exports.EndDiveCtrl = exports.StartDiveCtrl = exports.DeactivateMultibeamCtrl = exports.ActivateMultibeamCtrl = exports.SetMultibeamConfigCtrl = exports.SetAquaTrollConnectionStatusCtrl = exports.SetAquaTrollParameterUnitCtrl = exports.RestartGuestPortsCtrl = exports.ActivateGuestPortsCtrl = exports.DeactivateGuestPortsCtrl = exports.MultibeamServoCtrl = exports.GenericServoCtrl = exports.GripperCtrl = exports.SystemTimeCtrl = exports.PingerConfigurationCtrl = exports.WaterDensityCtrl = exports.TiltStabilizationCtrl = exports.CalibrateDvlGyroCtrl = exports.ResetOdometerCtrl = exports.ResetPositionCtrl = exports.ClearMissionCtrl = exports.PauseMissionCtrl = exports.RunMissionCtrl = exports.AutoPilotHeaveCtrl = exports.AutoPilotSurgeYawCtrl = exports.WeatherVaningCtrl = exports.StationKeepingCtrl = exports.AutoAltitudeCtrl = exports.AutoDepthCtrl = exports.AutoHeadingCtrl = exports.FinishCalibrationCtrl = exports.CancelCalibrationCtrl = exports.StartCalibrationCtrl = exports.TakePictureCtrl = exports.RecordCtrl = exports.WatchdogCtrl = exports.PilotGPSPositionCtrl = exports.LaserCtrl = exports.GuestportLightsCtrl = exports.LightsCtrl = exports.TiltVelocityCtrl = exports.MotionInputCtrl = void 0;
8
+ exports.FormatRemovableStorageDeviceCtrl = exports.EndDiveCtrl = exports.StartDiveCtrl = exports.DeactivateMultibeamCtrl = exports.ActivateMultibeamCtrl = exports.SetMultibeamConfigCtrl = exports.SetAquaTrollConnectionStatusCtrl = exports.SetAquaTrollParameterUnitCtrl = exports.RestartGuestPortsCtrl = exports.ActivateGuestPortsCtrl = exports.DeactivateGuestPortsCtrl = exports.MultibeamServoCtrl = exports.GenericServoCtrl = exports.GripperCtrl = exports.SystemTimeCtrl = exports.PingerConfigurationCtrl = exports.WaterDensityCtrl = exports.TiltStabilizationCtrl = exports.CalibrateDvlGyroCtrl = exports.ResetOdometerCtrl = exports.ResetPositionCtrl = exports.ClearMissionCtrl = exports.PauseMissionCtrl = exports.RunMissionCtrl = exports.AutoPilotHeaveCtrl = exports.AutoPilotSurgeYawCtrl = exports.WeatherVaningCtrl = exports.StationKeepingCtrl = exports.AutoAltitudeCtrl = exports.AutoDepthCtrl = exports.AutoHeadingCtrl = exports.FinishCalibrationCtrl = exports.CancelCalibrationCtrl = exports.StartCalibrationCtrl = exports.TakePictureCtrl = exports.RecordCtrl = exports.WatchdogCtrl = exports.PilotGPSPositionCtrl = exports.LaserCtrl = exports.GuestportLightsCtrl = exports.LightsCtrl = exports.TiltVelocityCtrl = exports.MotionInputCtrl = void 0;
9
9
  /* eslint-disable */
10
10
  const wire_1 = require("@bufbuild/protobuf/wire");
11
11
  const aquatroll_1 = require("./aquatroll");
@@ -399,13 +399,16 @@ exports.WatchdogCtrl = {
399
399
  },
400
400
  };
401
401
  function createBaseRecordCtrl() {
402
- return { recordOn: undefined };
402
+ return { recordOn: undefined, storageLocation: 0 };
403
403
  }
404
404
  exports.RecordCtrl = {
405
405
  encode(message, writer = new wire_1.BinaryWriter()) {
406
406
  if (message.recordOn !== undefined) {
407
407
  message_formats_1.RecordOn.encode(message.recordOn, writer.uint32(10).fork()).join();
408
408
  }
409
+ if (message.storageLocation !== 0) {
410
+ writer.uint32(16).int32(message.storageLocation);
411
+ }
409
412
  return writer;
410
413
  },
411
414
  decode(input, length) {
@@ -422,6 +425,13 @@ exports.RecordCtrl = {
422
425
  message.recordOn = message_formats_1.RecordOn.decode(reader, reader.uint32());
423
426
  continue;
424
427
  }
428
+ case 2: {
429
+ if (tag !== 16) {
430
+ break;
431
+ }
432
+ message.storageLocation = reader.int32();
433
+ continue;
434
+ }
425
435
  }
426
436
  if ((tag & 7) === 4 || tag === 0) {
427
437
  break;
@@ -431,13 +441,19 @@ exports.RecordCtrl = {
431
441
  return message;
432
442
  },
433
443
  fromJSON(object) {
434
- return { recordOn: isSet(object.recordOn) ? message_formats_1.RecordOn.fromJSON(object.recordOn) : undefined };
444
+ return {
445
+ recordOn: isSet(object.recordOn) ? message_formats_1.RecordOn.fromJSON(object.recordOn) : undefined,
446
+ storageLocation: isSet(object.storageLocation) ? (0, message_formats_1.storageLocationFromJSON)(object.storageLocation) : 0,
447
+ };
435
448
  },
436
449
  toJSON(message) {
437
450
  const obj = {};
438
451
  if (message.recordOn !== undefined) {
439
452
  obj.recordOn = message_formats_1.RecordOn.toJSON(message.recordOn);
440
453
  }
454
+ if (message.storageLocation !== 0) {
455
+ obj.storageLocation = (0, message_formats_1.storageLocationToJSON)(message.storageLocation);
456
+ }
441
457
  return obj;
442
458
  },
443
459
  create(base) {
@@ -448,14 +464,18 @@ exports.RecordCtrl = {
448
464
  message.recordOn = (object.recordOn !== undefined && object.recordOn !== null)
449
465
  ? message_formats_1.RecordOn.fromPartial(object.recordOn)
450
466
  : undefined;
467
+ message.storageLocation = object.storageLocation ?? 0;
451
468
  return message;
452
469
  },
453
470
  };
454
471
  function createBaseTakePictureCtrl() {
455
- return {};
472
+ return { storageLocation: 0 };
456
473
  }
457
474
  exports.TakePictureCtrl = {
458
- encode(_, writer = new wire_1.BinaryWriter()) {
475
+ encode(message, writer = new wire_1.BinaryWriter()) {
476
+ if (message.storageLocation !== 0) {
477
+ writer.uint32(8).int32(message.storageLocation);
478
+ }
459
479
  return writer;
460
480
  },
461
481
  decode(input, length) {
@@ -465,6 +485,13 @@ exports.TakePictureCtrl = {
465
485
  while (reader.pos < end) {
466
486
  const tag = reader.uint32();
467
487
  switch (tag >>> 3) {
488
+ case 1: {
489
+ if (tag !== 8) {
490
+ break;
491
+ }
492
+ message.storageLocation = reader.int32();
493
+ continue;
494
+ }
468
495
  }
469
496
  if ((tag & 7) === 4 || tag === 0) {
470
497
  break;
@@ -473,18 +500,22 @@ exports.TakePictureCtrl = {
473
500
  }
474
501
  return message;
475
502
  },
476
- fromJSON(_) {
477
- return {};
503
+ fromJSON(object) {
504
+ return { storageLocation: isSet(object.storageLocation) ? (0, message_formats_1.storageLocationFromJSON)(object.storageLocation) : 0 };
478
505
  },
479
- toJSON(_) {
506
+ toJSON(message) {
480
507
  const obj = {};
508
+ if (message.storageLocation !== 0) {
509
+ obj.storageLocation = (0, message_formats_1.storageLocationToJSON)(message.storageLocation);
510
+ }
481
511
  return obj;
482
512
  },
483
513
  create(base) {
484
514
  return exports.TakePictureCtrl.fromPartial(base ?? {});
485
515
  },
486
- fromPartial(_) {
516
+ fromPartial(object) {
487
517
  const message = createBaseTakePictureCtrl();
518
+ message.storageLocation = object.storageLocation ?? 0;
488
519
  return message;
489
520
  },
490
521
  };
@@ -2041,6 +2072,43 @@ exports.EndDiveCtrl = {
2041
2072
  return message;
2042
2073
  },
2043
2074
  };
2075
+ function createBaseFormatRemovableStorageDeviceCtrl() {
2076
+ return {};
2077
+ }
2078
+ exports.FormatRemovableStorageDeviceCtrl = {
2079
+ encode(_, writer = new wire_1.BinaryWriter()) {
2080
+ return writer;
2081
+ },
2082
+ decode(input, length) {
2083
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
2084
+ const end = length === undefined ? reader.len : reader.pos + length;
2085
+ const message = createBaseFormatRemovableStorageDeviceCtrl();
2086
+ while (reader.pos < end) {
2087
+ const tag = reader.uint32();
2088
+ switch (tag >>> 3) {
2089
+ }
2090
+ if ((tag & 7) === 4 || tag === 0) {
2091
+ break;
2092
+ }
2093
+ reader.skip(tag & 7);
2094
+ }
2095
+ return message;
2096
+ },
2097
+ fromJSON(_) {
2098
+ return {};
2099
+ },
2100
+ toJSON(_) {
2101
+ const obj = {};
2102
+ return obj;
2103
+ },
2104
+ create(base) {
2105
+ return exports.FormatRemovableStorageDeviceCtrl.fromPartial(base ?? {});
2106
+ },
2107
+ fromPartial(_) {
2108
+ const message = createBaseFormatRemovableStorageDeviceCtrl();
2109
+ return message;
2110
+ },
2111
+ };
2044
2112
  const gt = (() => {
2045
2113
  if (typeof globalThis !== "undefined") {
2046
2114
  return globalThis;
@@ -121,18 +121,12 @@ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefi
121
121
  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 {} ? {
122
122
  [K in keyof T]?: DeepPartial<T[K]>;
123
123
  } : Partial<T>;
124
- type KeysOfUnion<T> = T extends T ? keyof T : never;
125
- type Exact<P, I extends P> = P extends Builtin ? P : P & {
126
- [K in keyof P]: Exact<P[K], I[K]>;
127
- } & {
128
- [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
129
- };
130
124
  interface MessageFns<T> {
131
125
  encode(message: T, writer?: BinaryWriter): BinaryWriter;
132
126
  decode(input: BinaryReader | Uint8Array, length?: number): T;
133
127
  fromJSON(object: any): T;
134
128
  toJSON(message: T): unknown;
135
- create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
136
- fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
129
+ create(base?: DeepPartial<T>): T;
130
+ fromPartial(object: DeepPartial<T>): T;
137
131
  }
138
132
  export {};
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  // source: google/protobuf/any.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -81,18 +81,12 @@ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefi
81
81
  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 {} ? {
82
82
  [K in keyof T]?: DeepPartial<T[K]>;
83
83
  } : Partial<T>;
84
- type KeysOfUnion<T> = T extends T ? keyof T : never;
85
- type Exact<P, I extends P> = P extends Builtin ? P : P & {
86
- [K in keyof P]: Exact<P[K], I[K]>;
87
- } & {
88
- [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
89
- };
90
84
  interface MessageFns<T> {
91
85
  encode(message: T, writer?: BinaryWriter): BinaryWriter;
92
86
  decode(input: BinaryReader | Uint8Array, length?: number): T;
93
87
  fromJSON(object: any): T;
94
88
  toJSON(message: T): unknown;
95
- create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
96
- fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
89
+ create(base?: DeepPartial<T>): T;
90
+ fromPartial(object: DeepPartial<T>): T;
97
91
  }
98
92
  export {};
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  // source: google/protobuf/duration.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -110,18 +110,12 @@ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefi
110
110
  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 {} ? {
111
111
  [K in keyof T]?: DeepPartial<T[K]>;
112
112
  } : Partial<T>;
113
- type KeysOfUnion<T> = T extends T ? keyof T : never;
114
- type Exact<P, I extends P> = P extends Builtin ? P : P & {
115
- [K in keyof P]: Exact<P[K], I[K]>;
116
- } & {
117
- [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
118
- };
119
113
  interface MessageFns<T> {
120
114
  encode(message: T, writer?: BinaryWriter): BinaryWriter;
121
115
  decode(input: BinaryReader | Uint8Array, length?: number): T;
122
116
  fromJSON(object: any): T;
123
117
  toJSON(message: T): unknown;
124
- create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
125
- fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
118
+ create(base?: DeepPartial<T>): T;
119
+ fromPartial(object: DeepPartial<T>): T;
126
120
  }
127
121
  export {};
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  // source: google/protobuf/timestamp.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
7
  if (k2 === undefined) k2 = k;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
7
  if (k2 === undefined) k2 = k;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
7
  if (k2 === undefined) k2 = k;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
7
  if (k2 === undefined) k2 = k;
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
3
3
  // versions:
4
- // protoc-gen-ts_proto v2.7.5
4
+ // protoc-gen-ts_proto v2.7.7
5
5
  // protoc v3.21.12
6
6
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
7
  if (k2 === undefined) k2 = k;