@514labs/moose-proto 0.6.237 → 0.6.238

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.
@@ -2941,6 +2941,14 @@ var Column$Type = class extends MessageType3 {
2941
2941
  opt: true,
2942
2942
  T: 9
2943
2943
  /*ScalarType.STRING*/
2944
+ },
2945
+ {
2946
+ no: 11,
2947
+ name: "codec",
2948
+ kind: "scalar",
2949
+ opt: true,
2950
+ T: 9
2951
+ /*ScalarType.STRING*/
2944
2952
  }
2945
2953
  ]);
2946
2954
  }
@@ -3001,6 +3009,10 @@ var Column$Type = class extends MessageType3 {
3001
3009
  10:
3002
3010
  message.ttl = reader.string();
3003
3011
  break;
3012
+ case /* optional string codec */
3013
+ 11:
3014
+ message.codec = reader.string();
3015
+ break;
3004
3016
  default:
3005
3017
  let u = options.readUnknownField;
3006
3018
  if (u === "throw")
@@ -3050,6 +3062,8 @@ var Column$Type = class extends MessageType3 {
3050
3062
  StringValue.internalBinaryWrite(message.defaultExpr, writer.tag(9, WireType3.LengthDelimited).fork(), options).join();
3051
3063
  if (message.ttl !== void 0)
3052
3064
  writer.tag(10, WireType3.LengthDelimited).string(message.ttl);
3065
+ if (message.codec !== void 0)
3066
+ writer.tag(11, WireType3.LengthDelimited).string(message.codec);
3053
3067
  let u = options.writeUnknownFields;
3054
3068
  if (u !== false)
3055
3069
  (u == true ? UnknownFieldHandler3.onWrite : u)(this.typeName, message, writer);