@sentio/runtime 2.6.2-rc.2 → 2.6.2-rc.3
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/runtime",
|
3
3
|
"license": "Apache-2.0",
|
4
|
-
"version": "2.6.2-rc.
|
4
|
+
"version": "2.6.2-rc.3",
|
5
5
|
"scripts": {
|
6
6
|
"compile": "tsc",
|
7
7
|
"build": "yarn compile",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"start_js": "ts-node-esm --files ./lib/processor-runner.js $PWD/../../debug/dist/lib.js"
|
14
14
|
},
|
15
15
|
"dependencies": {
|
16
|
-
"@sentio/protos": "^2.6.2-rc.
|
16
|
+
"@sentio/protos": "^2.6.2-rc.3",
|
17
17
|
"command-line-args": "^5.2.1",
|
18
18
|
"command-line-usage": "^6.1.3",
|
19
19
|
"fs-extra": "^11.0.0",
|
@@ -45,5 +45,5 @@
|
|
45
45
|
"!{lib,src}/tests",
|
46
46
|
"!**/*.test.{js,ts}"
|
47
47
|
],
|
48
|
-
"gitHead": "
|
48
|
+
"gitHead": "37077f00471ae8d6a78d8b39b205e1cf06daf71a"
|
49
49
|
}
|
@@ -636,7 +636,10 @@ export interface EventTrackingResult {
|
|
636
636
|
attributes: { [key: string]: any } | undefined;
|
637
637
|
severity: LogLevel;
|
638
638
|
message: string;
|
639
|
-
runtimeInfo:
|
639
|
+
runtimeInfo:
|
640
|
+
| RuntimeInfo
|
641
|
+
| undefined;
|
642
|
+
/** @deprecated */
|
640
643
|
noMetric: boolean;
|
641
644
|
}
|
642
645
|
|