From 77261a51f016dccfa77eaaecc77826569f5e5c9a Mon Sep 17 00:00:00 2001 From: Jan Bevers Date: Fri, 19 Sep 2025 09:41:48 +0200 Subject: [PATCH 1/2] fix: e2e types --- sdk/js/schema.graphql | 26 +++++++++++++++++++++++-- sdk/js/src/helpers/graphql-env.d.ts | 6 +++--- test/platform-list-services.e2e.test.ts | 11 +++++++---- 3 files changed, 34 insertions(+), 9 deletions(-) diff --git a/sdk/js/schema.graphql b/sdk/js/schema.graphql index 4c470cca9..360fb3cb8 100644 --- a/sdk/js/schema.graphql +++ b/sdk/js/schema.graphql @@ -1542,6 +1542,11 @@ type BesuIbftv2BlockchainNetwork implements AbstractClusterService & AbstractEnt """Genesis configuration for the Besu blockchain network""" genesis: BesuGenesisType! + + """ + Genesis artifacts tag for large allocations (stores only the version tag for network-wide pinning) + """ + genesisArtifactsTag: String genesisWithDiscoveryConfig: BesuGenesisType! """Health status of the service""" @@ -2014,6 +2019,11 @@ type BesuQBFTBlockchainNetwork implements AbstractClusterService & AbstractEntit """Genesis configuration for the Besu blockchain network""" genesis: BesuGenesisType! + + """ + Genesis artifacts tag for large allocations (stores only the version tag for network-wide pinning) + """ + genesisArtifactsTag: String genesisWithDiscoveryConfig: BesuGenesisType! """Health status of the service""" @@ -4254,6 +4264,9 @@ input CreateMultiServiceIntegrationArgs { """Name of the cluster service""" name: String! + + """Preload database schema""" + preloadDatabaseSchema: Boolean productName: String! """Provider of the cluster service""" @@ -8901,8 +8914,14 @@ type Mutation { inviteId: ID! ): Boolean! - """Accepts an invitation to a workspace""" - acceptWorkspaceInvite(inviteId: ID!): Boolean! + """Accepts an invitation or multiple invitations to a workspace""" + acceptWorkspaceInvite( + """Single workspace invite ID to accept""" + inviteId: ID + + """Multiple workspace invite IDs to accept""" + inviteIds: [ID!] + ): Boolean! acceptWorkspaceTransferCode( """Secret code for workspace transfer""" secretCode: String! @@ -9360,6 +9379,9 @@ type Mutation { """Name of the cluster service""" name: String! + """Preload database schema""" + preloadDatabaseSchema: Boolean + """Provider of the cluster service""" provider: String! diff --git a/sdk/js/src/helpers/graphql-env.d.ts b/sdk/js/src/helpers/graphql-env.d.ts index dd1d8b891..485f5e110 100644 --- a/sdk/js/src/helpers/graphql-env.d.ts +++ b/sdk/js/src/helpers/graphql-env.d.ts @@ -63,10 +63,10 @@ export type introspection_types = { 'BesuIbft2GenesisConfigInput': { kind: 'INPUT_OBJECT'; name: 'BesuIbft2GenesisConfigInput'; isOneOf: false; inputFields: [{ name: 'berlinBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'byzantiumBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'cancunBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'cancunTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'constantinopleBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'contractSizeLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'discovery'; type: { kind: 'INPUT_OBJECT'; name: 'BesuDiscoveryInput'; ofType: null; }; defaultValue: null }, { name: 'eip150Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'eip150Hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'eip155Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'eip158Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'evmStackSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'homesteadBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'ibft2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BesuBftGenesisConfigDataInput'; ofType: null; }; }; defaultValue: null }, { name: 'istanbulBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'londonBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'muirGlacierBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'muirGlacierblock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'muirglacierblock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'petersburgBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'shanghaiTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'zeroBaseFee'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; 'BesuIbft2GenesisConfigType': { kind: 'OBJECT'; name: 'BesuIbft2GenesisConfigType'; fields: { 'berlinBlock': { name: 'berlinBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'byzantiumBlock': { name: 'byzantiumBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'cancunBlock': { name: 'cancunBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'cancunTime': { name: 'cancunTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'constantinopleBlock': { name: 'constantinopleBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'contractSizeLimit': { name: 'contractSizeLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'discovery': { name: 'discovery'; type: { kind: 'OBJECT'; name: 'BesuDiscoveryType'; ofType: null; } }; 'eip150Block': { name: 'eip150Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'eip150Hash': { name: 'eip150Hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'eip155Block': { name: 'eip155Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'eip158Block': { name: 'eip158Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'evmStackSize': { name: 'evmStackSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'homesteadBlock': { name: 'homesteadBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'ibft2': { name: 'ibft2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuBftGenesisConfigDataType'; ofType: null; }; } }; 'istanbulBlock': { name: 'istanbulBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'londonBlock': { name: 'londonBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'muirGlacierBlock': { name: 'muirGlacierBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'muirGlacierblock': { name: 'muirGlacierblock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'muirglacierblock': { name: 'muirglacierblock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'petersburgBlock': { name: 'petersburgBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'shanghaiTime': { name: 'shanghaiTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'zeroBaseFee': { name: 'zeroBaseFee'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; }; 'BesuIbft2GenesisInput': { kind: 'INPUT_OBJECT'; name: 'BesuIbft2GenesisInput'; isOneOf: false; inputFields: [{ name: 'alloc'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; }; defaultValue: null }, { name: 'coinbase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BesuIbft2GenesisConfigInput'; ofType: null; }; }; defaultValue: null }, { name: 'difficulty'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'extraData'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'mixHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nonce'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; - 'BesuIbftv2BlockchainNetwork': { kind: 'OBJECT'; name: 'BesuIbftv2BlockchainNetwork'; fields: { 'advancedDeploymentConfig': { name: 'advancedDeploymentConfig'; type: { kind: 'OBJECT'; name: 'AdvancedDeploymentConfig'; ofType: null; } }; 'application': { name: 'application'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Application'; ofType: null; }; } }; 'applicationDashBoardDependantsTree': { name: 'applicationDashBoardDependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'blockchainNodes': { name: 'blockchainNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BlockchainNodeType'; ofType: null; }; }; }; } }; 'canAddValidatingNodes': { name: 'canAddValidatingNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Workspace'; ofType: null; }; }; }; } }; 'canInviteWorkspaces': { name: 'canInviteWorkspaces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Workspace'; ofType: null; }; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'consensusAlgorithm': { name: 'consensusAlgorithm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConsensusAlgorithm'; ofType: null; }; } }; 'contractAddresses': { name: 'contractAddresses'; type: { kind: 'OBJECT'; name: 'ContractAddresses'; ofType: null; } }; 'contractSizeLimit': { name: 'contractSizeLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'credentials': { name: 'credentials'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceCredentials'; ofType: null; }; }; }; } }; 'decryptedFaucetWallet': { name: 'decryptedFaucetWallet'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'deletedAt': { name: 'deletedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'dependants': { name: 'dependants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependant'; ofType: null; }; }; }; } }; 'dependantsTree': { name: 'dependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependency'; ofType: null; }; }; }; } }; 'destroyJob': { name: 'destroyJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'disableAuth': { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'diskSpace': { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'endpoints': { name: 'endpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceEndpoints'; ofType: null; }; }; }; } }; 'entityVersion': { name: 'entityVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'evmStackSize': { name: 'evmStackSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'externalNodes': { name: 'externalNodes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkExternalNode'; ofType: null; }; }; } }; 'failedAt': { name: 'failedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'genesis': { name: 'genesis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuGenesisType'; ofType: null; }; } }; 'genesisWithDiscoveryConfig': { name: 'genesisWithDiscoveryConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuGenesisType'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceHealthStatus'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'invites': { name: 'invites'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkInvite'; ofType: null; }; }; }; } }; 'isPodHandlingTraffic': { name: 'isPodHandlingTraffic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodRunning': { name: 'isPodRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPublicEvmNetwork': { name: 'isPublicEvmNetwork'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'jobLogs': { name: 'jobLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'jobProgress': { name: 'jobProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'lastCompletedAt': { name: 'lastCompletedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'latestVersion': { name: 'latestVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'limitCpu': { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'limitMemory': { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'loadBalancers': { name: 'loadBalancers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'LoadBalancerType'; ofType: null; }; }; }; } }; 'locked': { name: 'locked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'metrics': { name: 'metrics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Metric'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'participants': { name: 'participants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkParticipant'; ofType: null; }; }; }; } }; 'password': { name: 'password'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pausedAt': { name: 'pausedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'predeployedContracts': { name: 'predeployedContracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'productName': { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'requestLogs': { name: 'requestLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RequestLog'; ofType: null; }; }; }; } }; 'requestsCpu': { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'requestsMemory': { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'resourceStatus': { name: 'resourceStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceResourceStatus'; ofType: null; }; } }; 'scaledAt': { name: 'scaledAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'secondsPerBlock': { name: 'secondsPerBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'serviceLogs': { name: 'serviceLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'serviceUrl': { name: 'serviceUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceDeploymentStatus'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; } }; 'uniqueName': { name: 'uniqueName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'upJob': { name: 'upJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'upgradable': { name: 'upgradable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'uuid': { name: 'uuid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'BesuIbftv2BlockchainNetwork': { kind: 'OBJECT'; name: 'BesuIbftv2BlockchainNetwork'; fields: { 'advancedDeploymentConfig': { name: 'advancedDeploymentConfig'; type: { kind: 'OBJECT'; name: 'AdvancedDeploymentConfig'; ofType: null; } }; 'application': { name: 'application'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Application'; ofType: null; }; } }; 'applicationDashBoardDependantsTree': { name: 'applicationDashBoardDependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'blockchainNodes': { name: 'blockchainNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BlockchainNodeType'; ofType: null; }; }; }; } }; 'canAddValidatingNodes': { name: 'canAddValidatingNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Workspace'; ofType: null; }; }; }; } }; 'canInviteWorkspaces': { name: 'canInviteWorkspaces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Workspace'; ofType: null; }; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'consensusAlgorithm': { name: 'consensusAlgorithm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConsensusAlgorithm'; ofType: null; }; } }; 'contractAddresses': { name: 'contractAddresses'; type: { kind: 'OBJECT'; name: 'ContractAddresses'; ofType: null; } }; 'contractSizeLimit': { name: 'contractSizeLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'credentials': { name: 'credentials'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceCredentials'; ofType: null; }; }; }; } }; 'decryptedFaucetWallet': { name: 'decryptedFaucetWallet'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'deletedAt': { name: 'deletedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'dependants': { name: 'dependants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependant'; ofType: null; }; }; }; } }; 'dependantsTree': { name: 'dependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependency'; ofType: null; }; }; }; } }; 'destroyJob': { name: 'destroyJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'disableAuth': { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'diskSpace': { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'endpoints': { name: 'endpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceEndpoints'; ofType: null; }; }; }; } }; 'entityVersion': { name: 'entityVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'evmStackSize': { name: 'evmStackSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'externalNodes': { name: 'externalNodes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkExternalNode'; ofType: null; }; }; } }; 'failedAt': { name: 'failedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'genesis': { name: 'genesis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuGenesisType'; ofType: null; }; } }; 'genesisArtifactsTag': { name: 'genesisArtifactsTag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'genesisWithDiscoveryConfig': { name: 'genesisWithDiscoveryConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuGenesisType'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceHealthStatus'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'invites': { name: 'invites'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkInvite'; ofType: null; }; }; }; } }; 'isPodHandlingTraffic': { name: 'isPodHandlingTraffic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodRunning': { name: 'isPodRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPublicEvmNetwork': { name: 'isPublicEvmNetwork'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'jobLogs': { name: 'jobLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'jobProgress': { name: 'jobProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'lastCompletedAt': { name: 'lastCompletedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'latestVersion': { name: 'latestVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'limitCpu': { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'limitMemory': { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'loadBalancers': { name: 'loadBalancers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'LoadBalancerType'; ofType: null; }; }; }; } }; 'locked': { name: 'locked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'metrics': { name: 'metrics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Metric'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'participants': { name: 'participants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkParticipant'; ofType: null; }; }; }; } }; 'password': { name: 'password'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pausedAt': { name: 'pausedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'predeployedContracts': { name: 'predeployedContracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'productName': { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'requestLogs': { name: 'requestLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RequestLog'; ofType: null; }; }; }; } }; 'requestsCpu': { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'requestsMemory': { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'resourceStatus': { name: 'resourceStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceResourceStatus'; ofType: null; }; } }; 'scaledAt': { name: 'scaledAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'secondsPerBlock': { name: 'secondsPerBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'serviceLogs': { name: 'serviceLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'serviceUrl': { name: 'serviceUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceDeploymentStatus'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; } }; 'uniqueName': { name: 'uniqueName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'upJob': { name: 'upJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'upgradable': { name: 'upgradable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'uuid': { name: 'uuid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'BesuIbftv2BlockchainNode': { kind: 'OBJECT'; name: 'BesuIbftv2BlockchainNode'; fields: { 'advancedDeploymentConfig': { name: 'advancedDeploymentConfig'; type: { kind: 'OBJECT'; name: 'AdvancedDeploymentConfig'; ofType: null; } }; 'application': { name: 'application'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Application'; ofType: null; }; } }; 'applicationDashBoardDependantsTree': { name: 'applicationDashBoardDependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'blockchainClient': { name: 'blockchainClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConsensusAlgorithm'; ofType: null; }; } }; 'blockchainNetwork': { name: 'blockchainNetwork'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BlockchainNetworkType'; ofType: null; }; } }; 'clusterServiceActionChecks': { name: 'clusterServiceActionChecks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNodeActionChecks'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'credentials': { name: 'credentials'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceCredentials'; ofType: null; }; }; }; } }; 'deletedAt': { name: 'deletedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'dependants': { name: 'dependants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependant'; ofType: null; }; }; }; } }; 'dependantsTree': { name: 'dependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependency'; ofType: null; }; }; }; } }; 'destroyJob': { name: 'destroyJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'disableAuth': { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'diskSpace': { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'endpoints': { name: 'endpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceEndpoints'; ofType: null; }; }; }; } }; 'entityVersion': { name: 'entityVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'failedAt': { name: 'failedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceHealthStatus'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'isEvm': { name: 'isEvm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodHandlingTraffic': { name: 'isPodHandlingTraffic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodRunning': { name: 'isPodRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'jobLogs': { name: 'jobLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'jobProgress': { name: 'jobProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'keyMaterial': { name: 'keyMaterial'; type: { kind: 'OBJECT'; name: 'AccessibleEcdsaP256PrivateKey'; ofType: null; } }; 'lastCompletedAt': { name: 'lastCompletedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'latestVersion': { name: 'latestVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'limitCpu': { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'limitMemory': { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'locked': { name: 'locked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'metrics': { name: 'metrics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Metric'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'nodeType': { name: 'nodeType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NodeType'; ofType: null; }; } }; 'password': { name: 'password'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pausedAt': { name: 'pausedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'privateKeys': { name: 'privateKeys'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PrivateKeyUnionType'; ofType: null; }; }; } }; 'productName': { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'requestLogs': { name: 'requestLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RequestLog'; ofType: null; }; }; }; } }; 'requestsCpu': { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'requestsMemory': { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'resourceStatus': { name: 'resourceStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceResourceStatus'; ofType: null; }; } }; 'scaledAt': { name: 'scaledAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'serviceLogs': { name: 'serviceLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'serviceUrl': { name: 'serviceUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceDeploymentStatus'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; } }; 'uniqueName': { name: 'uniqueName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'upJob': { name: 'upJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'upgradable': { name: 'upgradable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'uuid': { name: 'uuid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'BesuMiddleware': { kind: 'OBJECT'; name: 'BesuMiddleware'; fields: { 'advancedDeploymentConfig': { name: 'advancedDeploymentConfig'; type: { kind: 'OBJECT'; name: 'AdvancedDeploymentConfig'; ofType: null; } }; 'application': { name: 'application'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Application'; ofType: null; }; } }; 'applicationDashBoardDependantsTree': { name: 'applicationDashBoardDependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'credentials': { name: 'credentials'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceCredentials'; ofType: null; }; }; }; } }; 'deletedAt': { name: 'deletedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'dependants': { name: 'dependants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependant'; ofType: null; }; }; }; } }; 'dependantsTree': { name: 'dependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependency'; ofType: null; }; }; }; } }; 'destroyJob': { name: 'destroyJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'disableAuth': { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'diskSpace': { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'endpoints': { name: 'endpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceEndpoints'; ofType: null; }; }; }; } }; 'entityVersion': { name: 'entityVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'failedAt': { name: 'failedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceHealthStatus'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'interface': { name: 'interface'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MiddlewareType'; ofType: null; }; } }; 'isPodHandlingTraffic': { name: 'isPodHandlingTraffic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodRunning': { name: 'isPodRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'jobLogs': { name: 'jobLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'jobProgress': { name: 'jobProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'lastCompletedAt': { name: 'lastCompletedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'latestVersion': { name: 'latestVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'limitCpu': { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'limitMemory': { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'locked': { name: 'locked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'metrics': { name: 'metrics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Metric'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'password': { name: 'password'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pausedAt': { name: 'pausedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'productName': { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'requestLogs': { name: 'requestLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RequestLog'; ofType: null; }; }; }; } }; 'requestsCpu': { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'requestsMemory': { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'resourceStatus': { name: 'resourceStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceResourceStatus'; ofType: null; }; } }; 'scaledAt': { name: 'scaledAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'serviceLogs': { name: 'serviceLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'serviceUrl': { name: 'serviceUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'smartContractSet': { name: 'smartContractSet'; type: { kind: 'UNION'; name: 'SmartContractSetType'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceDeploymentStatus'; ofType: null; }; } }; 'storage': { name: 'storage'; type: { kind: 'UNION'; name: 'StorageType'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; } }; 'uniqueName': { name: 'uniqueName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'upJob': { name: 'upJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'upgradable': { name: 'upgradable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'uuid': { name: 'uuid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'BesuQBFTBlockchainNetwork': { kind: 'OBJECT'; name: 'BesuQBFTBlockchainNetwork'; fields: { 'advancedDeploymentConfig': { name: 'advancedDeploymentConfig'; type: { kind: 'OBJECT'; name: 'AdvancedDeploymentConfig'; ofType: null; } }; 'application': { name: 'application'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Application'; ofType: null; }; } }; 'applicationDashBoardDependantsTree': { name: 'applicationDashBoardDependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'blockchainNodes': { name: 'blockchainNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BlockchainNodeType'; ofType: null; }; }; }; } }; 'canAddValidatingNodes': { name: 'canAddValidatingNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Workspace'; ofType: null; }; }; }; } }; 'canInviteWorkspaces': { name: 'canInviteWorkspaces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Workspace'; ofType: null; }; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'consensusAlgorithm': { name: 'consensusAlgorithm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConsensusAlgorithm'; ofType: null; }; } }; 'contractAddresses': { name: 'contractAddresses'; type: { kind: 'OBJECT'; name: 'ContractAddresses'; ofType: null; } }; 'contractSizeLimit': { name: 'contractSizeLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'credentials': { name: 'credentials'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceCredentials'; ofType: null; }; }; }; } }; 'decryptedFaucetWallet': { name: 'decryptedFaucetWallet'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'deletedAt': { name: 'deletedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'dependants': { name: 'dependants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependant'; ofType: null; }; }; }; } }; 'dependantsTree': { name: 'dependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependency'; ofType: null; }; }; }; } }; 'destroyJob': { name: 'destroyJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'disableAuth': { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'diskSpace': { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'endpoints': { name: 'endpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceEndpoints'; ofType: null; }; }; }; } }; 'entityVersion': { name: 'entityVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'evmStackSize': { name: 'evmStackSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'externalNodes': { name: 'externalNodes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkExternalNode'; ofType: null; }; }; } }; 'failedAt': { name: 'failedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'genesis': { name: 'genesis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuGenesisType'; ofType: null; }; } }; 'genesisWithDiscoveryConfig': { name: 'genesisWithDiscoveryConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuGenesisType'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceHealthStatus'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'invites': { name: 'invites'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkInvite'; ofType: null; }; }; }; } }; 'isPodHandlingTraffic': { name: 'isPodHandlingTraffic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodRunning': { name: 'isPodRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPublicEvmNetwork': { name: 'isPublicEvmNetwork'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'jobLogs': { name: 'jobLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'jobProgress': { name: 'jobProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'lastCompletedAt': { name: 'lastCompletedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'latestVersion': { name: 'latestVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'limitCpu': { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'limitMemory': { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'loadBalancers': { name: 'loadBalancers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'LoadBalancerType'; ofType: null; }; }; }; } }; 'locked': { name: 'locked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'metrics': { name: 'metrics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Metric'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'participants': { name: 'participants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkParticipant'; ofType: null; }; }; }; } }; 'password': { name: 'password'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pausedAt': { name: 'pausedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'predeployedContracts': { name: 'predeployedContracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'productName': { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'requestLogs': { name: 'requestLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RequestLog'; ofType: null; }; }; }; } }; 'requestsCpu': { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'requestsMemory': { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'resourceStatus': { name: 'resourceStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceResourceStatus'; ofType: null; }; } }; 'scaledAt': { name: 'scaledAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'secondsPerBlock': { name: 'secondsPerBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'serviceLogs': { name: 'serviceLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'serviceUrl': { name: 'serviceUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceDeploymentStatus'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; } }; 'uniqueName': { name: 'uniqueName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'upJob': { name: 'upJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'upgradable': { name: 'upgradable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'uuid': { name: 'uuid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'BesuQBFTBlockchainNetwork': { kind: 'OBJECT'; name: 'BesuQBFTBlockchainNetwork'; fields: { 'advancedDeploymentConfig': { name: 'advancedDeploymentConfig'; type: { kind: 'OBJECT'; name: 'AdvancedDeploymentConfig'; ofType: null; } }; 'application': { name: 'application'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Application'; ofType: null; }; } }; 'applicationDashBoardDependantsTree': { name: 'applicationDashBoardDependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'blockchainNodes': { name: 'blockchainNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BlockchainNodeType'; ofType: null; }; }; }; } }; 'canAddValidatingNodes': { name: 'canAddValidatingNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Workspace'; ofType: null; }; }; }; } }; 'canInviteWorkspaces': { name: 'canInviteWorkspaces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Workspace'; ofType: null; }; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'consensusAlgorithm': { name: 'consensusAlgorithm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConsensusAlgorithm'; ofType: null; }; } }; 'contractAddresses': { name: 'contractAddresses'; type: { kind: 'OBJECT'; name: 'ContractAddresses'; ofType: null; } }; 'contractSizeLimit': { name: 'contractSizeLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'credentials': { name: 'credentials'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceCredentials'; ofType: null; }; }; }; } }; 'decryptedFaucetWallet': { name: 'decryptedFaucetWallet'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'deletedAt': { name: 'deletedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'dependants': { name: 'dependants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependant'; ofType: null; }; }; }; } }; 'dependantsTree': { name: 'dependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependency'; ofType: null; }; }; }; } }; 'destroyJob': { name: 'destroyJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'disableAuth': { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'diskSpace': { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'endpoints': { name: 'endpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceEndpoints'; ofType: null; }; }; }; } }; 'entityVersion': { name: 'entityVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'evmStackSize': { name: 'evmStackSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'externalNodes': { name: 'externalNodes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkExternalNode'; ofType: null; }; }; } }; 'failedAt': { name: 'failedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'genesis': { name: 'genesis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuGenesisType'; ofType: null; }; } }; 'genesisArtifactsTag': { name: 'genesisArtifactsTag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'genesisWithDiscoveryConfig': { name: 'genesisWithDiscoveryConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuGenesisType'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceHealthStatus'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'invites': { name: 'invites'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkInvite'; ofType: null; }; }; }; } }; 'isPodHandlingTraffic': { name: 'isPodHandlingTraffic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodRunning': { name: 'isPodRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPublicEvmNetwork': { name: 'isPublicEvmNetwork'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'jobLogs': { name: 'jobLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'jobProgress': { name: 'jobProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'lastCompletedAt': { name: 'lastCompletedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'latestVersion': { name: 'latestVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'limitCpu': { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'limitMemory': { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'loadBalancers': { name: 'loadBalancers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'LoadBalancerType'; ofType: null; }; }; }; } }; 'locked': { name: 'locked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'metrics': { name: 'metrics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Metric'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'participants': { name: 'participants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNetworkParticipant'; ofType: null; }; }; }; } }; 'password': { name: 'password'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pausedAt': { name: 'pausedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'predeployedContracts': { name: 'predeployedContracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'productName': { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'requestLogs': { name: 'requestLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RequestLog'; ofType: null; }; }; }; } }; 'requestsCpu': { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'requestsMemory': { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'resourceStatus': { name: 'resourceStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceResourceStatus'; ofType: null; }; } }; 'scaledAt': { name: 'scaledAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'secondsPerBlock': { name: 'secondsPerBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'serviceLogs': { name: 'serviceLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'serviceUrl': { name: 'serviceUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceDeploymentStatus'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; } }; 'uniqueName': { name: 'uniqueName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'upJob': { name: 'upJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'upgradable': { name: 'upgradable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'uuid': { name: 'uuid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'BesuQBFTBlockchainNode': { kind: 'OBJECT'; name: 'BesuQBFTBlockchainNode'; fields: { 'advancedDeploymentConfig': { name: 'advancedDeploymentConfig'; type: { kind: 'OBJECT'; name: 'AdvancedDeploymentConfig'; ofType: null; } }; 'application': { name: 'application'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Application'; ofType: null; }; } }; 'applicationDashBoardDependantsTree': { name: 'applicationDashBoardDependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'blockchainClient': { name: 'blockchainClient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConsensusAlgorithm'; ofType: null; }; } }; 'blockchainNetwork': { name: 'blockchainNetwork'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BlockchainNetworkType'; ofType: null; }; } }; 'clusterServiceActionChecks': { name: 'clusterServiceActionChecks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BlockchainNodeActionChecks'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'credentials': { name: 'credentials'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceCredentials'; ofType: null; }; }; }; } }; 'deletedAt': { name: 'deletedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'dependants': { name: 'dependants'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependant'; ofType: null; }; }; }; } }; 'dependantsTree': { name: 'dependantsTree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependantsTree'; ofType: null; }; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Dependency'; ofType: null; }; }; }; } }; 'destroyJob': { name: 'destroyJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'disableAuth': { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'diskSpace': { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'endpoints': { name: 'endpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ClusterServiceEndpoints'; ofType: null; }; }; }; } }; 'entityVersion': { name: 'entityVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'failedAt': { name: 'failedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'healthStatus': { name: 'healthStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceHealthStatus'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'isEvm': { name: 'isEvm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodHandlingTraffic': { name: 'isPodHandlingTraffic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPodRunning': { name: 'isPodRunning'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'jobLogs': { name: 'jobLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'jobProgress': { name: 'jobProgress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'keyMaterial': { name: 'keyMaterial'; type: { kind: 'OBJECT'; name: 'AccessibleEcdsaP256PrivateKey'; ofType: null; } }; 'lastCompletedAt': { name: 'lastCompletedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'latestVersion': { name: 'latestVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'limitCpu': { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'limitMemory': { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'locked': { name: 'locked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'metrics': { name: 'metrics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Metric'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'nodeType': { name: 'nodeType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NodeType'; ofType: null; }; } }; 'password': { name: 'password'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pausedAt': { name: 'pausedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'privateKeys': { name: 'privateKeys'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PrivateKeyUnionType'; ofType: null; }; }; } }; 'productName': { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'provider': { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'region': { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'requestLogs': { name: 'requestLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RequestLog'; ofType: null; }; }; }; } }; 'requestsCpu': { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'requestsMemory': { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'resourceStatus': { name: 'resourceStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceResourceStatus'; ofType: null; }; } }; 'scaledAt': { name: 'scaledAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'serviceLogs': { name: 'serviceLogs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'serviceUrl': { name: 'serviceUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceDeploymentStatus'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; } }; 'uniqueName': { name: 'uniqueName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'upJob': { name: 'upJob'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'upgradable': { name: 'upgradable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'uuid': { name: 'uuid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'BesuQbftGenesisConfigInput': { kind: 'INPUT_OBJECT'; name: 'BesuQbftGenesisConfigInput'; isOneOf: false; inputFields: [{ name: 'berlinBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'byzantiumBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'cancunBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'cancunTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'constantinopleBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'contractSizeLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'discovery'; type: { kind: 'INPUT_OBJECT'; name: 'BesuDiscoveryInput'; ofType: null; }; defaultValue: null }, { name: 'eip150Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'eip150Hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'eip155Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'eip158Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'evmStackSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'homesteadBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'istanbulBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'londonBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'muirGlacierBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'muirGlacierblock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'muirglacierblock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'petersburgBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'qbft'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BesuBftGenesisConfigDataInput'; ofType: null; }; }; defaultValue: null }, { name: 'shanghaiTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'zeroBaseFee'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; 'BesuQbftGenesisConfigType': { kind: 'OBJECT'; name: 'BesuQbftGenesisConfigType'; fields: { 'berlinBlock': { name: 'berlinBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'byzantiumBlock': { name: 'byzantiumBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'cancunBlock': { name: 'cancunBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'cancunTime': { name: 'cancunTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'constantinopleBlock': { name: 'constantinopleBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'contractSizeLimit': { name: 'contractSizeLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'discovery': { name: 'discovery'; type: { kind: 'OBJECT'; name: 'BesuDiscoveryType'; ofType: null; } }; 'eip150Block': { name: 'eip150Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'eip150Hash': { name: 'eip150Hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'eip155Block': { name: 'eip155Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'eip158Block': { name: 'eip158Block'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'evmStackSize': { name: 'evmStackSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'homesteadBlock': { name: 'homesteadBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'istanbulBlock': { name: 'istanbulBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'londonBlock': { name: 'londonBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'muirGlacierBlock': { name: 'muirGlacierBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'muirGlacierblock': { name: 'muirGlacierblock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'muirglacierblock': { name: 'muirglacierblock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'petersburgBlock': { name: 'petersburgBlock'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'qbft': { name: 'qbft'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BesuBftGenesisConfigDataType'; ofType: null; }; } }; 'shanghaiTime': { name: 'shanghaiTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'zeroBaseFee': { name: 'zeroBaseFee'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; }; @@ -112,7 +112,7 @@ export type introspection_types = { 'CreateMultiServiceBlockchainNodeArgs': { kind: 'INPUT_OBJECT'; name: 'CreateMultiServiceBlockchainNodeArgs'; isOneOf: false; inputFields: [{ name: 'advancedDeploymentConfig'; type: { kind: 'INPUT_OBJECT'; name: 'AdvancedDeploymentConfigInput'; ofType: null; }; defaultValue: null }, { name: 'blockchainNetworkRef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'keyMaterial'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nodeType'; type: { kind: 'ENUM'; name: 'NodeType'; ofType: null; }; defaultValue: null }, { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; defaultValue: null }]; }; 'CreateMultiServiceCustomDeploymentArgs': { kind: 'INPUT_OBJECT'; name: 'CreateMultiServiceCustomDeploymentArgs'; isOneOf: false; inputFields: [{ name: 'advancedDeploymentConfig'; type: { kind: 'INPUT_OBJECT'; name: 'AdvancedDeploymentConfigInput'; ofType: null; }; defaultValue: null }, { name: 'customDomains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: "true" }, { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'environmentVariables'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; defaultValue: null }, { name: 'imageCredentialsAccessToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'imageCredentialsUsername'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'imageName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'imageRepository'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'imageTag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'port'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'primaryDomain'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; defaultValue: null }]; }; 'CreateMultiServiceInsightsArgs': { kind: 'INPUT_OBJECT'; name: 'CreateMultiServiceInsightsArgs'; isOneOf: false; inputFields: [{ name: 'advancedDeploymentConfig'; type: { kind: 'INPUT_OBJECT'; name: 'AdvancedDeploymentConfigInput'; ofType: null; }; defaultValue: null }, { name: 'blockchainNodeRef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'disableAuth'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: "false" }, { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'insightsCategory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'InsightsCategory'; ofType: null; }; }; defaultValue: null }, { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'loadBalancerRef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; defaultValue: null }]; }; - 'CreateMultiServiceIntegrationArgs': { kind: 'INPUT_OBJECT'; name: 'CreateMultiServiceIntegrationArgs'; isOneOf: false; inputFields: [{ name: 'advancedDeploymentConfig'; type: { kind: 'INPUT_OBJECT'; name: 'AdvancedDeploymentConfigInput'; ofType: null; }; defaultValue: null }, { name: 'blockchainNode'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'integrationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'IntegrationType'; ofType: null; }; }; defaultValue: null }, { name: 'keyMaterial'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'loadBalancer'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; defaultValue: null }]; }; + 'CreateMultiServiceIntegrationArgs': { kind: 'INPUT_OBJECT'; name: 'CreateMultiServiceIntegrationArgs'; isOneOf: false; inputFields: [{ name: 'advancedDeploymentConfig'; type: { kind: 'INPUT_OBJECT'; name: 'AdvancedDeploymentConfigInput'; ofType: null; }; defaultValue: null }, { name: 'blockchainNode'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'integrationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'IntegrationType'; ofType: null; }; }; defaultValue: null }, { name: 'keyMaterial'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'loadBalancer'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'preloadDatabaseSchema'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; defaultValue: null }]; }; 'CreateMultiServiceLoadBalancerArgs': { kind: 'INPUT_OBJECT'; name: 'CreateMultiServiceLoadBalancerArgs'; isOneOf: false; inputFields: [{ name: 'advancedDeploymentConfig'; type: { kind: 'INPUT_OBJECT'; name: 'AdvancedDeploymentConfigInput'; ofType: null; }; defaultValue: null }, { name: 'blockchainNetworkRef'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'connectedNodeRefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; defaultValue: null }]; }; 'CreateMultiServiceMiddlewareArgs': { kind: 'INPUT_OBJECT'; name: 'CreateMultiServiceMiddlewareArgs'; isOneOf: false; inputFields: [{ name: 'abis'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SmartContractPortalMiddlewareAbiInputDto'; ofType: null; }; }; }; defaultValue: null }, { name: 'advancedDeploymentConfig'; type: { kind: 'INPUT_OBJECT'; name: 'AdvancedDeploymentConfigInput'; ofType: null; }; defaultValue: null }, { name: 'blockchainNodeRef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'defaultSubgraph'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'easContractAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'includePredeployedAbis'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'interface'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MiddlewareType'; ofType: null; }; }; defaultValue: null }, { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'loadBalancerRef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ordererNodeId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'peerNodeId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'schemaRegistryContractAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; defaultValue: null }, { name: 'smartContractSetRef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'storageRef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; defaultValue: null }]; }; 'CreateMultiServicePrivateKeyArgs': { kind: 'INPUT_OBJECT'; name: 'CreateMultiServicePrivateKeyArgs'; isOneOf: false; inputFields: [{ name: 'accountFactoryAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'advancedDeploymentConfig'; type: { kind: 'INPUT_OBJECT'; name: 'AdvancedDeploymentConfigInput'; ofType: null; }; defaultValue: null }, { name: 'blockchainNodeRefs'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivationPath'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'diskSpace'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'entryPointAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'limitCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'limitMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'mnemonic'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'paymasterAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'privateKeyType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PrivateKeyType'; ofType: null; }; }; defaultValue: null }, { name: 'productName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'provider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ref'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'region'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'relayerKeyRef'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'requestsCpu'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'requestsMemory'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'ENUM'; name: 'ClusterServiceSize'; ofType: null; }; defaultValue: "SMALL" }, { name: 'trustedForwarderAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'trustedForwarderName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ClusterServiceType'; ofType: null; }; defaultValue: null }]; }; diff --git a/test/platform-list-services.e2e.test.ts b/test/platform-list-services.e2e.test.ts index c97a3b2ad..caf2d3817 100644 --- a/test/platform-list-services.e2e.test.ts +++ b/test/platform-list-services.e2e.test.ts @@ -144,7 +144,7 @@ describe("Test platform list services command", () => { expect(output).toContain("Workspaces"); expect(output).toContain("Name"); expect(output).toContain("Unique Name"); - expect(output).toContain(env.SETTLEMINT_WORKSPACE); + expect(output).toContain(env.SETTLEMINT_WORKSPACE ?? ""); expect(output).not.toContain("Url"); }); @@ -154,7 +154,8 @@ describe("Test platform list services command", () => { expect(output).toContain("Workspaces"); expect(output).toContain("Name"); expect(output).toContain("Unique Name"); - expect(output).toContain(env.SETTLEMINT_WORKSPACE); + expect(env.SETTLEMINT_WORKSPACE).toBeDefined(); + expect(output).toContain(env.SETTLEMINT_WORKSPACE ?? ""); expect(output).toContain("Url"); }); @@ -208,7 +209,8 @@ describe("Test platform list services command", () => { expect(output).toContain("Applications"); expect(output).toContain("Name"); expect(output).toContain("Unique Name"); - expect(output).toContain(env.SETTLEMINT_APPLICATION); + expect(env.SETTLEMINT_APPLICATION).toBeDefined(); + expect(output).toContain(env.SETTLEMINT_APPLICATION ?? ""); expect(output).not.toContain("Url"); }); @@ -218,7 +220,8 @@ describe("Test platform list services command", () => { expect(output).toContain("Applications"); expect(output).toContain("Name"); expect(output).toContain("Unique Name"); - expect(output).toContain(env.SETTLEMINT_APPLICATION); + expect(env.SETTLEMINT_APPLICATION).toBeDefined(); + expect(output).toContain(env.SETTLEMINT_APPLICATION ?? ""); expect(output).toContain("Url"); }); From 0fd9212f1cef25458b1deaaa3d6df074458d6db5 Mon Sep 17 00:00:00 2001 From: Jan Bevers Date: Fri, 19 Sep 2025 09:42:51 +0200 Subject: [PATCH 2/2] extra check --- test/platform-list-services.e2e.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/platform-list-services.e2e.test.ts b/test/platform-list-services.e2e.test.ts index caf2d3817..d0eae0c12 100644 --- a/test/platform-list-services.e2e.test.ts +++ b/test/platform-list-services.e2e.test.ts @@ -144,6 +144,7 @@ describe("Test platform list services command", () => { expect(output).toContain("Workspaces"); expect(output).toContain("Name"); expect(output).toContain("Unique Name"); + expect(env.SETTLEMINT_WORKSPACE).toBeDefined(); expect(output).toContain(env.SETTLEMINT_WORKSPACE ?? ""); expect(output).not.toContain("Url"); });