@514labs/moose-proto 0.6.433 → 0.6.434
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.
|
@@ -3519,6 +3519,14 @@ var Column$Type = class extends MessageType3 {
|
|
|
3519
3519
|
opt: true,
|
|
3520
3520
|
T: 9
|
|
3521
3521
|
/*ScalarType.STRING*/
|
|
3522
|
+
},
|
|
3523
|
+
{
|
|
3524
|
+
no: 13,
|
|
3525
|
+
name: "alias",
|
|
3526
|
+
kind: "scalar",
|
|
3527
|
+
opt: true,
|
|
3528
|
+
T: 9
|
|
3529
|
+
/*ScalarType.STRING*/
|
|
3522
3530
|
}
|
|
3523
3531
|
]);
|
|
3524
3532
|
}
|
|
@@ -3587,6 +3595,10 @@ var Column$Type = class extends MessageType3 {
|
|
|
3587
3595
|
12:
|
|
3588
3596
|
message.materialized = reader.string();
|
|
3589
3597
|
break;
|
|
3598
|
+
case /* optional string alias */
|
|
3599
|
+
13:
|
|
3600
|
+
message.alias = reader.string();
|
|
3601
|
+
break;
|
|
3590
3602
|
default:
|
|
3591
3603
|
let u = options.readUnknownField;
|
|
3592
3604
|
if (u === "throw")
|
|
@@ -3640,6 +3652,8 @@ var Column$Type = class extends MessageType3 {
|
|
|
3640
3652
|
writer.tag(11, WireType3.LengthDelimited).string(message.codec);
|
|
3641
3653
|
if (message.materialized !== void 0)
|
|
3642
3654
|
writer.tag(12, WireType3.LengthDelimited).string(message.materialized);
|
|
3655
|
+
if (message.alias !== void 0)
|
|
3656
|
+
writer.tag(13, WireType3.LengthDelimited).string(message.alias);
|
|
3643
3657
|
let u = options.writeUnknownFields;
|
|
3644
3658
|
if (u !== false)
|
|
3645
3659
|
(u == true ? UnknownFieldHandler3.onWrite : u)(this.typeName, message, writer);
|