@sentio/runtime 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.
package/lib/full-service.d.ts
CHANGED
@@ -4053,7 +4053,7 @@ exports.LogResult = {
|
|
4053
4053
|
},
|
4054
4054
|
};
|
4055
4055
|
function createBaseEventTrackingResult() {
|
4056
|
-
return { metadata: undefined, distinctEntityId: "", attributes: undefined, runtimeInfo: undefined };
|
4056
|
+
return { metadata: undefined, distinctEntityId: "", attributes: undefined, runtimeInfo: undefined, noMetric: false };
|
4057
4057
|
}
|
4058
4058
|
exports.EventTrackingResult = {
|
4059
4059
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
@@ -4069,6 +4069,9 @@ exports.EventTrackingResult = {
|
|
4069
4069
|
if (message.runtimeInfo !== undefined) {
|
4070
4070
|
exports.RuntimeInfo.encode(message.runtimeInfo, writer.uint32(42).fork()).ldelim();
|
4071
4071
|
}
|
4072
|
+
if (message.noMetric === true) {
|
4073
|
+
writer.uint32(24).bool(message.noMetric);
|
4074
|
+
}
|
4072
4075
|
return writer;
|
4073
4076
|
},
|
4074
4077
|
decode(input, length) {
|
@@ -4090,6 +4093,9 @@ exports.EventTrackingResult = {
|
|
4090
4093
|
case 5:
|
4091
4094
|
message.runtimeInfo = exports.RuntimeInfo.decode(reader, reader.uint32());
|
4092
4095
|
break;
|
4096
|
+
case 3:
|
4097
|
+
message.noMetric = reader.bool();
|
4098
|
+
break;
|
4093
4099
|
default:
|
4094
4100
|
reader.skipType(tag & 7);
|
4095
4101
|
break;
|
@@ -4103,6 +4109,7 @@ exports.EventTrackingResult = {
|
|
4103
4109
|
distinctEntityId: isSet(object.distinctEntityId) ? String(object.distinctEntityId) : "",
|
4104
4110
|
attributes: isObject(object.attributes) ? object.attributes : undefined,
|
4105
4111
|
runtimeInfo: isSet(object.runtimeInfo) ? exports.RuntimeInfo.fromJSON(object.runtimeInfo) : undefined,
|
4112
|
+
noMetric: isSet(object.noMetric) ? Boolean(object.noMetric) : false,
|
4106
4113
|
};
|
4107
4114
|
},
|
4108
4115
|
toJSON(message) {
|
@@ -4113,6 +4120,7 @@ exports.EventTrackingResult = {
|
|
4113
4120
|
message.attributes !== undefined && (obj.attributes = message.attributes);
|
4114
4121
|
message.runtimeInfo !== undefined &&
|
4115
4122
|
(obj.runtimeInfo = message.runtimeInfo ? exports.RuntimeInfo.toJSON(message.runtimeInfo) : undefined);
|
4123
|
+
message.noMetric !== undefined && (obj.noMetric = message.noMetric);
|
4116
4124
|
return obj;
|
4117
4125
|
},
|
4118
4126
|
fromPartial(object) {
|
@@ -4125,6 +4133,7 @@ exports.EventTrackingResult = {
|
|
4125
4133
|
message.runtimeInfo = (object.runtimeInfo !== undefined && object.runtimeInfo !== null)
|
4126
4134
|
? exports.RuntimeInfo.fromPartial(object.runtimeInfo)
|
4127
4135
|
: undefined;
|
4136
|
+
message.noMetric = object.noMetric ?? false;
|
4128
4137
|
return message;
|
4129
4138
|
},
|
4130
4139
|
};
|