@514labs/moose-proto 0.6.261 → 0.6.262
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.
|
@@ -920,6 +920,13 @@ interface Table {
|
|
|
920
920
|
* @generated from protobuf field: optional string primary_key_expression = 19
|
|
921
921
|
*/
|
|
922
922
|
primaryKeyExpression?: string;
|
|
923
|
+
/**
|
|
924
|
+
* Hash of table settings for change detection (including sensitive settings)
|
|
925
|
+
* Used to detect settings changes without storing plaintext sensitive values
|
|
926
|
+
*
|
|
927
|
+
* @generated from protobuf field: optional string table_settings_hash = 20
|
|
928
|
+
*/
|
|
929
|
+
tableSettingsHash?: string;
|
|
923
930
|
}
|
|
924
931
|
/**
|
|
925
932
|
* @generated MessageType for protobuf message moose.proto.Table
|
|
@@ -920,6 +920,13 @@ interface Table {
|
|
|
920
920
|
* @generated from protobuf field: optional string primary_key_expression = 19
|
|
921
921
|
*/
|
|
922
922
|
primaryKeyExpression?: string;
|
|
923
|
+
/**
|
|
924
|
+
* Hash of table settings for change detection (including sensitive settings)
|
|
925
|
+
* Used to detect settings changes without storing plaintext sensitive values
|
|
926
|
+
*
|
|
927
|
+
* @generated from protobuf field: optional string table_settings_hash = 20
|
|
928
|
+
*/
|
|
929
|
+
tableSettingsHash?: string;
|
|
923
930
|
}
|
|
924
931
|
/**
|
|
925
932
|
* @generated MessageType for protobuf message moose.proto.Table
|
|
@@ -2025,6 +2025,14 @@ var Table$Type = class extends import_runtime16.MessageType {
|
|
|
2025
2025
|
opt: true,
|
|
2026
2026
|
T: 9
|
|
2027
2027
|
/*ScalarType.STRING*/
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
no: 20,
|
|
2031
|
+
name: "table_settings_hash",
|
|
2032
|
+
kind: "scalar",
|
|
2033
|
+
opt: true,
|
|
2034
|
+
T: 9
|
|
2035
|
+
/*ScalarType.STRING*/
|
|
2028
2036
|
}
|
|
2029
2037
|
]);
|
|
2030
2038
|
}
|
|
@@ -2122,6 +2130,10 @@ var Table$Type = class extends import_runtime16.MessageType {
|
|
|
2122
2130
|
19:
|
|
2123
2131
|
message.primaryKeyExpression = reader.string();
|
|
2124
2132
|
break;
|
|
2133
|
+
case /* optional string table_settings_hash */
|
|
2134
|
+
20:
|
|
2135
|
+
message.tableSettingsHash = reader.string();
|
|
2136
|
+
break;
|
|
2125
2137
|
default:
|
|
2126
2138
|
let u = options.readUnknownField;
|
|
2127
2139
|
if (u === "throw")
|
|
@@ -2189,6 +2201,8 @@ var Table$Type = class extends import_runtime16.MessageType {
|
|
|
2189
2201
|
writer.tag(18, import_runtime13.WireType.LengthDelimited).string(message.clusterName);
|
|
2190
2202
|
if (message.primaryKeyExpression !== void 0)
|
|
2191
2203
|
writer.tag(19, import_runtime13.WireType.LengthDelimited).string(message.primaryKeyExpression);
|
|
2204
|
+
if (message.tableSettingsHash !== void 0)
|
|
2205
|
+
writer.tag(20, import_runtime13.WireType.LengthDelimited).string(message.tableSettingsHash);
|
|
2192
2206
|
let u = options.writeUnknownFields;
|
|
2193
2207
|
if (u !== false)
|
|
2194
2208
|
(u == true ? import_runtime14.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|