@514labs/moose-proto 0.6.242 → 0.6.243
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.
|
@@ -1752,6 +1752,12 @@ interface SqlResource {
|
|
|
1752
1752
|
* @generated from protobuf field: optional string database = 7
|
|
1753
1753
|
*/
|
|
1754
1754
|
database?: string;
|
|
1755
|
+
/**
|
|
1756
|
+
* Optional source file path where this SQL resource is defined
|
|
1757
|
+
*
|
|
1758
|
+
* @generated from protobuf field: string source_file = 8
|
|
1759
|
+
*/
|
|
1760
|
+
sourceFile: string;
|
|
1755
1761
|
}
|
|
1756
1762
|
/**
|
|
1757
1763
|
* @generated MessageType for protobuf message moose.proto.SqlResource
|
|
@@ -1752,6 +1752,12 @@ interface SqlResource {
|
|
|
1752
1752
|
* @generated from protobuf field: optional string database = 7
|
|
1753
1753
|
*/
|
|
1754
1754
|
database?: string;
|
|
1755
|
+
/**
|
|
1756
|
+
* Optional source file path where this SQL resource is defined
|
|
1757
|
+
*
|
|
1758
|
+
* @generated from protobuf field: string source_file = 8
|
|
1759
|
+
*/
|
|
1760
|
+
sourceFile: string;
|
|
1755
1761
|
}
|
|
1756
1762
|
/**
|
|
1757
1763
|
* @generated MessageType for protobuf message moose.proto.SqlResource
|
|
@@ -4097,6 +4097,13 @@ var SqlResource$Type = class extends import_runtime16.MessageType {
|
|
|
4097
4097
|
opt: true,
|
|
4098
4098
|
T: 9
|
|
4099
4099
|
/*ScalarType.STRING*/
|
|
4100
|
+
},
|
|
4101
|
+
{
|
|
4102
|
+
no: 8,
|
|
4103
|
+
name: "source_file",
|
|
4104
|
+
kind: "scalar",
|
|
4105
|
+
T: 9
|
|
4106
|
+
/*ScalarType.STRING*/
|
|
4100
4107
|
}
|
|
4101
4108
|
]);
|
|
4102
4109
|
}
|
|
@@ -4107,6 +4114,7 @@ var SqlResource$Type = class extends import_runtime16.MessageType {
|
|
|
4107
4114
|
message.teardown = [];
|
|
4108
4115
|
message.pullsDataFrom = [];
|
|
4109
4116
|
message.pushesDataTo = [];
|
|
4117
|
+
message.sourceFile = "";
|
|
4110
4118
|
if (value !== void 0)
|
|
4111
4119
|
(0, import_runtime15.reflectionMergePartial)(this, message, value);
|
|
4112
4120
|
return message;
|
|
@@ -4140,6 +4148,10 @@ var SqlResource$Type = class extends import_runtime16.MessageType {
|
|
|
4140
4148
|
7:
|
|
4141
4149
|
message.database = reader.string();
|
|
4142
4150
|
break;
|
|
4151
|
+
case /* string source_file */
|
|
4152
|
+
8:
|
|
4153
|
+
message.sourceFile = reader.string();
|
|
4154
|
+
break;
|
|
4143
4155
|
default:
|
|
4144
4156
|
let u = options.readUnknownField;
|
|
4145
4157
|
if (u === "throw")
|
|
@@ -4164,6 +4176,8 @@ var SqlResource$Type = class extends import_runtime16.MessageType {
|
|
|
4164
4176
|
InfrastructureSignature.internalBinaryWrite(message.pushesDataTo[i], writer.tag(6, import_runtime13.WireType.LengthDelimited).fork(), options).join();
|
|
4165
4177
|
if (message.database !== void 0)
|
|
4166
4178
|
writer.tag(7, import_runtime13.WireType.LengthDelimited).string(message.database);
|
|
4179
|
+
if (message.sourceFile !== "")
|
|
4180
|
+
writer.tag(8, import_runtime13.WireType.LengthDelimited).string(message.sourceFile);
|
|
4167
4181
|
let u = options.writeUnknownFields;
|
|
4168
4182
|
if (u !== false)
|
|
4169
4183
|
(u == true ? import_runtime14.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|