@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.
|
@@ -1286,6 +1286,12 @@ interface Column {
|
|
|
1286
1286
|
* @generated from protobuf field: optional string ttl = 10
|
|
1287
1287
|
*/
|
|
1288
1288
|
ttl?: string;
|
|
1289
|
+
/**
|
|
1290
|
+
* Compression codec expression (e.g., "ZSTD(3)", "Delta, LZ4")
|
|
1291
|
+
*
|
|
1292
|
+
* @generated from protobuf field: optional string codec = 11
|
|
1293
|
+
*/
|
|
1294
|
+
codec?: string;
|
|
1289
1295
|
}
|
|
1290
1296
|
/**
|
|
1291
1297
|
* @generated MessageType for protobuf message moose.proto.Column
|
|
@@ -1286,6 +1286,12 @@ interface Column {
|
|
|
1286
1286
|
* @generated from protobuf field: optional string ttl = 10
|
|
1287
1287
|
*/
|
|
1288
1288
|
ttl?: string;
|
|
1289
|
+
/**
|
|
1290
|
+
* Compression codec expression (e.g., "ZSTD(3)", "Delta, LZ4")
|
|
1291
|
+
*
|
|
1292
|
+
* @generated from protobuf field: optional string codec = 11
|
|
1293
|
+
*/
|
|
1294
|
+
codec?: string;
|
|
1289
1295
|
}
|
|
1290
1296
|
/**
|
|
1291
1297
|
* @generated MessageType for protobuf message moose.proto.Column
|
|
@@ -3010,6 +3010,14 @@ var Column$Type = class extends import_runtime16.MessageType {
|
|
|
3010
3010
|
opt: true,
|
|
3011
3011
|
T: 9
|
|
3012
3012
|
/*ScalarType.STRING*/
|
|
3013
|
+
},
|
|
3014
|
+
{
|
|
3015
|
+
no: 11,
|
|
3016
|
+
name: "codec",
|
|
3017
|
+
kind: "scalar",
|
|
3018
|
+
opt: true,
|
|
3019
|
+
T: 9
|
|
3020
|
+
/*ScalarType.STRING*/
|
|
3013
3021
|
}
|
|
3014
3022
|
]);
|
|
3015
3023
|
}
|
|
@@ -3070,6 +3078,10 @@ var Column$Type = class extends import_runtime16.MessageType {
|
|
|
3070
3078
|
10:
|
|
3071
3079
|
message.ttl = reader.string();
|
|
3072
3080
|
break;
|
|
3081
|
+
case /* optional string codec */
|
|
3082
|
+
11:
|
|
3083
|
+
message.codec = reader.string();
|
|
3084
|
+
break;
|
|
3073
3085
|
default:
|
|
3074
3086
|
let u = options.readUnknownField;
|
|
3075
3087
|
if (u === "throw")
|
|
@@ -3119,6 +3131,8 @@ var Column$Type = class extends import_runtime16.MessageType {
|
|
|
3119
3131
|
StringValue.internalBinaryWrite(message.defaultExpr, writer.tag(9, import_runtime13.WireType.LengthDelimited).fork(), options).join();
|
|
3120
3132
|
if (message.ttl !== void 0)
|
|
3121
3133
|
writer.tag(10, import_runtime13.WireType.LengthDelimited).string(message.ttl);
|
|
3134
|
+
if (message.codec !== void 0)
|
|
3135
|
+
writer.tag(11, import_runtime13.WireType.LengthDelimited).string(message.codec);
|
|
3122
3136
|
let u = options.writeUnknownFields;
|
|
3123
3137
|
if (u !== false)
|
|
3124
3138
|
(u == true ? import_runtime14.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|