diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d0c77118e..4725aead29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Bug Fixes + +* **besu:** deployContractSolBytecodeNoKeychainV1 requires keychainId ([11dacbc](https://github.com/hyperledger/cacti/commit/11dacbcef25ba3e7fa9f9880f60655be1e2396ef)), closes [#3586](https://github.com/hyperledger/cacti/issues/3586) +* **connector-besu:** do not crash if ledger unreachable - send HTTP 503 ([394323e](https://github.com/hyperledger/cacti/commit/394323e91e3bd0df57c87d6bae406298c559fc7f)) +* **connector-besu:** set contract bytecode field's max length to 49154 ([33b2cf0](https://github.com/hyperledger/cacti/commit/33b2cf06eb239986aa0c50221ce390a3a27f3a45)), closes [#3636](https://github.com/hyperledger/cacti/issues/3636) + +### Features + +* **cactus-connector-besu:** add IRunTransactionV1Exchange to share receipt data ([3097c84](https://github.com/hyperledger/cacti/commit/3097c84895b73d44f8f61ec5e2a09abc1e8306e8)) +* **cactus-consortium:** add Ethereum ledger type ([4265725](https://github.com/hyperledger/cacti/commit/426572521646cd7391be66c09590991cf83fcf01)) +* **cactus-core-api:** add Ethereum ledger type ([a1be603](https://github.com/hyperledger/cacti/commit/a1be603c3ceea748579ad96a1d2b38a2438eec8b)) +* **copm:** add fabric COPM implementation ([7af9983](https://github.com/hyperledger/cacti/commit/7af99833f4db237d6aba7223a31add5723faba9d)) + +### Performance Improvements + +* **github:** add knob/flag to manually override CI skip ([ed36bbe](https://github.com/hyperledger/cacti/commit/ed36bbe80b0b610761c976bc397fd011a423bf42)) + # [2.0.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) ### Bug Fixes diff --git a/RELEASE_MANAGEMENT.md b/RELEASE_MANAGEMENT.md index c98a09822c..c1fb0ef3f5 100644 --- a/RELEASE_MANAGEMENT.md +++ b/RELEASE_MANAGEMENT.md @@ -58,7 +58,7 @@ With VSCode you can do a project wide search & replace where: - Also double check that the `"version": "?.?.?"` property has been updated in the package.json files all over the packages. -- Finally a generic full-text search project-wide for the previous version string `?.?.?` where you exclude these from the results: `CHANGELOG.md,go.sum,go.mod,yarn.lock,package-lock.json,.yarn/,weaver/core/relay/Cargo.toml` and then replace the findings with the new version such as `1.1.3` +- Finally a generic full-text search project-wide for the previous version string `?.?.?` where you exclude these from the results: `rust/fixtures/ink,go/generated/,kotlin/generated/,typescript/generated,openapi.json,.github/workflows/actionlint.yaml,.github/workflows/.dast-nuclei-cmd-api-server.yaml,CHANGELOG.md,go.sum,go.mod,yarn.lock,package-lock.json,.yarn/,weaver/core/relay/Cargo.toml` and then replace the findings with the new version such as `1.1.3` - update the lock file if necessary ```sh diff --git a/docs/docs/weaver/getting-started/enabling-weaver-network/corda.md b/docs/docs/weaver/getting-started/enabling-weaver-network/corda.md index b30c002925..f915bcf14f 100644 --- a/docs/docs/weaver/getting-started/enabling-weaver-network/corda.md +++ b/docs/docs/weaver/getting-started/enabling-weaver-network/corda.md @@ -121,10 +121,10 @@ repositories { } } dependencies { - implementation(group: 'org.hyperledger.cacti.weaver.sdk.corda', name: 'weaver-sdk-corda', version: "2.0.0") - implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.0.0") - implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.0.0") - implementation(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.0.0") + implementation(group: 'org.hyperledger.cacti.weaver.sdk.corda', name: 'weaver-sdk-corda', version: "2.1.0") + implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.1.0") + implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.1.0") + implementation(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.1.0") } ``` (Or check out the [package website](https://github.com/hyperledger-cacti/cacti/packages/1856827) and select a different version.) @@ -445,7 +445,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p RELAY_PORT= EXTERNAL_NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server - DOCKER_TAG=2.0.0 + DOCKER_TAG=2.1.0 ``` - The `PATH_TO_CONFIG` variable should point to the properties file typically named `config.toml` (you can name this whatever you wish). See further below for instructions to write this file. - The `RELAY_NAME` variable specifies a unique name for this relay. It should match what's specified in the `config.toml` (more on that below). @@ -536,7 +536,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p DRIVER_RPC_PASSWORD= EXTERNAL_NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-corda - DOCKER_TAG=2.0.0 + DOCKER_TAG=2.1.0 RELAY_TLS= RELAY_TLSCA_TRUST_STORE= RELAY_TLSCA_TRUST_STORE_PASSWORD= diff --git a/docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md b/docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md index 40b8035f9b..6dca4ddb98 100644 --- a/docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md +++ b/docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md @@ -536,7 +536,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p RELAY_PORT= EXTERNAL_NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server - DOCKER_TAG=2.0.0 + DOCKER_TAG=2.1.0 ``` - The `PATH_TO_CONFIG` variable should point to the properties file typically named `config.toml` (you can name this whatever you wish). See further below for instructions to write this file. - The `RELAY_NAME` variable specifies a unique name for this relay. It should match what's specified in the `config.toml` (more on that below). @@ -630,7 +630,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p EXTERNAL_NETWORK= TLS_CREDENTIALS_DIR= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-fabric - DOCKER_TAG=2.0.0 + DOCKER_TAG=2.1.0 DRIVER_TLS= DRIVER_TLS_CERT_PATH=path_to_tls_cert_pem_for_driver DRIVER_TLS_KEY_PATH=path_to_tls_key_pem_for_driver diff --git a/examples/cactus-common-example-server/CHANGELOG.md b/examples/cactus-common-example-server/CHANGELOG.md index 3e0b8e7732..c49d12096c 100644 --- a/examples/cactus-common-example-server/CHANGELOG.md +++ b/examples/cactus-common-example-server/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-common-example-server + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-common-example-server diff --git a/examples/cactus-common-example-server/package.json b/examples/cactus-common-example-server/package.json index 309a57f081..8afffcc24d 100644 --- a/examples/cactus-common-example-server/package.json +++ b/examples/cactus-common-example-server/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-common-example-server", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to interact with HTLC ETH contracts", "keywords": [ "Hyperledger", @@ -42,8 +42,8 @@ "build:dev:backend:postbuild": "cp -f ../../yarn.lock ./dist/" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "@types/node": "18.11.9", "body-parser": "1.20.3", "config": "3.3.7", @@ -66,7 +66,7 @@ "xmlhttprequest": "1.8.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/config": "3.3.0", "@types/cookie-parser": "1.4.5", "@types/debug": "4.1.8", diff --git a/examples/cactus-example-carbon-accounting-backend/CHANGELOG.md b/examples/cactus-example-carbon-accounting-backend/CHANGELOG.md index 9249c5d0d1..e026943201 100644 --- a/examples/cactus-example-carbon-accounting-backend/CHANGELOG.md +++ b/examples/cactus-example-carbon-accounting-backend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend diff --git a/examples/cactus-example-carbon-accounting-backend/package.json b/examples/cactus-example-carbon-accounting-backend/package.json index ee4b2185a9..f8fe974baa 100644 --- a/examples/cactus-example-carbon-accounting-backend/package.json +++ b/examples/cactus-example-carbon-accounting-backend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-carbon-accounting-backend", - "version": "2.0.0", + "version": "2.1.0", "description": "An example application showing how to use Cactus when implementing a Carbon Accounting Application where two or more blockchains are sharing data with each other to achieve a certain business outcome beneficial to multiple parties (business organizations).", "keywords": [ "Hyperledger", @@ -52,16 +52,16 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@openzeppelin/contracts": "4.9.6", "@openzeppelin/contracts-upgradeable": "4.9.6", "async-exit-hook": "2.0.1", diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md b/examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md index d7b4b84845..5b67ed89ed 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/package.json b/examples/cactus-example-carbon-accounting-business-logic-plugin/package.json index 3174aa46ce..ed9d2adc61 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/package.json +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin", - "version": "2.0.0", + "version": "2.1.0", "description": "An example business logic plugin implementation for Cactus", "keywords": [ "Hyperledger", @@ -55,14 +55,14 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0", "async-exit-hook": "2.0.1", "axios": "1.7.7", "express": "4.21.0", diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.json b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.json index f3300c7480..a2ae9b75e7 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.json +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Example - Carbon Accounting App", "description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.tpl.json b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.tpl.json index f3300c7480..a2ae9b75e7 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.tpl.json +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Example - Carbon Accounting App", "description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md index 1ef5cdfb23..f115c6f287 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Demonstrates how a business use case can be satisfied with Cactus when multiple ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts index 7138b5b95b..f0fe0d9361 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts index 482229d724..d57f2a39e1 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts index 3e9e5ae59e..3ac8c31578 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 5dbdcef5f2..5928d784b5 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts index c068864ad3..5b972df6d7 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-frontend/CHANGELOG.md b/examples/cactus-example-carbon-accounting-frontend/CHANGELOG.md index 5855db57d5..ce8c507d8d 100644 --- a/examples/cactus-example-carbon-accounting-frontend/CHANGELOG.md +++ b/examples/cactus-example-carbon-accounting-frontend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-frontend + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-frontend diff --git a/examples/cactus-example-carbon-accounting-frontend/package.json b/examples/cactus-example-carbon-accounting-frontend/package.json index 0015df2a31..142d693c39 100644 --- a/examples/cactus-example-carbon-accounting-frontend/package.json +++ b/examples/cactus-example-carbon-accounting-frontend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-carbon-accounting-frontend", - "version": "2.0.0", + "version": "2.1.0", "description": "The frontend component of an example project demonstrating how Cacti can be used for cross-chain dapp development.", "keywords": [ "Hyperledger", @@ -54,13 +54,13 @@ "@angular/platform-browser": "16.2.4", "@angular/platform-browser-dynamic": "16.2.4", "@angular/router": "16.2.4", - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.1.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", "@ionic-native/core": "5.36.0", "@ionic-native/splash-screen": "patch:@ionic-native/splash-screen@npm%3A5.36.0#~/.yarn/patches/@ionic-native-splash-screen-npm-5.36.0-531cbbe0f8.patch", "@ionic-native/status-bar": "patch:@ionic-native/status-bar@npm%3A5.36.0#~/.yarn/patches/@ionic-native-status-bar-npm-5.36.0-1ca86cbaad.patch", diff --git a/examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md b/examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md index f577e5bce5..d6ad914b0c 100644 --- a/examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md +++ b/examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-cbdc-bridging-backend + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-cbdc-bridging-backend diff --git a/examples/cactus-example-cbdc-bridging-backend/package.json b/examples/cactus-example-cbdc-bridging-backend/package.json index 5411fa1c73..12f42477fa 100644 --- a/examples/cactus-example-cbdc-bridging-backend/package.json +++ b/examples/cactus-example-cbdc-bridging-backend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-cbdc-bridging-backend", - "version": "2.0.0", + "version": "2.1.0", "description": "An example application showing how to use Cacti when implementing a CBDC bridging application between Hyperledger Fabric and Hyperledger Besu.", "keywords": [ "Hyperledger", @@ -55,18 +55,18 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", - "@hyperledger/cactus-plugin-object-store-ipfs": "2.0.0", - "@hyperledger/cactus-plugin-satp-hermes": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0", + "@hyperledger/cactus-plugin-object-store-ipfs": "2.1.0", + "@hyperledger/cactus-plugin-satp-hermes": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@openzeppelin/contracts": "4.9.6", "@openzeppelin/contracts-upgradeable": "4.9.6", "async-exit-hook": "2.0.1", diff --git a/examples/cactus-example-cbdc-bridging-frontend/package.json b/examples/cactus-example-cbdc-bridging-frontend/package.json index 98071a1deb..f5d81c43fa 100644 --- a/examples/cactus-example-cbdc-bridging-frontend/package.json +++ b/examples/cactus-example-cbdc-bridging-frontend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-example-cbdc-bridging-frontend", - "version": "2.0.0", + "version": "2.1.0", "private": true, "license": "Apache-2.0", "scripts": { diff --git a/examples/cactus-example-discounted-asset-trade-client/package.json b/examples/cactus-example-discounted-asset-trade-client/package.json index c521e17dae..48e86fbb7f 100644 --- a/examples/cactus-example-discounted-asset-trade-client/package.json +++ b/examples/cactus-example-discounted-asset-trade-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-discounted-asset-trade-client", - "version": "2.0.0", + "version": "2.1.0", "description": "Client for interacting with discounted asset trade sample app and some tools for setting up indy enviroment", "keywords": [ "Hyperledger", diff --git a/examples/cactus-example-discounted-asset-trade/CHANGELOG.md b/examples/cactus-example-discounted-asset-trade/CHANGELOG.md index 12a385b12a..0c976d68cb 100644 --- a/examples/cactus-example-discounted-asset-trade/CHANGELOG.md +++ b/examples/cactus-example-discounted-asset-trade/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-discounted-asset-trade + # [2.0.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-discounted-asset-trade diff --git a/examples/cactus-example-discounted-asset-trade/package.json b/examples/cactus-example-discounted-asset-trade/package.json index b012510a75..4355dcb9e8 100644 --- a/examples/cactus-example-discounted-asset-trade/package.json +++ b/examples/cactus-example-discounted-asset-trade/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-discounted-asset-trade", - "version": "2.0.0", + "version": "2.1.0", "private": true, "license": "Apache-2.0", "main": "dist/www.js", @@ -14,14 +14,14 @@ "start-dockerless": "node ./dist/www.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-common-example-server": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-aries": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-common-example-server": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-aries": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", "@types/node": "18.11.9", "axios": "1.7.7", "body-parser": "1.20.3", diff --git a/examples/cactus-example-electricity-trade/CHANGELOG.md b/examples/cactus-example-electricity-trade/CHANGELOG.md index cbf5fd17a5..d98fb32260 100644 --- a/examples/cactus-example-electricity-trade/CHANGELOG.md +++ b/examples/cactus-example-electricity-trade/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-electricity-trade + # [2.0.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-electricity-trade diff --git a/examples/cactus-example-electricity-trade/package.json b/examples/cactus-example-electricity-trade/package.json index 2898d98b6b..ee05ad6ac8 100644 --- a/examples/cactus-example-electricity-trade/package.json +++ b/examples/cactus-example-electricity-trade/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-electricity-trade", - "version": "2.0.0", + "version": "2.1.0", "private": true, "license": "Apache-2.0", "main": "dist/www.js", @@ -14,13 +14,13 @@ "start-dockerless": "node ./dist/www.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-common-example-server": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-common-example-server": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.1.0", "@types/node": "18.11.9", "body-parser": "1.20.3", "cookie-parser": "1.4.6", diff --git a/examples/cactus-example-supply-chain-backend/CHANGELOG.md b/examples/cactus-example-supply-chain-backend/CHANGELOG.md index ccca566e6b..3ded2bf29e 100644 --- a/examples/cactus-example-supply-chain-backend/CHANGELOG.md +++ b/examples/cactus-example-supply-chain-backend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-backend + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-backend diff --git a/examples/cactus-example-supply-chain-backend/package.json b/examples/cactus-example-supply-chain-backend/package.json index b61abb5848..7777bdfa61 100644 --- a/examples/cactus-example-supply-chain-backend/package.json +++ b/examples/cactus-example-supply-chain-backend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-supply-chain-backend", - "version": "2.0.0", + "version": "2.1.0", "description": "An example application showing how to use Cactus when implementing a supply chain application where two or more blockchains are sharing data with each other to achieve a certain business outcome beneficial to multiple parties (business organizations).", "keywords": [ "Hyperledger", @@ -52,19 +52,19 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.0.0", - "@hyperledger/cactus-example-supply-chain-frontend": "2.0.0", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.1.0", + "@hyperledger/cactus-example-supply-chain-frontend": "2.1.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "async-exit-hook": "2.0.1", "axios": "1.7.7", "dotenv": "16.0.0", diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/CHANGELOG.md b/examples/cactus-example-supply-chain-business-logic-plugin/CHANGELOG.md index 78dfaed79f..702df524cd 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/CHANGELOG.md +++ b/examples/cactus-example-supply-chain-business-logic-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-business-logic-plugin + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-business-logic-plugin diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/package.json b/examples/cactus-example-supply-chain-business-logic-plugin/package.json index 588c9ce514..c86eb29ecb 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/package.json +++ b/examples/cactus-example-supply-chain-business-logic-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-supply-chain-business-logic-plugin", - "version": "2.0.0", + "version": "2.1.0", "description": "An example business logic plugin implementation for Cactus", "keywords": [ "Hyperledger", @@ -55,15 +55,15 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0", "async-exit-hook": "2.0.1", "axios": "1.7.7", "express": "4.21.0", diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.json b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.json index b962c8fd0b..c3fab60151 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.json +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Example - Supply Chain App", "description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.tpl.json b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.tpl.json index b962c8fd0b..c3fab60151 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.tpl.json +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Example - Supply Chain App", "description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md index 0499a47875..ef464315dc 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Demonstrates how a business use case can be satisfied with Cactus when multiple ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts index 4d24f0d745..63273638ee 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts index 6e402e50d3..f1dd9f8dbb 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts index 84b1ea4255..310a6d4fc7 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index ee7065ecc7..23194deda3 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts index 49f66587a6..561968f249 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-frontend/CHANGELOG.md b/examples/cactus-example-supply-chain-frontend/CHANGELOG.md index a5f4192bfa..67be81af68 100644 --- a/examples/cactus-example-supply-chain-frontend/CHANGELOG.md +++ b/examples/cactus-example-supply-chain-frontend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-frontend + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-frontend diff --git a/examples/cactus-example-supply-chain-frontend/package.json b/examples/cactus-example-supply-chain-frontend/package.json index a91177d6b0..2cb4d0dd41 100644 --- a/examples/cactus-example-supply-chain-frontend/package.json +++ b/examples/cactus-example-supply-chain-frontend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-supply-chain-frontend", - "version": "2.0.0", + "version": "2.1.0", "description": "The frontend component of an example project demonstrating how Cacti can be used for cross-chain dapp development.", "keywords": [ "Hyperledger", @@ -54,14 +54,14 @@ "@angular/platform-browser": "17.3.11", "@angular/platform-browser-dynamic": "17.3.11", "@angular/router": "17.3.11", - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.0.0", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.1.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0", "@ionic-native/core": "5.36.0", "@ionic-native/splash-screen": "patch:@ionic-native/splash-screen@npm%3A5.36.0#~/.yarn/patches/@ionic-native-splash-screen-npm-5.36.0-531cbbe0f8.patch", "@ionic-native/status-bar": "patch:@ionic-native/status-bar@npm%3A5.36.0#~/.yarn/patches/@ionic-native-status-bar-npm-5.36.0-1ca86cbaad.patch", diff --git a/examples/cactus-workshop-examples-2022-11-14/CHANGELOG.md b/examples/cactus-workshop-examples-2022-11-14/CHANGELOG.md index a86e9c7c68..6408755b71 100644 --- a/examples/cactus-workshop-examples-2022-11-14/CHANGELOG.md +++ b/examples/cactus-workshop-examples-2022-11-14/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-workshop-examples-2022-11-14 + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-workshop-examples-2022-11-14 diff --git a/examples/cactus-workshop-examples-2022-11-14/package.json b/examples/cactus-workshop-examples-2022-11-14/package.json index 6bb91f48d9..846291173e 100644 --- a/examples/cactus-workshop-examples-2022-11-14/package.json +++ b/examples/cactus-workshop-examples-2022-11-14/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-workshop-examples-2022-11-14", - "version": "2.0.0", + "version": "2.1.0", "description": "Cacti Workshop 2022-11-14 Examples", "keywords": [ "Hyperledger", @@ -53,11 +53,11 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "kubo-rpc-client": "3.0.1", "typescript-optional": "2.0.1", "uuid": "10.0.0" diff --git a/examples/carbon-accounting/Dockerfile b/examples/carbon-accounting/Dockerfile index bc5e7109f0..da2bccfdb6 100644 --- a/examples/carbon-accounting/Dockerfile +++ b/examples/carbon-accounting/Dockerfile @@ -39,7 +39,7 @@ RUN source ~/.bashrc && \ npm install --location=global yarn && \ yarn config set nodeLinker node-modules && \ yarn set version 4.1.0 && \ - yarn add @hyperledger/cactus-example-carbon-accounting-backend@2.0.0 + yarn add @hyperledger/cactus-example-carbon-accounting-backend@2.1.0 SHELL ["/bin/bash", "--login", "-c"] diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/CHANGELOG.md b/extensions/cactus-plugin-htlc-coordinator-besu/CHANGELOG.md index 8e9a0b50b5..4253354a72 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/CHANGELOG.md +++ b/extensions/cactus-plugin-htlc-coordinator-besu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-coordinator-besu + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-coordinator-besu diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/package.json b/extensions/cactus-plugin-htlc-coordinator-besu/package.json index d1e8997c25..36bc753c23 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/package.json +++ b/extensions/cactus-plugin-htlc-coordinator-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-htlc-coordinator-besu", - "version": "2.0.0", + "version": "2.1.0", "description": "HTLC Coordinator to exchange tokens between networks.", "keywords": [ "Hyperledger", @@ -58,13 +58,13 @@ "webpack:prod:web": "webpack --env=prod --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-htlc-eth-besu": "2.0.0", - "@hyperledger/cactus-plugin-htlc-eth-besu-erc20": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-test-plugin-htlc-eth-besu-erc20": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-htlc-eth-besu": "2.1.0", + "@hyperledger/cactus-plugin-htlc-eth-besu-erc20": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-test-plugin-htlc-eth-besu-erc20": "2.1.0", "axios": "1.7.7", "body-parser": "1.20.3", "fast-safe-stringify": "2.1.1", @@ -77,8 +77,8 @@ "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/express": "5.0.0", "@types/uuid": "10.0.0", "express": "4.21.0", diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/README.md b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/README.md index d752187b11..60f71d1a37 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/README.md +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can exchange assets between networks ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml index 3c56d1535c..832de70d23 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - HTLC Coordinator - version: 2.0.0 + version: 2.1.0 servers: - description: Public test instance url: "https://www.cactus.stream/{basePath}" diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api_default.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api_default.go index 47b1652b62..32902292f9 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api_default.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/client.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/client.go index 2db7d9e470..32d95c1aba 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/client.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC Coordinator API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC Coordinator API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/configuration.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/configuration.go index 0e359b1a72..8005bf8ea0 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/configuration.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_counterparty_htlc_request.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_counterparty_htlc_request.go index 92f4c6a2cd..3458262d88 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_counterparty_htlc_request.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_counterparty_htlc_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_htlc_package.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_htlc_package.go index 901d49a40a..11494dc1c2 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_htlc_package.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_htlc_package.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_own_htlc_request.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_own_htlc_request.go index cfe65a1f18..a91cea3a1a 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_own_htlc_request.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_own_htlc_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 632581d3ac..f3ff8976f4 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index d3fa6e569d..2c3eb511ad 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index bf0b8460ca..0671bc76c8 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 863e397bb0..480993efc2 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index b2c213a0b6..92aff389ff 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_withdraw_counterparty_request.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_withdraw_counterparty_request.go index 4537d90955..a162d62757 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_withdraw_counterparty_request.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_withdraw_counterparty_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/response.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/response.go index 0154c9333b..cf6cc4d03b 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/response.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/utils.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/utils.go index 9a7ac30e24..4619501d63 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/utils.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.json b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.json index 56447a1c24..3d85ac93fb 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.json +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - HTLC Coordinator", "description": "Can exchange assets between networks", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.tpl.json b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.tpl.json index a9aa85e8cc..d6ef52c962 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.tpl.json +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - HTLC Coordinator", "description": "Can exchange assets between networks", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts index 6817542179..7429500386 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts index 040b40a505..0594a8d88e 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts index bcc3999837..95f46aae9e 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index ecea7859b5..ddf5712377 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts index 9fbab3e5d9..e557554cbe 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/CHANGELOG.md b/extensions/cactus-plugin-object-store-ipfs/CHANGELOG.md index 2f7ad7042a..7eee7222a0 100644 --- a/extensions/cactus-plugin-object-store-ipfs/CHANGELOG.md +++ b/extensions/cactus-plugin-object-store-ipfs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-object-store-ipfs + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-object-store-ipfs diff --git a/extensions/cactus-plugin-object-store-ipfs/package.json b/extensions/cactus-plugin-object-store-ipfs/package.json index 37ae008584..8a466a2740 100644 --- a/extensions/cactus-plugin-object-store-ipfs/package.json +++ b/extensions/cactus-plugin-object-store-ipfs/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-object-store-ipfs", - "version": "2.0.0", + "version": "2.1.0", "description": "IPFS backed object store plugin implementation for Hyperledger Cactus", "keywords": [ "Hyperledger", @@ -56,16 +56,16 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "run-time-error-cjs": "1.4.0", "typescript-optional": "2.0.1", "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@multiformats/multiaddr": "11.6.1", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/README.md b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/README.md index aeb3bbb6e7..d222b54bd3 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/README.md +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cactus Object Store IPFS plugin. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api/openapi.yaml b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api/openapi.yaml index cd9350ffc3..493c198c3d 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: 'Hyperledger Cactus Plugin - Object Store - IPFS ' - version: 2.0.0 + version: 2.1.0 servers: - description: Public test instance url: "https://www.cactus.stream/{basePath}" diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api_default.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api_default.go index ae7b7d6f73..9ded90eab0 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api_default.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/client.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/client.go index 8a87010888..6b683003cf 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/client.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Object Store - IPFS API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Object Store - IPFS API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/configuration.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/configuration.go index 640d03c62e..cf4c55ccb2 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/configuration.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go index 672c6b327b..35f77a7d67 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go index 05a3151781..797944f6c6 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go index 379ff4b157..2844ca2e51 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go index b992299ac1..3709ee2f7f 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go index 642e61f298..204bd4d2de 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go index bcf6ac31d9..0dd9bc139e 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/response.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/response.go index 78149ee6b7..52e8917601 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/response.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/utils.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/utils.go index 8c3c55ecab..4278dfceb4 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/utils.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.json b/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.json index a6fa3b0c8a..af7aef6665 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.json +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Object Store - IPFS ", "description": "Contains/describes the Hyperledger Cactus Object Store IPFS plugin.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.tpl.json b/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.tpl.json index 91ed098ccd..f8792c7f55 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.tpl.json +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Object Store - IPFS ", "description": "Contains/describes the Hyperledger Cactus Object Store IPFS plugin.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/kotlin/generated/openapi/kotlin-client/README.md b/extensions/cactus-plugin-object-store-ipfs/src/main/kotlin/generated/openapi/kotlin-client/README.md index 50c8b8f663..f04b8f066a 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cactus Object Store IPFS plugin. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/api.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/api.ts index 6c5d330b7b..bbd991b213 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/base.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/base.ts index 33f8f8e64b..1fdb4884bd 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/common.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/common.ts index ed521266e2..0f19fc653b 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index b7e2946156..68f66a0343 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/index.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/index.ts index 01d66f9a9b..804e204ece 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lerna.json b/lerna.json index f7a1ed380f..b18ad50625 100644 --- a/lerna.json +++ b/lerna.json @@ -16,7 +16,7 @@ "weaver/samples/besu/simpleasset", "weaver/samples/besu/simplestate" ], - "version": "2.0.0", + "version": "2.1.0", "npmClient": "yarn", "useWorkspaces": "true", "command": { diff --git a/package.json b/package.json index 860cd0543f..6fe167a60d 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "build:prod:frontend": "lerna run build:prod:frontend", "build:dev": "npm-run-all build:dev:backend webpack:dev:web build:dev:frontend", "build:dev:backend": "NODE_OPTIONS=\"--max_old_space_size=3072\" npm-run-all tsc build:dev:backend:postbuild", - "build:dev:frontend": "lerna run build:dev:frontend --scope='@hyperledger/cactus-example-*-frontend' --scope='@hyperledger/cacti-ledger-browser'", + "build:dev:frontend": "NODE_OPTIONS=\"--max_old_space_size=3072\" lerna run build:dev:frontend --scope='@hyperledger/cactus-example-*-frontend' --scope='@hyperledger/cacti-ledger-browser'", "build:dev:common": "lerna exec --stream --scope '*/*common' -- 'del-cli dist/** && tsc --project ./tsconfig.json && webpack --env=dev --target=node --config ../../webpack.config.js'", "build:dev:backend:postbuild": "lerna run build:dev:backend:postbuild", "webpack": "lerna run webpack:dev", diff --git a/packages/cacti-copm-core/CHANGELOG.md b/packages/cacti-copm-core/CHANGELOG.md new file mode 100644 index 0000000000..471437b134 --- /dev/null +++ b/packages/cacti-copm-core/CHANGELOG.md @@ -0,0 +1,10 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [2.1.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Features + +* **copm:** add fabric COPM implementation ([7af9983](https://github.com/hyperledger-cacti/cacti/commit/7af99833f4db237d6aba7223a31add5723faba9d)) diff --git a/packages/cacti-copm-core/package.json b/packages/cacti-copm-core/package.json index 98e83126f1..cf55c3b217 100644 --- a/packages/cacti-copm-core/package.json +++ b/packages/cacti-copm-core/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger-cacti/cacti-copm-core", - "version": "2.0.0", + "version": "2.1.0", "description": "Cacti Common Operators", "homepage": "https://github.com/hyperledger-cacti/cacti#readme", "bugs": { @@ -30,8 +30,8 @@ "@bufbuild/buf": "1.30.0", "@bufbuild/protobuf": "1.10.0", "@connectrpc/connect": "1.4.0", - "@hyperledger/cacti-weaver-sdk-fabric": "2.0.0", - "@hyperledger/cactus-common": "2.0.0" + "@hyperledger/cacti-weaver-sdk-fabric": "2.1.0", + "@hyperledger/cactus-common": "2.1.0" }, "devDependencies": { "@bufbuild/protoc-gen-es": "1.8.0", diff --git a/packages/cacti-copm-core/src/main/json/openapi.json b/packages/cacti-copm-core/src/main/json/openapi.json index 4fc4e21e48..e97a581919 100644 --- a/packages/cacti-copm-core/src/main/json/openapi.json +++ b/packages/cacti-copm-core/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Common Operator Primitives", "description": "Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/.", - "version": "2.0.0-rc.2", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-copm-core/src/main/json/openapi.tpl.json b/packages/cacti-copm-core/src/main/json/openapi.tpl.json index 7fe70bfe3b..e97a581919 100644 --- a/packages/cacti-copm-core/src/main/json/openapi.tpl.json +++ b/packages/cacti-copm-core/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Common Operator Primitives", "description": "Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/.", - "version": "2.0.0-rc.2", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" @@ -27,7 +27,6 @@ "x-protobuf-index": 1, "type": "string", "example": "bond" - }, "asset_id": { "x-protobuf-index": 2, @@ -69,12 +68,12 @@ ], "properties": { "source": { - "type" : "object", + "type": "object", "$ref": "#/components/schemas/AssetAccountV1", "x-protobuf-index": 1 }, "destination": { - "type" : "object", + "type": "object", "$ref": "#/components/schemas/AssetAccountV1", "example": { "network": "network2.org", @@ -83,7 +82,7 @@ "x-protobuf-index": 2 }, "asset": { - "type" : "object", + "type": "object", "$ref": "#/components/schemas/TransferrableAssetV1", "example": { "type": "bond", diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/README.md b/packages/cacti-copm-core/src/main/proto/generated/openapi/README.md index d6302ca7f1..0d193a0cd4 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/README.md +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. The ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. -- API version: 2.0.0-rc.2 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_account_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_account_v1_pb.proto index f8923c1fa7..02c9ab3454 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_account_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_account_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_lock_claim_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_lock_claim_v1_pb.proto index f571fdeb35..4faeedf6ae 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_lock_claim_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_lock_claim_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_lock_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_lock_v1_pb.proto index dbd9eb5867..45d22db439 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_lock_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_lock_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_pledge_claim_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_pledge_claim_v1_pb.proto index 69dfbcd111..3b6426832e 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_pledge_claim_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_pledge_claim_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_pledge_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_pledge_v1_pb.proto index aac5eb8fec..5cc983a519 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_pledge_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/asset_pledge_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/claim_pledged_asset_v1200_response_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/claim_pledged_asset_v1200_response_pb.proto index 1e8d5aca8f..cf50a99805 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/claim_pledged_asset_v1200_response_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/claim_pledged_asset_v1200_response_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/get_verified_view_v1200_response_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/get_verified_view_v1200_response_pb.proto index ad9ae9e9b1..963179a32f 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/get_verified_view_v1200_response_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/get_verified_view_v1200_response_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/get_verified_view_v1_request_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/get_verified_view_v1_request_pb.proto index 6aec0bdf6c..97f82aec42 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/get_verified_view_v1_request_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/get_verified_view_v1_request_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/hash_info_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/hash_info_v1_pb.proto index a76f5d53c5..fdf44c5349 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/hash_info_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/hash_info_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/lock_asset_v1200_response_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/lock_asset_v1200_response_pb.proto index 77420c3bdb..9c9e5cf466 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/lock_asset_v1200_response_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/lock_asset_v1200_response_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/pledge_asset_v1200_response_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/pledge_asset_v1200_response_pb.proto index de449c89da..9121d3ca45 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/pledge_asset_v1200_response_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/pledge_asset_v1200_response_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/transferrable_asset_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/transferrable_asset_v1_pb.proto index 9987f715ac..6d0d6c188a 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/transferrable_asset_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/transferrable_asset_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/view_address_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/view_address_v1_pb.proto index 3cde095cd1..9b38a0bb2c 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/view_address_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/view_address_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/view_v1_pb.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/view_v1_pb.proto index ba1c1cac33..e6a6071d45 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/models/view_v1_pb.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/models/view_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/proto/generated/openapi/services/default_service.proto b/packages/cacti-copm-core/src/main/proto/generated/openapi/services/default_service.proto index 6a0e88c8ad..1016bcff63 100644 --- a/packages/cacti-copm-core/src/main/proto/generated/openapi/services/default_service.proto +++ b/packages/cacti-copm-core/src/main/proto/generated/openapi/services/default_service.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. - The version of the OpenAPI document: 2.0.0-rc.2 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_account_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_account_v1_pb_pb.ts index b28c069f3d..262f03de51 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_account_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_account_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_lock_claim_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_lock_claim_v1_pb_pb.ts index 03e7546010..6cf4385d91 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_lock_claim_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_lock_claim_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_lock_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_lock_v1_pb_pb.ts index 53f4287921..41e521a9a5 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_lock_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_lock_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_pledge_claim_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_pledge_claim_v1_pb_pb.ts index c6dd7078e6..66d7aa3e63 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_pledge_claim_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_pledge_claim_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_pledge_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_pledge_v1_pb_pb.ts index 7a4112f1ac..6656006bb0 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/asset_pledge_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/asset_pledge_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/claim_pledged_asset_v1200_response_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/claim_pledged_asset_v1200_response_pb_pb.ts index 7fc5a76763..96accec129 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/claim_pledged_asset_v1200_response_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/claim_pledged_asset_v1200_response_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/get_verified_view_v1200_response_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/get_verified_view_v1200_response_pb_pb.ts index 52d21e5df8..d13e38c7de 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/get_verified_view_v1200_response_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/get_verified_view_v1200_response_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/get_verified_view_v1_request_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/get_verified_view_v1_request_pb_pb.ts index 766a57fb7d..1f89a6a24f 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/get_verified_view_v1_request_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/get_verified_view_v1_request_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/hash_info_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/hash_info_v1_pb_pb.ts index b62ab840ac..403969856a 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/hash_info_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/hash_info_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/lock_asset_v1200_response_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/lock_asset_v1200_response_pb_pb.ts index 960b565eb3..62b4d5b373 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/lock_asset_v1200_response_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/lock_asset_v1200_response_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/pledge_asset_v1200_response_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/pledge_asset_v1200_response_pb_pb.ts index 3f5ba88b9b..058828698d 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/pledge_asset_v1200_response_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/pledge_asset_v1200_response_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/transferrable_asset_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/transferrable_asset_v1_pb_pb.ts index e0229c17d9..ce0fe20c0f 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/transferrable_asset_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/transferrable_asset_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/view_address_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/view_address_v1_pb_pb.ts index d77298551c..54f3566208 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/view_address_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/view_address_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/models/view_v1_pb_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/models/view_v1_pb_pb.ts index 5174c3a1a6..9bc1a2314c 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/models/view_v1_pb_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/models/view_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/services/default_service_connect.ts b/packages/cacti-copm-core/src/main/typescript/generated/services/default_service_connect.ts index 822da62084..b663e60b56 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/services/default_service_connect.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/services/default_service_connect.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-copm-core/src/main/typescript/generated/services/default_service_pb.ts b/packages/cacti-copm-core/src/main/typescript/generated/services/default_service_pb.ts index 6211af85bd..79133f53ec 100644 --- a/packages/cacti-copm-core/src/main/typescript/generated/services/default_service_pb.ts +++ b/packages/cacti-copm-core/src/main/typescript/generated/services/default_service_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Common Operator Primitives plugin. These primitives require specific chaincode and weaver relays to be deployed on the network as described at https://hyperledger-cacti.github.io/cacti/weaver/introduction/. // -//The version of the OpenAPI document: 2.0.0-rc.2 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cacti-ledger-browser/package.json b/packages/cacti-ledger-browser/package.json index 9be755f9c3..149c379d68 100644 --- a/packages/cacti-ledger-browser/package.json +++ b/packages/cacti-ledger-browser/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-ledger-browser", - "version": "2.0.0", + "version": "2.1.0", "private": true, "description": "Cacti GUI for visualizing ledger data build on react.", "keywords": [ diff --git a/packages/cacti-plugin-consortium-static/CHANGELOG.md b/packages/cacti-plugin-consortium-static/CHANGELOG.md index 014133752b..26eff3250e 100644 --- a/packages/cacti-plugin-consortium-static/CHANGELOG.md +++ b/packages/cacti-plugin-consortium-static/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Features + +* **cactus-consortium:** add Ethereum ledger type ([4265725](https://github.com/hyperledger/cacti/commit/426572521646cd7391be66c09590991cf83fcf01)) +* **cactus-core-api:** add Ethereum ledger type ([a1be603](https://github.com/hyperledger/cacti/commit/a1be603c3ceea748579ad96a1d2b38a2438eec8b)) + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cacti-plugin-consortium-static diff --git a/packages/cacti-plugin-consortium-static/package.json b/packages/cacti-plugin-consortium-static/package.json index 6e46b0852e..5062d24c72 100644 --- a/packages/cacti-plugin-consortium-static/package.json +++ b/packages/cacti-plugin-consortium-static/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-plugin-consortium-static", - "version": "2.0.0", + "version": "2.1.0", "description": "A web service plugin that provides management capabilities on a Cactus consortium as a whole for administrative purposes.", "keywords": [ "Hyperledger", @@ -55,9 +55,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "body-parser": "1.20.3", "express": "4.21.0", @@ -70,10 +70,10 @@ "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/express": "5.0.0", "@types/json-stable-stringify": "1.0.33", "@types/uuid": "10.0.0", diff --git a/packages/cacti-plugin-consortium-static/src/main/json/openapi.json b/packages/cacti-plugin-consortium-static/src/main/json/openapi.json index 0381cc7f08..8ede7758cc 100644 --- a/packages/cacti-plugin-consortium-static/src/main/json/openapi.json +++ b/packages/cacti-plugin-consortium-static/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Consortium Web Service", "description": "Manage a Cactus consortium through the APIs. Needs administrative privileges.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-plugin-consortium-static/src/main/json/openapi.tpl.json b/packages/cacti-plugin-consortium-static/src/main/json/openapi.tpl.json index f745518620..2282377387 100644 --- a/packages/cacti-plugin-consortium-static/src/main/json/openapi.tpl.json +++ b/packages/cacti-plugin-consortium-static/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Consortium Web Service", "description": "Manage a Cactus consortium through the APIs. Needs administrative privileges.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-plugin-consortium-static/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cacti-plugin-consortium-static/src/main/kotlin/generated/openapi/kotlin-client/README.md index 60881d5999..2a9ea9d6d2 100644 --- a/packages/cacti-plugin-consortium-static/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cacti-plugin-consortium-static/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Manage a Cactus consortium through the APIs. Needs administrative privileges. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/api.ts index 36bcf76f2c..c4c11b6bef 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/base.ts index 613e857fa8..a8e977bb61 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/common.ts index bab611ca0b..9d1336b20b 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 01995a47cf..4b4d88539e 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/index.ts index 7e96917e25..73c585500c 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-copm-fabric/CHANGELOG.md b/packages/cacti-plugin-copm-fabric/CHANGELOG.md new file mode 100644 index 0000000000..471437b134 --- /dev/null +++ b/packages/cacti-plugin-copm-fabric/CHANGELOG.md @@ -0,0 +1,10 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [2.1.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Features + +* **copm:** add fabric COPM implementation ([7af9983](https://github.com/hyperledger-cacti/cacti/commit/7af99833f4db237d6aba7223a31add5723faba9d)) diff --git a/packages/cacti-plugin-copm-fabric/package.json b/packages/cacti-plugin-copm-fabric/package.json index e106445794..0a4e8f7baf 100644 --- a/packages/cacti-plugin-copm-fabric/package.json +++ b/packages/cacti-plugin-copm-fabric/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger-cacti/cacti-plugin-copm-fabric", - "version": "2.0.0", + "version": "2.1.0", "description": "Cacti Common Operators - Fabric", "homepage": "https://github.com/hyperledger-cacti/cacti#readme", "bugs": { @@ -22,12 +22,12 @@ "@bufbuild/buf": "1.30.0", "@bufbuild/protobuf": "1.10.0", "@connectrpc/connect": "1.4.0", - "@hyperledger-cacti/cacti-copm-core": "2.0.0", - "@hyperledger/cacti-weaver-protos-js": "2.0.0", - "@hyperledger/cacti-weaver-sdk-fabric": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger-cacti/cacti-copm-core": "2.1.0", + "@hyperledger/cacti-weaver-protos-js": "2.1.0", + "@hyperledger/cacti-weaver-sdk-fabric": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "fabric-ca-client": "2.2.20", "fabric-common": "2.2.20", "fabric-network": "2.2.20" @@ -36,10 +36,10 @@ "@bufbuild/protoc-gen-es": "1.8.0", "@connectrpc/connect-node": "1.4.0", "@connectrpc/protoc-gen-connect-es": "1.4.0", - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@openapitools/openapi-generator-cli": "2.7.0" } } diff --git a/packages/cacti-plugin-ledger-connector-stellar/CHANGELOG.md b/packages/cacti-plugin-ledger-connector-stellar/CHANGELOG.md index d546e70f69..c9dba694f0 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/CHANGELOG.md +++ b/packages/cacti-plugin-ledger-connector-stellar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cacti-plugin-ledger-connector-stellar + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cacti-plugin-ledger-connector-stellar diff --git a/packages/cacti-plugin-ledger-connector-stellar/package.json b/packages/cacti-plugin-ledger-connector-stellar/package.json index 518f971979..bca5151ba4 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/package.json +++ b/packages/cacti-plugin-ledger-connector-stellar/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-plugin-ledger-connector-stellar", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cacti nodes to connect to a Stellar ledger.", "keywords": [ "Hyperledger", @@ -59,9 +59,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "express": "4.21.0", "http-errors-enhanced-cjs": "2.0.1", @@ -75,8 +75,8 @@ "typescript-optional": "2.0.1" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/http-errors": "2.0.4", diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.json b/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.json index d86e02d274..2c53d8e8bb 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.json +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Stellar", "description": "Can perform basic smart contract tasks on a Stellar ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.tpl.json b/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.tpl.json index d86e02d274..2c53d8e8bb 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.tpl.json +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Stellar", "description": "Can perform basic smart contract tasks on a Stellar ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/api.ts index cbdf6f9527..a0dd0addd4 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/base.ts index a243dd8caf..4bf6fcd4e4 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/common.ts index c04e3343bb..fdb302c444 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 14d2cc7cc1..3e0aa0f6dd 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/index.ts index 65d5a71505..fdc850f241 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/Cargo.lock b/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/Cargo.lock index c4688bc2e2..6c5a4a4211 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/Cargo.lock +++ b/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/Cargo.lock @@ -349,7 +349,7 @@ dependencies = [ [[package]] name = "ed25519-dalek" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7277392b266383ef8396db7fdeb1e77b6c52fed775f5df15bb24f35b72156980" dependencies = [ @@ -481,7 +481,7 @@ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" [[package]] name = "hello-world" -version = "2.0.0" +version = "2.1.0" dependencies = [ "soroban-sdk", ] diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/contracts/hello_world/Cargo.toml b/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/contracts/hello_world/Cargo.toml index 1cd5463c89..e799424be1 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/contracts/hello_world/Cargo.toml +++ b/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/contracts/hello_world/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world" -version = "2.0.0" +version = "2.1.0" edition = "2021" publish = false diff --git a/packages/cacti-plugin-weaver-driver-fabric/package.json b/packages/cacti-plugin-weaver-driver-fabric/package.json index c365cf17b6..4a0fd8facb 100644 --- a/packages/cacti-plugin-weaver-driver-fabric/package.json +++ b/packages/cacti-plugin-weaver-driver-fabric/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-plugin-weaver-driver-fabric", - "version": "2.0.0", + "version": "2.1.0", "description": "Driver Server for communication with a Fabric Network as part of weaver data sharing protocol", "keywords": [ "Hyperledger", diff --git a/packages/cactus-api-client/CHANGELOG.md b/packages/cactus-api-client/CHANGELOG.md index 82a92fa57c..b6065e3183 100644 --- a/packages/cactus-api-client/CHANGELOG.md +++ b/packages/cactus-api-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-api-client + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-api-client diff --git a/packages/cactus-api-client/package.json b/packages/cactus-api-client/package.json index 039c301802..073ab08b9e 100644 --- a/packages/cactus-api-client/package.json +++ b/packages/cactus-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-api-client", - "version": "2.0.0", + "version": "2.1.0", "description": "Universal library used by both front end and back end components of Cactus. Aims to be a developer swiss army knife.", "keywords": [ "Hyperledger", @@ -50,16 +50,16 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.1.0", "jsonwebtoken": "9.0.0", "rxjs": "7.8.1", "socket.io-client-fixed-types": "4.5.4" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/jsonwebtoken": "9.0.0", "@types/lodash": "4.14.195", "@types/node": "18.11.9", diff --git a/packages/cactus-cmd-api-server/CHANGELOG.md b/packages/cactus-cmd-api-server/CHANGELOG.md index 8ed022f137..84be299df2 100644 --- a/packages/cactus-cmd-api-server/CHANGELOG.md +++ b/packages/cactus-cmd-api-server/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-cmd-api-server + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-cmd-api-server diff --git a/packages/cactus-cmd-api-server/package.json b/packages/cactus-cmd-api-server/package.json index 3b283060b9..961ed74154 100644 --- a/packages/cactus-cmd-api-server/package.json +++ b/packages/cactus-cmd-api-server/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-cmd-api-server", - "version": "2.0.0", + "version": "2.1.0", "description": "API server that combines and exposes all the functionality of a Cactus deployment through a unified REST API interface.", "keywords": [ "Hyperledger", @@ -69,9 +69,9 @@ "@connectrpc/connect-node": "1.4.0", "@grpc/grpc-js": "1.11.3", "@grpc/proto-loader": "0.7.13", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "@thream/socketio-jwt": "2.1.1", "async-exit-hook": "2.0.1", "axios": "1.7.7", @@ -108,8 +108,8 @@ "@bufbuild/buf": "1.30.0", "@bufbuild/protoc-gen-es": "1.8.0", "@connectrpc/protoc-gen-connect-es": "1.4.0", - "@hyperledger/cactus-plugin-keychain-vault": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-vault": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@openapitools/openapi-generator-cli": "2.7.0", "@types/async-exit-hook": "2.0.2", "@types/benchmark": "2.1.5", diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/README.md index 2eff5f1a8e..27a677ca42 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Interact with a Cactus deployment through HTTP. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api/openapi.yaml index b3391e5b6c..a8f8f62789 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus API - version: 2.0.0 + version: 2.1.0 servers: - url: / security: diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api_default.go index 58c64eaeed..10cea8f84b 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/client.go index b9e16de3b6..1f66668607 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus API API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus API API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/configuration.go index 6242dfec4f..aea2f79d12 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_cmd_api_server_endpoint_error_response.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_cmd_api_server_endpoint_error_response.go index d3fa00b9c9..001089a832 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_cmd_api_server_endpoint_error_response.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_cmd_api_server_endpoint_error_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_health_check_response.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_health_check_response.go index 8aca3bede0..17e4b566e9 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_health_check_response.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_health_check_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_memory_usage.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_memory_usage.go index 00a5c59098..75bb620907 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_memory_usage.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_memory_usage.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_watch_healthcheck_v1.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_watch_healthcheck_v1.go index 99f5cd9653..3b29be9e00 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_watch_healthcheck_v1.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_watch_healthcheck_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/response.go index 1eaedeef3f..98cfe93650 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/utils.go index 92e93e50d6..1db42cf7d7 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/json/openapi.json b/packages/cactus-cmd-api-server/src/main/json/openapi.json index d4ee7c7681..f265be8bee 100644 --- a/packages/cactus-cmd-api-server/src/main/json/openapi.json +++ b/packages/cactus-cmd-api-server/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus API", "description": "Interact with a Cactus deployment through HTTP.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-cmd-api-server/src/main/json/openapi.tpl.json b/packages/cactus-cmd-api-server/src/main/json/openapi.tpl.json index d4ee7c7681..f265be8bee 100644 --- a/packages/cactus-cmd-api-server/src/main/json/openapi.tpl.json +++ b/packages/cactus-cmd-api-server/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus API", "description": "Interact with a Cactus deployment through HTTP.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-cmd-api-server/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-cmd-api-server/src/main/kotlin/generated/openapi/kotlin-client/README.md index dbb033f5b6..806e89cf3e 100644 --- a/packages/cactus-cmd-api-server/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-cmd-api-server/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Interact with a Cactus deployment through HTTP. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/README.md b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/README.md index a3c8389200..6e9a0410d5 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/README.md +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/README.md @@ -5,7 +5,7 @@ Interact with a Cactus deployment through HTTP. ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/cmd_api_server_endpoint_error_response_pb.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/cmd_api_server_endpoint_error_response_pb.proto index cf9db10576..d1cfdb1fbf 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/cmd_api_server_endpoint_error_response_pb.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/cmd_api_server_endpoint_error_response_pb.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/health_check_response_pb.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/health_check_response_pb.proto index 0b05842296..f7c7720e23 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/health_check_response_pb.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/health_check_response_pb.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/memory_usage_pb.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/memory_usage_pb.proto index 119eb46f36..e1756f6308 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/memory_usage_pb.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/memory_usage_pb.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/watch_healthcheck_v1_pb.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/watch_healthcheck_v1_pb.proto index bdeb89bddf..9be394e26f 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/watch_healthcheck_v1_pb.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/watch_healthcheck_v1_pb.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/services/default_service.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/services/default_service.proto index 5297324f11..272c79fbd6 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/services/default_service.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/services/default_service.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/api.ts index 67b89bca7f..c66e2ad66e 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/base.ts index 2a3b997aff..98cd497b8d 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/common.ts index de476edf95..690d9783e9 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 69b7f36de4..361684306b 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/index.ts index 442bfad8da..d0b9fe4605 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/test/resources/cactus-dummy-package/package.json b/packages/cactus-cmd-api-server/src/test/resources/cactus-dummy-package/package.json index 01fff24dd4..46c6d1b393 100644 --- a/packages/cactus-cmd-api-server/src/test/resources/cactus-dummy-package/package.json +++ b/packages/cactus-cmd-api-server/src/test/resources/cactus-dummy-package/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-dummy-package", - "version": "2.0.0", + "version": "2.1.0", "license": "Apache-2.0", "description": "Dummy package for testing.", "main": "index.js" diff --git a/packages/cactus-common/CHANGELOG.md b/packages/cactus-common/CHANGELOG.md index 38b53b6db2..ea457b2f0b 100644 --- a/packages/cactus-common/CHANGELOG.md +++ b/packages/cactus-common/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Bug Fixes + +* **connector-besu:** do not crash if ledger unreachable - send HTTP 503 ([394323e](https://github.com/hyperledger/cacti/commit/394323e91e3bd0df57c87d6bae406298c559fc7f)) + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-common diff --git a/packages/cactus-common/package.json b/packages/cactus-common/package.json index 65a37a54af..80ac8b5b07 100644 --- a/packages/cactus-common/package.json +++ b/packages/cactus-common/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-common", - "version": "2.0.0", + "version": "2.1.0", "description": "Universal library used by both front end and back end components of Cactus. Aims to be a developer swiss army knife.", "keywords": [ "Hyperledger", diff --git a/packages/cactus-core-api/CHANGELOG.md b/packages/cactus-core-api/CHANGELOG.md index 6936e3e173..5c2afca4cc 100644 --- a/packages/cactus-core-api/CHANGELOG.md +++ b/packages/cactus-core-api/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Features + +* **cactus-core-api:** add Ethereum ledger type ([a1be603](https://github.com/hyperledger/cacti/commit/a1be603c3ceea748579ad96a1d2b38a2438eec8b)) + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-core-api diff --git a/packages/cactus-core-api/Cargo.lock b/packages/cactus-core-api/Cargo.lock index e08045f122..51c99ab8b6 100644 --- a/packages/cactus-core-api/Cargo.lock +++ b/packages/cactus-core-api/Cargo.lock @@ -691,7 +691,7 @@ checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" [[package]] name = "relay" -version = "2.0.0" +version = "2.1.0" dependencies = [ "prost", "serde", diff --git a/packages/cactus-core-api/Cargo.toml b/packages/cactus-core-api/Cargo.toml index 02c73bb023..9b64c0dc6b 100644 --- a/packages/cactus-core-api/Cargo.toml +++ b/packages/cactus-core-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "relay" -version = "2.0.0" +version = "2.1.0" authors = ["Antony Targett ", "Nick Waywood "] edition = "2021" diff --git a/packages/cactus-core-api/package.json b/packages/cactus-core-api/package.json index 2fb01bf346..f3fe246033 100644 --- a/packages/cactus-core-api/package.json +++ b/packages/cactus-core-api/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-core-api", - "version": "2.0.0", + "version": "2.1.0", "description": "Contains type definitions/interfaces for the kernel of the codebase. Kept separate from the implementation so that it is easier to use it as a dependency.", "keywords": [ "Hyperledger", @@ -61,7 +61,7 @@ }, "dependencies": { "@grpc/grpc-js": "1.11.3", - "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", "ajv": "8.17.1", "ajv-draft-04": "1.0.0", "ajv-formats": "3.0.1", diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/README.md index 83352834fe..7283b6f05f 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the core API types for Cactus. Does not describe actual endpo ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/api/openapi.yaml index d435ef83a2..18ca71deac 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -9,7 +9,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Core API - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: {} diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/client.go index 4ffc6767bd..da2fe706c6 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Core API API v2.0.0 +// APIClient manages communication with the Hyperledger Core API API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/configuration.go index 3540631df7..5a56a464be 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node.go index ff5fc42c58..3ade788339 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_all_of.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_all_of.go index 71ee376c97..1d35ae329f 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_all_of.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_all_of.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_meta.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_meta.go index f702dd6c56..8c409d8191 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_meta.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_meta.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_out_tx_finality.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_out_tx_finality.go index 3bfa034f77..aaf8de4cb0 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_out_tx_finality.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_out_tx_finality.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_tx_finality.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_tx_finality.go index 90776cb6e5..5df6f40e90 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_tx_finality.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_tx_finality.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_family.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_family.go index 196588303f..1af2e1680d 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_family.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_family.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium.go index 675b38d670..db6a555871 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_database.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_database.go index 3c37870158..35bd6b5ff7 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_database.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_database.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_member.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_member.go index 21d56a9f61..b4b56d302f 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_member.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_member.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_constants.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_constants.go index 076f0485fa..50188dc60a 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_constants.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_constants.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index e1446cc451..8ca886a777 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 20ed0a4240..c4478b25ff 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index 6e3b0a1827..1e3b298c9e 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 374e732485..101f95edde 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go index 2a78fc89b2..3344568c0c 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go index cb1400869c..3b83207de6 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index ea7ec0856b..5162a1212d 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index 1fb1a09293..9634ceb71d 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go index 1c28cc09c7..cf9e32c0a2 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go index 86ad65829f..2f4235e0ae 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_general.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_general.go index 9bdc2e10e4..3636a51491 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_general.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_general.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_recipient.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_recipient.go index fe7cb1967c..a2de1f9200 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_recipient.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_recipient.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger.go index 3f5448e0a1..fb1a0a33c4 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go index 0f2fb114d9..c40292fb85 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import.go index 39c176d1a0..cacfe4a5a7 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_action.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_action.go index 545388d4a5..da82b04a46 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_action.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_action.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_type.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_type.go index ca8a8f50d5..f8ee6cf0cb 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_type.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_type.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_instance.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_instance.go index 51f74e91be..b61ad45be8 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_instance.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_instance.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 0f43d9fb8e..b73dc59c3a 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index 6f62043e80..d1f1a91a55 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go index 2764695969..9604c9e00c 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go index c11652947d..75d53117b3 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/response.go index ae581966be..52d74d841f 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/utils.go index 549c02232e..ba563c7c6c 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/json/openapi.json b/packages/cactus-core-api/src/main/json/openapi.json index dada9b9302..0abe58b382 100644 --- a/packages/cactus-core-api/src/main/json/openapi.json +++ b/packages/cactus-core-api/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Core API", "description": "Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc..", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-core-api/src/main/json/openapi.tpl.json b/packages/cactus-core-api/src/main/json/openapi.tpl.json index dada9b9302..0abe58b382 100644 --- a/packages/cactus-core-api/src/main/json/openapi.tpl.json +++ b/packages/cactus-core-api/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Core API", "description": "Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc..", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-core-api/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-core-api/src/main/kotlin/generated/openapi/kotlin-client/README.md index 08c8fc3737..bb3076983a 100644 --- a/packages/cactus-core-api/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-core-api/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the core API types for Cactus. Does not describe actual endpo ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/api.ts index 770c48d36e..3ca450e3ce 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/base.ts index 11f8c6de2c..4367bd08b1 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/common.ts index c23cc1afb6..5a75d51394 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 7a898bfc25..8e1679e8c0 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/index.ts index 8c35e9cdff..2ccb275f93 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core/CHANGELOG.md b/packages/cactus-core/CHANGELOG.md index aea45b906e..fb6baaf61e 100644 --- a/packages/cactus-core/CHANGELOG.md +++ b/packages/cactus-core/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-core + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-core diff --git a/packages/cactus-core/package.json b/packages/cactus-core/package.json index f25cafe187..5f4e542d41 100644 --- a/packages/cactus-core/package.json +++ b/packages/cactus-core/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-core", - "version": "2.0.0", + "version": "2.1.0", "description": "Contains lower level abstractions/implementation that is to be shared by multiple other, higher level packages of the project.", "keywords": [ "Hyperledger", @@ -50,8 +50,8 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "body-parser": "1.20.3", "express": "4.21.0", "express-jwt-authz": "2.4.1", diff --git a/packages/cactus-plugin-bungee-hermes/CHANGELOG.md b/packages/cactus-plugin-bungee-hermes/CHANGELOG.md index 85c205cb8a..621bad5126 100644 --- a/packages/cactus-plugin-bungee-hermes/CHANGELOG.md +++ b/packages/cactus-plugin-bungee-hermes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-bungee-hermes + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-bungee-hermes diff --git a/packages/cactus-plugin-bungee-hermes/package.json b/packages/cactus-plugin-bungee-hermes/package.json index f23f5f03ae..1c188fe774 100644 --- a/packages/cactus-plugin-bungee-hermes/package.json +++ b/packages/cactus-plugin-bungee-hermes/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-bungee-hermes", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to create DLT views using Cactus connectors", "keywords": [ "Hyperledger", @@ -58,14 +58,14 @@ "watch": "npm-watch" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", "axios": "1.7.7", "body-parser": "1.20.3", "fs-extra": "11.2.0", @@ -78,8 +78,8 @@ "web3-core": "1.6.1" }, "devDependencies": { - "@hyperledger/cactus-test-geth-ledger": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-geth-ledger": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/crypto-js": "4.0.1", "@types/express": "5.0.0", diff --git a/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.json b/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.json index 4cc0d3870c..d445c3c768 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.json +++ b/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.json @@ -17,7 +17,7 @@ "info": { "title": "Hyperledger Cactus Plugin - BUNGEE-Hermes", "description": "Can create blockchain views of different networks", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.tpl.json b/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.tpl.json index 4cc0d3870c..d445c3c768 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.tpl.json @@ -17,7 +17,7 @@ "info": { "title": "Hyperledger Cactus Plugin - BUNGEE-Hermes", "description": "Can create blockchain views of different networks", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts index 7a3d524e57..12046f0fda 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts index 734449dc54..74c987f6dc 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts index b97c2e50f4..3c5fc84793 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 70015980b6..d91e97b8ca 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts index bfd7e680ec..06ffed10fa 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/CHANGELOG.md b/packages/cactus-plugin-consortium-manual/CHANGELOG.md index f8362d3422..b7660bb2d9 100644 --- a/packages/cactus-plugin-consortium-manual/CHANGELOG.md +++ b/packages/cactus-plugin-consortium-manual/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-consortium-manual + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-consortium-manual diff --git a/packages/cactus-plugin-consortium-manual/package.json b/packages/cactus-plugin-consortium-manual/package.json index af9441e8c5..9a460fc993 100644 --- a/packages/cactus-plugin-consortium-manual/package.json +++ b/packages/cactus-plugin-consortium-manual/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-consortium-manual", - "version": "2.0.0", + "version": "2.1.0", "description": "A web service plugin that provides management capabilities on a Cactus consortium as a whole for administrative purposes.", "keywords": [ "Hyperledger", @@ -56,9 +56,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "body-parser": "1.20.3", "express": "4.21.0", diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/README.md index 5e229720a4..5615f8ad09 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Manage a Cactus consortium through the APIs. Needs administrative privileges. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api/openapi.yaml index 56cabe1eb4..208f570d3d 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Consortium Web Service - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api_default.go index b15b867b26..bca50b95b4 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/client.go index 31894fad7a..5a67a044ee 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Consortium Web Service API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Consortium Web Service API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/configuration.go index 0c1ced4f4f..579ddb9f83 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_consortium_jws_response.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_consortium_jws_response.go index 855a435ba8..8b2d7a0a51 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_consortium_jws_response.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_consortium_jws_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_node_jws_response.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_node_jws_response.go index 899c530036..7d7d1ecd79 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_node_jws_response.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_node_jws_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_general.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_general.go index 0faf0e27a2..98512532d3 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_general.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_general.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_recipient.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_recipient.go index f79bd7820f..4fb3553d1c 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_recipient.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_recipient.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/response.go index 124ee93cec..18a0cdf299 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/utils.go index 10df6d7842..49a6fe4a1b 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/json/openapi.json b/packages/cactus-plugin-consortium-manual/src/main/json/openapi.json index 4d664c6e01..c181028fa9 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/json/openapi.json +++ b/packages/cactus-plugin-consortium-manual/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Consortium Web Service", "description": "Manage a Cactus consortium through the APIs. Needs administrative privileges.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-consortium-manual/src/main/json/openapi.tpl.json b/packages/cactus-plugin-consortium-manual/src/main/json/openapi.tpl.json index 847f742570..0fe4bcc544 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-consortium-manual/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Consortium Web Service", "description": "Manage a Cactus consortium through the APIs. Needs administrative privileges.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-consortium-manual/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-consortium-manual/src/main/kotlin/generated/openapi/kotlin-client/README.md index 562dbaa95b..e6dba7edf1 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-consortium-manual/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Manage a Cactus consortium through the APIs. Needs administrative privileges. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/api.ts index 95ec1b160e..c0c562a810 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/base.ts index 613e857fa8..a8e977bb61 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/common.ts index bab611ca0b..9d1336b20b 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 01995a47cf..4b4d88539e 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/index.ts index 7e96917e25..73c585500c 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/CHANGELOG.md b/packages/cactus-plugin-htlc-eth-besu-erc20/CHANGELOG.md index d887b98f3f..d93de245b0 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/CHANGELOG.md +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-eth-besu-erc20 + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-eth-besu-erc20 diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/package.json b/packages/cactus-plugin-htlc-eth-besu-erc20/package.json index 95a76e7bea..1de9a597a6 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/package.json +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-htlc-eth-besu-erc20", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens", "keywords": [ "Hyperledger", @@ -61,10 +61,10 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", "axios": "1.7.7", "express": "4.21.0", "joi": "17.13.3", diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/README.md index 95714dbf93..49dddfdc9b 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api/openapi.yaml index 80221579be..96d1bc7333 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api_default.go index 6f48ab3fbf..54cd4544ce 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/client.go index 3dbb799594..68d6d20972 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/configuration.go index 17e033cc91..9c843622f8 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_single_status_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_single_status_request.go index 9163d539a2..643f4f8f73 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_single_status_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_single_status_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_status_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_status_request.go index e56631613d..1521d457f8 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_status_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_status_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_initialize_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_initialize_request.go index ebfe9466ab..931a8f5e64 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_initialize_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_initialize_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 618cc769b2..5a4bcb0f12 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request.go index 04bbb14712..0d7e2385b8 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request_gas.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request_gas.go index 524a257843..094e631c32 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request_gas.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request_gas.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_refund_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_refund_request.go index aa7adb4b17..20c2426070 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_refund_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_refund_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index a348f27b72..5db1035b8c 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index d6511f99b1..29a8241487 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index a3cae7e397..23b0a3b5c9 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 01c33a52e1..021b42d541 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index c1d23c99c3..452f2ab1b8 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index af7bf63c5e..e24f7084c1 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index b650a80ebc..b8cd704c5d 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_withdraw_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_withdraw_request.go index 3bfa19ecf9..801606a96c 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_withdraw_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_withdraw_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/response.go index 9750ae0248..9eeda70deb 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/utils.go index 7897cfb605..50a8180bef 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.json b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.json index 8b127b1c9d..c47fbf8046 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.json +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - HTLC ETH BESU ERC20", "description": "Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.tpl.json b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.tpl.json index f3fcde65f2..3191499066 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - HTLC ETH BESU ERC20", "description": "Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/kotlin/generated/openapi/kotlin-client/README.md index 7aef4bee44..aa79d4fb92 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/api.ts index fd21b0f439..bbbedb9ab0 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/base.ts index f6bf492efb..c49034bb69 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/common.ts index a6116b42a0..449c75aab2 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 1d45a6b0c7..05ad3f65b1 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/index.ts index ec13f0cb50..74ee40c7bb 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/CHANGELOG.md b/packages/cactus-plugin-htlc-eth-besu/CHANGELOG.md index d66b7322b9..49132a9c1e 100644 --- a/packages/cactus-plugin-htlc-eth-besu/CHANGELOG.md +++ b/packages/cactus-plugin-htlc-eth-besu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-eth-besu + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-eth-besu diff --git a/packages/cactus-plugin-htlc-eth-besu/package.json b/packages/cactus-plugin-htlc-eth-besu/package.json index 0e90b4b8e6..5c7ad02981 100644 --- a/packages/cactus-plugin-htlc-eth-besu/package.json +++ b/packages/cactus-plugin-htlc-eth-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-htlc-eth-besu", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to interact with HTLC ETH contracts", "keywords": [ "Hyperledger", @@ -67,12 +67,12 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "axios": "1.7.7", "bn.js": "5.2.1", "dotenv": "16.0.3", @@ -84,8 +84,8 @@ "web3js-quorum": "22.4.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/express": "5.0.0", "ds-test": "https://github.com/dapphub/ds-test.git#e282159d5170298eb2455a6c05280ab5a73a4ef0", "forge-std": "https://github.com/foundry-rs/forge-std.git#66bf4e2c92cf507531599845e8d5a08cc2e3b5bb" diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/README.md index 350810b733..b0f14a1541 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml index 804b0f0ab9..4f31d46b35 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -4,7 +4,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - HTLC-ETH Besu - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api_default.go index c52cda8e7f..5746afb1de 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/client.go index 834cce4292..37e0a6a50e 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC-ETH Besu API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC-ETH Besu API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/configuration.go index 8c3ed42585..2f88e803b9 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_single_status_request.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_single_status_request.go index 6248e87399..85e3dd0551 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_single_status_request.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_single_status_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_status_request.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_status_request.go index 352a1cb0f8..ec90eac273 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_status_request.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_status_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_initialize_request.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_initialize_request.go index 7ed2607381..678032b916 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_initialize_request.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_initialize_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 35719c3348..b20409abd9 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj.go index f12efbf930..8b4025b6df 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj_gas.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj_gas.go index fa6d7ef8dd..5127aae3a9 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj_gas.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj_gas.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_refund_req.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_refund_req.go index b2ab789445..36f33ab340 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_refund_req.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_refund_req.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 32a62f9472..cd19e5598e 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 434239483c..004483c0c6 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 2e85bf153d..3a74564966 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 8caa7833de..45b7805062 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 91efe5ad93..9cd2ae140e 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 734ca49d67..de7a36e702 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index 35789eb59f..189669a3cc 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_withdraw_req.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_withdraw_req.go index 22d03135e4..bc96a952ae 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_withdraw_req.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_withdraw_req.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/response.go index 608629dd70..3c41eee921 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/utils.go index 5567db4a98..11c1dd8a64 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.json b/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.json index 459817ddfb..22d40dceaf 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.json +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.0.3", "info": { "title": "Hyperledger Cactus Plugin - HTLC-ETH Besu", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.tpl.json b/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.tpl.json index a0f61f3318..538556cbbe 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.tpl.json @@ -2,7 +2,7 @@ "openapi": "3.0.3", "info": { "title": "Hyperledger Cactus Plugin - HTLC-ETH Besu", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts index 04a8530a2f..e66c52b6e9 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts index 5fe7764693..dcad38e42d 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts index d1ca0b15b9..ef3fdcfa2e 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index a95e131f86..ac078c20ab 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts index cacc31ce7d..3221556d22 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/CHANGELOG.md b/packages/cactus-plugin-keychain-aws-sm/CHANGELOG.md index 899589f94c..782e1bec2b 100644 --- a/packages/cactus-plugin-keychain-aws-sm/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-aws-sm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-aws-sm + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-aws-sm diff --git a/packages/cactus-plugin-keychain-aws-sm/package.json b/packages/cactus-plugin-keychain-aws-sm/package.json index 6e6e5b4653..f2b787c831 100644 --- a/packages/cactus-plugin-keychain-aws-sm/package.json +++ b/packages/cactus-plugin-keychain-aws-sm/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-aws-sm", - "version": "2.0.0", + "version": "2.1.0", "description": "A keychain implementation storing its entries in AWS Secret Manger.", "keywords": [ "Hyperledger", @@ -56,9 +56,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "aws-sdk": "2.965.0", "axios": "1.7.7", "http-status-codes": "2.1.4", @@ -66,7 +66,7 @@ "typescript-optional": "2.0.1" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/request": "2.48.7", diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/README.md index e48d700f9b..6bc060bab7 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml index 635f03b82d..047de9f69d 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus - Keychain API - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api_default.go index 4720d476d1..819cc89aa4 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/client.go index e508c4fafa..af40418751 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/configuration.go index a8ebc91719..6059629e63 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 22a61bf5c3..db22935b88 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index b5d6edae47..6bd1219400 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index 66a8131e8a..4226b09688 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index f3d2a3c3e6..35bb10d2ab 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index 8d9a7df364..de1c466707 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index ebc272374a..6b1f41d3d8 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 151597d8cc..dc3a28ae15 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index 93a1afa1be..8f64ad2809 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/response.go index a926467baa..b6d668222b 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/utils.go index a104770226..80cffcf9a7 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.json b/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.json index 00b0291d61..e077d8a842 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.tpl.json index f6dc002a9d..c884b962e8 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-aws-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md index 2b9d7bdf7b..8afd48db02 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts index 8c5e916afc..526101f05f 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts index e494b76932..f51251e1d7 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts index 61ef9f2a15..b59b78d2ed 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index d36cc56c83..3b8db767dd 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts index 434478c164..b3f6a9926f 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/CHANGELOG.md b/packages/cactus-plugin-keychain-azure-kv/CHANGELOG.md index 2a217ca5b2..e1c53240bd 100644 --- a/packages/cactus-plugin-keychain-azure-kv/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-azure-kv/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-azure-kv + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-azure-kv diff --git a/packages/cactus-plugin-keychain-azure-kv/package.json b/packages/cactus-plugin-keychain-azure-kv/package.json index 272e066667..1ccda2f51e 100644 --- a/packages/cactus-plugin-keychain-azure-kv/package.json +++ b/packages/cactus-plugin-keychain-azure-kv/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-azure-kv", - "version": "2.0.0", + "version": "2.1.0", "description": "A keychain implementation storing its entries in Azure key vault.", "keywords": [ "Hyperledger", @@ -63,15 +63,15 @@ "dependencies": { "@azure/identity": "4.2.1", "@azure/keyvault-secrets": "4.3.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "http-status-codes": "2.1.4", "typescript-optional": "2.0.1" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/request": "2.48.7", diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/README.md index 3418eaa2d1..d677e5d123 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api/openapi.yaml index fe513e72d6..cfbf786d16 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus - Keychain API - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api_default.go index dc0a3d684c..20acccb36d 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/client.go index b0b1cca4de..c5bda43579 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/configuration.go index 008b59eb77..d0dde7691f 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 81fe33a4a3..55e348d889 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index e109661cbf..f16601dc51 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index ef31c7b97d..5dc15ed282 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 818920d6e3..5ba1205f5e 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index 94c230cede..93f5321f32 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index b8db0a23d7..51d72a6b4b 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 512339208d..8449098004 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index bfbc2d1a1f..d5da38e91d 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/response.go index 626bd2891e..9941e16807 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/utils.go index c5d73582fb..2fbb8023d3 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.json b/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.json index 92adfe407d..17f21fbb3a 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.tpl.json index e51d0c93e1..8cfdd6d1a0 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-azure-kv/src/main/kotlin/generated/openapi/kotlin-client/README.md index 72bf6eacf4..07c2decee8 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/api.ts index 7a00e4e1f1..7d8aed3740 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/base.ts index e494b76932..f51251e1d7 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/common.ts index 61ef9f2a15..b59b78d2ed 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index d36cc56c83..3b8db767dd 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/index.ts index 434478c164..b3f6a9926f 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/CHANGELOG.md b/packages/cactus-plugin-keychain-google-sm/CHANGELOG.md index 660a39411d..2ce7948c6a 100644 --- a/packages/cactus-plugin-keychain-google-sm/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-google-sm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-google-sm + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-google-sm diff --git a/packages/cactus-plugin-keychain-google-sm/package.json b/packages/cactus-plugin-keychain-google-sm/package.json index 78b899198f..835799a808 100644 --- a/packages/cactus-plugin-keychain-google-sm/package.json +++ b/packages/cactus-plugin-keychain-google-sm/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-google-sm", - "version": "2.0.0", + "version": "2.1.0", "description": "A keychain implementation storing its entries in Azure key vault.", "keywords": [ "Hyperledger", @@ -57,16 +57,16 @@ }, "dependencies": { "@google-cloud/secret-manager": "5.0.1", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "http-status-codes": "2.1.4", "typescript-optional": "2.0.1", "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/request": "2.48.7", diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/README.md index b4aa329cf3..e83532398b 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml index 6bb146205d..837b0ecb08 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus - Keychain API - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api_default.go index 0a30fe6fae..9861e7a3b7 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/client.go index f46a2d094d..70e3f2f8df 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/configuration.go index 6a88dac5ba..a22c808af2 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 81b4d99bf6..24410fde15 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 0d86a264e9..ea37876f2e 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index e6044a10a4..6039589bd0 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 97b529e389..da8d8bbcb7 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index c56f015de7..b627a6330b 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index 8b9947c9ba..81392c719f 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 32aa3ee859..e5bd57f32d 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index b525a3515f..5038c875ba 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/response.go index 998f9671c6..ff612bf7a4 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/utils.go index 1eed08cc93..b4493856aa 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.json b/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.json index f3978f9202..68a51b4b36 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.tpl.json index ed454e7df0..b8e38b520d 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-google-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md index 0f65cbda95..b45e6d5a57 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-google-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts index ca17a0c49c..da416be229 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts index e494b76932..f51251e1d7 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts index 61ef9f2a15..b59b78d2ed 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index d36cc56c83..3b8db767dd 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts index 434478c164..b3f6a9926f 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/CHANGELOG.md b/packages/cactus-plugin-keychain-memory-wasm/CHANGELOG.md index def52ecc34..4d9962af3c 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-memory-wasm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-memory-wasm + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-memory-wasm diff --git a/packages/cactus-plugin-keychain-memory-wasm/package.json b/packages/cactus-plugin-keychain-memory-wasm/package.json index e5104b35d6..b27df6e596 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/package.json +++ b/packages/cactus-plugin-keychain-memory-wasm/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-memory-wasm", - "version": "2.0.0", + "version": "2.1.0", "description": "Dummy keychain implementation doing NO encryption and storing everything in-memory. Only suitable for development and testing. Same as the non-wasm version but this one has the backing implementation written in Rust and compiled down to WebAssembly.", "keywords": [ "Hyperledger", @@ -61,9 +61,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "express": "4.21.0", "prom-client": "15.1.3", diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/README.md index 649fa49aa9..5c416e8131 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is d ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api/openapi.yaml index abd92f7c33..ae211bc45b 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -7,7 +7,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Keychain Memory WASM - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api_default.go index adacedd67e..82e5226816 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/client.go index 2b09e57381..705961f16c 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Keychain Memory WASM API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Keychain Memory WASM API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/configuration.go index 7cb4ee80b3..7d5738b6dc 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index eee66a4b31..4aca0884f7 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 7e65660386..bee7d52adb 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index 444613c9d2..3751136c9c 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 0ddabedf89..5ccc669e20 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index f61968744e..1eb63aa066 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index 5d997c0be6..0878233ac1 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 083f6a8800..ed68793efc 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index 539873a2ca..06fe9cce5c 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/response.go index c08d1d09b7..992bc2ea27 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/utils.go index 0ccb2efaca..65c30aff12 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.json b/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.json index 158a7b8fac..0821b3a71e 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Keychain Memory WASM", "description": "Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.tpl.json index 6c003e8b4b..c7f777f281 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Keychain Memory WASM", "description": "Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-memory-wasm/src/main/kotlin/generated/openapi/kotlin-client/README.md index bbc2c39e06..57414e40d5 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is d ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/cactus-plugin-keychain-memory-wasm/Cargo.toml b/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/cactus-plugin-keychain-memory-wasm/Cargo.toml index d55ea866a0..8069f59bdf 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/cactus-plugin-keychain-memory-wasm/Cargo.toml +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/cactus-plugin-keychain-memory-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cactus-plugin-keychain-memory-wasm" -version = "2.0.0" +version = "2.1.0" authors = ["Peter Somogyvari "] edition = "2018" diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/generated/openapi/rust-server/Cargo.toml b/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/generated/openapi/rust-server/Cargo.toml index 697d4a44e5..778617ed9f 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/generated/openapi/rust-server/Cargo.toml +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/generated/openapi/rust-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openapi_client" -version = "2.0.0" +version = "2.1.0" authors = [] description = "Contains/describes the Keychain API types/paths for Hyperledger Cactus." license = "Unlicense" diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/api.ts index 84cd58b4e1..81abb14420 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/base.ts index fecd34dedc..924096cf49 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/common.ts index c01eab8580..c1bf9d63c0 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 1a3bfd0837..f88d491e21 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/index.ts index 3cd2080805..a7fb079de5 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/CHANGELOG.md b/packages/cactus-plugin-keychain-memory/CHANGELOG.md index 36e4a7da26..14c0b2fbcc 100644 --- a/packages/cactus-plugin-keychain-memory/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-memory/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-memory + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-memory diff --git a/packages/cactus-plugin-keychain-memory/package.json b/packages/cactus-plugin-keychain-memory/package.json index 175afa9996..15f8cb0926 100644 --- a/packages/cactus-plugin-keychain-memory/package.json +++ b/packages/cactus-plugin-keychain-memory/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-memory", - "version": "2.0.0", + "version": "2.1.0", "description": "Dummy keychain implementation doing NO encryption and storing everything in-memory. Only suitable for development and testing.", "keywords": [ "Hyperledger", @@ -61,9 +61,9 @@ "dependencies": { "@bufbuild/protobuf": "1.10.0", "@connectrpc/connect": "1.4.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "express": "4.21.0", "prom-client": "15.1.3", diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/README.md index 966ef5364a..cf9015ffd0 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api/openapi.yaml index 56b49f0547..8e08167987 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: 'Hyperledger Cactus Plugin - Keychain Memory ' - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api_default.go index 4d2287bc80..2649481fd0 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/client.go index 5db2ce2e2f..74f91912d7 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Keychain Memory API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Keychain Memory API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/configuration.go index 335715ae82..2ddf53b052 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 655da6e627..5b4cdc5386 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 482f97f7b0..cca38169e2 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index 259172aaa1..003b93012f 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index d54d9d47e2..1d642a9522 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index a509a526e8..facff31a15 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index 6827435ade..1ebef0c1c3 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index ca2a910aa1..3e8a19178e 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index 5fb9d55d3f..9737c07084 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/response.go index e8ac28e861..d4c0778575 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/utils.go index ddb6f82b2d..e9a5edde0a 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/json/openapi.json b/packages/cactus-plugin-keychain-memory/src/main/json/openapi.json index 0c82886a4b..668778af12 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-memory/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Keychain Memory ", "description": "Contains/describes the Hyperledger Cacti Keychain Memory plugin.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-memory/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-memory/src/main/json/openapi.tpl.json index 943a5f9843..63bd394a32 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-memory/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Keychain Memory ", "description": "Contains/describes the Hyperledger Cacti Keychain Memory plugin.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-memory/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-memory/src/main/kotlin/generated/openapi/kotlin-client/README.md index 1aed89212f..55f91cb0d3 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-memory/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/README.md b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/README.md index 9399195450..9ed845ea47 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/README.md +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_request_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_request_v1_pb.proto index c81f014ff6..47f1214bf4 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_request_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_request_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_response_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_response_v1_pb.proto index 511a5ad80e..dbae1bb002 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_response_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_response_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_request_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_request_v1_pb.proto index 1b1421282f..f6ab7fa374 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_request_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_request_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_response_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_response_v1_pb.proto index 772516c70b..20ade18bce 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_response_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_response_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_request_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_request_v1_pb.proto index b869f511fb..7a2254f9dd 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_request_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_request_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_response_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_response_v1_pb.proto index 7b79bd1d3a..373fbc5389 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_response_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_response_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_request_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_request_v1_pb.proto index fdf08bb37b..a75292dc9a 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_request_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_request_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_response_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_response_v1_pb.proto index 09a0ef37c8..2f552f46d2 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_response_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_response_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/services/default_service.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/services/default_service.proto index a64171930a..ea1973b1df 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/services/default_service.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/services/default_service.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_request_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_request_v1_pb_pb.ts index cdb1b6c7d7..ed680f3b80 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_request_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_request_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_response_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_response_v1_pb_pb.ts index 7a5b815fa4..a1d2fb7ed9 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_response_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_response_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_request_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_request_v1_pb_pb.ts index a537b074f3..26aec24ee8 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_request_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_request_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_response_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_response_v1_pb_pb.ts index 4dde5ee5b8..5345dc4a5a 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_response_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_response_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_request_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_request_v1_pb_pb.ts index 23aebf715a..76408d97eb 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_request_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_request_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_response_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_response_v1_pb_pb.ts index b24c210c1a..002543ffcd 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_response_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_response_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_request_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_request_v1_pb_pb.ts index b265118d81..307e61e303 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_request_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_request_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_response_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_response_v1_pb_pb.ts index ac283fdc2f..3848c7073f 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_response_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_response_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_connect.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_connect.ts index 2e518890a6..20d4773bb2 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_connect.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_connect.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_pb.ts index 9a069b85cf..1f8a156b6e 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0 +//The version of the OpenAPI document: 2.1.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/api.ts index 86ab0581ca..637837aa76 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/base.ts index 7aa00c0139..858e0a0e7b 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/common.ts index 8f76d8de81..b280617c97 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 319c3d8360..1248cb7e43 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/index.ts index c421b43b56..fc25e65fa5 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/CHANGELOG.md b/packages/cactus-plugin-keychain-vault/CHANGELOG.md index 2c3ff7214c..df48dbcbad 100644 --- a/packages/cactus-plugin-keychain-vault/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-vault/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-vault + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-vault diff --git a/packages/cactus-plugin-keychain-vault/package.json b/packages/cactus-plugin-keychain-vault/package.json index 05e2611a9b..dcc5a60269 100644 --- a/packages/cactus-plugin-keychain-vault/package.json +++ b/packages/cactus-plugin-keychain-vault/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-vault", - "version": "2.0.0", + "version": "2.1.0", "description": "A keychain implementation storing its entries in Hashicorp Vault. Actual logic is implemented in Rust.", "keywords": [ "Hyperledger", @@ -56,9 +56,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "http-status-codes": "2.1.4", "node-vault": "0.9.22", @@ -66,7 +66,7 @@ "typescript-optional": "2.0.1" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.3", "@types/express": "5.0.0", "@types/internal-ip": "4.1.0", diff --git a/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.lock b/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.lock index 23fa93210b..9f84a4734a 100644 --- a/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.lock +++ b/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.lock @@ -1013,7 +1013,7 @@ checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" [[package]] name = "openapi_client" -version = "2.0.0" +version = "2.1.0" dependencies = [ "async-trait", "chrono", diff --git a/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.toml b/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.toml index c4df6c407e..68a19f3450 100644 --- a/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.toml +++ b/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openapi_client" -version = "2.0.0" +version = "2.1.0" authors = [] description = "Contains/describes the Keychain API types/paths for Hyperledger Cactus." license = "Unlicense" diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/README.md index 5bf0b205a5..e7a10037cc 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api/openapi.yaml index 04c39d1675..63eb93379d 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus - Keychain API - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api_default.go index a95a9ed171..62f014be9d 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/client.go index 5123b7c8f3..4da2637b41 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/configuration.go index 0005c7dfab..16b197dc0f 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 407306d3b7..2b66c6e2cb 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index a92b38ea83..c00d55fe5f 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index bb2104b40a..ecb5b853bd 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index d18cad7db4..26a13a10d3 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index 6656755324..88267b8a8d 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index babe8dfa70..29f79db9ff 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index c30648c4e6..de692b0a9e 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index 7a0df00846..4ee9306937 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/response.go index 99032fc9f7..fb1907f824 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/utils.go index 635313d72e..ab24a4208e 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/json/openapi.json b/packages/cactus-plugin-keychain-vault/src/main/json/openapi.json index ffa891158d..35689d82af 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-vault/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-vault/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-vault/src/main/json/openapi.tpl.json index 2cf795862c..21b66d3fe6 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-vault/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-vault/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-vault/src/main/kotlin/generated/openapi/kotlin-client/README.md index eb733ea3b4..2a4df19a9a 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-vault/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/api.ts index 3a5a22963f..ef9bfecd66 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/base.ts index e494b76932..f51251e1d7 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/common.ts index 61ef9f2a15..b59b78d2ed 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index d36cc56c83..3b8db767dd 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/index.ts index 434478c164..b3f6a9926f 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-aries/CHANGELOG.md index 3df45a3897..1e6f110aac 100644 --- a/packages/cactus-plugin-ledger-connector-aries/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-aries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-aries + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-aries diff --git a/packages/cactus-plugin-ledger-connector-aries/package.json b/packages/cactus-plugin-ledger-connector-aries/package.json index 35cce6c99f..90747e46d9 100644 --- a/packages/cactus-plugin-ledger-connector-aries/package.json +++ b/packages/cactus-plugin-ledger-connector-aries/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-aries", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to an Indy ledger and Aries agents.", "keywords": [ "Hyperledger", @@ -64,16 +64,16 @@ "@aries-framework/node": "0.5.0-alpha.71", "@hyperledger/anoncreds-nodejs": "0.2.0", "@hyperledger/aries-askar-nodejs": "0.2.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "@hyperledger/indy-vdr-nodejs": "0.2.0", "axios": "1.7.7", "rxjs": "7.8.1", "socket.io-client-fixed-types": "4.5.4" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/uuid": "10.0.0", diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/README.md index 7f56c642b7..3d42f5a041 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can communicate with other Aries agents and Cacti Aries connectors ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api/openapi.yaml index d328a89bcf..ead1e9b173 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector Aries - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api_default.go index 70e73465d3..80b83a2ec8 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/client.go index c23e2b614a..3c520508b9 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Aries API v2.0.0 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Aries API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/configuration.go index 1bcb0b6de8..f64607a413 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_request.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_request.go index 351a062253..84ecd8a2ab 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_response.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_response.go index ef82d022e5..f23f0b4eaa 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connection_record_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connection_record_v1.go index 8587cee739..088a64e467 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connection_record_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connection_record_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connections_filter_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connections_filter_v1.go index 7d89b9f48d..b4c66152dd 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connections_filter_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connections_filter_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_config_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_config_v1.go index 5d8c3c65a0..aa325ed573 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_config_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_config_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1.go index ca57f03aa6..34fe1b50ce 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1_wallet_config.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1_wallet_config.go index d7ea47936c..fc915f9e14 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1_wallet_config.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1_wallet_config.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_indy_vdr_pool_config_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_indy_vdr_pool_config_v1.go index 20338a0194..8179ac8c75 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_indy_vdr_pool_config_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_indy_vdr_pool_config_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_proof_exchange_record_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_proof_exchange_record_v1.go index 102301fddf..3fd7196366 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_proof_exchange_record_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_proof_exchange_record_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_accept_policy_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_accept_policy_v1.go index e158fc3de9..8130d4e150 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_accept_policy_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_accept_policy_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_proof_request_attribute_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_proof_request_attribute_v1.go index 103a0d0342..8428d27fe5 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_proof_request_attribute_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_proof_request_attribute_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_request.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_request.go index 2ff2dee62d..fa3c542c5c 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_response.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_response.go index d548557f31..92dc72b221 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_error_exception_v1_response.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_error_exception_v1_response.go index 23e7e73de2..efaf4edbe8 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_error_exception_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_error_exception_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_get_connections_v1_request.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_get_connections_v1_request.go index 5d53af7c75..fb654df2f5 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_get_connections_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_get_connections_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_request_proof_v1_request.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_request_proof_v1_request.go index 76c3dce38f..27ddee7991 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_request_proof_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_request_proof_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_options_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_options_v1.go index ef5ed11fde..5acf0bb0d4 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_progress_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_progress_v1.go index ea6927fa23..0ead6daa16 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_progress_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_progress_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_v1.go index a8c795ca6f..a399447097 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_options_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_options_v1.go index 1ddd0e1423..7159711586 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_progress_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_progress_v1.go index 19238bd81c..7da51c469d 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_progress_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_progress_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_v1.go index 79bbb65237..0533e2ebe1 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/response.go index e6b7f7ca60..505687c9c9 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/utils.go index bbd5cc7bcf..9547012388 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.json index a0dce24b94..065a9b3fec 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Aries", "description": "Can communicate with other Aries agents and Cacti Aries connectors", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.tpl.json index a0dce24b94..065a9b3fec 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Aries", "description": "Can communicate with other Aries agents and Cacti Aries connectors", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/api.ts index f3bea71196..5ba4a04077 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/base.ts index f21b4cd6cb..1e6c3ae74e 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/common.ts index 1a9fa58445..dca77e4dd4 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 92dbe5e8ef..9a455f4c56 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/index.ts index ac22566a76..ccf57d5a75 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-besu/CHANGELOG.md index 7aa9cf59b4..0cb4b13ed9 100644 --- a/packages/cactus-plugin-ledger-connector-besu/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-besu/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Bug Fixes + +* **besu:** deployContractSolBytecodeNoKeychainV1 requires keychainId ([11dacbc](https://github.com/hyperledger/cacti/commit/11dacbcef25ba3e7fa9f9880f60655be1e2396ef)), closes [#3586](https://github.com/hyperledger/cacti/issues/3586) +* **connector-besu:** do not crash if ledger unreachable - send HTTP 503 ([394323e](https://github.com/hyperledger/cacti/commit/394323e91e3bd0df57c87d6bae406298c559fc7f)) +* **connector-besu:** set contract bytecode field's max length to 49154 ([33b2cf0](https://github.com/hyperledger/cacti/commit/33b2cf06eb239986aa0c50221ce390a3a27f3a45)), closes [#3636](https://github.com/hyperledger/cacti/issues/3636) + +### Features + +* **cactus-connector-besu:** add IRunTransactionV1Exchange to share receipt data ([3097c84](https://github.com/hyperledger/cacti/commit/3097c84895b73d44f8f61ec5e2a09abc1e8306e8)) + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-besu diff --git a/packages/cactus-plugin-ledger-connector-besu/package.json b/packages/cactus-plugin-ledger-connector-besu/package.json index 025b74d2c1..7228894b35 100644 --- a/packages/cactus-plugin-ledger-connector-besu/package.json +++ b/packages/cactus-plugin-ledger-connector-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-besu", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to a Besu ledger.", "keywords": [ "Hyperledger", @@ -60,9 +60,9 @@ }, "dependencies": { "@grpc/grpc-js": "1.11.3", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "express": "4.21.0", "google-protobuf": "3.21.4", @@ -84,8 +84,8 @@ "websocket-event-codes": "1.1.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@openapitools/openapi-generator-cli": "2.7.0", "@types/benchmark": "2.1.5", "@types/body-parser": "1.19.4", diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/README.md index 0cf69a908c..f6ec30f9eb 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Besu ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml index 14c138a59a..c2f16fbb2f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Besu - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api_default.go index 55f27a9fd4..47aac851ca 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/client.go index 4ca816dfc2..14bede2da4 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Besu API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Besu API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/configuration.go index 4215ffb7fc..a804eee127 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_backing_ledger_unavailable_error.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_backing_ledger_unavailable_error.go index 459478bccb..dd89df3b5c 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_backing_ledger_unavailable_error.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_backing_ledger_unavailable_error.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_private_transaction_config.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_private_transaction_config.go index 05ed0fda11..3cecdfac61 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_private_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_private_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config.go index 54aa540c08..ecb8c653f6 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config_to.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config_to.go index 720ee5d532..e49248ede3 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config_to.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config_to.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_consistency_strategy.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_consistency_strategy.go index 7f9e2f4169..b283394758 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_consistency_strategy.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_consistency_strategy.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_no_keychain_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_no_keychain_v1_request.go index 35e6a7d6c8..464496d74f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_no_keychain_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_no_keychain_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_request.go index 11f4d381db..604b85def0 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_response.go index 96b34a7f9c..b8f9de21ee 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go index d11b662a4d..8ada98ab6f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_block.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_block.go index e6a8903f7b..d9b318ef46 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_block.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_block.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_log.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_log.go index f6cde55ecc..1bb3d4aae2 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_log.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_log.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_transaction.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_transaction.go index 84bd4f1a1b..45d9dae7cc 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_transaction.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_transaction.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_request.go index d7f01c3de9..9562a44f00 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_response.go index 2bd334e575..d30cadec12 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_request.go index 7d6b793cd1..14ca30cd42 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_response.go index 255c2037c9..cbd1b7fffe 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_request.go index 52286368e3..3d1a0a96c6 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_response.go index 2226921398..931d554552 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_request.go index 9056636330..1b36cdc6f4 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_response.go index 5f5e352359..d1cfa5e9be 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_request.go index d4e818955d..1790a6d0b5 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_response.go index 792ab10155..27d180b73a 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go index ce38203b5b..07e8673a11 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 068af36056..8fc751ea0e 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_receipt_type.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_receipt_type.go index 217457db12..12464a8841 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_receipt_type.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_receipt_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_request.go index c4155ef08b..e79bb71f3d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 77caa76749..c353c0cfb9 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_request.go index e67ab4ca40..504aa3a32b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_response.go index 0624911e42..2f00314537 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go index 910937984b..57378dcdc5 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go index 9447cbd801..3e80d79e97 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go index 6db1cb0eb8..a921bacbac 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go index 6a4ad4f235..c64f7be3b2 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index 5a9381e73e..0c1293a005 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go index df071773a4..4a49e397ff 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_request.go index aa70fd6250..035deb65ec 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header.go index 210b70846f..253f4a88e8 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header_timestamp.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header_timestamp.go index f9fc7a8ea7..22af76d5f8 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header_timestamp.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header_timestamp.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 38054adfcb..6ae79b58cc 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 0b1dd9c930..3ed08404a8 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 1abe727538..f7ac35a719 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 968632274e..d1d9761f0b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 4ed8458935..525f79ef2c 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index 2677bcb983..5e32aa0959 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/response.go index 76c8e41a0f..01ba4400c8 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/utils.go index 675939c802..2f3ae27c7d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.json index 3a401ec1ac..b0536c6e1c 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Besu", "description": "Can perform basic tasks on a Besu ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.tpl.json index 3a401ec1ac..b0536c6e1c 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Besu", "description": "Can perform basic tasks on a Besu ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/README.md b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/README.md index e38495bf47..3f28658179 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/README.md +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Besu ledger ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/backing_ledger_unavailable_error_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/backing_ledger_unavailable_error_pb.proto index 80f514f2f7..36abecbea1 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/backing_ledger_unavailable_error_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/backing_ledger_unavailable_error_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_private_transaction_config_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_private_transaction_config_pb.proto index 2f1aa44a82..c11351a19e 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_private_transaction_config_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_private_transaction_config_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_pb.proto index f344e70f58..7e10c97285 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_to_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_to_pb.proto index a524674a6b..a446ed8e87 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_to_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_to_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/consistency_strategy_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/consistency_strategy_pb.proto index b097341592..11b338ace5 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/consistency_strategy_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/consistency_strategy_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_no_keychain_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_no_keychain_v1_request_pb.proto index 2b9a906edb..91110568b4 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_no_keychain_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_no_keychain_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_request_pb.proto index 20dcc4abbc..017ef765ab 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_response_pb.proto index a7a6a01b1d..d42d2feeca 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/eth_contract_invocation_type_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/eth_contract_invocation_type_pb.proto index a347426425..c01d34ba0f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/eth_contract_invocation_type_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/eth_contract_invocation_type_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_block_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_block_pb.proto index 964dd5f80f..a0b45d6fa2 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_block_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_block_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_log_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_log_pb.proto index e435c4983c..1ceb6ef06c 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_log_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_log_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_transaction_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_transaction_pb.proto index ce446aa45f..5b768d8eb6 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_transaction_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_transaction_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_request_pb.proto index 43b4f40df8..a3201ead71 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_response_pb.proto index 2fd88d70a6..60be73be4a 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_request_pb.proto index bb91d66ae2..9d3fb7cef7 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_response_pb.proto index de2d7d8957..9b18417b8b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_request_pb.proto index 1dbd081e9d..5b6fef04be 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_response_pb.proto index c7f06b14ba..306cba3061 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_request_pb.proto index b672c4fb50..50e57900da 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_response_pb.proto index 812290f318..1684a160cc 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_request_pb.proto index f589371e8e..73682ef32b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_response_pb.proto index 3a7d228d49..674cb13f52 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_request_pb.proto index 48ae5f55c5..92ff03f23d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_response_pb.proto index 22c88f6326..6fe6c47e1a 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/receipt_type_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/receipt_type_pb.proto index 26c0a392d9..442bcd5061 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/receipt_type_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/receipt_type_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_request_pb.proto index 89e19e17d6..bc767a3761 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_response_pb.proto index 60b79b217b..35579c5b0f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_request_pb.proto index 683024811d..6357dccead 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_response_pb.proto index b00c411d46..fd96c1cac8 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_compiler_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_compiler_pb.proto index e447cecaac..ee8c9a8856 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_compiler_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_compiler_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_creation_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_creation_pb.proto index b5073addd8..f6cfbaa264 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_creation_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_creation_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_pb.proto index bf93685737..92673797dd 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_pb.proto index dac8dc88b2..a655fb9618 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_pb.proto index 62c4c17e5b..afc5736aa3 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_progress_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_progress_pb.proto index af3cdf8c2b..1bcaf98008 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_progress_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_progress_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_request_pb.proto index d95346c7bd..9b6ac112e0 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_pb.proto index dd2d55351f..d56a7cdb90 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_timestamp_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_timestamp_pb.proto index e4782e4d67..fe15c94e51 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_timestamp_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_timestamp_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_cactus_keychain_ref_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_cactus_keychain_ref_pb.proto index de6ae7a1e7..50c2fe367d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_cactus_keychain_ref_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_cactus_keychain_ref_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_none_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_none_pb.proto index 0b1a400338..64592e3462 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_none_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_none_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_pb.proto index 3ecf095691..7eb895f6e2 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_private_key_hex_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_private_key_hex_pb.proto index 43649b5e91..464cc68219 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_private_key_hex_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_private_key_hex_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_type_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_type_pb.proto index b3e6c468eb..832d3efaa7 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_type_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_type_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_transaction_receipt_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_transaction_receipt_pb.proto index b3e7692d10..f1fe52237e 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_transaction_receipt_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_transaction_receipt_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/services/default_service.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/services/default_service.proto index 9dcde570bb..5803e75600 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/services/default_service.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/services/default_service.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts index 15d28f064e..5a62e5ca06 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts index 296ff3bc90..5568da7c01 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts index 15911e772f..fd80614c11 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 3954e5b8dd..b293cdc4e0 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts index 05d45af6ea..79afd67157 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-cdl/CHANGELOG.md index a829523264..93f75c2d6a 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-cdl/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-cdl + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-cdl diff --git a/packages/cactus-plugin-ledger-connector-cdl/package.json b/packages/cactus-plugin-ledger-connector-cdl/package.json index 0c7cb6520d..17cb555253 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/package.json +++ b/packages/cactus-plugin-ledger-connector-cdl/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-cdl", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cacti nodes to connect to Fujitsu CDL.", "keywords": [ "Hyperledger", @@ -55,9 +55,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "sanitize-html": "2.12.1" }, diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/README.md index 1392c70841..7de5e17098 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on Fujitsu CDL service. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api/openapi.yaml index c26aa8e2ac..e184c9c557 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector CDL - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api_default.go index 0ef4d22754..60c5b09605 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/client.go index 18091a1dd4..7317e82886 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector CDL API v2.0.0 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector CDL API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/configuration.go index 3f1ff1bfb1..07bc85d972 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_access_token_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_access_token_v1.go index af3cac4a0f..a5f7aa3223 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_access_token_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_access_token_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_subscription_key_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_subscription_key_v1.go index 9a827232bf..22463f114b 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_subscription_key_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_subscription_key_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_v1.go index 0e138490f0..6f7de7f907 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_cdl_common_response_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_cdl_common_response_v1.go index 8962a6576f..176aaa4d51 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_cdl_common_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_cdl_common_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 57b409209d..b6f39285d9 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_event_lineage_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_event_lineage_v1.go index cfe62669f2..1576fb5566 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_event_lineage_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_event_lineage_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_gateway_configuration_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_gateway_configuration_v1.go index 24d1062c63..bec691ccb1 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_gateway_configuration_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_gateway_configuration_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_option_direction_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_option_direction_v1.go index 05095f66fd..be7e3ad678 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_option_direction_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_option_direction_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_request_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_request_v1.go index 74841a6097..d1c2304acd 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_response_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_response_v1.go index ed045ce587..a46997bfe1 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_request_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_request_v1.go index 8ce4cc3b2d..5e430591db 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_v1_response.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_v1_response.go index 55deba89ff..4e708749cd 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_request_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_request_v1.go index f1d2168274..b0ecb02599 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_response_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_response_v1.go index 8c22e09717..7f17460d65 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_type_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_type_v1.go index 4b60266125..354c21a954 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_type_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_trail_event_details_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_trail_event_details_v1.go index 6c5f886bed..7d434fbaf7 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_trail_event_details_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_trail_event_details_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/response.go index 958b632a41..85b06967e7 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/utils.go index 3a1b7b9cb8..fb33442a05 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.json index b5bbfae404..ee7fe28384 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector CDL", "description": "Can perform basic tasks on Fujitsu CDL service.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.tpl.json index b5bbfae404..ee7fe28384 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector CDL", "description": "Can perform basic tasks on Fujitsu CDL service.", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/api.ts index dd659e302d..eabef465d6 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/base.ts index ec44266b87..8dab4cfb5f 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/common.ts index 254b42f09e..b91709a4aa 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 0acd10ee1c..9b90b9b4eb 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/index.ts index 465bfb346f..81c611c17a 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-corda/CHANGELOG.md index e0edb80114..0ef5b6cbfb 100644 --- a/packages/cactus-plugin-ledger-connector-corda/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-corda/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-corda + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-corda diff --git a/packages/cactus-plugin-ledger-connector-corda/package.json b/packages/cactus-plugin-ledger-connector-corda/package.json index 4f819810df..5d6b767b46 100644 --- a/packages/cactus-plugin-ledger-connector-corda/package.json +++ b/packages/cactus-plugin-ledger-connector-corda/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-corda", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to a Corda ledger.", "keywords": [ "Hyperledger", @@ -57,9 +57,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "express": "4.21.0", "express-openapi-validator": "5.2.0", @@ -75,7 +75,7 @@ "urlcat": "3.1.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/multer": "1.4.7", diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/README.md b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/README.md index 54438b2bac..bc7dcd5491 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/README.md +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/README.md @@ -10,12 +10,12 @@ By default a [`pom.xml`](pom.xml) file will be generated. If you specified `grad To build the project using maven, run: ```bash -mvn package && java -jar target/cactus-connector-corda-server-2.0.0.jar +mvn package && java -jar target/cactus-connector-corda-server-2.1.0.jar ``` To build the project using gradle, run: ```bash -gradle build && java -jar build/libs/cactus-connector-corda-server-2.0.0.jar +gradle build && java -jar build/libs/cactus-connector-corda-server-2.1.0.jar ``` If all builds successfully, the server should run on [http://localhost:8080/](http://localhost:8080/) diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/gradle.properties b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/gradle.properties index f1859671a1..eeb1390c68 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/gradle.properties +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/gradle.properties @@ -1 +1 @@ -version = 2.0.0 +version = 2.1.0 diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/openapi-generator-config.yaml b/packages/cactus-plugin-ledger-connector-corda/src/main-server/openapi-generator-config.yaml index b15803ccf9..7ea9bd906c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/openapi-generator-config.yaml +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/openapi-generator-config.yaml @@ -6,7 +6,7 @@ additionalProperties: artifactId: cactus-connector-corda-server # TODO: Make sure this automatically gets bumped during releases so that it # remains in sync with the package.json version number. - artifactVersion: 2.0.0 + artifactVersion: 2.1.0 apiSuffix: PluginLedgerConnectorCorda basePackage: org.hyperledger.cactus.plugin.ledger.connector.corda.server packageName: org.hyperledger.cactus.plugin.ledger.connector.corda.server diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/start-app.sh b/packages/cactus-plugin-ledger-connector-corda/src/main-server/start-app.sh index 11cf1d4a1f..7cd0cb0e1e 100755 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/start-app.sh +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/start-app.sh @@ -13,4 +13,4 @@ EXTRA_JVM_ARGS="--add-opens java.base/java.util=ALL-UNNAMED ${EXTRA_JVM_ARGS}" EXTRA_JVM_ARGS="--add-opens java.base/java.time=ALL-UNNAMED ${EXTRA_JVM_ARGS}" EXTRA_JVM_ARGS="--add-opens java.base/java.io=ALL-UNNAMED ${EXTRA_JVM_ARGS}" -for i in 1 2 3; do java $EXTRA_JVM_ARGS -jar ${APP}/kotlin-spring/build/libs/cactus-connector-corda-server-2.0.0.jar && break || sleep 5; done +for i in 1 2 3; do java $EXTRA_JVM_ARGS -jar ${APP}/kotlin-spring/build/libs/cactus-connector-corda-server-2.1.0.jar && break || sleep 5; done diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/README.md index 3098f7a864..1a169017be 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Corda ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api/openapi.yaml index 7454312251..22c9878083 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector Corda - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api_default.go index f9461f232b..7220aab5eb 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/client.go index 1af87214ec..a68c74135f 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Corda API v2.0.0 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Corda API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/configuration.go index 1826de4bb5..c10edd2a12 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_request.go index de5a31ce65..6e91d4f6ae 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_response.go index 7afed0f8d6..c2bd79de3e 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_node_ssh_credentials.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_node_ssh_credentials.go index fac71d9912..b49ebfd030 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_node_ssh_credentials.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_node_ssh_credentials.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_rpc_credentials.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_rpc_credentials.go index bd3a6ff357..44abf40d7c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_rpc_credentials.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_rpc_credentials.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_x500_name.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_x500_name.go index 9e996a773f..505c73adae 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_x500_name.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_x500_name.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_deployment_config.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_deployment_config.go index 0aa8f03c1c..a78880abf5 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_deployment_config.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_deployment_config.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_info.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_info.go index 0109948bc5..d7b86c492c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_info.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_info.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cpiidv1.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cpiidv1.go index c86b864433..efcc8f4306 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cpiidv1.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cpiidv1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_bad_request_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_bad_request_v1_response.go index de2f2a4421..d64680a7ae 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_bad_request_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_bad_request_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_success_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_success_v1_response.go index fa3879280f..47e9f7e41e 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_success_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_success_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_v1_request.go index 63f8287028..71c14bb314 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_request.go index 506b24ffb2..74bfdf9571 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_response.go index 53041ac7c1..c609c48b17 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_invocation_type.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_invocation_type.go index f7c5250aff..28a9a3caa7 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses.go index 98fe3fd575..c0939f02f5 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses_flow_status_responses_inner.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses_flow_status_responses_inner.go index 71cb992f4d..35ad8919c5 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses_flow_status_responses_inner.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses_flow_status_responses_inner.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_v1_error.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_v1_error.go index 7515d556be..b73b9ca34d 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_v1_error.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_v1_error.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_request.go index 4d0badd975..23dadeb599 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_response.go index 419bdb1cc2..6672f15577 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_request.go index 3bd4235098..cd490e994c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response.go index 77029cb2ec..cc5c2f622f 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response_tx_inner.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response_tx_inner.go index 6b729b133c..2c6460064f 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response_tx_inner.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response_tx_inner.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go index 54a5de9f32..a401148265 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index aa84a6cad9..1dab220080 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jar_file.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jar_file.go index f543137f70..7f10ae8d9c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jar_file.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jar_file.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_object.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_object.go index e1fb00ea7b..309d10392d 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_object.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_object.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type.go index 03441a4a7d..c70017e70c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type_kind.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type_kind.go index d26dbe6d3c..fd818abf67 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type_kind.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type_kind.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_request.go index 5bb9051ea9..80837f46c4 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response.go index 1bf3df3546..85f1be929f 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner.go index 0ecd1424ea..0e37fb7195 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner_cpks_inner.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner_cpks_inner.go index 73c65995fd..e9ac475ed8 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner_cpks_inner.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner_cpks_inner.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_request.go index be3694c05d..9694c61142 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_response.go index 76a46fded8..7091caa8f4 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_network_host_and_port.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_network_host_and_port.go index f08b35301b..6e4646bdbc 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_network_host_and_port.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_network_host_and_port.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_diagnostic_info.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_diagnostic_info.go index 469ca11e4a..badd7593dd 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_diagnostic_info.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_diagnostic_info.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_info.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_info.go index b50af1940e..fb1e3ed093 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_info.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_info.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_party.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_party.go index b965654ddf..67cb5a333e 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_party.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_party.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_public_key.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_public_key.go index 7b051a3f47..e03812e2b6 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_public_key.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_public_key.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_sha256.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_sha256.go index 4ad814c83e..09a0a1eadb 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_sha256.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_sha256.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request.go index 046e28a60e..f54dd599e4 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request_request_body.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request_request_body.go index 8fe0b48559..3b507db218 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request_request_body.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request_request_body.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_response.go index c528c5c7ff..7684613563 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_request.go index 607261c8bc..2e229ebb5a 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_response.go index e393166ed7..60d2ae143d 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_request.go index cfad93d523..731feacb34 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_response.go index b2dd5b0cb4..be9fbd6bbd 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_vault_query_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_vault_query_v1_request.go index 78f50f55ab..4067b6a716 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_vault_query_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_vault_query_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_x500_principal.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_x500_principal.go index f9d5f423da..b17a6edd66 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_x500_principal.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_x500_principal.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/response.go index ba91bdfe9d..f89148d630 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/utils.go index b326463cf7..0d65fb51f4 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.json index 15887a7d37..678eea75c8 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Corda", "description": "Can perform basic tasks on a Corda ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.tpl.json index 15887a7d37..678eea75c8 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Corda", "description": "Can perform basic tasks on a Corda ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-ledger-connector-corda/src/main/kotlin/generated/openapi/kotlin-client/README.md index 669b9777fb..266090e798 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Corda ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/api.ts index 4757235f2c..934a67bc35 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/base.ts index ff21ac88e8..aa6b660b6d 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/common.ts index 2bdfd744d4..37df27bd52 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index f7e84ee975..c7f20ba2e8 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/index.ts index c73ebc377b..7a34bdcd9f 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-ethereum/CHANGELOG.md index 44d3e80a4d..9fe235a6b9 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-ethereum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-ethereum + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-ethereum diff --git a/packages/cactus-plugin-ledger-connector-ethereum/package.json b/packages/cactus-plugin-ledger-connector-ethereum/package.json index 4c1b066f4f..4545328b9d 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/package.json +++ b/packages/cactus-plugin-ledger-connector-ethereum/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-ethereum", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to a Ethereum ledger.", "keywords": [ "Hyperledger", @@ -68,9 +68,9 @@ "dependencies": { "@ethereumjs/common": "4.0.0", "@ethereumjs/tx": "5.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "ethers": "6.8.1", "express": "4.21.0", @@ -87,9 +87,9 @@ "web3-eth-contract": "4.2.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-geth-ledger": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-geth-ledger": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/js-yaml": "4.0.5", diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/README.md index 76144559bf..099f0a3452 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Ethereum ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml index 71b75f6713..5cf0321577 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector Ethereum - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api_default.go index 1b81b80a0f..8787daa948 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/client.go index 965bbfdeb1..5b792efcc1 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Ethereum API v2.0.0 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Ethereum API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/configuration.go index 2850edb5b3..e1516d3840 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json.go index ce98ea8062..0bcfd3092c 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json_definition.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json_definition.go index 0205dd4915..ca8306ad13 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json_definition.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json_definition.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_keychain_definition.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_keychain_definition.go index 9500551e31..256c2ab5bd 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_keychain_definition.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_keychain_definition.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go index 36d0aa4333..5ea05c9660 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request_contract.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request_contract.go index bcad0e3fba..2a93febbbb 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request_contract.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request_contract.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deployed_contract_json_definition.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deployed_contract_json_definition.go index 2c02e57866..e95c541442 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deployed_contract_json_definition.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deployed_contract_json_definition.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 0eb8c12243..afcfae0cb2 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go index 0656e89d13..fceffba5b4 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_web3_method.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_web3_method.go index e2c87b632a..869b84867c 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_web3_method.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_web3_method.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_ethereum_transaction_config.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_ethereum_transaction_config.go index f486c18162..ce6f45e022 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_ethereum_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_ethereum_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config.go index c552497ee9..895a763202 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_eip1559.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_eip1559.go index 688c0e1c50..47d189d71a 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_eip1559.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_eip1559.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_legacy.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_legacy.go index db8f0f74b1..afcf3ef6cd 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_legacy.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_legacy.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go index 04e988d601..401482f8f2 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request_contract.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request_contract.go index 4567300205..bc1a2c1682 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request_contract.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request_contract.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 7bdeeb8b7a..15c5d8b86b 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_request.go index e491e14883..f5ea3e9f0c 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_response.go index 210460657b..0a6247b0e4 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_request.go index f93a6b035b..5c56f8bdd2 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_response.go index 1761d270cf..2b13753978 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_request.go index 817a36aa93..7c6515b883 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 20139e59c9..dbfeae4cc5 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index 6f5c051d7b..fe85d5c18d 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data.go index 85cb4965cd..7d83b5f9b9 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data_timestamp.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data_timestamp.go index 0f25021724..7907704bf3 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data_timestamp.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data_timestamp.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go index 680623e540..69437a9bc7 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go index c13c238c2f..4ddbb03fd8 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_block_header.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_block_header.go index 2c73f005e2..dee6822b55 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_block_header.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_block_header.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 6c05c581ef..e7ac465e89 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cacti_keychain_ref.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cacti_keychain_ref.go index 6b1fe58120..ff1fc3d1b7 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cacti_keychain_ref.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cacti_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_geth_keychain_password.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_geth_keychain_password.go index 1c0cc635d7..72c1807cdc 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_geth_keychain_password.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_geth_keychain_password.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index b2980892fa..e7843363bb 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 8c16b9c519..7940665391 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 59e7925113..cf8c05a4da 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction.go index f36a6e399a..9050ee6a71 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index 1f28165b25..f22cff9d3e 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/response.go index 989dfb23db..dfb88f4646 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/utils.go index e743778a46..18771cece7 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.json index a514e73364..43463e661c 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Ethereum", "description": "Can perform basic tasks on a Ethereum ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.tpl.json index a514e73364..43463e661c 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Ethereum", "description": "Can perform basic tasks on a Ethereum ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts index b2b07765ec..9ff1bdd94c 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts index 2acd0fa120..770a6b0fdb 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts index 1564e9a48f..3f67328d64 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 74f961d1d5..9d1d5e169b 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts index 36fb8b40a4..ee521699be 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-fabric/CHANGELOG.md index c96e637050..f64e5c228a 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-fabric/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-fabric + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-fabric diff --git a/packages/cactus-plugin-ledger-connector-fabric/package.json b/packages/cactus-plugin-ledger-connector-fabric/package.json index d991b50033..54608263d4 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/package.json +++ b/packages/cactus-plugin-ledger-connector-fabric/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-fabric", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to a Fabric ledger.", "keywords": [ "Hyperledger", @@ -57,9 +57,9 @@ }, "dependencies": { "@fidm/x509": "1.2.1", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "bl": "6.0.16", "bn.js": "4.12.0", @@ -92,8 +92,8 @@ "ws-identity-client": "1.0.2" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/bn.js": "5.1.0", "@types/body-parser": "1.19.4", "@types/elliptic": "6.4.16", diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/README.md index cb335cd9c6..9eab528d23 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a fabric ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml index 1f6abb3855..78ca097f17 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Fabric - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api_default.go index 2b8bdb2e4b..b972d9cec4 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/client.go index ad595f5be7..e7f37e0e13 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Fabric API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Fabric API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/configuration.go index 77272bb122..3e0026cc46 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_event_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_event_v1.go index 27bb5e699b..5755320448 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_event_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_event_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_response_v1.go index aed93ffd47..aed69f8316 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transaction_event_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transaction_event_v1.go index 940233337e..fc723ee16d 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transaction_event_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transaction_event_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transactions_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transactions_response_v1.go index 731b6ede57..8a1132b2e4 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transactions_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transactions_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_language_runtime.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_language_runtime.go index a690306442..d6ab93ad9b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_language_runtime.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_language_runtime.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_life_cycle_command_responses.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_life_cycle_command_responses.go index eee183d77c..3bd6a32d36 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_life_cycle_command_responses.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_life_cycle_command_responses.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_programming_language.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_programming_language.go index 210aabd469..4593563c7a 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_programming_language.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_programming_language.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile.go index aeea5b0376..d12d2dae02 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile_client.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile_client.go index e83d27388e..5b6ef68136 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile_client.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile_client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_default_event_handler_strategy.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_default_event_handler_strategy.go index b92399345c..65bf55aeaf 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_default_event_handler_strategy.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_default_event_handler_strategy.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_501_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_501_response.go index 07884fff01..e44e130a74 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_501_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_501_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request.go index dc212f9132..c46649460e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request_constructor_args.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request_constructor_args.go index 71719ff9d8..0b8c2b02cf 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request_constructor_args.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request_constructor_args.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_response.go index 9ace48270b..2c0bb95df8 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go index 106c6ae254..eed3fee7e6 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go index da8396c88e..3560d72235 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_org_fabric2x.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_org_fabric2x.go index 08606d8417..c5379a98c0 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_org_fabric2x.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_org_fabric2x.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_organization.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_organization.go index e193d1cfa8..998eea9446 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_organization.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_organization.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 613a346aa4..d810c4a727 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_certificate_identity_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_certificate_identity_v1.go index 93ba43f152..0e9387e083 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_certificate_identity_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_certificate_identity_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_contract_invocation_type.go index ac8a13206c..ae1177bbd5 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential.go index 4d39ed5aa6..1cc1a2fbf7 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential_type.go index 95bdc1d348..339379126e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_x509_certificate_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_x509_certificate_v1.go index f23d35549e..6f5995b62e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_x509_certificate_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_x509_certificate_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_file_base64.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_file_base64.go index 2cb412df8d..b79d76d393 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_file_base64.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_file_base64.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_action_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_action_v1.go index 6119458028..25867a3191 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_action_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_action_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_endorsement_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_endorsement_v1.go index 394fe21984..69dab19407 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_endorsement_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_endorsement_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_event_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_event_v1.go index 0b0a0a6036..07b944b539 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_event_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_event_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_discovery_options.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_discovery_options.go index 23e15029b8..3f799d8755 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_discovery_options.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_discovery_options.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_event_handler_options.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_event_handler_options.go index 0020cd3db0..f9732f823f 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_event_handler_options.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_event_handler_options.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options.go index e069d10f7c..bd5aeb23cd 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options_wallet.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options_wallet.go index 0f0c1cc370..00ee3b2323 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options_wallet.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options_wallet.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1.go index 97e3c586dc..7e8162ca47 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query.go index 0ab0c3702d..30b04e40b8 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query_block_hash.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query_block_hash.go index fb89fc4da9..86073651eb 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query_block_hash.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query_block_hash.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_decoded_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_decoded_v1.go index 0f2b630f06..863e55e348 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_decoded_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_decoded_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_encoded_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_encoded_v1.go index 8165d71426..8669e370c8 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_encoded_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_encoded_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_type_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_type_v1.go index 75bbdd213b..eb80533301 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_type_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_v1.go index 8b1650cd0e..a2c3fd9cad 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_request_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_request_v1.go index a541db55aa..0f2e393c55 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_response_v1.go index 753305dfb3..eefa36fed7 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_transaction_receipt_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_transaction_receipt_response.go index 75ba91d72f..c101446b89 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_transaction_receipt_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_transaction_receipt_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_delegated_sign_transaction_request.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_delegated_sign_transaction_request.go index 95065d0e99..0e5d37264d 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_delegated_sign_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_delegated_sign_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_request.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_request.go index 1d1ad1e674..f9658bf49f 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 0b48e91d61..3264146334 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response_type.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response_type.go index 6b77a36ce6..778c74a971 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response_type.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_ssh_exec_command_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_ssh_exec_command_response.go index db495b5e95..4e385b8dc6 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_ssh_exec_command_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_ssh_exec_command_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_block_meta_data.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_block_meta_data.go index 1fac5c8bbd..6fe52e81fe 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_block_meta_data.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_block_meta_data.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_creator.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_creator.go index 3588d9cc44..72879d54dc 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_creator.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_creator.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_endorsement.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_endorsement.go index 3e5d15b349..2ec5a4f9ce 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_endorsement.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_endorsement.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_vault_transit_key.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_vault_transit_key.go index e5c3d410de..ab6f6f5d4c 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_vault_transit_key.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_vault_transit_key.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_error_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_error_response_v1.go index 98f1c1f14d..c912981098 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_error_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_error_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_delegated_sign_options_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_delegated_sign_options_v1.go index bccc4557e3..db2f40251f 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_delegated_sign_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_delegated_sign_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_filtered_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_filtered_response_v1.go index b165ba2251..6a0d077ae3 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_filtered_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_filtered_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_full_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_full_response_v1.go index fcee751af7..de4308e4a0 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_full_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_full_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_listener_type_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_listener_type_v1.go index bf4fa4409d..88f61fda81 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_listener_type_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_listener_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go index fcf9d33b19..1d8cf1b40c 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_private_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_private_response_v1.go index 8fd1306920..ba23ada87f 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_private_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_private_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go index f83b4a7359..dbb21f03c5 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index 75978d4a60..8873af33eb 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_web_socket_key.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_web_socket_key.go index 8128fa19e9..bec90bc72b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_web_socket_key.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_web_socket_key.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/response.go index 51116b07d9..d0fb56bc1e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/utils.go index cc6a626d58..4d605eb104 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.json index ca384261e4..b27326c92b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Fabric", "description": "Can perform basic tasks on a fabric ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.tpl.json index ca384261e4..b27326c92b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Fabric", "description": "Can perform basic tasks on a fabric ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-ledger-connector-fabric/src/main/kotlin/generated/openapi/kotlin-client/README.md index 35464629d2..48208f638b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a fabric ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts index 4ba11dde84..4dbaabd1dd 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts index 2c86ce5b52..4b7013c0d8 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts index 0aaa3ee091..00ab15857f 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 257d2b2e09..5fbb6346e2 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts index 957a193ca4..ff844ac898 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-iroha2/CHANGELOG.md index 6f16540a0a..526b3a4b5e 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-iroha2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-iroha2 + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-iroha2 diff --git a/packages/cactus-plugin-ledger-connector-iroha2/package.json b/packages/cactus-plugin-ledger-connector-iroha2/package.json index 3e032ecdea..e1ab8e8ab0 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/package.json +++ b/packages/cactus-plugin-ledger-connector-iroha2/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-iroha2", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to an Iroha V2 ledger.", "keywords": [ "Hyperledger", @@ -47,9 +47,9 @@ "generate-sdk:typescript-axios": "openapi-generator-cli generate -i ./src/main/json/openapi.json -g typescript-axios -o ./src/main/typescript/generated/openapi/typescript-axios/ --reserved-words-mappings protected=protected --ignore-file-override ../../openapi-generator-ignore" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "@iroha2/client": "4.0.0", "@iroha2/crypto-core": "0.1.1", "@iroha2/crypto-target-node": "0.4.0", @@ -65,8 +65,8 @@ "undici": "6.19.8" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/express": "5.0.0", "@types/sanitize-html": "2.9.5", "body-parser": "1.20.3", diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/README.md index cd74baa21b..1c7e323da0 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Iroha V2 ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api/openapi.yaml index 0ed071e3aa..2559271a84 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Iroha V2 - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api_default.go index 108500ef37..8ff9d07fe7 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/client.go index 334060fa51..8013679724 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Iroha V2 API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Iroha V2 API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/configuration.go index f4900aea61..7fc9d61129 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_block_type_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_block_type_v1.go index 0af2ff9950..012d2f0cbf 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_block_type_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_block_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 974e910f7b..a1194035cf 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1.go index 65d1c7f897..7058a98a97 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1_request.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1_request.go index 6c34d142fc..4856610506 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_account_id.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_account_id.go index b5c885479f..ec4798ac4c 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_account_id.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_account_id.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config.go index 4db75183da..7bf42354e5 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_signing_credential.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_signing_credential.go index 794b7ff345..aff6b094d2 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_torii.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_torii.go index ea84fd1472..81016f9c2b 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_torii.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_torii.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_json.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_json.go index 6237a56d4c..f6c14b8c90 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_json.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_json.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_pair.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_pair.go index 5eeb95aa63..e123d7bfed 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_pair.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_pair.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction.go index e8e3a6ebf7..4ad75b1419 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction_request_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction_request_v1.go index ec6f004db1..7adc012c9c 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query.go index 3834094a7e..b4eb09d30e 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query_definition_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query_definition_v1.go index 4c11e016f3..51efb9da9f 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query_definition_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query_definition_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_signed_query_definition_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_signed_query_definition_v1.go index e21eced95d..fabd141fde 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_signed_query_definition_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_signed_query_definition_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1.go index 6a781acdf7..2b66058a04 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1_instruction.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1_instruction.go index 6ef59b2692..4a371ba8df 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1_instruction.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1_instruction.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_parameters_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_parameters_v1.go index 351389397a..783916c0b1 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_parameters_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_parameters_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_keychain_reference.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_keychain_reference.go index e27d5dec6f..4a018e7672 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_keychain_reference.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_keychain_reference.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_request_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_request_v1.go index e4f0a45b33..cd105109d3 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_response_v1.go index 777eb86b30..f83dd245de 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_request_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_request_v1.go index c9c248765c..ae41fd997f 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_response_v1.go index 87a1a9d0af..c4f0f1ee70 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transaction_status_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transaction_status_v1.go index 880e04650b..468dceb582 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transaction_status_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transaction_status_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_binary_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_binary_response_v1.go index 962e7aaabf..c715cfc810 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_binary_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_binary_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go index 2ba634ed76..e514c2227f 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_raw_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_raw_response_v1.go index f479bc283a..8c5bd30a74 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_raw_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_raw_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go index 3a02d2925e..18ecba3c63 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index f91f6d7144..60558d1b5c 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/response.go index a0e507de98..0c8d5ac7d6 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/utils.go index eb77df8980..b5233425dd 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.json index fa139c35fd..90e9090572 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Iroha V2", "description": "Can perform basic tasks on a Iroha V2 ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.tpl.json index fa139c35fd..90e9090572 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Iroha V2", "description": "Can perform basic tasks on a Iroha V2 ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/api.ts index b7d803f2c7..3348df96a6 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/base.ts index a1496aee98..14c2261164 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/common.ts index 16816b22a9..1e1e111505 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 2230207df2..fb62f86fc3 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/index.ts index 135272844c..18b147d8f6 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-polkadot/CHANGELOG.md index 42821cf0c2..790cbe96f2 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-polkadot/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-polkadot + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-polkadot diff --git a/packages/cactus-plugin-ledger-connector-polkadot/package.json b/packages/cactus-plugin-ledger-connector-polkadot/package.json index 1af45eac80..c26d420bbc 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/package.json +++ b/packages/cactus-plugin-ledger-connector-polkadot/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-polkadot", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to a Substrate ledger.", "keywords": [ "Hyperledger", @@ -65,9 +65,9 @@ "webpack:prod:web": "webpack --env=prod --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "@polkadot/api": "10.9.1", "@polkadot/api-contract": "10.9.1", "@polkadot/rpc-provider": "10.9.1", @@ -93,8 +93,8 @@ "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/express": "5.0.0", "@types/joi": "17.2.3", "@types/multer": "1.4.7", diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/README.md index 137d3b68e3..19e2ec00b9 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Polkadot parachain ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api/openapi.yaml index b18122cfed..d35c574354 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Polkadot - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api_default.go index 7655791e4d..c12211ec36 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/client.go index befeb3c2b7..9669a3133a 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Polkadot API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Polkadot API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/configuration.go index e73762267a..d459ecf267 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request.go index 1f5178dae1..dc92c38122 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_balance.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_balance.go index 7f46a68c6c..c365b23e7f 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_balance.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_balance.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_gas_limit.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_gas_limit.go index 189a9e6748..4c02cd8254 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_gas_limit.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_gas_limit.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_salt.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_salt.go index e31c6cb992..ab6144ece3 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_salt.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_salt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_storage_deposit_limit.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_storage_deposit_limit.go index b62ecad786..abacdd1c40 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_storage_deposit_limit.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_storage_deposit_limit.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_response.go index dcda6401e3..c6749f2a90 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_error_exception_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_error_exception_response.go index 19faabf94c..d36cb93f35 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_error_exception_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_error_exception_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_request.go index 25289eab14..a94d6bf8dd 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_response.go index a9bb4cbb96..f33ac5407b 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_contract_invocation_type.go index 7ab74672c8..ce8abeeeaf 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config.go index ecaa3246ce..972e804a27 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_transfer_submittable.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_transfer_submittable.go index 9f4bbc66f4..4e52d8aabb 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_transfer_submittable.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_transfer_submittable.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_value.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_value.go index 27832112a5..7fc351b633 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_value.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_value.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_request.go index 2fdae1e1ef..bbcabc56be 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response.go index 8097ded529..f772ff26db 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_data.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_data.go index ac316cf145..78f62a1680 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_data.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_data.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_response_container.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_response_container.go index 8ae72f0537..681b3b342d 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_response_container.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_response_container.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_request.go index be417ca3cf..0d034561e0 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 453f1558f7..157efaa55f 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_request.go index a8c33e0110..2b63e1a802 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_response.go index 406b770e6e..6036703da7 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_request.go index 2bed45a98b..1aacfa33e9 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response.go index dc65331b21..2c4f0b6014 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_data.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_data.go index 23fb12524c..2101d33a16 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_data.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_data.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_response_container.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_response_container.go index 0e047e8d6e..b789566246 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_response_container.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_response_container.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 84193084f3..4b2c16110e 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 7e6860968e..f73ea198bc 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_mnemonic_string.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_mnemonic_string.go index be58b326ef..5214aa5da4 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_mnemonic_string.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_mnemonic_string.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index e56b8bdda0..1bf4caeb49 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 8e3ea5fac4..4f0a9890e6 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/response.go index 5809aff25c..9096167943 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/utils.go index fffe7d44a9..f7609b4643 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.json index cc540c9bf9..cb4139ffb3 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Polkadot", "description": "Can perform basic tasks on a Polkadot parachain", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.tpl.json index cc540c9bf9..cb4139ffb3 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Polkadot", "description": "Can perform basic tasks on a Polkadot parachain", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/api.ts index 45c43dd11d..2c92083af5 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/base.ts index dc0a06aeeb..127fa777d8 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/common.ts index f55f40d035..654ba93314 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 6d6c7c5b9f..4a23d49627 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/index.ts index c01d5b111e..e03db2ed13 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/test/rust/ink/flipper/Cargo.toml b/packages/cactus-plugin-ledger-connector-polkadot/src/test/rust/ink/flipper/Cargo.toml index f69e0b0ac5..3221fc3ec9 100755 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/test/rust/ink/flipper/Cargo.toml +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/test/rust/ink/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "2.0.0" +version = "2.1.0" authors = ["[your_name] <[your_email]>"] edition = "2021" diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-sawtooth/CHANGELOG.md index 4e204326ef..a3366038f1 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-sawtooth/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-sawtooth + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-sawtooth diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/package.json b/packages/cactus-plugin-ledger-connector-sawtooth/package.json index 6ab2944826..7a26dc3fb1 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/package.json +++ b/packages/cactus-plugin-ledger-connector-sawtooth/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-sawtooth", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to a Sawtooth ledger.", "keywords": [ "Hyperledger", @@ -56,16 +56,16 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "cbor": "9.0.1", "rxjs": "7.8.1", "socket.io-client-fixed-types": "4.5.4" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/express": "5.0.0", "@types/uuid": "10.0.0", "body-parser": "1.20.3", diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/README.md index 06b4fc5c0a..b53c1a04ed 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Sawtooth ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api/openapi.yaml index bf905d28d8..93b99a5ca7 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector Sawtooth - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api_default.go index 66b0e173c7..d820ba948c 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/client.go index 9ddcb54e76..7ebba0446f 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Sawtooth API v2.0.0 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Sawtooth API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/configuration.go index 66c7ded92a..6b579e04e5 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1.go index c324476071..5e24b80f19 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1_all_of.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1_all_of.go index fa3260e37b..c40248fd7d 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1_all_of.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1_all_of.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 702ea339cf..eebb9a01fc 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_header_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_header_v1.go index 954a9ba319..5a721b7f97 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_header_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_header_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_v1.go index 4034f3457b..58a581e41b 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_header_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_header_v1.go index 8efd1d54c8..3d324a8171 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_header_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_header_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_v1.go index 031c0fe563..10f68648dd 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_header_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_header_v1.go index 86f4c5fd02..2b8b89c718 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_header_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_header_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_v1.go index f5de1ba438..f9d1593ef4 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_status_response_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_status_response_v1.go index 00303209f8..da3c6ae698 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_status_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_status_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index ddee5ae093..360715fbb6 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_cacti_transactions_response.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_cacti_transactions_response.go index 991d4df160..5a4a7eb8f1 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_cacti_transactions_response.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_cacti_transactions_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_full_response.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_full_response.go index 042a810fc8..86f62fc350 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_full_response.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_full_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_listener_type.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_listener_type.go index 63cfc18120..0bd7e3254c 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_listener_type.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_listener_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go index 462e8e9e06..1344d33290 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go index b3625aecad..54980d9302 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_transaction_filter.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_transaction_filter.go index daa1ee495c..1f330ef351 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_transaction_filter.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_transaction_filter.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/response.go index 1dd4efd660..880cc86cf5 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/utils.go index 3e0a55cf90..0a8bcab2c2 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.json index bb5e99fa46..3b9c16a58f 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Sawtooth", "description": "Can perform basic tasks on a Sawtooth ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.tpl.json index bb5e99fa46..3b9c16a58f 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Sawtooth", "description": "Can perform basic tasks on a Sawtooth ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/api.ts index 07172ad877..43b2052ef5 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/base.ts index 43361ffdf6..68ae28c5b5 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/common.ts index f05c0b66bf..457b20c362 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index c7b196d992..7eb6fab03a 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/index.ts index 7cc5b0bcda..212f627560 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-xdai/CHANGELOG.md index b37212db32..30649bd92f 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-xdai/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-xdai + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-xdai diff --git a/packages/cactus-plugin-ledger-connector-xdai/package.json b/packages/cactus-plugin-ledger-connector-xdai/package.json index 54dd614639..96c10f635c 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/package.json +++ b/packages/cactus-plugin-ledger-connector-xdai/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-xdai", - "version": "2.0.0", + "version": "2.1.0", "description": "Allows Cactus nodes to connect to a Xdai ledger.", "keywords": [ "Hyperledger", @@ -55,9 +55,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", "axios": "1.7.7", "express": "4.21.0", "joi": "17.13.3", @@ -71,8 +71,8 @@ "web3-utils": "1.6.1" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "body-parser": "1.20.3", diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/README.md index 99a70473c6..a4e89c6542 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Xdai ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api/openapi.yaml index 4a5d657d81..420433eb49 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Xdai - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api_default.go index d5b72b2476..7224b3d6e5 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/client.go index 19e07729ba..5e2563ca97 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Xdai API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Xdai API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/configuration.go index e4a842bc30..2303db33f0 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_consistency_strategy.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_consistency_strategy.go index c564ef4291..218cbd9129 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_consistency_strategy.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_consistency_strategy.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_contract_json.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_contract_json.go index 5b8652d295..a060435a94 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_contract_json.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_contract_json.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_json_object_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_json_object_v1_request.go index 386fcca71c..9d90dfc4a6 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_json_object_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_json_object_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go index 04707d93d2..41599ef03c 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go index cbf0888de0..d567dc888d 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_request_base_v1.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_request_base_v1.go index 4f1152f06d..08840159f1 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_request_base_v1.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_request_base_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go index e5dd9c3216..5ad926c2c5 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_json_object_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_json_object_v1_request.go index e48b435737..c495f70667 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_json_object_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_json_object_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go index de11a44ee0..026423be4f 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 164dbbc3ce..b2942cad5c 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_request_base_v1.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_request_base_v1.go index dfaee9a5a1..aa764bb586 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_request_base_v1.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_request_base_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_receipt_type.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_receipt_type.go index db019be391..602f258e4e 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_receipt_type.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_receipt_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_request.go index 05188e5e60..dd2693bba3 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_response.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_response.go index 1a12833e47..1a1b4c3c7a 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go index a67e5d0001..d0c1d57067 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go index 438f9fc848..eb8f700691 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go index f5568ecfe5..16d2fa3212 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go index f49df7ead9..803c7f228d 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 347aabe392..eb2ef73e7a 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 91c7acfa8b..0f022536cc 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 384d222879..4e627d22f7 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 0f65a7af22..46449b36e7 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index d82774876d..687717c40c 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index 6ddc31f02d..22426624c4 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config.go index 9c84d6a934..b890d0eb5a 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_from.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_from.go index 8015b73dde..f77e13631e 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_from.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_from.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_to.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_to.go index e861a31151..82f85e669e 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_to.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_to.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/response.go index 95aeeb80f1..7f33744be0 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/utils.go index f186094695..c6f0fe95bf 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.json index a582896548..2238b1878d 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Xdai", "description": "Can perform basic tasks on a Xdai ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.tpl.json index a582896548..2238b1878d 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Xdai", "description": "Can perform basic tasks on a Xdai ledger", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/api.ts index 9f262fc58f..cbd8c15ece 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/base.ts index 342fe57a37..9d7637621f 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/common.ts index ccd2b5c4cb..248c45ab8a 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 092f2f8517..b4d878b27c 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/index.ts index 6c7c640093..59a686b646 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/CHANGELOG.md b/packages/cactus-plugin-persistence-ethereum/CHANGELOG.md index bad177eec0..79ea1de82e 100644 --- a/packages/cactus-plugin-persistence-ethereum/CHANGELOG.md +++ b/packages/cactus-plugin-persistence-ethereum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-ethereum + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-ethereum diff --git a/packages/cactus-plugin-persistence-ethereum/package.json b/packages/cactus-plugin-persistence-ethereum/package.json index 638aefd49b..293b6a76a8 100644 --- a/packages/cactus-plugin-persistence-ethereum/package.json +++ b/packages/cactus-plugin-persistence-ethereum/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-persistence-ethereum", - "version": "2.0.0", + "version": "2.1.0", "description": "Persistence plugin for Ethereum ledgers to store data into a database.", "keywords": [ "Hyperledger", @@ -62,10 +62,10 @@ }, "dependencies": { "@ethersproject/abi": "5.7.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.1.0", "async-mutex": "0.4.0", "axios": "1.7.7", "pg": "8.8.0", @@ -75,10 +75,10 @@ "web3-validator": "2.0.2" }, "devDependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-geth-ledger": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-geth-ledger": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@openapitools/openapi-generator-cli": "2.7.0", "@types/express": "5.0.0", "@types/pg": "8.6.5", diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/README.md index 864b8f2954..6ec939d7e0 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Synchronizes state of an ethereum ledger into a DB that can later be viewed in G ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml index 48dcafc376..a7d45644e6 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -6,7 +6,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Persistence Ethereum - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api_default.go index 52c6c3c318..c15cae8fbc 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/client.go index 74f6f6649c..22ef7e588c 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Persistence Ethereum API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Persistence Ethereum API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/configuration.go index b74af4bcee..bb2de25484 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index a9dd34a24d..365a31435a 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_monitored_token.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_monitored_token.go index 057e2e1c2a..3947941cdc 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_monitored_token.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_monitored_token.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_status_response_v1.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_status_response_v1.go index beeea27206..16e47add62 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_status_response_v1.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_status_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_token_type_v1.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_token_type_v1.go index 4a55785a30..baeaa2efa3 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_token_type_v1.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_token_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go index 2969d32a8d..3dc0ad3668 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/response.go index 67e58a71fa..29ac18334a 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/utils.go index 9cf5a966fd..919ace6b9f 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.json b/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.json index 4b1bc3d68c..e78c9af42c 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.json +++ b/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Persistence Ethereum", "description": "Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.tpl.json b/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.tpl.json index 4b1bc3d68c..e78c9af42c 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Persistence Ethereum", "description": "Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts index f9d1fce802..1811a4ef80 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts index 75e763ac59..30d5fbb0bf 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts index 61e52720d0..a900da04b0 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 44f78a1af4..176c1ead2c 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts index b9f0c8b2b2..39c266d359 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/CHANGELOG.md b/packages/cactus-plugin-persistence-fabric/CHANGELOG.md index 9086cab28d..eedcb47ea6 100644 --- a/packages/cactus-plugin-persistence-fabric/CHANGELOG.md +++ b/packages/cactus-plugin-persistence-fabric/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-fabric + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-fabric diff --git a/packages/cactus-plugin-persistence-fabric/package.json b/packages/cactus-plugin-persistence-fabric/package.json index 4482a0e6ce..1d0b5c500e 100644 --- a/packages/cactus-plugin-persistence-fabric/package.json +++ b/packages/cactus-plugin-persistence-fabric/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-persistence-fabric", - "version": "2.0.0", + "version": "2.1.0", "description": "Persistence plugin for Fabric ledgers to store data into a database.", "keywords": [ "Hyperledger", @@ -62,10 +62,10 @@ "watch": "npm-watch" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", "async-mutex": "0.4.0", "axios": "1.7.7", "pg": "8.8.0", @@ -73,9 +73,9 @@ "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@openapitools/openapi-generator-cli": "2.7.0", "@types/express": "5.0.0", "@types/pg": "8.6.5", diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/README.md index 2948d62b2d..118dbf4097 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml index d189229fb3..050a9d59bb 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -6,7 +6,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Persistence Fabric - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api_default.go index 669cc86e74..dcc4a4252f 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/client.go index c3485ebd6f..0798c9b3be 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Persistence Fabric API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Persistence Fabric API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/configuration.go index 035095c4b7..c23b5fa587 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index d3a0e47d39..75398ba649 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_status_response_v1.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_status_response_v1.go index 41b1569200..ed059cf26a 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_status_response_v1.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_status_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go index dbec934be8..70c9d509c5 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/response.go index b29ebed98c..f3f5348f6d 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/utils.go index cd4ed96520..34db296761 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json index 5b996f0b3a..a0438776ed 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json +++ b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Persistence Fabric", "description": "Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json index 5b996f0b3a..a0438776ed 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Persistence Fabric", "description": "Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts index 801baa74fc..76733ba783 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts index 96fed85330..f91273570d 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts index 58a04f2ed7..09b2a5a0c7 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 27ea164448..a5449a7b6d 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts index 04463a122d..bc7ba95909 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/CHANGELOG.md b/packages/cactus-plugin-satp-hermes/CHANGELOG.md index deeb2d09b6..9569345ed3 100644 --- a/packages/cactus-plugin-satp-hermes/CHANGELOG.md +++ b/packages/cactus-plugin-satp-hermes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-satp-hermes + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-plugin-satp-hermes diff --git a/packages/cactus-plugin-satp-hermes/package.json b/packages/cactus-plugin-satp-hermes/package.json index 1f6333ffe6..b36407e8c2 100644 --- a/packages/cactus-plugin-satp-hermes/package.json +++ b/packages/cactus-plugin-satp-hermes/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-satp-hermes", - "version": "2.0.0", + "version": "2.1.0", "description": "Proof of concept of ODAP", "keywords": [ "Hyperledger", @@ -50,15 +50,15 @@ "watch": "npm-watch" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-plugin-object-store-ipfs": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-plugin-object-store-ipfs": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "axios": "1.7.7", "crypto-js": "4.2.0", "fs-extra": "11.2.0", diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/README.md index 01a3ac2b43..35660cca00 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Implementation for Odap and Hermes ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api/openapi.yaml index a16486900a..a5d2f40ebb 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Odap Hermes - version: 2.0.0 + version: 2.1.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api_default.go index 1805964564..ce70d47347 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/client.go index e2adcc5c7f..fb4270a69c 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Odap Hermes API v2.0.0 +// APIClient manages communication with the Hyperledger Cactus Plugin - Odap Hermes API v2.1.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/configuration.go index d5b165fd8e..7ec0faf598 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_asset_profile.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_asset_profile.go index 4501cb7c8f..1cafd0647e 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_asset_profile.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_asset_profile.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request.go index feb8bd7eba..09dd7dc5ea 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request_client_gateway_configuration.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request_client_gateway_configuration.go index 070d49e9bc..1e4a56c963 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request_client_gateway_configuration.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request_client_gateway_configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_request.go index 960770ecbe..ff7ce34054 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_response.go index b9d1583a95..5c12279966 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_request.go index 04ca5d6e14..1af1cff352 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_response.go index 0cc74e0df7..457c00aa48 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_credential_profile.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_credential_profile.go index a28279990c..d1f7e2d4ae 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_credential_profile.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_credential_profile.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_history.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_history.go index a119e0a93a..94507e8881 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_history.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_history.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_local_log.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_local_log.go index 6b6c8d5f41..bc3705fbf5 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_local_log.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_local_log.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_request.go index 642a21891d..dd450ad1ea 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_response.go index f0af1b4fda..d2bd5028c4 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_payload_profile.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_payload_profile.go index 3deff32bd2..90a9d18bc8 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_payload_profile.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_payload_profile.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_success_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_success_v1_message.go index bd42614a80..4e0b8ecb00 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_success_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_success_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_ack_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_ack_v1_message.go index dc7fda9c3a..13589366a0 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_ack_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_ack_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_v1_message.go index 587da6482e..8243c91f45 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_v1_message.go index e1e06a7c03..6948fe48e7 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_ack_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_ack_v1_message.go index 2d7782bb6a..23b949c839 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_ack_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_ack_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_v1_message.go index f18f272542..f00e220057 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message.go index 8274e45c98..4eb2eafbbf 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message_action_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message_action_response.go index dd7f0fc611..882c8ddb30 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message_action_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message_action_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_session_data.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_session_data.go index d82664b431..7152c91ecf 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_session_data.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_session_data.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_request.go index 5ddf2dab22..a30d3d94c0 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_response.go index 13ecb2ee0d..270c1eed31 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_complete_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_complete_v1_request.go index a183fe3479..d71bd8564e 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_complete_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_complete_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_request.go index 3690c31ed2..3e0aa3a499 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_response.go index 0fc1dd8548..e0976b0501 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/response.go index ca470973bd..07ead94373 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/utils.go index b83a09e0e6..4e7cb2d30c 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0 +API version: 2.1.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/json/openapi.json b/packages/cactus-plugin-satp-hermes/src/main/json/openapi.json index ed0fdbe78b..838b4a979e 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/json/openapi.json +++ b/packages/cactus-plugin-satp-hermes/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Odap Hermes", "description": "Implementation for Odap and Hermes", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-satp-hermes/src/main/json/openapi.tpl.json b/packages/cactus-plugin-satp-hermes/src/main/json/openapi.tpl.json index ed0fdbe78b..838b4a979e 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-satp-hermes/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Odap Hermes", "description": "Implementation for Odap and Hermes", - "version": "2.0.0", + "version": "2.1.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-satp-hermes/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-satp-hermes/src/main/kotlin/generated/openapi/kotlin-client/README.md index b2679aa1bb..9c132e9be5 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-satp-hermes/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Implementation for Odap and Hermes ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0 +- API version: 2.1.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts index d83286b979..1124ba5bc7 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts index 0e72a3c2f0..df6c06ca5d 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts index 165771e4c1..53b113f051 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 17eef2df4b..cf3c0becfe 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts index c3bcfed9ec..69c59e5813 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0 + * The version of the OpenAPI document: 2.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-test-api-client/CHANGELOG.md b/packages/cactus-test-api-client/CHANGELOG.md index 49c026ac0a..a4527271e1 100644 --- a/packages/cactus-test-api-client/CHANGELOG.md +++ b/packages/cactus-test-api-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-api-client + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-api-client diff --git a/packages/cactus-test-api-client/package.json b/packages/cactus-test-api-client/package.json index 2d0836d4ea..989eb8ea24 100644 --- a/packages/cactus-test-api-client/package.json +++ b/packages/cactus-test-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-api-client", - "version": "2.0.0", + "version": "2.1.0", "description": "Integration tests for the Cactus API Client package (formerly known as the Cactus SDK package that has been renamed for to purpose of being less ambiguous)", "keywords": [ "Hyperledger", @@ -50,19 +50,19 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", "jose": "4.15.5", "uuid": "10.0.0", "web3": "1.6.1" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/uuid": "10.0.0" }, "engines": { diff --git a/packages/cactus-test-cmd-api-server/CHANGELOG.md b/packages/cactus-test-cmd-api-server/CHANGELOG.md index aa8784b7eb..88fc07a557 100644 --- a/packages/cactus-test-cmd-api-server/CHANGELOG.md +++ b/packages/cactus-test-cmd-api-server/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-cmd-api-server + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-cmd-api-server diff --git a/packages/cactus-test-cmd-api-server/package.json b/packages/cactus-test-cmd-api-server/package.json index 77073cd7e1..3f24b50edd 100644 --- a/packages/cactus-test-cmd-api-server/package.json +++ b/packages/cactus-test-cmd-api-server/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-cmd-api-server", - "version": "2.0.0", + "version": "2.1.0", "description": "Integration tests for the Cactus API Client package (formerly known as the Cactus SDK package that has been renamed for to purpose of being less ambiguous)", "keywords": [ "Hyperledger", @@ -50,17 +50,17 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-vault": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-vault": "2.1.0", "express-jwt-authz": "2.4.1", "jose": "4.15.5", "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/uuid": "10.0.0" }, "engines": { diff --git a/packages/cactus-test-geth-ledger/CHANGELOG.md b/packages/cactus-test-geth-ledger/CHANGELOG.md index 5a02c95b70..ed4f21573c 100644 --- a/packages/cactus-test-geth-ledger/CHANGELOG.md +++ b/packages/cactus-test-geth-ledger/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cactus/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-geth-ledger + # [2.0.0](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-geth-ledger diff --git a/packages/cactus-test-geth-ledger/package.json b/packages/cactus-test-geth-ledger/package.json index 4875a4d655..a87bbc98c2 100644 --- a/packages/cactus-test-geth-ledger/package.json +++ b/packages/cactus-test-geth-ledger/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-geth-ledger", - "version": "2.0.0", + "version": "2.1.0", "description": "Helpers for running test go-ethereum ledger in test scripts.", "keywords": [ "Hyperledger", @@ -50,8 +50,8 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "dockerode": "3.3.0", "internal-ip": "6.2.0", "run-time-error-cjs": "1.4.0", diff --git a/packages/cactus-test-plugin-consortium-manual/CHANGELOG.md b/packages/cactus-test-plugin-consortium-manual/CHANGELOG.md index 563a40d0b6..0aaca2fd90 100644 --- a/packages/cactus-test-plugin-consortium-manual/CHANGELOG.md +++ b/packages/cactus-test-plugin-consortium-manual/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-consortium-manual + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-consortium-manual diff --git a/packages/cactus-test-plugin-consortium-manual/package.json b/packages/cactus-test-plugin-consortium-manual/package.json index 7f02bb8280..a630c42e2c 100644 --- a/packages/cactus-test-plugin-consortium-manual/package.json +++ b/packages/cactus-test-plugin-consortium-manual/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-consortium-manual", - "version": "2.0.0", + "version": "2.1.0", "description": "Integration tests for the manual consortium plugin using the Besu ledger and the API server.", "keywords": [ "Hyperledger", @@ -50,12 +50,12 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", "axios": "1.7.7", "jose": "4.15.5" }, diff --git a/packages/cactus-test-plugin-htlc-eth-besu-erc20/CHANGELOG.md b/packages/cactus-test-plugin-htlc-eth-besu-erc20/CHANGELOG.md index c5d087f6cf..2e9d513bfd 100644 --- a/packages/cactus-test-plugin-htlc-eth-besu-erc20/CHANGELOG.md +++ b/packages/cactus-test-plugin-htlc-eth-besu-erc20/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-htlc-eth-besu-erc20 + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-htlc-eth-besu-erc20 diff --git a/packages/cactus-test-plugin-htlc-eth-besu-erc20/package.json b/packages/cactus-test-plugin-htlc-eth-besu-erc20/package.json index e79d295531..5d94b9ca6a 100644 --- a/packages/cactus-test-plugin-htlc-eth-besu-erc20/package.json +++ b/packages/cactus-test-plugin-htlc-eth-besu-erc20/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-htlc-eth-besu-erc20", - "version": "2.0.0", + "version": "2.1.0", "description": "Integration tests for HTLC with ERC-20 tokens plugin.", "keywords": [ "Hyperledger", @@ -50,14 +50,14 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-htlc-eth-besu-erc20": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-htlc-eth-besu-erc20": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "axios": "1.7.7", "express": "4.21.0", "web3-eth-abi": "4.0.3", diff --git a/packages/cactus-test-plugin-htlc-eth-besu/CHANGELOG.md b/packages/cactus-test-plugin-htlc-eth-besu/CHANGELOG.md index ed20d07ab1..34c5eeae8e 100644 --- a/packages/cactus-test-plugin-htlc-eth-besu/CHANGELOG.md +++ b/packages/cactus-test-plugin-htlc-eth-besu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-htlc-eth-besu + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-htlc-eth-besu diff --git a/packages/cactus-test-plugin-htlc-eth-besu/package.json b/packages/cactus-test-plugin-htlc-eth-besu/package.json index 9c11257c03..d7f5a9fae8 100644 --- a/packages/cactus-test-plugin-htlc-eth-besu/package.json +++ b/packages/cactus-test-plugin-htlc-eth-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-htlc-eth-besu", - "version": "2.0.0", + "version": "2.1.0", "description": "Integration tests for the Besu ledger and the API server.", "keywords": [ "Hyperledger", @@ -50,14 +50,14 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-htlc-eth-besu": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-htlc-eth-besu": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "axios": "1.7.7", "key-encoder": "2.0.3", "web3": "1.6.1", diff --git a/packages/cactus-test-plugin-keychain-memory/CHANGELOG.md b/packages/cactus-test-plugin-keychain-memory/CHANGELOG.md index 9db2ab4695..ea9c0c1d7b 100644 --- a/packages/cactus-test-plugin-keychain-memory/CHANGELOG.md +++ b/packages/cactus-test-plugin-keychain-memory/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-keychain-memory + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-keychain-memory diff --git a/packages/cactus-test-plugin-keychain-memory/package.json b/packages/cactus-test-plugin-keychain-memory/package.json index 16a7fb0cb5..76389dadb4 100644 --- a/packages/cactus-test-plugin-keychain-memory/package.json +++ b/packages/cactus-test-plugin-keychain-memory/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-keychain-memory", - "version": "2.0.0", + "version": "2.1.0", "private": true, "description": "Tests with API server integration for the dummy keychain implementation. Private package not meant to be released.", "keywords": [ @@ -50,11 +50,11 @@ "@connectrpc/connect": "1.4.0", "@connectrpc/connect-node": "1.4.0", "@connectrpc/connect-web": "1.4.0", - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", "express": "4.21.0", "uuid": "10.0.0" }, diff --git a/packages/cactus-test-plugin-ledger-connector-besu/CHANGELOG.md b/packages/cactus-test-plugin-ledger-connector-besu/CHANGELOG.md index e2feaf9e29..b92de5b70c 100644 --- a/packages/cactus-test-plugin-ledger-connector-besu/CHANGELOG.md +++ b/packages/cactus-test-plugin-ledger-connector-besu/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Bug Fixes + +* **connector-besu:** do not crash if ledger unreachable - send HTTP 503 ([394323e](https://github.com/hyperledger/cacti/commit/394323e91e3bd0df57c87d6bae406298c559fc7f)) + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-ledger-connector-besu diff --git a/packages/cactus-test-plugin-ledger-connector-besu/package.json b/packages/cactus-test-plugin-ledger-connector-besu/package.json index 3aecfd843f..36f32ed3f7 100644 --- a/packages/cactus-test-plugin-ledger-connector-besu/package.json +++ b/packages/cactus-test-plugin-ledger-connector-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-ledger-connector-besu", - "version": "2.0.0", + "version": "2.1.0", "description": "Integration tests for the Besu ledger and the API server.", "keywords": [ "Hyperledger", @@ -51,14 +51,14 @@ }, "dependencies": { "@grpc/grpc-js": "1.11.3", - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", - "@hyperledger/cactus-verifier-client": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", + "@hyperledger/cactus-verifier-client": "2.1.0", "key-encoder": "2.0.3", "socket.io": "4.6.2", "web3": "1.6.1", diff --git a/packages/cactus-test-plugin-ledger-connector-ethereum/CHANGELOG.md b/packages/cactus-test-plugin-ledger-connector-ethereum/CHANGELOG.md index 85c943b94d..3f0955f30a 100644 --- a/packages/cactus-test-plugin-ledger-connector-ethereum/CHANGELOG.md +++ b/packages/cactus-test-plugin-ledger-connector-ethereum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-ledger-connector-ethereum + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-ledger-connector-ethereum diff --git a/packages/cactus-test-plugin-ledger-connector-ethereum/package.json b/packages/cactus-test-plugin-ledger-connector-ethereum/package.json index a2844bd084..9e2b866439 100644 --- a/packages/cactus-test-plugin-ledger-connector-ethereum/package.json +++ b/packages/cactus-test-plugin-ledger-connector-ethereum/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-ledger-connector-ethereum", - "version": "2.0.0", + "version": "2.1.0", "description": "Integration tests for the Ethereum ledger and the API server.", "keywords": [ "Hyperledger", @@ -50,18 +50,18 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0", - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", - "@hyperledger/cactus-verifier-client": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.1.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.1.0", + "@hyperledger/cactus-verifier-client": "2.1.0", "web3-eth-contract": "4.2.0" }, "devDependencies": { - "@hyperledger/cactus-test-geth-ledger": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-test-geth-ledger": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", "@types/lodash": "4.14.195", "@types/uuid": "10.0.0", "lodash": "4.17.21", diff --git a/packages/cactus-test-tooling/CHANGELOG.md b/packages/cactus-test-tooling/CHANGELOG.md index e88be6a33c..cd8a9ee44e 100644 --- a/packages/cactus-test-tooling/CHANGELOG.md +++ b/packages/cactus-test-tooling/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cactus/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-tooling + # [2.0.0](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) ### Bug Fixes diff --git a/packages/cactus-test-tooling/package.json b/packages/cactus-test-tooling/package.json index 93c3dd5491..6de7e7c46e 100644 --- a/packages/cactus-test-tooling/package.json +++ b/packages/cactus-test-tooling/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-tooling", - "version": "2.0.0", + "version": "2.1.0", "description": "Swiss army knife for test development. Main goal is to make pulling up test/dummy ledgers on the fly for tests easy, especially for test cases that are about simulating clean ledger state or wiped ledger state, etc.", "keywords": [ "Hyperledger", @@ -65,7 +65,7 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", "axios": "1.7.7", "compare-versions": "3.6.0", "dockerode": "3.3.0", diff --git a/packages/cactus-test-tooling/src/test/rust/fixtures/wasm-hello-world/Cargo.toml b/packages/cactus-test-tooling/src/test/rust/fixtures/wasm-hello-world/Cargo.toml index 88f6dc1a04..e3100e93bd 100644 --- a/packages/cactus-test-tooling/src/test/rust/fixtures/wasm-hello-world/Cargo.toml +++ b/packages/cactus-test-tooling/src/test/rust/fixtures/wasm-hello-world/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world" -version = "2.0.0" +version = "2.1.0" authors = ["Hyperledger Cactus Contributors"] edition = "2018" diff --git a/packages/cactus-test-verifier-client/CHANGELOG.md b/packages/cactus-test-verifier-client/CHANGELOG.md index 57d40a4c4a..ee620f712c 100644 --- a/packages/cactus-test-verifier-client/CHANGELOG.md +++ b/packages/cactus-test-verifier-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cactus/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-test-verifier-client + # [2.0.0](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-test-verifier-client diff --git a/packages/cactus-test-verifier-client/package.json b/packages/cactus-test-verifier-client/package.json index 3081910c8a..4b4108a4c0 100644 --- a/packages/cactus-test-verifier-client/package.json +++ b/packages/cactus-test-verifier-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-verifier-client", - "version": "2.0.0", + "version": "2.1.0", "description": "Integration and stress tests for the verifier client.", "keywords": [ "Hyperledger", @@ -46,13 +46,13 @@ "stress-test-inspect": "node --expose-gc --inspect-brk --no-opt dist/lib/main/typescript/verifier-with-go-eth-stress-check.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", - "@hyperledger/cactus-test-geth-ledger": "2.0.0", - "@hyperledger/cactus-test-tooling": "2.0.0", - "@hyperledger/cactus-verifier-client": "2.0.0", + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.1.0", + "@hyperledger/cactus-test-geth-ledger": "2.1.0", + "@hyperledger/cactus-test-tooling": "2.1.0", + "@hyperledger/cactus-verifier-client": "2.1.0", "body-parser": "1.20.3", "express": "4.21.0", "log4js": "6.4.1", diff --git a/packages/cactus-verifier-client/CHANGELOG.md b/packages/cactus-verifier-client/CHANGELOG.md index a3661981a8..6495f19aa6 100644 --- a/packages/cactus-verifier-client/CHANGELOG.md +++ b/packages/cactus-verifier-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger/cactus/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cactus-verifier-client + # [2.0.0](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cactus-verifier-client diff --git a/packages/cactus-verifier-client/package.json b/packages/cactus-verifier-client/package.json index e5da9e0599..dbc5acf022 100644 --- a/packages/cactus-verifier-client/package.json +++ b/packages/cactus-verifier-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-verifier-client", - "version": "2.0.0", + "version": "2.1.0", "description": "Verifier cactus client library to communicate with validators through socket.io", "keywords": [ "Hyperledger", @@ -42,17 +42,17 @@ "build": "tsc" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0", - "@hyperledger/cactus-core-api": "2.0.0" + "@hyperledger/cactus-common": "2.1.0", + "@hyperledger/cactus-core-api": "2.1.0" }, "devDependencies": { - "@hyperledger/cactus-api-client": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-corda": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-iroha2": "2.0.0", - "@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.0.0", + "@hyperledger/cactus-api-client": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-corda": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-iroha2": "2.1.0", + "@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.1.0", "jest-extended": "4.0.1", "rxjs": "7.8.1" }, diff --git a/tools/docker/fabric-all-in-one/README.md b/tools/docker/fabric-all-in-one/README.md index 09e6ebaf9c..5b5cd82ccd 100644 --- a/tools/docker/fabric-all-in-one/README.md +++ b/tools/docker/fabric-all-in-one/README.md @@ -31,7 +31,7 @@ Example `.vscode/tasks.json` file for building/running the image: ```json { - "version": "2.0.0", + "version": "2.1.0", "tasks": [ { "label": "Docker - BUILD and TAG: 2.x", diff --git a/tools/go-gen-checksum.sh b/tools/go-gen-checksum.sh index 9edc10e265..e5997388fa 100755 --- a/tools/go-gen-checksum.sh +++ b/tools/go-gen-checksum.sh @@ -4,7 +4,7 @@ ROOT_DIR=${2:-'..'} # Repo full go path -REPO='github.com/hyperledger/cacti' +REPO='github.com/hyperledger-cacti/cacti' # install go-checksum echo "Installing go-checksum..." @@ -24,7 +24,7 @@ GOMODULE_PATHS=("weaver/core/network/fabric-interop-cc/libs/utils" "weaver/samples/fabric/simplestatewithacl" "weaver/samples/fabric/simplestate") -VERSION=${1:-"2.0.0"} +VERSION=${1:-"2.1.0"} echo "REPO: $REPO" echo "VERSION: $VERSION" diff --git a/tools/weaver-update-version.sh b/tools/weaver-update-version.sh index 7fe213f7ed..6ea4b952ef 100755 --- a/tools/weaver-update-version.sh +++ b/tools/weaver-update-version.sh @@ -6,7 +6,7 @@ ROOT_DIR=${2:-'..'} # Repo full go path REPO='github.com/hyperledger/cacti' -VERSION=${1:-"2.0.0"} +VERSION=${1:-"2.1.0"} echo "REPO: $REPO" echo "VERSION: $VERSION" diff --git a/weaver/common/protos-go/VERSION b/weaver/common/protos-go/VERSION index 359a5b952d..50aea0e7ab 100644 --- a/weaver/common/protos-go/VERSION +++ b/weaver/common/protos-go/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/weaver/common/protos-java-kt/README.md b/weaver/common/protos-java-kt/README.md index abac437a45..f72cff30fb 100644 --- a/weaver/common/protos-java-kt/README.md +++ b/weaver/common/protos-java-kt/README.md @@ -38,6 +38,6 @@ and then follow above 4 steps. 5) Add this to your build.gradle (change the version accordingly): ``` dependencies { - compile(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.0.0") + compile(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.1.0") } ``` diff --git a/weaver/common/protos-java-kt/gradle.properties b/weaver/common/protos-java-kt/gradle.properties index bf1445621d..01d220a96e 100644 --- a/weaver/common/protos-java-kt/gradle.properties +++ b/weaver/common/protos-java-kt/gradle.properties @@ -1,4 +1,4 @@ name=Interop Protos group=org.hyperledger.cacti.weaver.protos -version=2.0.0 +version=2.1.0 kotlin.incremental=false diff --git a/weaver/common/protos-js/CHANGELOG.md b/weaver/common/protos-js/CHANGELOG.md index 9a89741037..16a7cf7840 100644 --- a/weaver/common/protos-js/CHANGELOG.md +++ b/weaver/common/protos-js/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +### Features + +* **copm:** add fabric COPM implementation ([7af9983](https://github.com/hyperledger-cacti/cacti/commit/7af99833f4db237d6aba7223a31add5723faba9d)) + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cacti-weaver-protos-js diff --git a/weaver/common/protos-js/package.json b/weaver/common/protos-js/package.json index 54f80aac05..d8545dab28 100644 --- a/weaver/common/protos-js/package.json +++ b/weaver/common/protos-js/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-protos-js", - "version": "2.0.0", + "version": "2.1.0", "description": "Interop protos for Node JS (Weaver)", "keywords": [ "hyperledger", diff --git a/weaver/common/protos-rs/Cargo.toml b/weaver/common/protos-rs/Cargo.toml index b4bc3f1bc7..7f3dc7f626 100644 --- a/weaver/common/protos-rs/Cargo.toml +++ b/weaver/common/protos-rs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "build-protos-rs" # Don't update this version, update the one in "pkg/Cargo.toml". -version = "2.0.0" +version = "2.1.0" authors = ["Peter Somogyvari ", "Sandeep Nishad ", "Sandeep Nishad DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-corda -DOCKER_TAG=2.0.0 +DOCKER_TAG=2.1.0 COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= RELAY_TLS= diff --git a/weaver/core/drivers/corda-driver/VERSION b/weaver/core/drivers/corda-driver/VERSION index 359a5b952d..50aea0e7ab 100644 --- a/weaver/core/drivers/corda-driver/VERSION +++ b/weaver/core/drivers/corda-driver/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/weaver/core/drivers/corda-driver/constants.properties b/weaver/core/drivers/corda-driver/constants.properties index 77575acc9c..dadd592962 100644 --- a/weaver/core/drivers/corda-driver/constants.properties +++ b/weaver/core/drivers/corda-driver/constants.properties @@ -12,4 +12,4 @@ grpcKotlinVersion=1.4.1 coroutinesVersion=1.8.1 bcprovName=bcpkix-jdk18on bcprovVersion=1.78.1 -cactiVersion=2.0.0 +cactiVersion=2.1.0 diff --git a/weaver/core/drivers/corda-driver/gradle.properties b/weaver/core/drivers/corda-driver/gradle.properties index 9d560389d5..00dc2b45e5 100644 --- a/weaver/core/drivers/corda-driver/gradle.properties +++ b/weaver/core/drivers/corda-driver/gradle.properties @@ -1,5 +1,5 @@ kotlin.code.style=official name=driver-corda group=org.hyperledger.cacti.weaver.driver.corda -version=2.0.0 +version=2.1.0 kotlin.incremental=false \ No newline at end of file diff --git a/weaver/core/drivers/fabric-driver/.env.docker.template b/weaver/core/drivers/fabric-driver/.env.docker.template index 01c01cacd6..fc0044420d 100644 --- a/weaver/core/drivers/fabric-driver/.env.docker.template +++ b/weaver/core/drivers/fabric-driver/.env.docker.template @@ -17,7 +17,7 @@ LEVELDB_LOCKED_RETRY_BACKOFF_MSEC= ENABLE_MONITOR= MONITOR_SYNC_PERIOD= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-fabric -DOCKER_TAG=2.0.0 +DOCKER_TAG=2.1.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/drivers/fabric-driver/CHANGELOG.md b/weaver/core/drivers/fabric-driver/CHANGELOG.md index 95bc9588c8..b4b617d9ab 100644 --- a/weaver/core/drivers/fabric-driver/CHANGELOG.md +++ b/weaver/core/drivers/fabric-driver/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cacti-weaver-driver-fabric + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cacti-weaver-driver-fabric diff --git a/weaver/core/drivers/fabric-driver/VERSION b/weaver/core/drivers/fabric-driver/VERSION index 359a5b952d..50aea0e7ab 100644 --- a/weaver/core/drivers/fabric-driver/VERSION +++ b/weaver/core/drivers/fabric-driver/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/weaver/core/drivers/fabric-driver/package-local.json b/weaver/core/drivers/fabric-driver/package-local.json index f0ec73e51a..c5328f4c69 100644 --- a/weaver/core/drivers/fabric-driver/package-local.json +++ b/weaver/core/drivers/fabric-driver/package-local.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-driver-fabric", - "version": "2.0.0", + "version": "2.1.0", "description": "", "repository": { "type": "git", diff --git a/weaver/core/drivers/fabric-driver/package.json b/weaver/core/drivers/fabric-driver/package.json index b1a616d45d..073b242a88 100644 --- a/weaver/core/drivers/fabric-driver/package.json +++ b/weaver/core/drivers/fabric-driver/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-driver-fabric", - "version": "2.0.0", + "version": "2.1.0", "description": "", "repository": { "type": "git", @@ -20,8 +20,8 @@ "dependencies": { "@fidm/x509": "1.2.1", "@grpc/grpc-js": "1.11.3", - "@hyperledger/cacti-weaver-protos-js": "2.0.0", - "@hyperledger/cacti-weaver-sdk-fabric": "2.0.0", + "@hyperledger/cacti-weaver-protos-js": "2.1.0", + "@hyperledger/cacti-weaver-sdk-fabric": "2.1.0", "dotenv": "8.6.0", "fabric-ca-client": "2.2.20", "fabric-common": "2.2.20", diff --git a/weaver/core/identity-management/iin-agent/.env.docker.template b/weaver/core/identity-management/iin-agent/.env.docker.template index 47ed16dabf..3a5e25c191 100644 --- a/weaver/core/identity-management/iin-agent/.env.docker.template +++ b/weaver/core/identity-management/iin-agent/.env.docker.template @@ -13,7 +13,7 @@ SYNC_PERIOD= AUTO_SYNC= TLS_CREDENTIALS_DIR= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-iin-agent -DOCKER_TAG=2.0.0 +DOCKER_TAG=2.1.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/identity-management/iin-agent/CHANGELOG.md b/weaver/core/identity-management/iin-agent/CHANGELOG.md index 98a2630ccb..b38422fe5d 100644 --- a/weaver/core/identity-management/iin-agent/CHANGELOG.md +++ b/weaver/core/identity-management/iin-agent/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0...v2.1.0) (2024-12-01) + +**Note:** Version bump only for package @hyperledger/cacti-weaver-iin-agent + # [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) **Note:** Version bump only for package @hyperledger/cacti-weaver-iin-agent diff --git a/weaver/core/identity-management/iin-agent/VERSION b/weaver/core/identity-management/iin-agent/VERSION index 359a5b952d..50aea0e7ab 100644 --- a/weaver/core/identity-management/iin-agent/VERSION +++ b/weaver/core/identity-management/iin-agent/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/weaver/core/identity-management/iin-agent/package-local.json b/weaver/core/identity-management/iin-agent/package-local.json index 5ba3ab32a7..afd288a7ce 100644 --- a/weaver/core/identity-management/iin-agent/package-local.json +++ b/weaver/core/identity-management/iin-agent/package-local.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-iin-agent", - "version": "2.0.0", + "version": "2.1.0", "description": "", "repository": { "type": "git", diff --git a/weaver/core/identity-management/iin-agent/package.json b/weaver/core/identity-management/iin-agent/package.json index 6de26288c3..a05cf2ae66 100644 --- a/weaver/core/identity-management/iin-agent/package.json +++ b/weaver/core/identity-management/iin-agent/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-iin-agent", - "version": "2.0.0", + "version": "2.1.0", "description": "", "repository": { "type": "git", @@ -20,8 +20,8 @@ "dependencies": { "@fidm/x509": "1.2.1", "@grpc/grpc-js": "1.11.3", - "@hyperledger/cacti-weaver-protos-js": "2.0.0", - "@hyperledger/cacti-weaver-sdk-fabric": "2.0.0", + "@hyperledger/cacti-weaver-protos-js": "2.1.0", + "@hyperledger/cacti-weaver-sdk-fabric": "2.1.0", "dotenv": "8.6.0", "fabric-ca-client": "2.2.20", "fabric-common": "2.2.20", diff --git a/weaver/core/network/corda-interop-app/README.md b/weaver/core/network/corda-interop-app/README.md index 3c7296f5bc..4c9aaa9ee9 100644 --- a/weaver/core/network/corda-interop-app/README.md +++ b/weaver/core/network/corda-interop-app/README.md @@ -89,8 +89,8 @@ and then follow above 4 steps. 5) Add this to your build.gradle (change the version accordingly): ``` dependencies { - compile(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.0.0") - compile(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.0.0") + compile(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.1.0") + compile(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.1.0") } ``` diff --git a/weaver/core/network/corda-interop-app/constants.properties b/weaver/core/network/corda-interop-app/constants.properties index 5f02990fd8..bf94290f55 100644 --- a/weaver/core/network/corda-interop-app/constants.properties +++ b/weaver/core/network/corda-interop-app/constants.properties @@ -12,4 +12,4 @@ nettyVersion=4.1.77.Final arrowVersion=0.10.4 jaxbVersion=2.3.1 protobufVersion=3.25.3 -cactiVersion=2.0.0 +cactiVersion=2.1.0 diff --git a/weaver/core/network/corda-interop-app/gradle.properties b/weaver/core/network/corda-interop-app/gradle.properties index afd18cc227..805c3f9c26 100644 --- a/weaver/core/network/corda-interop-app/gradle.properties +++ b/weaver/core/network/corda-interop-app/gradle.properties @@ -1,4 +1,4 @@ name=Interoperability CorDapp group=org.hyperledger.cacti.weaver.imodule.corda -version=2.0.0 +version=2.1.0 kotlin.incremental=false diff --git a/weaver/core/network/fabric-interop-cc/.env.template b/weaver/core/network/fabric-interop-cc/.env.template index fd13a5abad..d6e1599e56 100644 --- a/weaver/core/network/fabric-interop-cc/.env.template +++ b/weaver/core/network/fabric-interop-cc/.env.template @@ -4,7 +4,7 @@ PEER= ORG= NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-imodule-fabric-cc -DOCKER_TAG=2.0.0 +DOCKER_TAG=2.1.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/network/fabric-interop-cc/contracts/interop/VERSION b/weaver/core/network/fabric-interop-cc/contracts/interop/VERSION index 359a5b952d..50aea0e7ab 100644 --- a/weaver/core/network/fabric-interop-cc/contracts/interop/VERSION +++ b/weaver/core/network/fabric-interop-cc/contracts/interop/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/weaver/core/network/fabric-interop-cc/contracts/interop/go.mod b/weaver/core/network/fabric-interop-cc/contracts/interop/go.mod index 3e8afe0361..cbbe01903b 100644 --- a/weaver/core/network/fabric-interop-cc/contracts/interop/go.mod +++ b/weaver/core/network/fabric-interop-cc/contracts/interop/go.mod @@ -5,10 +5,10 @@ go 1.20 require ( github.com/ethereum/go-ethereum v1.13.15 github.com/golang/protobuf v1.5.4 - github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7 - github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.0.0-rc.7 + github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0 + github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.1.0 github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/testutils v0.0.0-20230907062207-cd6eb2f89fb4 - github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/utils/v2 v2.0.0-rc.7 + github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/utils/v2 v2.1.0 github.com/hyperledger/fabric-chaincode-go v0.0.0-20230228194215-b84622ba6a7a github.com/hyperledger/fabric-contract-api-go v1.2.1 github.com/hyperledger/fabric-protos-go v0.3.3 diff --git a/weaver/core/network/fabric-interop-cc/contracts/interop/go.sum b/weaver/core/network/fabric-interop-cc/contracts/interop/go.sum index e4ac9a0cc0..a8686166e4 100644 --- a/weaver/core/network/fabric-interop-cc/contracts/interop/go.sum +++ b/weaver/core/network/fabric-interop-cc/contracts/interop/go.sum @@ -151,3 +151,9 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0 h1:lpzgs7zrwKrYLLoLTvZWZyh0GZNuRjQ9HEiqFlrDcSQ= +github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0/go.mod h1:Z4LusyczoMuzq33wQk1Zdbyy53ONbuRVV/5xuRHV+hA= +github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.1.0 h1:TicC6MAwu6xeNauhcE4LXtBGaS2nKq0RpKFX99DRKdg= +github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.1.0/go.mod h1:8wMNyRIcfwN9JXb9sUhEizk4Cpp0wm7GdDRqFwbcZ9A= +github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/utils/v2 v2.1.0 h1:y+Wc2u1uNuhA7xjLuiAUxUlXhBYETTbf3zmCJUfnyMY= +github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/utils/v2 v2.1.0/go.mod h1:TxUVaoR+xNRCSj6QylPZugBJ2J32l/NxcoB8XmUSV3Y= diff --git a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/VERSION b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/VERSION index 359a5b952d..50aea0e7ab 100644 --- a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/VERSION +++ b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.mod b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.mod index e557e6373b..90ca75fb36 100644 --- a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.mod +++ b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/golang/protobuf v1.5.4 - github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7 + github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0 github.com/hyperledger-cacti/cacti/weaver/core/network/fabric-interop-cc/libs/testutils v0.0.0-20230907062207-cd6eb2f89fb4 github.com/hyperledger/fabric-chaincode-go v0.0.0-20230228194215-b84622ba6a7a github.com/hyperledger/fabric-contract-api-go v1.2.1 diff --git a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.sum b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.sum index 0efbac1c8c..81e33ad797 100644 --- a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.sum +++ b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.sum @@ -142,3 +142,5 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0 h1:lpzgs7zrwKrYLLoLTvZWZyh0GZNuRjQ9HEiqFlrDcSQ= +github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0/go.mod h1:Z4LusyczoMuzq33wQk1Zdbyy53ONbuRVV/5xuRHV+hA= diff --git a/weaver/core/network/fabric-interop-cc/libs/assetexchange/VERSION b/weaver/core/network/fabric-interop-cc/libs/assetexchange/VERSION index 359a5b952d..50aea0e7ab 100644 --- a/weaver/core/network/fabric-interop-cc/libs/assetexchange/VERSION +++ b/weaver/core/network/fabric-interop-cc/libs/assetexchange/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.mod b/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.mod index c396980ac8..664a133ed8 100644 --- a/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.mod +++ b/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/golang/protobuf v1.5.4 - github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7 + github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0 github.com/hyperledger/fabric-contract-api-go v1.1.1 github.com/hyperledger/fabric-protos-go v0.3.3 github.com/sirupsen/logrus v1.8.1 diff --git a/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.sum b/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.sum index 41c82e127a..05e46f1677 100644 --- a/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.sum +++ b/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.sum @@ -155,3 +155,5 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0 h1:lpzgs7zrwKrYLLoLTvZWZyh0GZNuRjQ9HEiqFlrDcSQ= +github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0/go.mod h1:Z4LusyczoMuzq33wQk1Zdbyy53ONbuRVV/5xuRHV+hA= diff --git a/weaver/core/network/fabric-interop-cc/libs/utils/VERSION b/weaver/core/network/fabric-interop-cc/libs/utils/VERSION index 359a5b952d..50aea0e7ab 100644 --- a/weaver/core/network/fabric-interop-cc/libs/utils/VERSION +++ b/weaver/core/network/fabric-interop-cc/libs/utils/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/weaver/core/network/fabric-interop-cc/libs/utils/go.mod b/weaver/core/network/fabric-interop-cc/libs/utils/go.mod index 526263de6b..47159d0bba 100644 --- a/weaver/core/network/fabric-interop-cc/libs/utils/go.mod +++ b/weaver/core/network/fabric-interop-cc/libs/utils/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/golang/protobuf v1.5.4 - github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7 + github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0 github.com/hyperledger/fabric-chaincode-go v0.0.0-20210718160520-38d29fabecb9 github.com/hyperledger/fabric-contract-api-go v1.1.1 github.com/hyperledger/fabric-protos-go v0.3.3 diff --git a/weaver/core/network/fabric-interop-cc/libs/utils/go.sum b/weaver/core/network/fabric-interop-cc/libs/utils/go.sum index f1770dca85..ca2d1c6d8a 100644 --- a/weaver/core/network/fabric-interop-cc/libs/utils/go.sum +++ b/weaver/core/network/fabric-interop-cc/libs/utils/go.sum @@ -153,3 +153,5 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0 h1:lpzgs7zrwKrYLLoLTvZWZyh0GZNuRjQ9HEiqFlrDcSQ= +github.com/hyperledger-cacti/cacti/weaver/common/protos-go/v2 v2.1.0/go.mod h1:Z4LusyczoMuzq33wQk1Zdbyy53ONbuRVV/5xuRHV+hA= diff --git a/weaver/core/relay/.env.template b/weaver/core/relay/.env.template index 4452bfde6e..bf6838e141 100644 --- a/weaver/core/relay/.env.template +++ b/weaver/core/relay/.env.template @@ -2,7 +2,7 @@ PATH_TO_CONFIG= RELAY_NAME=<"name" in config toml file> RELAY_PORT= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server -DOCKER_TAG=2.0.0 +DOCKER_TAG=2.1.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/relay/.env.template.2 b/weaver/core/relay/.env.template.2 index fda9907e26..b2ec63a77c 100644 --- a/weaver/core/relay/.env.template.2 +++ b/weaver/core/relay/.env.template.2 @@ -9,7 +9,7 @@ RELAY_PORT= DB_OPEN_MAX_RETRIES= DB_OPEN_RETRY_BACKOFF_MSEC= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server -DOCKER_TAG=2.0.0 +DOCKER_TAG=2.1.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/relay/Cargo.lock b/weaver/core/relay/Cargo.lock index 9717dd4386..2087c7a7db 100644 --- a/weaver/core/relay/Cargo.lock +++ b/weaver/core/relay/Cargo.lock @@ -223,7 +223,7 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "cacti_weaver_protos_rs" -version = "2.0.0" +version = "2.1.0" dependencies = [ "prost", "serde 1.0.201", @@ -1323,7 +1323,7 @@ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" [[package]] name = "relay" -version = "2.0.0" +version = "2.1.0" dependencies = [ "base64 0.20.0", "bincode", diff --git a/weaver/core/relay/Cargo.toml b/weaver/core/relay/Cargo.toml index 64108dc97f..af01b60534 100644 --- a/weaver/core/relay/Cargo.toml +++ b/weaver/core/relay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "relay" -version = "2.0.0" +version = "2.1.0" authors = ["Antony Targett ", "Nick Waywood ", "Sandeep Nishad