Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions sdk/js/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down Expand Up @@ -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"""
Expand Down Expand Up @@ -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"""
Expand Down Expand Up @@ -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!
Expand Down Expand Up @@ -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!

Expand Down
Loading