@514labs/moose-proto 0.6.401 → 0.6.402
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.
|
@@ -2802,12 +2802,14 @@ var MaterializedView$Type = class extends MessageType3 {
|
|
|
2802
2802
|
},
|
|
2803
2803
|
{ no: 3, name: "select_query", kind: "message", T: () => SelectQuery },
|
|
2804
2804
|
{ no: 4, name: "target_table", kind: "message", T: () => TableReference },
|
|
2805
|
-
{ no: 5, name: "metadata", kind: "message", T: () => Metadata }
|
|
2805
|
+
{ no: 5, name: "metadata", kind: "message", T: () => Metadata },
|
|
2806
|
+
{ no: 6, name: "life_cycle", kind: "enum", T: () => ["moose.proto.LifeCycle", LifeCycle] }
|
|
2806
2807
|
]);
|
|
2807
2808
|
}
|
|
2808
2809
|
create(value) {
|
|
2809
2810
|
const message = globalThis.Object.create(this.messagePrototype);
|
|
2810
2811
|
message.name = "";
|
|
2812
|
+
message.lifeCycle = 0;
|
|
2811
2813
|
if (value !== void 0)
|
|
2812
2814
|
reflectionMergePartial3(this, message, value);
|
|
2813
2815
|
return message;
|
|
@@ -2837,6 +2839,10 @@ var MaterializedView$Type = class extends MessageType3 {
|
|
|
2837
2839
|
5:
|
|
2838
2840
|
message.metadata = Metadata.internalBinaryRead(reader, reader.uint32(), options, message.metadata);
|
|
2839
2841
|
break;
|
|
2842
|
+
case /* moose.proto.LifeCycle life_cycle */
|
|
2843
|
+
6:
|
|
2844
|
+
message.lifeCycle = reader.int32();
|
|
2845
|
+
break;
|
|
2840
2846
|
default:
|
|
2841
2847
|
let u = options.readUnknownField;
|
|
2842
2848
|
if (u === "throw")
|
|
@@ -2859,6 +2865,8 @@ var MaterializedView$Type = class extends MessageType3 {
|
|
|
2859
2865
|
TableReference.internalBinaryWrite(message.targetTable, writer.tag(4, WireType3.LengthDelimited).fork(), options).join();
|
|
2860
2866
|
if (message.metadata)
|
|
2861
2867
|
Metadata.internalBinaryWrite(message.metadata, writer.tag(5, WireType3.LengthDelimited).fork(), options).join();
|
|
2868
|
+
if (message.lifeCycle !== 0)
|
|
2869
|
+
writer.tag(6, WireType3.Varint).int32(message.lifeCycle);
|
|
2862
2870
|
let u = options.writeUnknownFields;
|
|
2863
2871
|
if (u !== false)
|
|
2864
2872
|
(u == true ? UnknownFieldHandler3.onWrite : u)(this.typeName, message, writer);
|