@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.
@@ -281,6 +281,7 @@ export declare class FullProcessorServiceImpl implements ProcessorServiceImpleme
281
281
  runtimeInfo?: {
282
282
  from?: HandlerType | undefined;
283
283
  } | undefined;
284
+ noMetric?: boolean | undefined;
284
285
  }[] | undefined;
285
286
  exports?: {
286
287
  metadata?: {
@@ -379,6 +379,7 @@ export interface EventTrackingResult {
379
379
  [key: string]: any;
380
380
  } | undefined;
381
381
  runtimeInfo: RuntimeInfo | undefined;
382
+ noMetric: boolean;
382
383
  }
383
384
  export interface ExportResult {
384
385
  metadata: RecordMetaData | undefined;
@@ -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
  };