@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.
@@ -1571,6 +1571,12 @@ interface Column {
1571
1571
  * @generated from protobuf field: optional string materialized = 12
1572
1572
  */
1573
1573
  materialized?: string;
1574
+ /**
1575
+ * Alias expression (computed at query time, not stored)
1576
+ *
1577
+ * @generated from protobuf field: optional string alias = 13
1578
+ */
1579
+ alias?: string;
1574
1580
  }
1575
1581
  /**
1576
1582
  * @generated MessageType for protobuf message moose.proto.Column
@@ -1571,6 +1571,12 @@ interface Column {
1571
1571
  * @generated from protobuf field: optional string materialized = 12
1572
1572
  */
1573
1573
  materialized?: string;
1574
+ /**
1575
+ * Alias expression (computed at query time, not stored)
1576
+ *
1577
+ * @generated from protobuf field: optional string alias = 13
1578
+ */
1579
+ alias?: string;
1574
1580
  }
1575
1581
  /**
1576
1582
  * @generated MessageType for protobuf message moose.proto.Column
@@ -3595,6 +3595,14 @@ var Column$Type = class extends import_runtime16.MessageType {
3595
3595
  opt: true,
3596
3596
  T: 9
3597
3597
  /*ScalarType.STRING*/
3598
+ },
3599
+ {
3600
+ no: 13,
3601
+ name: "alias",
3602
+ kind: "scalar",
3603
+ opt: true,
3604
+ T: 9
3605
+ /*ScalarType.STRING*/
3598
3606
  }
3599
3607
  ]);
3600
3608
  }
@@ -3663,6 +3671,10 @@ var Column$Type = class extends import_runtime16.MessageType {
3663
3671
  12:
3664
3672
  message.materialized = reader.string();
3665
3673
  break;
3674
+ case /* optional string alias */
3675
+ 13:
3676
+ message.alias = reader.string();
3677
+ break;
3666
3678
  default:
3667
3679
  let u = options.readUnknownField;
3668
3680
  if (u === "throw")
@@ -3716,6 +3728,8 @@ var Column$Type = class extends import_runtime16.MessageType {
3716
3728
  writer.tag(11, import_runtime13.WireType.LengthDelimited).string(message.codec);
3717
3729
  if (message.materialized !== void 0)
3718
3730
  writer.tag(12, import_runtime13.WireType.LengthDelimited).string(message.materialized);
3731
+ if (message.alias !== void 0)
3732
+ writer.tag(13, import_runtime13.WireType.LengthDelimited).string(message.alias);
3719
3733
  let u = options.writeUnknownFields;
3720
3734
  if (u !== false)
3721
3735
  (u == true ? import_runtime14.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);