@sentio/protos 1.40.4-rc.2 → 1.40.4-rc.4
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.
|
@@ -3980,7 +3980,7 @@ exports.LogResult = {
|
|
|
3980
3980
|
},
|
|
3981
3981
|
};
|
|
3982
3982
|
function createBaseEventTrackingResult() {
|
|
3983
|
-
return { metadata: undefined, distinctEntityId: "", attributes: undefined, runtimeInfo: undefined };
|
|
3983
|
+
return { metadata: undefined, distinctEntityId: "", attributes: undefined, runtimeInfo: undefined, noMetric: false };
|
|
3984
3984
|
}
|
|
3985
3985
|
exports.EventTrackingResult = {
|
|
3986
3986
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
@@ -3996,6 +3996,9 @@ exports.EventTrackingResult = {
|
|
|
3996
3996
|
if (message.runtimeInfo !== undefined) {
|
|
3997
3997
|
exports.RuntimeInfo.encode(message.runtimeInfo, writer.uint32(42).fork()).ldelim();
|
|
3998
3998
|
}
|
|
3999
|
+
if (message.noMetric === true) {
|
|
4000
|
+
writer.uint32(24).bool(message.noMetric);
|
|
4001
|
+
}
|
|
3999
4002
|
return writer;
|
|
4000
4003
|
},
|
|
4001
4004
|
decode(input, length) {
|
|
@@ -4017,6 +4020,9 @@ exports.EventTrackingResult = {
|
|
|
4017
4020
|
case 5:
|
|
4018
4021
|
message.runtimeInfo = exports.RuntimeInfo.decode(reader, reader.uint32());
|
|
4019
4022
|
break;
|
|
4023
|
+
case 3:
|
|
4024
|
+
message.noMetric = reader.bool();
|
|
4025
|
+
break;
|
|
4020
4026
|
default:
|
|
4021
4027
|
reader.skipType(tag & 7);
|
|
4022
4028
|
break;
|
|
@@ -4030,6 +4036,7 @@ exports.EventTrackingResult = {
|
|
|
4030
4036
|
distinctEntityId: isSet(object.distinctEntityId) ? String(object.distinctEntityId) : "",
|
|
4031
4037
|
attributes: isObject(object.attributes) ? object.attributes : undefined,
|
|
4032
4038
|
runtimeInfo: isSet(object.runtimeInfo) ? exports.RuntimeInfo.fromJSON(object.runtimeInfo) : undefined,
|
|
4039
|
+
noMetric: isSet(object.noMetric) ? Boolean(object.noMetric) : false,
|
|
4033
4040
|
};
|
|
4034
4041
|
},
|
|
4035
4042
|
toJSON(message) {
|
|
@@ -4040,6 +4047,7 @@ exports.EventTrackingResult = {
|
|
|
4040
4047
|
message.attributes !== undefined && (obj.attributes = message.attributes);
|
|
4041
4048
|
message.runtimeInfo !== undefined &&
|
|
4042
4049
|
(obj.runtimeInfo = message.runtimeInfo ? exports.RuntimeInfo.toJSON(message.runtimeInfo) : undefined);
|
|
4050
|
+
message.noMetric !== undefined && (obj.noMetric = message.noMetric);
|
|
4043
4051
|
return obj;
|
|
4044
4052
|
},
|
|
4045
4053
|
fromPartial(object) {
|
|
@@ -4052,6 +4060,7 @@ exports.EventTrackingResult = {
|
|
|
4052
4060
|
message.runtimeInfo = (object.runtimeInfo !== undefined && object.runtimeInfo !== null)
|
|
4053
4061
|
? exports.RuntimeInfo.fromPartial(object.runtimeInfo)
|
|
4054
4062
|
: undefined;
|
|
4063
|
+
message.noMetric = object.noMetric ?? false;
|
|
4055
4064
|
return message;
|
|
4056
4065
|
},
|
|
4057
4066
|
};
|