diff --git a/.yarn/versions/aff12ab8.yml b/.yarn/versions/aff12ab8.yml new file mode 100644 index 0000000000..5a0c1d1c42 --- /dev/null +++ b/.yarn/versions/aff12ab8.yml @@ -0,0 +1,10 @@ +undecided: + - "@subql/cli" + - "@subql/common" + - "@subql/common-substrate" + - "@subql/node" + - "@subql/node-core" + - "@subql/query" + - "@subql/testing" + - "@subql/types" + - "@subql/types-core" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index bd2358ee93..3d41102cee 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.0.1] - 2024-07-09 +### Changed +- Changes to ts build settings (#2475) + ## [5.0.0] - 2024-07-04 ### Added - Enable ts strict mode @@ -624,7 +628,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - support subcommand codegen - support subcommand init -[Unreleased]: https://github.com/subquery/subql/compare/cli/5.0.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/cli/5.0.1...HEAD +[5.0.1]: https://github.com/subquery/subql/compare/cli/5.0.0...cli/5.0.1 [5.0.0]: https://github.com/subquery/subql/compare/cli/4.15.0...cli/5.0.0 [4.15.0]: https://github.com/subquery/subql/compare/cli/4.14.0...cli/4.15.0 [4.14.0]: https://github.com/subquery/subql/compare/cli/4.13.1...cli/4.14.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index 70f2e83d73..e0a8dea6ac 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@subql/cli", "description": "cli for subquery", - "version": "5.0.1-0", + "version": "5.0.1", "author": "Ian He", "bin": { "subql": "./bin/run" @@ -88,6 +88,5 @@ "types": "lib/index.d.ts", "resolutions": { "node-fetch": "2.6.7" - }, - "stableVersion": "5.0.0" + } } diff --git a/packages/common-substrate/CHANGELOG.md b/packages/common-substrate/CHANGELOG.md index c854d7431c..faf2a4159b 100644 --- a/packages/common-substrate/CHANGELOG.md +++ b/packages/common-substrate/CHANGELOG.md @@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.1] - 2024-07-09 +### Changed +- Changes to ts build settings (#2475) + ## [4.0.0] - 2024-07-01 ### Added -- Enable ts strict mode +- Enable ts strict setting - Breaking Change: Add alias `parseProjectManifest`, also follow type of `INetworkCommonModule` (#2462) ## [3.8.1] - 2024-06-21 @@ -161,8 +165,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - init commit -[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.0.0...HEAD -[3.9.0]: https://github.com/subquery/subql/compare/common-substrate/3.8.1...common-substrate/4.0.0 +[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.0.1...HEAD +[4.0.1]: https://github.com/subquery/subql/compare/common-substrate/4.0.0...common-substrate/4.0.1 +[4.0.0]: https://github.com/subquery/subql/compare/common-substrate/3.8.1...common-substrate/4.0.0 [3.8.1]: https://github.com/subquery/subql/compare/common-substrate/3.8.0...common-substrate/3.8.1 [3.8.0]: https://github.com/subquery/subql/compare/common-substrate/3.7.0...common-substrate/3.8.0 [3.7.0]: https://github.com/subquery/subql/compare/common-substrate/3.6.0...common-substrate/3.7.0 diff --git a/packages/common-substrate/package.json b/packages/common-substrate/package.json index 38d7e9664b..940fc57213 100644 --- a/packages/common-substrate/package.json +++ b/packages/common-substrate/package.json @@ -1,6 +1,6 @@ { "name": "@subql/common-substrate", - "version": "4.0.1-1", + "version": "4.0.1", "description": "", "scripts": { "build": "rm -rf dist && tsc -b", @@ -27,6 +27,5 @@ "@types/bn.js": "4.11.6", "@types/js-yaml": "^4.0.4", "@types/pino": "^6.3.12" - }, - "stableVersion": "4.0.1-0" + } } diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 843ae7fe5d..670ab6a1bc 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.1] - 2024-07-09 +### Changed +- Changes to ts build settings (#2475) + ## [4.0.0] - 2024-07-01 ### Changed - Breaking Change: Bump version with `@subql/types-core`, apply parseFunction type missing asImpl and its deployment (#2466) @@ -380,8 +384,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - init commit -[Unreleased]: https://github.com/subquery/subql/compare/common/4.0.0...HEAD -[3.11.0]: https://github.com/subquery/subql/compare/common/3.9.0...common/4.0.0 +[Unreleased]: https://github.com/subquery/subql/compare/common/4.0.1...HEAD +[4.0.1]: https://github.com/subquery/subql/compare/common/4.0.0...common/4.0.1 +[4.0.0]: https://github.com/subquery/subql/compare/common/3.9.0...common/4.0.0 [3.9.0]: https://github.com/subquery/subql/compare/common/3.8.0...common/3.9.0 [3.8.0]: https://github.com/subquery/subql/compare/common/3.7.0...common/3.8.0 [3.7.0]: https://github.com/subquery/subql/compare/common/3.6.0...common/3.7.0 diff --git a/packages/common/package.json b/packages/common/package.json index 14d618f39c..6902452c71 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@subql/common", - "version": "4.0.1-1", + "version": "4.0.1", "description": "", "scripts": { "build": "rm -rf dist && tsc -b", @@ -34,6 +34,5 @@ "@types/semver": "^7.3.9", "@types/tar": "^6.1.1", "@types/update-notifier": "^6" - }, - "stableVersion": "4.0.1-0" + } } diff --git a/packages/node-core/CHANGELOG.md b/packages/node-core/CHANGELOG.md index 9ada3b540a..ef33ac214a 100644 --- a/packages/node-core/CHANGELOG.md +++ b/packages/node-core/CHANGELOG.md @@ -5,8 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [10.10.1] - 2024-07-09 ### Added -- Enable ts strict model +- Enable ts strict setting ### Fixed - Incrementing the schemaMigration count on every start (#2476) @@ -748,7 +750,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Move blockchain agnostic code from `node` to `node-core` package. (#1222) -[Unreleased]: https://github.com/subquery/subql/compare/node-core/10.10.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node-core/10.10.1...HEAD +[10.10.1]: https://github.com/subquery/subql/compare/node-core/10.10.0...node-core/10.10.1 [10.10.0]: https://github.com/subquery/subql/compare/node-core/10.9.0...node-core/10.10.0 [10.9.0]: https://github.com/subquery/subql/compare/node-core/10.6.0...node-core/10.9.0 [10.6.0]: https://github.com/subquery/subql/compare/node-core/10.5.1...node-core/10.6.0 diff --git a/packages/node-core/package.json b/packages/node-core/package.json index fbfea1f206..c368a8a403 100644 --- a/packages/node-core/package.json +++ b/packages/node-core/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-core", - "version": "10.10.1-3", + "version": "10.10.1", "description": "Common node features that are agnostic to blockchains", "homepage": "https://github.com/subquery/subql", "repository": "github:subquery/subql", @@ -48,6 +48,5 @@ }, "devDependencies": { "@types/async-lock": "^1" - }, - "stableVersion": "10.10.1-2" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index 9e082168f8..65b8f195be 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [4.7.1] - 2024-07-09 ### Added - Enable ts strict model @@ -1242,7 +1244,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - bump @polkadot/api to 3.1.1 -[Unreleased]: https://github.com/subquery/subql/compare/node/4.7.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node/4.7.1...HEAD +[4.7.1]: https://github.com/subquery/subql/compare/node/4.7.0...node/4.7.1 [4.7.0]: https://github.com/subquery/subql/compare/node/4.6.6...node/4.7.0 [4.6.6]: https://github.com/subquery/subql/compare/node/4.6.5...node/4.6.6 [4.6.5]: https://github.com/subquery/subql/compare/node/4.6.4...node/4.6.5 diff --git a/packages/node/package.json b/packages/node/package.json index 2e9a8fca68..8a0eaffac4 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node", - "version": "4.7.1-4", + "version": "4.7.1", "description": "", "author": "Ian He", "license": "GPL-3.0", @@ -54,6 +54,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "4.7.1-3" + ] } diff --git a/packages/query/CHANGELOG.md b/packages/query/CHANGELOG.md index cc1f0df1f3..b67fc0f545 100644 --- a/packages/query/CHANGELOG.md +++ b/packages/query/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.13.2] - 2024-07-09 +### Changed +- Enable TS strict setting + ## [2.13.1] - 2024-06-26 ### Fixed - Fixed the aggregate query, type conversion causes precision loss. @@ -330,7 +334,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - overwrite plugin to fix one to one unique key check - update query publish and docker build process -[Unreleased]: https://github.com/subquery/subql/compare/query/2.13.1...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/query/2.13.2...HEAD +[2.13.2]: https://github.com/subquery/subql/compare/query/2.13.1...query/2.13.2 [2.13.1]: https://github.com/subquery/subql/compare/query/2.13.0...query/2.13.1 [2.13.0]: https://github.com/subquery/subql/compare/query/2.12.1...query/2.13.0 [2.12.1]: https://github.com/subquery/subql/compare/query/2.12.0...query/2.12.1 diff --git a/packages/query/package.json b/packages/query/package.json index 145e97aa28..c5a2552f1a 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -1,6 +1,6 @@ { "name": "@subql/query", - "version": "2.13.2-4", + "version": "2.13.2", "description": "", "bin": { "subql-query": "./bin/run" @@ -70,6 +70,5 @@ "@types/rimraf": "^3.0.2", "@types/yargs": "^16.0.4", "nodemon": "^2.0.15" - }, - "stableVersion": "2.13.2-3" + } } diff --git a/packages/testing/CHANGELOG.md b/packages/testing/CHANGELOG.md index 2b94920441..fa9d996c8a 100644 --- a/packages/testing/CHANGELOG.md +++ b/packages/testing/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.2.1] - 2024-07-09 +### Changed +- Changes to ts build settings (#2475) + ## [2.2.0] - 2024-06-21 ### Changed - Bump version with `@subql/types-core` @@ -34,7 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Major release 2.0.0, align with other package versions -[Unreleased]: https://github.com/subquery/subql/compare/testing/2.2.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/testing/2.2.1...HEAD +[2.2.1]: https://github.com/subquery/subql/compare/testing/2.2.0...testing/2.2.1 [2.2.0]: https://github.com/subquery/subql/compare/testing/2.1.2...testing/2.2.0 [2.1.2]: https://github.com/subquery/subql/compare/testing/2.1.1...testing/2.1.2 [2.1.1]: https://github.com/subquery/subql/compare/testing/2.1.0...testing/2.1.1 diff --git a/packages/testing/package.json b/packages/testing/package.json index 9e499e7453..c6e099d2bb 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@subql/testing", - "version": "2.2.1-1", + "version": "2.2.1", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "rm -rf dist && tsc -b", @@ -14,6 +14,5 @@ "packageManager": "yarn@3.1.1", "dependencies": { "@subql/types-core": "workspace:^" - }, - "stableVersion": "2.2.1-0" + } } diff --git a/packages/types-core/CHANGELOG.md b/packages/types-core/CHANGELOG.md index fbf4d3d52e..4e59c8625a 100644 --- a/packages/types-core/CHANGELOG.md +++ b/packages/types-core/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.1] - 2024-07-09 +### Changed +- Changes to ts build settings (#2475) + ## [0.9.0] - 2024-07-01 ### Added - Add generic network module types (#2462) @@ -50,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release of new package containing types common to all chains -[Unreleased]: https://github.com/subquery/subql/compare/types-core/0.9.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/types-core/0.9.1...HEAD +[0.9.1]: https://github.com/subquery/subql/compare/types-core/0.9.0...types-core/0.9.1 [0.9.0]: https://github.com/subquery/subql/compare/types-core/0.8.0...types-core/0.9.0 [0.8.0]: https://github.com/subquery/subql/compare/types-core/0.7.0...types-core/0.8.0 [0.7.0]: https://github.com/subquery/subql/compare/types-core/0.6.0...types-core/0.7.0 diff --git a/packages/types-core/package.json b/packages/types-core/package.json index ba5b28022a..24d508cccf 100644 --- a/packages/types-core/package.json +++ b/packages/types-core/package.json @@ -1,6 +1,6 @@ { "name": "@subql/types-core", - "version": "0.9.1-1", + "version": "0.9.1", "description": "", "homepage": "https://github.com/subquery/subql", "repository": "github:subquery/subql", @@ -17,6 +17,5 @@ ], "dependencies": { "package-json-type": "^1.0.3" - }, - "stableVersion": "0.9.1-0" + } } diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 58c64bb412..9ebc76983a 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -5,8 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [3.9.0] - 2024-07-09 ### Changed -- Enable strict mode for the other packages. +- Enable TS strict setting. ### Removed - Deprecated types relating to datasource processors (#2475) @@ -246,7 +248,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - support block handler -[Unreleased]: https://github.com/subquery/subql/compare/types/3.8.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/types/3.9.0...HEAD +[3.9.0]: https://github.com/subquery/subql/compare/types/3.8.0...types/3.9.0 [3.8.0]: https://github.com/subquery/subql/compare/types/3.7.0...types/3.8.0 [3.7.0]: https://github.com/subquery/subql/compare/types/3.6.1...types/3.7.0 [3.6.1]: https://github.com/subquery/subql/compare/types/3.6.0...types/3.6.1 diff --git a/packages/types/package.json b/packages/types/package.json index c60d90da22..f1d293b4e5 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@subql/types", - "version": "3.8.1-2", + "version": "3.9.0", "description": "", "homepage": "https://github.com/subquery/subql", "repository": "github:subquery/subql", @@ -24,6 +24,5 @@ }, "devDependencies": { "@polkadot/api": "11.2.1" - }, - "stableVersion": "3.8.1-1" + } } diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 117e608957..ac861326d3 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.12.1] - 2024-07-09 +### Changed +- Changes to ts build settings (#2475) + ## [2.12.0] - 2024-06-21 ### Added - Better error messages for invalid graphql schemas (#2458) @@ -151,7 +155,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Update polkadot/api to 9 -[Unreleased]: https://github.com/subquery/subql/compare/utils/2.12.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/utils/2.12.1...HEAD +[2.12.1]: https://github.com/subquery/subql/compare/utils/2.12.0...utils/2.12.1 [2.12.0]: https://github.com/subquery/subql/compare/utils/2.11.0...utils/2.12.0 [2.11.0]: https://github.com/subquery/subql/compare/utils/2.10.0...utils/2.11.0 [2.10.0]: https://github.com/subquery/subql/compare/utils/2.9.2...utils/2.10.0 diff --git a/packages/utils/package.json b/packages/utils/package.json index 9e398be355..20e10718ec 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@subql/utils", - "version": "2.12.1-1", + "version": "2.12.1", "description": "", "packageManager": "yarn@3.1.1", "scripts": { @@ -30,6 +30,5 @@ }, "devDependencies": { "@types/semver": "^7" - }, - "stableVersion": "2.12.1-0" + } } diff --git a/yarn.lock b/yarn.lock index a7b10c285f..559fda557e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6387,43 +6387,7 @@ __metadata: languageName: unknown linkType: soft -"@subql/common@npm:^3.9.1-0": - version: 3.9.1-0-modular-0.0.1 - resolution: "@subql/common@npm:3.9.1-0-modular-0.0.1" - dependencies: - "@subql/types-core": 0.8.1-1-modular-0.0.1 - axios: ^0.28.0 - class-transformer: ^0.5.1 - class-validator: ^0.14.0 - fs-extra: ^10.1.0 - ipfs-http-client: 56 - js-yaml: ^4.1.0 - reflect-metadata: ^0.1.13 - semver: ^7.5.2 - update-notifier: 5.1.0 - checksum: 80dc30b4ac5ab4f34ddcb011f425acbd40ca4909e343653108ac03d07abae33f7df0d35b34de1fbe00021adab5a162d61372c4d9689ae3a8e4a7755bbacc69ed - languageName: node - linkType: hard - -"@subql/common@npm:^4.0.0": - version: 4.0.0 - resolution: "@subql/common@npm:4.0.0" - dependencies: - "@subql/types-core": 0.9.0 - axios: ^0.28.0 - class-transformer: ^0.5.1 - class-validator: ^0.14.0 - fs-extra: ^10.1.0 - ipfs-http-client: 56 - js-yaml: ^4.1.0 - reflect-metadata: ^0.1.13 - semver: ^7.5.2 - update-notifier: 5.1.0 - checksum: 7c3b0f88aa9d6b388ce6129d1bb385d7269edd441b5970522e42911ac812862d9d2336a92dca8f3aa5b0bf4d56c2de32ccc68fa986f44de26d6fd027a492bdf0 - languageName: node - linkType: hard - -"@subql/common@workspace:*, @subql/common@workspace:packages/common": +"@subql/common@^4.0.0, @subql/common@workspace:*, @subql/common@workspace:packages/common": version: 0.0.0-use.local resolution: "@subql/common@workspace:packages/common" dependencies: @@ -6448,6 +6412,24 @@ __metadata: languageName: unknown linkType: soft +"@subql/common@npm:^3.9.1-0": + version: 3.9.1-0-modular-0.0.1 + resolution: "@subql/common@npm:3.9.1-0-modular-0.0.1" + dependencies: + "@subql/types-core": 0.8.1-1-modular-0.0.1 + axios: ^0.28.0 + class-transformer: ^0.5.1 + class-validator: ^0.14.0 + fs-extra: ^10.1.0 + ipfs-http-client: 56 + js-yaml: ^4.1.0 + reflect-metadata: ^0.1.13 + semver: ^7.5.2 + update-notifier: 5.1.0 + checksum: 80dc30b4ac5ab4f34ddcb011f425acbd40ca4909e343653108ac03d07abae33f7df0d35b34de1fbe00021adab5a162d61372c4d9689ae3a8e4a7755bbacc69ed + languageName: node + linkType: hard + "@subql/node-core@workspace:*, @subql/node-core@workspace:packages/node-core": version: 0.0.0-use.local resolution: "@subql/node-core@workspace:packages/node-core" @@ -6594,6 +6576,14 @@ __metadata: languageName: node linkType: hard +"@subql/types-core@^0.9.0, @subql/types-core@workspace:*, @subql/types-core@workspace:^, @subql/types-core@workspace:packages/types-core": + version: 0.0.0-use.local + resolution: "@subql/types-core@workspace:packages/types-core" + dependencies: + package-json-type: ^1.0.3 + languageName: unknown + linkType: soft + "@subql/types-core@npm:0.8.1-1-modular-0.0.1, @subql/types-core@npm:^0.8.1-1": version: 0.8.1-1-modular-0.0.1 resolution: "@subql/types-core@npm:0.8.1-1-modular-0.0.1" @@ -6603,23 +6593,6 @@ __metadata: languageName: node linkType: hard -"@subql/types-core@npm:0.9.0, @subql/types-core@npm:^0.9.0": - version: 0.9.0 - resolution: "@subql/types-core@npm:0.9.0" - dependencies: - package-json-type: ^1.0.3 - checksum: e219221a2d8ebcb8281295ee67665e32b96924da32da67735cf041621b46a88f8e1787a0dab1f01c3af22af907aa862627f5b5fcbce48943cbb3050c04e70ccc - languageName: node - linkType: hard - -"@subql/types-core@workspace:*, @subql/types-core@workspace:^, @subql/types-core@workspace:packages/types-core": - version: 0.0.0-use.local - resolution: "@subql/types-core@workspace:packages/types-core" - dependencies: - package-json-type: ^1.0.3 - languageName: unknown - linkType: soft - "@subql/types-cosmos@npm:3.5.0": version: 3.5.0 resolution: "@subql/types-cosmos@npm:3.5.0"