@514labs/moose-proto 0.6.247 → 0.6.248
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.
|
@@ -2949,6 +2949,14 @@ var Column$Type = class extends MessageType3 {
|
|
|
2949
2949
|
opt: true,
|
|
2950
2950
|
T: 9
|
|
2951
2951
|
/*ScalarType.STRING*/
|
|
2952
|
+
},
|
|
2953
|
+
{
|
|
2954
|
+
no: 12,
|
|
2955
|
+
name: "materialized",
|
|
2956
|
+
kind: "scalar",
|
|
2957
|
+
opt: true,
|
|
2958
|
+
T: 9
|
|
2959
|
+
/*ScalarType.STRING*/
|
|
2952
2960
|
}
|
|
2953
2961
|
]);
|
|
2954
2962
|
}
|
|
@@ -3013,6 +3021,10 @@ var Column$Type = class extends MessageType3 {
|
|
|
3013
3021
|
11:
|
|
3014
3022
|
message.codec = reader.string();
|
|
3015
3023
|
break;
|
|
3024
|
+
case /* optional string materialized */
|
|
3025
|
+
12:
|
|
3026
|
+
message.materialized = reader.string();
|
|
3027
|
+
break;
|
|
3016
3028
|
default:
|
|
3017
3029
|
let u = options.readUnknownField;
|
|
3018
3030
|
if (u === "throw")
|
|
@@ -3064,6 +3076,8 @@ var Column$Type = class extends MessageType3 {
|
|
|
3064
3076
|
writer.tag(10, WireType3.LengthDelimited).string(message.ttl);
|
|
3065
3077
|
if (message.codec !== void 0)
|
|
3066
3078
|
writer.tag(11, WireType3.LengthDelimited).string(message.codec);
|
|
3079
|
+
if (message.materialized !== void 0)
|
|
3080
|
+
writer.tag(12, WireType3.LengthDelimited).string(message.materialized);
|
|
3067
3081
|
let u = options.writeUnknownFields;
|
|
3068
3082
|
if (u !== false)
|
|
3069
3083
|
(u == true ? UnknownFieldHandler3.onWrite : u)(this.typeName, message, writer);
|