Skip to content

Commit

Permalink
docs(dev-container): fix Unable to access jarfile openapi-generator-c…
Browse files Browse the repository at this point in the history
…li/versions/5.2.0.jar hyperledger-cacti#1317

The OpenAPI generator versions were out of sync, unified it on 5.2.0 and now the dev container
does not have any issue configuring itself upon a successful boot.

Fixes hyperledger-cacti#1317

Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed Sep 12, 2021
1 parent 805f2c8 commit a01ce63
Show file tree
Hide file tree
Showing 45 changed files with 64 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } fr
* @export
* @enum {string}
*/

export enum AuthzJwtClaim {
/**
* The &quot;iss&quot; (issuer) claim identifies the principal that issued the JWT. The processing of this claim is generally application specific. The &quot;iss&quot; value is a case-sensitive string containing a StringOrURI value. Use of this claim is OPTIONAL.
Expand All @@ -38,6 +39,7 @@ export enum AuthzJwtClaim {
* @export
* @enum {string}
*/

export enum AuthzScope {
/**
* Identities with the group:admin scope are administrators of the system.
Expand Down Expand Up @@ -124,6 +126,7 @@ export interface DaoTokenGetAllowanceResponse {
* @export
* @enum {string}
*/

export enum EnrollAdminInfo {
SUCCESSFULLY_ENROLLED_ADMIN = 'Successfully enrolled admin user and imported it into the wallet',
ORG_ADMIN_REGISTERED = 'ORG ADMIN REGISTERED'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
2 changes: 1 addition & 1 deletion packages/cactus-cmd-api-server/openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export interface MemoryUsage {
* @export
* @enum {string}
*/

export enum WatchHealthcheckV1 {
Subscribe = 'org.hyperledger.cactus.api.async.besu.WatchHealthcheckV1.Subscribe',
Next = 'org.hyperledger.cactus.api.async.besu.WatchHealthcheckV1.Next',
Expand Down
2 changes: 1 addition & 1 deletion packages/cactus-core-api/openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export interface CactusNodeMeta {
* @export
* @enum {string}
*/

export enum ConsensusAlgorithmFamiliesWithOutTxFinality {
WORK = 'org.hyperledger.cactus.consensusalgorithm.PROOF_OF_WORK'
}
Expand All @@ -140,6 +141,7 @@ export enum ConsensusAlgorithmFamiliesWithOutTxFinality {
* @export
* @enum {string}
*/

export enum ConsensusAlgorithmFamiliesWithTxFinality {
Authority = 'org.hyperledger.cactus.consensusalgorithm.PROOF_OF_AUTHORITY',
Stake = 'org.hyperledger.cactus.consensusalgorithm.PROOF_OF_STAKE'
Expand All @@ -150,6 +152,7 @@ export enum ConsensusAlgorithmFamiliesWithTxFinality {
* @export
* @enum {string}
*/

export enum ConsensusAlgorithmFamily {
Authority = 'org.hyperledger.cactus.consensusalgorithm.PROOF_OF_AUTHORITY',
Stake = 'org.hyperledger.cactus.consensusalgorithm.PROOF_OF_STAKE',
Expand Down Expand Up @@ -254,6 +257,7 @@ export interface ConsortiumMember {
* @export
* @enum {string}
*/

export enum Constants {
SocketIoConnectionPathV1 = '/api/v1/async/socket-io/connect'
}
Expand Down Expand Up @@ -498,6 +502,7 @@ export interface Ledger {
* @export
* @enum {string}
*/

export enum LedgerType {
Besu1X = 'BESU_1X',
Besu2X = 'BESU_2X',
Expand Down Expand Up @@ -539,6 +544,7 @@ export interface PluginImport {
* @export
* @enum {string}
*/

export enum PluginImportType {
Local = 'org.hyperledger.cactus.plugin_import_type.LOCAL',
Remote = 'org.hyperledger.cactus.plugin_import_type.REMOTE'
Expand Down
2 changes: 1 addition & 1 deletion packages/cactus-plugin-consortium-manual/openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ export interface Web3SigningCredentialPrivateKeyHex {
* @export
* @enum {string}
*/

export enum Web3SigningCredentialType {
CactusKeychainRef = 'CACTUS_KEYCHAIN_REF',
GethKeychainPassword = 'GETH_KEYCHAIN_PASSWORD',
Expand Down
2 changes: 1 addition & 1 deletion packages/cactus-plugin-htlc-eth-besu/openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ export interface Web3SigningCredentialPrivateKeyHex {
* @export
* @enum {string}
*/

export enum Web3SigningCredentialType {
CactusKeychainRef = 'CACTUS_KEYCHAIN_REF',
GethKeychainPassword = 'GETH_KEYCHAIN_PASSWORD',
Expand Down
2 changes: 1 addition & 1 deletion packages/cactus-plugin-keychain-memory/openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
2 changes: 1 addition & 1 deletion packages/cactus-plugin-keychain-vault/openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ export interface DeployContractSolidityBytecodeV1Response {
* @export
* @enum {string}
*/

export enum EthContractInvocationType {
Send = 'SEND',
Call = 'CALL'
Expand Down Expand Up @@ -754,6 +755,7 @@ export interface InvokeContractV1Response {
* @export
* @enum {string}
*/

export enum ReceiptType {
NodeTxPoolAck = 'NODE_TX_POOL_ACK',
LedgerBlockAck = 'LEDGER_BLOCK_ACK'
Expand Down Expand Up @@ -913,6 +915,7 @@ export interface SolidityContractJsonArtifact {
* @export
* @enum {string}
*/

export enum WatchBlocksV1 {
Subscribe = 'org.hyperledger.cactus.api.async.besu.WatchBlocksV1.Subscribe',
Next = 'org.hyperledger.cactus.api.async.besu.WatchBlocksV1.Next',
Expand Down Expand Up @@ -1105,6 +1108,7 @@ export interface Web3SigningCredentialPrivateKeyHex {
* @export
* @enum {string}
*/

export enum Web3SigningCredentialType {
CactusKeychainRef = 'CACTUS_KEYCHAIN_REF',
GethKeychainPassword = 'GETH_KEYCHAIN_PASSWORD',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ export interface DiagnoseNodeV1Response {
* @export
* @enum {string}
*/

export enum FlowInvocationType {
TrackedFlowDynamic = 'TRACKED_FLOW_DYNAMIC',
FlowDynamic = 'FLOW_DYNAMIC'
Expand Down Expand Up @@ -473,6 +474,7 @@ export interface JvmType {
* @export
* @enum {string}
*/

export enum JvmTypeKind {
Primitive = 'PRIMITIVE',
Reference = 'REFERENCE'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } fr
* @export
* @enum {string}
*/

export enum ChainCodeLanguageRuntime {
Golang = 'golang',
Node = 'node',
Expand Down Expand Up @@ -86,6 +87,7 @@ export interface ChainCodeLifeCycleCommandResponses {
* @export
* @enum {string}
*/

export enum ChainCodeProgrammingLanguage {
Golang = 'golang',
Javascript = 'javascript',
Expand Down Expand Up @@ -180,6 +182,7 @@ export interface ConnectionProfileClient {
* @export
* @enum {string}
*/

export enum DefaultEventHandlerStrategy {
MspidScopeAllfortx = 'MSPID_SCOPE_ALLFORTX',
MspidScopeAnyfortx = 'MSPID_SCOPE_ANYFORTX',
Expand Down Expand Up @@ -511,6 +514,7 @@ export interface DeploymentTargetOrganization {
* @export
* @enum {string}
*/

export enum FabricContractInvocationType {
Send = 'FabricContractInvocationType.SEND',
Call = 'FabricContractInvocationType.CALL',
Expand Down Expand Up @@ -553,6 +557,7 @@ export interface FabricSigningCredential {
* @export
* @enum {string}
*/

export enum FabricSigningCredentialType {
X509 = 'X.509',
VaultX509 = 'Vault-X.509'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export interface IrohaBaseConfig {
* @export
* @enum {string}
*/

export enum IrohaCommand {
/**
* Make entity in the system, capable of sending transactions or queries, storing signatories, personal data and identifiers.
Expand Down Expand Up @@ -191,6 +192,7 @@ export enum IrohaCommand {
* @export
* @enum {string}
*/

export enum IrohaQuery {
/**
* To get the state of an account
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.1"
"version": "5.2.0"
}
}
Loading

0 comments on commit a01ce63

Please sign in to comment.