envio 3.0.0-alpha.0 → 3.0.0-alpha.1
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envio",
|
|
3
|
-
"version": "v3.0.0-alpha.
|
|
3
|
+
"version": "v3.0.0-alpha.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A latency and sync speed optimized, developer friendly blockchain data indexer.",
|
|
6
6
|
"bin": "./bin.js",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"node": ">=22.0.0"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"envio-linux-x64": "v3.0.0-alpha.
|
|
33
|
-
"envio-linux-arm64": "v3.0.0-alpha.
|
|
34
|
-
"envio-darwin-x64": "v3.0.0-alpha.
|
|
35
|
-
"envio-darwin-arm64": "v3.0.0-alpha.
|
|
32
|
+
"envio-linux-x64": "v3.0.0-alpha.1",
|
|
33
|
+
"envio-linux-arm64": "v3.0.0-alpha.1",
|
|
34
|
+
"envio-darwin-x64": "v3.0.0-alpha.1",
|
|
35
|
+
"envio-darwin-arm64": "v3.0.0-alpha.1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@clickhouse/client": "1.12.1",
|
package/src/bindings/Pino.res
CHANGED
|
@@ -108,8 +108,8 @@ let createChildParams: 'a => childParams = Utils.magic
|
|
|
108
108
|
@send external child: (t, childParams) => t = "child"
|
|
109
109
|
|
|
110
110
|
module ECS = {
|
|
111
|
-
@module
|
|
112
|
-
external make: 'a => options = "
|
|
111
|
+
@module("@elastic/ecs-pino-format")
|
|
112
|
+
external make: 'a => options = "default"
|
|
113
113
|
let make = make
|
|
114
114
|
}
|
|
115
115
|
|
|
@@ -6,7 +6,7 @@ import * as Caml_obj from "rescript/lib/es6/caml_obj.js";
|
|
|
6
6
|
import * as Belt_Array from "rescript/lib/es6/belt_Array.js";
|
|
7
7
|
import * as Belt_Option from "rescript/lib/es6/belt_Option.js";
|
|
8
8
|
import * as PinoPretty from "pino-pretty";
|
|
9
|
-
import
|
|
9
|
+
import EcsPinoFormat from "@elastic/ecs-pino-format";
|
|
10
10
|
|
|
11
11
|
function createPinoMessage(message) {
|
|
12
12
|
return message;
|