envio 2.11.5 → 2.11.7
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 +6 -6
- package/src/Utils.res +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envio",
|
|
3
|
-
"version": "v2.11.
|
|
3
|
+
"version": "v2.11.7",
|
|
4
4
|
"description": "A latency and sync speed optimized, developer friendly blockchain data indexer.",
|
|
5
5
|
"bin": "./bin.js",
|
|
6
6
|
"repository": {
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://envio.dev",
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"envio-linux-x64": "v2.11.
|
|
27
|
-
"envio-linux-arm64": "v2.11.
|
|
28
|
-
"envio-darwin-x64": "v2.11.
|
|
29
|
-
"envio-darwin-arm64": "v2.11.
|
|
26
|
+
"envio-linux-x64": "v2.11.7",
|
|
27
|
+
"envio-linux-arm64": "v2.11.7",
|
|
28
|
+
"envio-darwin-x64": "v2.11.7",
|
|
29
|
+
"envio-darwin-arm64": "v2.11.7"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@envio-dev/hypersync-client": "0.6.
|
|
32
|
+
"@envio-dev/hypersync-client": "0.6.3",
|
|
33
33
|
"rescript": "11.1.3",
|
|
34
34
|
"rescript-schema": "8.1.0",
|
|
35
35
|
"viem": "2.21.0"
|
package/src/Utils.res
CHANGED
|
@@ -245,8 +245,9 @@ module Schema = {
|
|
|
245
245
|
items->Js.Array2.forEach(item => {
|
|
246
246
|
switch item.schema->S.classify {
|
|
247
247
|
// Check for null, since we generate S.null schema for db serializing
|
|
248
|
-
// In the future it should be changed to Option
|
|
248
|
+
// In the future it should be changed to Option only
|
|
249
249
|
| Null(_) => ()
|
|
250
|
+
| Option(_) => ()
|
|
250
251
|
| _ => acc->Js.Array2.push(item.location)->ignore
|
|
251
252
|
}
|
|
252
253
|
})
|