@eclesia/indexer-engine 2.6.3 → 2.7.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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/promise-queue/index.ts"],"names":[],"mappings":"AAOA,qBAAa,YAAY,CAAC,CAAC;IACzB,OAAO,CAAC,KAAK,CAAoB;IAEjC,OAAO,CAAC,QAAQ,CAAqC;IAErD,OAAO,CAAC,OAAO,CAA0B;IAElC,MAAM,UAAS;IAEtB,OAAO,CAAC,SAAS,CAAS;IAE1B,OAAO,CAAC,eAAe,CAAmB;gBAE9B,SAAS,EAAE,MAAM;IAY7B,OAAO,CAAC,IAAI,EAAE,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC;IAkBhC,KAAK;IAWL,OAAO,IAMU,OAAO,CAAC,CAAC,CAAC;IAG3B,QAAQ;IAIR,SAAS;IAIT,OAAO;IASP,IAAI;CAGL;AAED,qBAAa,cAAc,CAAC,CAAC;IAC3B,OAAO,CAAC,KAAK,CAAoB;IAEjC,OAAO,CAAC,QAAQ,CAAqC;IAErD,OAAO,CAAC,KAAK,CAAa;IAE1B,OAAO,CAAC,IAAI,CAAa;IAEzB,OAAO,CAAC,OAAO,CAA0B;IAElC,MAAM,UAAS;IAEtB,OAAO,CAAC,SAAS,CAAS;IAE1B,OAAO,CAAC,eAAe,CAAmB;IAE1C,OAAO,CAAC,SAAS,CAAa;gBAElB,SAAS,EAAE,MAAM;IAsB7B,OAAO,CAAC,IAAI,EAAE,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC;IAwBhC,OAAO;IAaP,KAAK;IAoBL,QAAQ;IAIR,SAAS;IAIT,OAAO;IASP,IAAI;CAGL"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/promise-queue/index.ts"],"names":[],"mappings":"AAOA,qBAAa,YAAY,CAAC,CAAC;IACzB,OAAO,CAAC,KAAK,CAAoB;IAEjC,OAAO,CAAC,QAAQ,CAAqC;IAErD,OAAO,CAAC,OAAO,CAA0B;IAElC,MAAM,UAAS;IAEtB,OAAO,CAAC,SAAS,CAAS;IAE1B,OAAO,CAAC,eAAe,CAAmB;gBAE9B,SAAS,EAAE,MAAM;IAY7B,OAAO,CAAC,IAAI,EAAE,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC;IAkBhC,KAAK;IAWL,OAAO,IAMU,OAAO,CAAC,CAAC,CAAC;IAG3B,QAAQ;IAIR,SAAS;IAIT,OAAO;IASP,IAAI;CAGL;AAED,qBAAa,cAAc,CAAC,CAAC;IAC3B,OAAO,CAAC,KAAK,CAAoB;IAEjC,OAAO,CAAC,QAAQ,CAAqC;IAErD,OAAO,CAAC,KAAK,CAAa;IAE1B,OAAO,CAAC,IAAI,CAAa;IAEzB,OAAO,CAAC,OAAO,CAA0B;IAElC,MAAM,UAAS;IAEtB,OAAO,CAAC,SAAS,CAAS;IAE1B,OAAO,CAAC,eAAe,CAAmB;IAE1C,OAAO,CAAC,SAAS,CAAa;gBAElB,SAAS,EAAE,MAAM;IAsB7B,OAAO,CAAC,IAAI,EAAE,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC;IAwBhC,OAAO;IAaP,KAAK;IAqBL,QAAQ;IAIR,SAAS;IAIT,OAAO;IASP,IAAI;CAGL"}
@@ -140,6 +140,7 @@ class CircularBuffer {
140
140
  });
141
141
  this.items = new Array(this.batchSize);
142
142
  this.items[this.nextAvail] = nextVal;
143
+ this.synced = false;
143
144
  this.count = 1;
144
145
  this.nextAvail++;
145
146
  if (this.nextAvail >= this.batchSize) {
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@eclesia/indexer-engine",
3
- "version": "2.6.3",
3
+ "version": "2.7.1",
4
4
  "description": "Core eclesia indexer engine",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "type": "module",
7
8
  "scripts": {
8
9
  "build": "tsc",
9
10
  "lint": "eslint",
@@ -21,30 +22,30 @@
21
22
  ],
22
23
  "license": "Apache-2.0",
23
24
  "devDependencies": {
24
- "@eslint/js": "^9.24.0",
25
+ "@eslint/js": "^9.35.0",
25
26
  "@stylistic/eslint-plugin": "^5.3.1",
26
27
  "@types/node": "^22.14.0",
27
28
  "@types/stream-chain": "^2.1.0",
28
29
  "@types/stream-json": "^1.7.8",
29
- "@types/uuid": "^10.0.0",
30
- "eslint": "^9.24.0",
30
+ "@types/uuid": "^11.0.0",
31
+ "eslint": "^9.35.0",
31
32
  "eslint-plugin-simple-import-sort": "^12.1.1",
32
- "typescript": "^5.8.3",
33
- "typescript-eslint": "^8.29.0",
34
- "vitest": "^3.1.1"
33
+ "typescript": "^5.9.2",
34
+ "typescript-eslint": "^8.44.0",
35
+ "vitest": "^3.2.4"
35
36
  },
36
37
  "publishConfig": {
37
38
  "access": "public"
38
39
  },
39
40
  "dependencies": {
40
- "@cosmjs/tendermint-rpc": "^0.33.1",
41
+ "@cosmjs/tendermint-rpc": "^0.36.0",
41
42
  "bech32": "^2.0.0",
42
- "cosmjs-types": "^0.9.0",
43
- "dayjs": "^1.11.13",
44
- "fastify": "^5.2.2",
43
+ "cosmjs-types": "^0.10.1",
44
+ "dayjs": "^1.11.18",
45
+ "fastify": "^5.6.0",
45
46
  "stream-chain": "^3.4.0",
46
47
  "stream-json": "^1.9.1",
47
- "uuid": "^11.1.0",
48
+ "uuid": "^13.0.0",
48
49
  "winston": "^3.17.0"
49
50
  }
50
51
  }