@subql/node-algorand 3.12.0 → 3.13.0
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/CHANGELOG.md +12 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/algorand/algorand.spec.js +2 -3
- package/dist/algorand/algorand.spec.js.map +1 -1
- package/dist/algorand/api.algorand.d.ts +11 -11
- package/dist/algorand/api.algorand.js +43 -45
- package/dist/algorand/api.algorand.js.map +1 -1
- package/dist/algorand/api.connection.d.ts +2 -1
- package/dist/algorand/api.connection.js +3 -4
- package/dist/algorand/api.connection.js.map +1 -1
- package/dist/algorand/api.service.algorand.js +2 -6
- package/dist/algorand/api.service.algorand.js.map +1 -1
- package/dist/algorand/utils.algorand.js +2 -3
- package/dist/algorand/utils.algorand.js.map +1 -1
- package/dist/algorand/utils.algorand.spec.js +12 -2
- package/dist/algorand/utils.algorand.spec.js.map +1 -1
- package/dist/app.module.js +9 -4
- package/dist/app.module.js.map +1 -1
- package/dist/configure/SubqueryProject.d.ts +5 -17
- package/dist/configure/SubqueryProject.js +16 -101
- package/dist/configure/SubqueryProject.js.map +1 -1
- package/dist/configure/configure.module.js +1 -1
- package/dist/configure/configure.module.js.map +1 -1
- package/dist/indexer/blockDispatcher/algorand-block-dispatcher.d.ts +1 -1
- package/dist/indexer/blockDispatcher/algorand-block-dispatcher.js.map +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +1 -3
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +2 -6
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/dictionary/algorandDictionary.service.d.ts +0 -1
- package/dist/indexer/dictionary/algorandDictionary.service.js +1 -7
- package/dist/indexer/dictionary/algorandDictionary.service.js.map +1 -1
- package/dist/indexer/dictionary/v1/algorandDictionaryV1.d.ts +7 -4
- package/dist/indexer/dictionary/v1/algorandDictionaryV1.js +1 -2
- package/dist/indexer/dictionary/v1/algorandDictionaryV1.js.map +1 -1
- package/dist/indexer/dynamic-ds.service.js +2 -4
- package/dist/indexer/dynamic-ds.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +1 -12
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/fetch.service.d.ts +4 -3
- package/dist/indexer/fetch.service.js +12 -10
- package/dist/indexer/fetch.service.js.map +1 -1
- package/dist/indexer/indexer.manager.js +1 -1
- package/dist/indexer/indexer.manager.js.map +1 -1
- package/dist/indexer/project.service.js +1 -3
- package/dist/indexer/project.service.js.map +1 -1
- package/dist/indexer/worker/worker-fetch.module.js +1 -14
- package/dist/indexer/worker/worker-fetch.module.js.map +1 -1
- package/dist/indexer/worker/worker.js.map +1 -1
- package/dist/indexer/worker/worker.module.js +1 -0
- package/dist/indexer/worker/worker.module.js.map +1 -1
- package/dist/indexer/worker/worker.service.d.ts +1 -6
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/dist/init.js +1 -13
- package/dist/init.js.map +1 -1
- package/dist/subcommands/forceClean.service.js +1 -3
- package/dist/subcommands/forceClean.service.js.map +1 -1
- package/dist/subcommands/testing.service.js +1 -3
- package/dist/subcommands/testing.service.js.map +1 -1
- package/package.json +8 -8
- package/dist/admin/admin.module.d.ts +0 -2
- package/dist/admin/admin.module.js +0 -25
- package/dist/admin/admin.module.js.map +0 -1
- package/dist/meta/meta.controller.d.ts +0 -21
- package/dist/meta/meta.controller.js +0 -37
- package/dist/meta/meta.controller.js.map +0 -1
- package/dist/meta/meta.module.d.ts +0 -2
- package/dist/meta/meta.module.js +0 -28
- package/dist/meta/meta.module.js.map +0 -1
- package/dist/meta/meta.service.d.ts +0 -9
- package/dist/meta/meta.service.js +0 -35
- package/dist/meta/meta.service.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.13.0] - 2024-08-07
|
|
10
|
+
### Changed
|
|
11
|
+
- Update dependencies and apply dependent changes (#130)
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Support for specifying headers for network endpoints (#130)
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- Transaction filters not working correctly (#130)
|
|
18
|
+
|
|
9
19
|
## [3.12.0] - 2024-07-03
|
|
10
20
|
### Changed
|
|
11
21
|
- Bump version with `@subql/common-algorand`, sync with `@subql/node-core`, add admin module
|
|
@@ -251,7 +261,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
251
261
|
- Synced latest changes from main repo. (#10)
|
|
252
262
|
|
|
253
263
|
## [1.6.0] - 2022-08-04
|
|
254
|
-
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.
|
|
264
|
+
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.13.0...HEAD
|
|
265
|
+
[3.13.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.12.0...node-algorand/3.13.0
|
|
255
266
|
[3.12.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.11.3...node-algorand/3.12.0
|
|
256
267
|
[3.11.3]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.11.2...node-algorand/3.11.3
|
|
257
268
|
[3.11.2]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.11.0...node-algorand/3.11.2
|