@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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sentio/protos",
3
3
  "license": "Apache-2.0",
4
- "version": "1.40.4-rc.2",
4
+ "version": "1.40.4-rc.4",
5
5
  "scripts": {
6
6
  "compile": "tsc -p .",
7
7
  "clean": "tsc --build --clean",
@@ -19,5 +19,5 @@
19
19
  "!{lib,src}/tests",
20
20
  "!**/*.test.{js,ts}"
21
21
  ],
22
- "gitHead": "3ad8a9ab9bb4712ee3a5d12f12c809dd9fc11bf3"
22
+ "gitHead": "451b9b8c955875d4f6d6a093cacad6ed3405120b"
23
23
  }
@@ -610,6 +610,7 @@ export interface EventTrackingResult {
610
610
  distinctEntityId: string;
611
611
  attributes: { [key: string]: any } | undefined;
612
612
  runtimeInfo: RuntimeInfo | undefined;
613
+ noMetric: boolean;
613
614
  }
614
615
 
615
616
  export interface ExportResult {
@@ -4581,7 +4582,7 @@ export const LogResult = {
4581
4582
  };
4582
4583
 
4583
4584
  function createBaseEventTrackingResult(): EventTrackingResult {
4584
- return { metadata: undefined, distinctEntityId: "", attributes: undefined, runtimeInfo: undefined };
4585
+ return { metadata: undefined, distinctEntityId: "", attributes: undefined, runtimeInfo: undefined, noMetric: false };
4585
4586
  }
4586
4587
 
4587
4588
  export const EventTrackingResult = {
@@ -4598,6 +4599,9 @@ export const EventTrackingResult = {
4598
4599
  if (message.runtimeInfo !== undefined) {
4599
4600
  RuntimeInfo.encode(message.runtimeInfo, writer.uint32(42).fork()).ldelim();
4600
4601
  }
4602
+ if (message.noMetric === true) {
4603
+ writer.uint32(24).bool(message.noMetric);
4604
+ }
4601
4605
  return writer;
4602
4606
  },
4603
4607
 
@@ -4620,6 +4624,9 @@ export const EventTrackingResult = {
4620
4624
  case 5:
4621
4625
  message.runtimeInfo = RuntimeInfo.decode(reader, reader.uint32());
4622
4626
  break;
4627
+ case 3:
4628
+ message.noMetric = reader.bool();
4629
+ break;
4623
4630
  default:
4624
4631
  reader.skipType(tag & 7);
4625
4632
  break;
@@ -4634,6 +4641,7 @@ export const EventTrackingResult = {
4634
4641
  distinctEntityId: isSet(object.distinctEntityId) ? String(object.distinctEntityId) : "",
4635
4642
  attributes: isObject(object.attributes) ? object.attributes : undefined,
4636
4643
  runtimeInfo: isSet(object.runtimeInfo) ? RuntimeInfo.fromJSON(object.runtimeInfo) : undefined,
4644
+ noMetric: isSet(object.noMetric) ? Boolean(object.noMetric) : false,
4637
4645
  };
4638
4646
  },
4639
4647
 
@@ -4645,6 +4653,7 @@ export const EventTrackingResult = {
4645
4653
  message.attributes !== undefined && (obj.attributes = message.attributes);
4646
4654
  message.runtimeInfo !== undefined &&
4647
4655
  (obj.runtimeInfo = message.runtimeInfo ? RuntimeInfo.toJSON(message.runtimeInfo) : undefined);
4656
+ message.noMetric !== undefined && (obj.noMetric = message.noMetric);
4648
4657
  return obj;
4649
4658
  },
4650
4659
 
@@ -4658,6 +4667,7 @@ export const EventTrackingResult = {
4658
4667
  message.runtimeInfo = (object.runtimeInfo !== undefined && object.runtimeInfo !== null)
4659
4668
  ? RuntimeInfo.fromPartial(object.runtimeInfo)
4660
4669
  : undefined;
4670
+ message.noMetric = object.noMetric ?? false;
4661
4671
  return message;
4662
4672
  },
4663
4673
  };