diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/CreateClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/CreateClientCommand.cs index 28c7ef7efea..3d9624b5c5e 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/CreateClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/CreateClientCommand.cs @@ -70,6 +70,7 @@ private static async Task ExecuteAsync( { ICreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError err => err.Message, ICreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation err => err.Message, + ICreateClientCommandMutation_CreateClient_Errors_DuplicateNameError => Messages.DuplicateName(name, "Client"), IError err => Messages.UnexpectedMutationError(err), _ => Messages.UnexpectedMutationError() }; diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/CreateMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/CreateMcpFeatureCollectionCommand.cs index 7c940f5ff00..0dbe28fb8d9 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/CreateMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/CreateMcpFeatureCollectionCommand.cs @@ -68,6 +68,7 @@ private static async Task ExecuteAsync( { IApiNotFoundError err => err.Message, IUnauthorizedOperation err => err.Message, + IDuplicateNameError => Messages.DuplicateName(name, "MCP Feature Collection"), IError err => Messages.UnexpectedMutationError(err), _ => Messages.UnexpectedMutationError() }; diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/CreateOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/CreateOpenApiCollectionCommand.cs index 5cfe692fac1..3cc33b3c3f6 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/CreateOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/CreateOpenApiCollectionCommand.cs @@ -68,6 +68,7 @@ private static async Task ExecuteAsync( { IApiNotFoundError err => err.Message, IUnauthorizedOperation err => err.Message, + IDuplicateNameError => Messages.DuplicateName(name, "OpenAPI Collection"), IError err => Messages.UnexpectedMutationError(err), _ => Messages.UnexpectedMutationError() }; diff --git a/src/Nitro/CommandLine/src/CommandLine/Messages.cs b/src/Nitro/CommandLine/src/CommandLine/Messages.cs index 2434c05d96b..fbf28095e63 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Messages.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Messages.cs @@ -17,6 +17,9 @@ public static string UnexpectedMutationError() public static string UnexpectedMutationError(IError error) => $"Unexpected mutation error: {error.Message}"; + public static string DuplicateName(string name, string entity) + => $"The name '{name.EscapeMarkup()}' is already in use by another {entity}."; + public static string SchemaFileDoesNotExist(string path) => $"Schema file '{path}' does not exist."; public static string SchemaSettingsFileDoesNotExist(string path) => $"Schema settings file '{path}' does not exist."; diff --git a/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Clients/CreateClientCommandTests.cs b/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Clients/CreateClientCommandTests.cs index e08e9ecc9f3..8018d197ce1 100644 --- a/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Clients/CreateClientCommandTests.cs +++ b/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Clients/CreateClientCommandTests.cs @@ -320,6 +320,9 @@ public static TheoryData(MockBehavior.Strict); unauthorized.As().SetupGet(x => x.Message).Returns("Unauthorized operation."); + var duplicateName = new Mock(MockBehavior.Strict); + duplicateName.As().SetupGet(x => x.Message).Returns("Name already in use."); + var genericError = new Mock(MockBehavior.Strict); genericError.As().SetupGet(x => x.Message).Returns("something bad happened"); @@ -327,6 +330,7 @@ public static TheoryData + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowClientCommandQuery_Node_ApiKey : global::System.IEquatable, IShowClientCommandQuery_Node_ApiKey { @@ -5154,6 +5157,122 @@ public ShowClientCommandQuery_Node_OpenApiCollectionVersion() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_OpenApiEndpoint : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiEndpoint + { + public ShowClientCommandQuery_Node_OpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowClientCommandQuery_Node_OpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_OpenApiModel : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiModel + { + public ShowClientCommandQuery_Node_OpenApiModel() + { + } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowClientCommandQuery_Node_OpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowClientCommandQuery_Node_Organization : global::System.IEquatable, IShowClientCommandQuery_Node_Organization @@ -5270,6 +5389,180 @@ public ShowClientCommandQuery_Node_OrganizationMember() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IShowClientCommandQuery_Node_PublishedOpenApiCollectionVersion + { + public ShowClientCommandQuery_Node_PublishedOpenApiCollectionVersion() + { + } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_PublishedOpenApiCollectionVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowClientCommandQuery_Node_PublishedOpenApiCollectionVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IShowClientCommandQuery_Node_PublishedOpenApiEndpoint + { + public ShowClientCommandQuery_Node_PublishedOpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_PublishedOpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowClientCommandQuery_Node_PublishedOpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IShowClientCommandQuery_Node_PublishedOpenApiModel + { + public ShowClientCommandQuery_Node_PublishedOpenApiModel() + { + } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_PublishedOpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowClientCommandQuery_Node_PublishedOpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowClientCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_SchemaChangeLog @@ -6155,6 +6448,9 @@ public partial interface IShowClientCommandQuery_Node_ApiDocument : IShowClientC } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_ApiKey : IShowClientCommandQuery_Node { @@ -6350,6 +6646,18 @@ public partial interface IShowClientCommandQuery_Node_OpenApiCollectionVersion : { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_OpenApiEndpoint : IShowClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_OpenApiModel : IShowClientCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_Organization : IShowClientCommandQuery_Node @@ -6362,6 +6670,24 @@ public partial interface IShowClientCommandQuery_Node_OrganizationMember : IShow { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_PublishedOpenApiCollectionVersion : IShowClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_PublishedOpenApiEndpoint : IShowClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_PublishedOpenApiModel : IShowClientCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowClientCommandQuery_Node_SchemaChangeLog : IShowClientCommandQuery_Node @@ -7456,6 +7782,9 @@ public PageClientVersionDetailQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQuery_Node_ApiKey : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ApiKey { @@ -9261,6 +9590,122 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQuery_Node_OpenApiEndpoint : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiEndpoint + { + public PageClientVersionDetailQuery_Node_OpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((PageClientVersionDetailQuery_Node_OpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQuery_Node_OpenApiModel : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiModel + { + public PageClientVersionDetailQuery_Node_OpenApiModel() + { + } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((PageClientVersionDetailQuery_Node_OpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class PageClientVersionDetailQuery_Node_Organization : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Organization @@ -9379,13 +9824,13 @@ public PageClientVersionDetailQuery_Node_OrganizationMember() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_SchemaChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_SchemaChangeLog + public partial class PageClientVersionDetailQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_PublishedOpenApiCollectionVersion { - public PageClientVersionDetailQuery_Node_SchemaChangeLog() + public PageClientVersionDetailQuery_Node_PublishedOpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_SchemaChangeLog? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_PublishedOpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -9422,7 +9867,7 @@ public PageClientVersionDetailQuery_Node_SchemaChangeLog() return false; } - return Equals((PageClientVersionDetailQuery_Node_SchemaChangeLog)obj); + return Equals((PageClientVersionDetailQuery_Node_PublishedOpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -9437,13 +9882,13 @@ public PageClientVersionDetailQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_SchemaDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_SchemaDeployment + public partial class PageClientVersionDetailQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IPageClientVersionDetailQuery_Node_PublishedOpenApiEndpoint { - public PageClientVersionDetailQuery_Node_SchemaDeployment() + public PageClientVersionDetailQuery_Node_PublishedOpenApiEndpoint() { } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_SchemaDeployment? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_PublishedOpenApiEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -9480,7 +9925,7 @@ public PageClientVersionDetailQuery_Node_SchemaDeployment() return false; } - return Equals((PageClientVersionDetailQuery_Node_SchemaDeployment)obj); + return Equals((PageClientVersionDetailQuery_Node_PublishedOpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -9495,13 +9940,13 @@ public PageClientVersionDetailQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Stage : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Stage + public partial class PageClientVersionDetailQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IPageClientVersionDetailQuery_Node_PublishedOpenApiModel { - public PageClientVersionDetailQuery_Node_Stage() + public PageClientVersionDetailQuery_Node_PublishedOpenApiModel() { } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Stage? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_PublishedOpenApiModel? other) { if (ReferenceEquals(null, other)) { @@ -9538,7 +9983,7 @@ public PageClientVersionDetailQuery_Node_Stage() return false; } - return Equals((PageClientVersionDetailQuery_Node_Stage)obj); + return Equals((PageClientVersionDetailQuery_Node_PublishedOpenApiModel)obj); } public override global::System.Int32 GetHashCode() @@ -9553,13 +9998,13 @@ public PageClientVersionDetailQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_User : global::System.IEquatable, IPageClientVersionDetailQuery_Node_User + public partial class PageClientVersionDetailQuery_Node_SchemaChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_SchemaChangeLog { - public PageClientVersionDetailQuery_Node_User() + public PageClientVersionDetailQuery_Node_SchemaChangeLog() { } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_User? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -9596,7 +10041,7 @@ public PageClientVersionDetailQuery_Node_User() return false; } - return Equals((PageClientVersionDetailQuery_Node_User)obj); + return Equals((PageClientVersionDetailQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -9611,13 +10056,13 @@ public PageClientVersionDetailQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Workspace : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Workspace + public partial class PageClientVersionDetailQuery_Node_SchemaDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_SchemaDeployment { - public PageClientVersionDetailQuery_Node_Workspace() + public PageClientVersionDetailQuery_Node_SchemaDeployment() { } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -9654,7 +10099,7 @@ public PageClientVersionDetailQuery_Node_Workspace() return false; } - return Equals((PageClientVersionDetailQuery_Node_Workspace)obj); + return Equals((PageClientVersionDetailQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -9669,13 +10114,187 @@ public PageClientVersionDetailQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_WorkspaceDocument : global::System.IEquatable, IPageClientVersionDetailQuery_Node_WorkspaceDocument + public partial class PageClientVersionDetailQuery_Node_Stage : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Stage { - public PageClientVersionDetailQuery_Node_WorkspaceDocument() + public PageClientVersionDetailQuery_Node_Stage() { } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_WorkspaceDocument? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Stage? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((PageClientVersionDetailQuery_Node_Stage)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQuery_Node_User : global::System.IEquatable, IPageClientVersionDetailQuery_Node_User + { + public PageClientVersionDetailQuery_Node_User() + { + } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_User? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((PageClientVersionDetailQuery_Node_User)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQuery_Node_Workspace : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Workspace + { + public PageClientVersionDetailQuery_Node_Workspace() + { + } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Workspace? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((PageClientVersionDetailQuery_Node_Workspace)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQuery_Node_WorkspaceDocument : global::System.IEquatable, IPageClientVersionDetailQuery_Node_WorkspaceDocument + { + public PageClientVersionDetailQuery_Node_WorkspaceDocument() + { + } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -10193,6 +10812,9 @@ public partial interface IPageClientVersionDetailQuery_Node_ApiDocument : IPageC } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_ApiKey : IPageClientVersionDetailQuery_Node { @@ -10379,6 +11001,18 @@ public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionVer { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPageClientVersionDetailQuery_Node_OpenApiEndpoint : IPageClientVersionDetailQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPageClientVersionDetailQuery_Node_OpenApiModel : IPageClientVersionDetailQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_Organization : IPageClientVersionDetailQuery_Node @@ -10391,6 +11025,24 @@ public partial interface IPageClientVersionDetailQuery_Node_OrganizationMember : { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPageClientVersionDetailQuery_Node_PublishedOpenApiCollectionVersion : IPageClientVersionDetailQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPageClientVersionDetailQuery_Node_PublishedOpenApiEndpoint : IPageClientVersionDetailQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPageClientVersionDetailQuery_Node_PublishedOpenApiModel : IPageClientVersionDetailQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IPageClientVersionDetailQuery_Node_SchemaChangeLog : IPageClientVersionDetailQuery_Node @@ -25560,6 +26212,9 @@ public ListClientCommandQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQuery_Node_ApiKey : global::System.IEquatable, IListClientCommandQuery_Node_ApiKey { @@ -27357,6 +28012,122 @@ public ListClientCommandQuery_Node_OpenApiCollectionVersion() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListClientCommandQuery_Node_OpenApiEndpoint : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiEndpoint + { + public ListClientCommandQuery_Node_OpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListClientCommandQuery_Node_OpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListClientCommandQuery_Node_OpenApiModel : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiModel + { + public ListClientCommandQuery_Node_OpenApiModel() + { + } + + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListClientCommandQuery_Node_OpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListClientCommandQuery_Node_Organization : global::System.IEquatable, IListClientCommandQuery_Node_Organization @@ -27475,13 +28246,13 @@ public ListClientCommandQuery_Node_OrganizationMember() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_SchemaChangeLog + public partial class ListClientCommandQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IListClientCommandQuery_Node_PublishedOpenApiCollectionVersion { - public ListClientCommandQuery_Node_SchemaChangeLog() + public ListClientCommandQuery_Node_PublishedOpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_SchemaChangeLog? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_PublishedOpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -27518,7 +28289,7 @@ public ListClientCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ListClientCommandQuery_Node_SchemaChangeLog)obj); + return Equals((ListClientCommandQuery_Node_PublishedOpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -27533,13 +28304,13 @@ public ListClientCommandQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IListClientCommandQuery_Node_SchemaDeployment + public partial class ListClientCommandQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IListClientCommandQuery_Node_PublishedOpenApiEndpoint { - public ListClientCommandQuery_Node_SchemaDeployment() + public ListClientCommandQuery_Node_PublishedOpenApiEndpoint() { } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_SchemaDeployment? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_PublishedOpenApiEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -27576,7 +28347,7 @@ public ListClientCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ListClientCommandQuery_Node_SchemaDeployment)obj); + return Equals((ListClientCommandQuery_Node_PublishedOpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -27591,13 +28362,13 @@ public ListClientCommandQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Stage : global::System.IEquatable, IListClientCommandQuery_Node_Stage + public partial class ListClientCommandQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IListClientCommandQuery_Node_PublishedOpenApiModel { - public ListClientCommandQuery_Node_Stage() + public ListClientCommandQuery_Node_PublishedOpenApiModel() { } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Stage? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_PublishedOpenApiModel? other) { if (ReferenceEquals(null, other)) { @@ -27634,7 +28405,7 @@ public ListClientCommandQuery_Node_Stage() return false; } - return Equals((ListClientCommandQuery_Node_Stage)obj); + return Equals((ListClientCommandQuery_Node_PublishedOpenApiModel)obj); } public override global::System.Int32 GetHashCode() @@ -27649,13 +28420,13 @@ public ListClientCommandQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_User : global::System.IEquatable, IListClientCommandQuery_Node_User + public partial class ListClientCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_SchemaChangeLog { - public ListClientCommandQuery_Node_User() + public ListClientCommandQuery_Node_SchemaChangeLog() { } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_User? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -27692,7 +28463,7 @@ public ListClientCommandQuery_Node_User() return false; } - return Equals((ListClientCommandQuery_Node_User)obj); + return Equals((ListClientCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -27707,13 +28478,13 @@ public ListClientCommandQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Workspace : global::System.IEquatable, IListClientCommandQuery_Node_Workspace + public partial class ListClientCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IListClientCommandQuery_Node_SchemaDeployment { - public ListClientCommandQuery_Node_Workspace() + public ListClientCommandQuery_Node_SchemaDeployment() { } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -27750,7 +28521,7 @@ public ListClientCommandQuery_Node_Workspace() return false; } - return Equals((ListClientCommandQuery_Node_Workspace)obj); + return Equals((ListClientCommandQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -27765,13 +28536,187 @@ public ListClientCommandQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IListClientCommandQuery_Node_WorkspaceDocument + public partial class ListClientCommandQuery_Node_Stage : global::System.IEquatable, IListClientCommandQuery_Node_Stage { - public ListClientCommandQuery_Node_WorkspaceDocument() + public ListClientCommandQuery_Node_Stage() { } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_WorkspaceDocument? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Stage? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListClientCommandQuery_Node_Stage)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListClientCommandQuery_Node_User : global::System.IEquatable, IListClientCommandQuery_Node_User + { + public ListClientCommandQuery_Node_User() + { + } + + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_User? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListClientCommandQuery_Node_User)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListClientCommandQuery_Node_Workspace : global::System.IEquatable, IListClientCommandQuery_Node_Workspace + { + public ListClientCommandQuery_Node_Workspace() + { + } + + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Workspace? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListClientCommandQuery_Node_Workspace)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListClientCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IListClientCommandQuery_Node_WorkspaceDocument + { + public ListClientCommandQuery_Node_WorkspaceDocument() + { + } + + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -28687,6 +29632,9 @@ public partial interface IListClientCommandQuery_Node_ApiDocument : IListClientC } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_ApiKey : IListClientCommandQuery_Node { @@ -28872,6 +29820,18 @@ public partial interface IListClientCommandQuery_Node_OpenApiCollectionVersion : { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_OpenApiEndpoint : IListClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_OpenApiModel : IListClientCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_Organization : IListClientCommandQuery_Node @@ -28884,6 +29844,24 @@ public partial interface IListClientCommandQuery_Node_OrganizationMember : IList { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_PublishedOpenApiCollectionVersion : IListClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_PublishedOpenApiEndpoint : IListClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_PublishedOpenApiModel : IListClientCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListClientCommandQuery_Node_SchemaChangeLog : IListClientCommandQuery_Node @@ -29484,6 +30462,74 @@ public CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(glo } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateClientCommandMutation_CreateClient_Errors_DuplicateNameError : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Errors_DuplicateNameError + { + public CreateClientCommandMutation_CreateClient_Errors_DuplicateNameError(global::System.String message, global::System.String __typename) + { + Message = message; + this.__typename = __typename; + } + + public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Errors_DuplicateNameError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((CreateClientCommandMutation_CreateClient_Errors_DuplicateNameError)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateClientCommandMutation_CreateClient_Client_Api_Api : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Api_Api @@ -30046,6 +31092,22 @@ public partial interface ICreateClientCommandMutation_CreateClient_Errors_Unauth { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDuplicateNameError : IError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Errors_DuplicateNameError : ICreateClientCommandMutation_CreateClient_Errors, IDuplicateNameError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateClientCommandMutation_CreateClient_Client_Api @@ -30382,6 +31444,9 @@ public ShowApiCommandQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowApiCommandQuery_Node_ApiKey : global::System.IEquatable, IShowApiCommandQuery_Node_ApiKey { @@ -32181,13 +33246,13 @@ public ShowApiCommandQuery_Node_OpenApiCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Organization : global::System.IEquatable, IShowApiCommandQuery_Node_Organization + public partial class ShowApiCommandQuery_Node_OpenApiEndpoint : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiEndpoint { - public ShowApiCommandQuery_Node_Organization() + public ShowApiCommandQuery_Node_OpenApiEndpoint() { } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Organization? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -32224,7 +33289,7 @@ public ShowApiCommandQuery_Node_Organization() return false; } - return Equals((ShowApiCommandQuery_Node_Organization)obj); + return Equals((ShowApiCommandQuery_Node_OpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -32239,13 +33304,13 @@ public ShowApiCommandQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowApiCommandQuery_Node_OrganizationMember + public partial class ShowApiCommandQuery_Node_OpenApiModel : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiModel { - public ShowApiCommandQuery_Node_OrganizationMember() + public ShowApiCommandQuery_Node_OpenApiModel() { } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OrganizationMember? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiModel? other) { if (ReferenceEquals(null, other)) { @@ -32282,7 +33347,7 @@ public ShowApiCommandQuery_Node_OrganizationMember() return false; } - return Equals((ShowApiCommandQuery_Node_OrganizationMember)obj); + return Equals((ShowApiCommandQuery_Node_OpenApiModel)obj); } public override global::System.Int32 GetHashCode() @@ -32297,13 +33362,13 @@ public ShowApiCommandQuery_Node_OrganizationMember() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_SchemaChangeLog + public partial class ShowApiCommandQuery_Node_Organization : global::System.IEquatable, IShowApiCommandQuery_Node_Organization { - public ShowApiCommandQuery_Node_SchemaChangeLog() + public ShowApiCommandQuery_Node_Organization() { } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_SchemaChangeLog? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -32340,7 +33405,7 @@ public ShowApiCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ShowApiCommandQuery_Node_SchemaChangeLog)obj); + return Equals((ShowApiCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -32355,13 +33420,13 @@ public ShowApiCommandQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_SchemaDeployment + public partial class ShowApiCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowApiCommandQuery_Node_OrganizationMember { - public ShowApiCommandQuery_Node_SchemaDeployment() + public ShowApiCommandQuery_Node_OrganizationMember() { } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_SchemaDeployment? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -32398,7 +33463,7 @@ public ShowApiCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ShowApiCommandQuery_Node_SchemaDeployment)obj); + return Equals((ShowApiCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -32413,13 +33478,13 @@ public ShowApiCommandQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Stage : global::System.IEquatable, IShowApiCommandQuery_Node_Stage + public partial class ShowApiCommandQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IShowApiCommandQuery_Node_PublishedOpenApiCollectionVersion { - public ShowApiCommandQuery_Node_Stage() + public ShowApiCommandQuery_Node_PublishedOpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Stage? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_PublishedOpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -32456,7 +33521,7 @@ public ShowApiCommandQuery_Node_Stage() return false; } - return Equals((ShowApiCommandQuery_Node_Stage)obj); + return Equals((ShowApiCommandQuery_Node_PublishedOpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -32471,13 +33536,13 @@ public ShowApiCommandQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_User : global::System.IEquatable, IShowApiCommandQuery_Node_User + public partial class ShowApiCommandQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IShowApiCommandQuery_Node_PublishedOpenApiEndpoint { - public ShowApiCommandQuery_Node_User() + public ShowApiCommandQuery_Node_PublishedOpenApiEndpoint() { } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_User? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_PublishedOpenApiEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -32514,7 +33579,7 @@ public ShowApiCommandQuery_Node_User() return false; } - return Equals((ShowApiCommandQuery_Node_User)obj); + return Equals((ShowApiCommandQuery_Node_PublishedOpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -32529,13 +33594,303 @@ public ShowApiCommandQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Workspace : global::System.IEquatable, IShowApiCommandQuery_Node_Workspace + public partial class ShowApiCommandQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IShowApiCommandQuery_Node_PublishedOpenApiModel { - public ShowApiCommandQuery_Node_Workspace() + public ShowApiCommandQuery_Node_PublishedOpenApiModel() { } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_PublishedOpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowApiCommandQuery_Node_PublishedOpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowApiCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_SchemaChangeLog + { + public ShowApiCommandQuery_Node_SchemaChangeLog() + { + } + + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_SchemaChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowApiCommandQuery_Node_SchemaChangeLog)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowApiCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_SchemaDeployment + { + public ShowApiCommandQuery_Node_SchemaDeployment() + { + } + + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_SchemaDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowApiCommandQuery_Node_SchemaDeployment)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowApiCommandQuery_Node_Stage : global::System.IEquatable, IShowApiCommandQuery_Node_Stage + { + public ShowApiCommandQuery_Node_Stage() + { + } + + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Stage? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowApiCommandQuery_Node_Stage)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowApiCommandQuery_Node_User : global::System.IEquatable, IShowApiCommandQuery_Node_User + { + public ShowApiCommandQuery_Node_User() + { + } + + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_User? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowApiCommandQuery_Node_User)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowApiCommandQuery_Node_Workspace : global::System.IEquatable, IShowApiCommandQuery_Node_Workspace + { + public ShowApiCommandQuery_Node_Workspace() + { + } + + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -32878,6 +34233,9 @@ public partial interface IShowApiCommandQuery_Node_ApiDocument : IShowApiCommand } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_ApiKey : IShowApiCommandQuery_Node { @@ -33063,6 +34421,18 @@ public partial interface IShowApiCommandQuery_Node_OpenApiCollectionVersion : IS { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_OpenApiEndpoint : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_OpenApiModel : IShowApiCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_Organization : IShowApiCommandQuery_Node @@ -33075,6 +34445,24 @@ public partial interface IShowApiCommandQuery_Node_OrganizationMember : IShowApi { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_PublishedOpenApiCollectionVersion : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_PublishedOpenApiEndpoint : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_PublishedOpenApiModel : IShowApiCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowApiCommandQuery_Node_SchemaChangeLog : IShowApiCommandQuery_Node @@ -33352,6 +34740,9 @@ public DeleteApiCommandQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandQuery_Node_ApiKey : global::System.IEquatable, IDeleteApiCommandQuery_Node_ApiKey { @@ -35149,6 +36540,122 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionVersion() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiCommandQuery_Node_OpenApiEndpoint : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiEndpoint + { + public DeleteApiCommandQuery_Node_OpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((DeleteApiCommandQuery_Node_OpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiCommandQuery_Node_OpenApiModel : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiModel + { + public DeleteApiCommandQuery_Node_OpenApiModel() + { + } + + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((DeleteApiCommandQuery_Node_OpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandQuery_Node_Organization : global::System.IEquatable, IDeleteApiCommandQuery_Node_Organization @@ -35265,6 +36772,180 @@ public DeleteApiCommandQuery_Node_OrganizationMember() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiCommandQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IDeleteApiCommandQuery_Node_PublishedOpenApiCollectionVersion + { + public DeleteApiCommandQuery_Node_PublishedOpenApiCollectionVersion() + { + } + + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_PublishedOpenApiCollectionVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((DeleteApiCommandQuery_Node_PublishedOpenApiCollectionVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiCommandQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IDeleteApiCommandQuery_Node_PublishedOpenApiEndpoint + { + public DeleteApiCommandQuery_Node_PublishedOpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_PublishedOpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((DeleteApiCommandQuery_Node_PublishedOpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiCommandQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IDeleteApiCommandQuery_Node_PublishedOpenApiModel + { + public DeleteApiCommandQuery_Node_PublishedOpenApiModel() + { + } + + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_PublishedOpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((DeleteApiCommandQuery_Node_PublishedOpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_SchemaChangeLog @@ -35716,6 +37397,9 @@ public partial interface IDeleteApiCommandQuery_Node_ApiDocument : IDeleteApiCom } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_ApiKey : IDeleteApiCommandQuery_Node { @@ -35901,6 +37585,18 @@ public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionVersion : { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_OpenApiEndpoint : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_OpenApiModel : IDeleteApiCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_Organization : IDeleteApiCommandQuery_Node @@ -35913,6 +37609,24 @@ public partial interface IDeleteApiCommandQuery_Node_OrganizationMember : IDelet { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_PublishedOpenApiCollectionVersion : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_PublishedOpenApiEndpoint : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_PublishedOpenApiModel : IDeleteApiCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiCommandQuery_Node_SchemaChangeLog : IDeleteApiCommandQuery_Node @@ -62665,6 +64379,9 @@ public ListStagesQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListStagesQuery_Node_ApiKey : global::System.IEquatable, IListStagesQuery_Node_ApiKey { @@ -64462,6 +66179,122 @@ public ListStagesQuery_Node_OpenApiCollectionVersion() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListStagesQuery_Node_OpenApiEndpoint : global::System.IEquatable, IListStagesQuery_Node_OpenApiEndpoint + { + public ListStagesQuery_Node_OpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListStagesQuery_Node_OpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListStagesQuery_Node_OpenApiModel : global::System.IEquatable, IListStagesQuery_Node_OpenApiModel + { + public ListStagesQuery_Node_OpenApiModel() + { + } + + public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListStagesQuery_Node_OpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListStagesQuery_Node_Organization : global::System.IEquatable, IListStagesQuery_Node_Organization @@ -64578,6 +66411,180 @@ public ListStagesQuery_Node_OrganizationMember() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListStagesQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IListStagesQuery_Node_PublishedOpenApiCollectionVersion + { + public ListStagesQuery_Node_PublishedOpenApiCollectionVersion() + { + } + + public virtual global::System.Boolean Equals(ListStagesQuery_Node_PublishedOpenApiCollectionVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListStagesQuery_Node_PublishedOpenApiCollectionVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListStagesQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IListStagesQuery_Node_PublishedOpenApiEndpoint + { + public ListStagesQuery_Node_PublishedOpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ListStagesQuery_Node_PublishedOpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListStagesQuery_Node_PublishedOpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListStagesQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IListStagesQuery_Node_PublishedOpenApiModel + { + public ListStagesQuery_Node_PublishedOpenApiModel() + { + } + + public virtual global::System.Boolean Equals(ListStagesQuery_Node_PublishedOpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListStagesQuery_Node_PublishedOpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListStagesQuery_Node_SchemaChangeLog : global::System.IEquatable, IListStagesQuery_Node_SchemaChangeLog @@ -65162,6 +67169,9 @@ public partial interface IListStagesQuery_Node_ApiDocument : IListStagesQuery_No } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_ApiKey : IListStagesQuery_Node { @@ -65347,6 +67357,18 @@ public partial interface IListStagesQuery_Node_OpenApiCollectionVersion : IListS { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_OpenApiEndpoint : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_OpenApiModel : IListStagesQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_Organization : IListStagesQuery_Node @@ -65359,6 +67381,24 @@ public partial interface IListStagesQuery_Node_OrganizationMember : IListStagesQ { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_PublishedOpenApiCollectionVersion : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_PublishedOpenApiEndpoint : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_PublishedOpenApiModel : IListStagesQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListStagesQuery_Node_SchemaChangeLog : IListStagesQuery_Node @@ -66272,6 +68312,9 @@ public ShowEnvironmentCommandQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowEnvironmentCommandQuery_Node_ApiKey : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ApiKey { @@ -68083,6 +70126,122 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQuery_Node_OpenApiEndpoint : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiEndpoint + { + public ShowEnvironmentCommandQuery_Node_OpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowEnvironmentCommandQuery_Node_OpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQuery_Node_OpenApiModel : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiModel + { + public ShowEnvironmentCommandQuery_Node_OpenApiModel() + { + } + + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowEnvironmentCommandQuery_Node_OpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowEnvironmentCommandQuery_Node_Organization : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Organization @@ -68199,6 +70358,180 @@ public ShowEnvironmentCommandQuery_Node_OrganizationMember() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_PublishedOpenApiCollectionVersion + { + public ShowEnvironmentCommandQuery_Node_PublishedOpenApiCollectionVersion() + { + } + + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_PublishedOpenApiCollectionVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowEnvironmentCommandQuery_Node_PublishedOpenApiCollectionVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_PublishedOpenApiEndpoint + { + public ShowEnvironmentCommandQuery_Node_PublishedOpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_PublishedOpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowEnvironmentCommandQuery_Node_PublishedOpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_PublishedOpenApiModel + { + public ShowEnvironmentCommandQuery_Node_PublishedOpenApiModel() + { + } + + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_PublishedOpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowEnvironmentCommandQuery_Node_PublishedOpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowEnvironmentCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_SchemaChangeLog @@ -68641,6 +70974,9 @@ public partial interface IShowEnvironmentCommandQuery_Node_ApiDocument : IShowEn } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_ApiKey : IShowEnvironmentCommandQuery_Node { @@ -68826,6 +71162,18 @@ public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionVers { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowEnvironmentCommandQuery_Node_OpenApiEndpoint : IShowEnvironmentCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowEnvironmentCommandQuery_Node_OpenApiModel : IShowEnvironmentCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_Organization : IShowEnvironmentCommandQuery_Node @@ -68838,6 +71186,24 @@ public partial interface IShowEnvironmentCommandQuery_Node_OrganizationMember : { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowEnvironmentCommandQuery_Node_PublishedOpenApiCollectionVersion : IShowEnvironmentCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowEnvironmentCommandQuery_Node_PublishedOpenApiEndpoint : IShowEnvironmentCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowEnvironmentCommandQuery_Node_PublishedOpenApiModel : IShowEnvironmentCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowEnvironmentCommandQuery_Node_SchemaChangeLog : IShowEnvironmentCommandQuery_Node @@ -70435,6 +72801,9 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::Sy } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey { @@ -70668,6 +73037,9 @@ public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_ } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IApiKeyDetailPrompt_ApiKey { @@ -70677,18 +73049,27 @@ public partial interface IApiKeyDetailPrompt_ApiKey } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiKeyCommand_ApiKey : IApiKeyDetailPrompt_ApiKey { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node : IListApiKeyCommand_ApiKey { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node { @@ -71329,6 +73710,9 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global: } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey { @@ -71634,18 +74018,27 @@ public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNo } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutation_ApiKey : IApiKeyDetailPrompt_ApiKey { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key : ICreateApiKeyCommandMutation_ApiKey { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey : ICreateApiKeyCommandMutation_CreateApiKey_Result_Key { @@ -71816,6 +74209,9 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(global::Chil } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey { @@ -72104,18 +74500,27 @@ public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyP } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiKeyCommand_ApiKey : IApiKeyDetailPrompt_ApiKey { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey : IDeleteApiKeyCommand_ApiKey { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey : IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey { @@ -75943,6 +78348,74 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Erro } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_DuplicateNameError : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_DuplicateNameError + { + public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_DuplicateNameError(global::System.String message, global::System.String __typename) + { + Message = message; + this.__typename = __typename; + } + + public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_DuplicateNameError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_DuplicateNameError)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateMcpFeatureCollectionCommandMutationResult @@ -76000,6 +78473,12 @@ public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFea { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_DuplicateNameError : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors, IDuplicateNameError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQueryResult : global::System.IEquatable, IListMcpFeatureCollectionCommandQueryResult @@ -76194,6 +78673,9 @@ public ListMcpFeatureCollectionCommandQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQuery_Node_ApiKey : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ApiKey { @@ -77991,6 +80473,122 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion() } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiEndpoint : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiEndpoint + { + public ListMcpFeatureCollectionCommandQuery_Node_OpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiEndpoint)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiModel : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiModel + { + public ListMcpFeatureCollectionCommandQuery_Node_OpenApiModel() + { + } + + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiModel? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiModel)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListMcpFeatureCollectionCommandQuery_Node_Organization : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Organization @@ -78109,13 +80707,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog + public partial class ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion { - public ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() + public ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -78152,7 +80750,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -78167,13 +80765,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment + public partial class ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiEndpoint { - public ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() + public ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiEndpoint() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -78210,7 +80808,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -78225,13 +80823,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_Stage : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Stage + public partial class ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiModel { - public ListMcpFeatureCollectionCommandQuery_Node_Stage() + public ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiModel() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Stage? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiModel? other) { if (ReferenceEquals(null, other)) { @@ -78268,7 +80866,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Stage() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_Stage)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiModel)obj); } public override global::System.Int32 GetHashCode() @@ -78283,13 +80881,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_User : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_User + public partial class ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog { - public ListMcpFeatureCollectionCommandQuery_Node_User() + public ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_User? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -78326,7 +80924,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_User() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_User)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -78341,13 +80939,187 @@ public ListMcpFeatureCollectionCommandQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_Workspace : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Workspace + public partial class ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment { - public ListMcpFeatureCollectionCommandQuery_Node_Workspace() + public ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListMcpFeatureCollectionCommandQuery_Node_Stage : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Stage + { + public ListMcpFeatureCollectionCommandQuery_Node_Stage() + { + } + + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Stage? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListMcpFeatureCollectionCommandQuery_Node_Stage)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListMcpFeatureCollectionCommandQuery_Node_User : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_User + { + public ListMcpFeatureCollectionCommandQuery_Node_User() + { + } + + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_User? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListMcpFeatureCollectionCommandQuery_Node_User)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListMcpFeatureCollectionCommandQuery_Node_Workspace : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Workspace + { + public ListMcpFeatureCollectionCommandQuery_Node_Workspace() + { + } + + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -78802,6 +81574,9 @@ public partial interface IListMcpFeatureCollectionCommandQuery_Node_ApiDocument } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_ApiKey : IListMcpFeatureCollectionCommandQuery_Node { @@ -78987,6 +81762,18 @@ public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiColle { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiEndpoint : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiModel : IListMcpFeatureCollectionCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_Organization : IListMcpFeatureCollectionCommandQuery_Node @@ -78999,6 +81786,24 @@ public partial interface IListMcpFeatureCollectionCommandQuery_Node_Organization { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiEndpoint : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiModel : IListMcpFeatureCollectionCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog : IListMcpFeatureCollectionCommandQuery_Node @@ -91723,6 +94528,9 @@ public ListOpenApiCollectionCommandQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ListOpenApiCollectionCommandQuery_Node_ApiKey : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ApiKey { @@ -93043,123 +95851,413 @@ public ListOpenApiCollectionCommandQuery_Node_Group() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Group)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollection - { - public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() - { - } - - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return true; - } - - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } - - if (ReferenceEquals(this, obj)) - { - return true; - } - - if (obj.GetType() != GetType()) - { - return false; - } - - return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog - { - public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() - { - } - - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return true; - } - - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } - - if (ReferenceEquals(this, obj)) - { - return true; - } - - if (obj.GetType() != GetType()) - { - return false; - } - - return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Group)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollection + { + public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() + { + } + + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog + { + public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() + { + } + + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment + { + public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() + { + } + + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion + { + public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() + { + } + + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollection + { + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() + { + } + + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollection)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog + { + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() + { + } + + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment + { + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() + { + } + + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -93174,13 +96272,13 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion { - public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -93217,7 +96315,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -93232,13 +96330,13 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiEndpoint : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiEndpoint { - public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() + public ListOpenApiCollectionCommandQuery_Node_OpenApiEndpoint() { } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -93275,7 +96373,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -93290,13 +96388,13 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollection + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiModel : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiModel { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() + public ListOpenApiCollectionCommandQuery_Node_OpenApiModel() { } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollection? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiModel? other) { if (ReferenceEquals(null, other)) { @@ -93333,7 +96431,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollection)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiModel)obj); } public override global::System.Int32 GetHashCode() @@ -93348,13 +96446,13 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog + public partial class ListOpenApiCollectionCommandQuery_Node_Organization : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Organization { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() + public ListOpenApiCollectionCommandQuery_Node_Organization() { } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -93391,7 +96489,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -93406,13 +96504,13 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment + public partial class ListOpenApiCollectionCommandQuery_Node_OrganizationMember : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OrganizationMember { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() + public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() { } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -93449,7 +96547,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -93464,13 +96562,13 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion + public partial class ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() + public ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -93507,7 +96605,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -93522,13 +96620,13 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_Organization : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Organization + public partial class ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_PublishedOpenApiEndpoint { - public ListOpenApiCollectionCommandQuery_Node_Organization() + public ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiEndpoint() { } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Organization? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -93565,7 +96663,7 @@ public ListOpenApiCollectionCommandQuery_Node_Organization() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Organization)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -93580,13 +96678,13 @@ public ListOpenApiCollectionCommandQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OrganizationMember : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OrganizationMember + public partial class ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_PublishedOpenApiModel { - public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() + public ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiModel() { } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OrganizationMember? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiModel? other) { if (ReferenceEquals(null, other)) { @@ -93623,7 +96721,7 @@ public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OrganizationMember)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiModel)obj); } public override global::System.Int32 GetHashCode() @@ -94331,6 +97429,9 @@ public partial interface IListOpenApiCollectionCommandQuery_Node_ApiDocument : I } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_ApiKey : IListOpenApiCollectionCommandQuery_Node { @@ -94516,6 +97617,18 @@ public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollecti { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiEndpoint : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiModel : IListOpenApiCollectionCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_Organization : IListOpenApiCollectionCommandQuery_Node @@ -94528,6 +97641,24 @@ public partial interface IListOpenApiCollectionCommandQuery_Node_OrganizationMem { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_PublishedOpenApiEndpoint : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_PublishedOpenApiModel : IListOpenApiCollectionCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IListOpenApiCollectionCommandQuery_Node_SchemaChangeLog : IListOpenApiCollectionCommandQuery_Node @@ -106468,6 +109599,74 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Una } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_DuplicateNameError : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_DuplicateNameError + { + public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_DuplicateNameError(global::System.String message, global::System.String __typename) + { + Message = message; + this.__typename = __typename; + } + + public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_DuplicateNameError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_DuplicateNameError)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface ICreateOpenApiCollectionCommandMutationResult @@ -106525,6 +109724,12 @@ public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCo { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_DuplicateNameError : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors, IDuplicateNameError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class DeleteOpenApiCollectionByIdCommandMutationResult : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutationResult @@ -107104,6 +110309,9 @@ public ShowWorkspaceCommandQuery_Node_ApiDocument() } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial class ShowWorkspaceCommandQuery_Node_ApiKey : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ApiKey { @@ -108656,7 +111864,297 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollection + { + public ShowWorkspaceCommandQuery_Node_OpenApiCollection() + { + } + + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollection)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog + { + public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() + { + } + + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment + { + public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() + { + } + + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion + { + public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() + { + } + + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowWorkspaceCommandQuery_Node_OpenApiEndpoint : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiEndpoint + { + public ShowWorkspaceCommandQuery_Node_OpenApiEndpoint() + { + } + + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiEndpoint? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return true; + } + + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -108671,13 +112169,13 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollection + public partial class ShowWorkspaceCommandQuery_Node_OpenApiModel : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiModel { - public ShowWorkspaceCommandQuery_Node_OpenApiCollection() + public ShowWorkspaceCommandQuery_Node_OpenApiModel() { } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollection? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiModel? other) { if (ReferenceEquals(null, other)) { @@ -108714,7 +112212,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollection)obj); + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiModel)obj); } public override global::System.Int32 GetHashCode() @@ -108729,13 +112227,13 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog + public partial class ShowWorkspaceCommandQuery_Node_Organization : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Organization { - public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() + public ShowWorkspaceCommandQuery_Node_Organization() { } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -108772,7 +112270,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((ShowWorkspaceCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -108787,13 +112285,13 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment + public partial class ShowWorkspaceCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OrganizationMember { - public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() + public ShowWorkspaceCommandQuery_Node_OrganizationMember() { } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -108830,7 +112328,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((ShowWorkspaceCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -108845,13 +112343,13 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion + public partial class ShowWorkspaceCommandQuery_Node_PublishedOpenApiCollectionVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_PublishedOpenApiCollectionVersion { - public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() + public ShowWorkspaceCommandQuery_Node_PublishedOpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_PublishedOpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -108888,7 +112386,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((ShowWorkspaceCommandQuery_Node_PublishedOpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -108903,13 +112401,13 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_Organization : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Organization + public partial class ShowWorkspaceCommandQuery_Node_PublishedOpenApiEndpoint : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_PublishedOpenApiEndpoint { - public ShowWorkspaceCommandQuery_Node_Organization() + public ShowWorkspaceCommandQuery_Node_PublishedOpenApiEndpoint() { } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Organization? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_PublishedOpenApiEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -108946,7 +112444,7 @@ public ShowWorkspaceCommandQuery_Node_Organization() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_Organization)obj); + return Equals((ShowWorkspaceCommandQuery_Node_PublishedOpenApiEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -108961,13 +112459,13 @@ public ShowWorkspaceCommandQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OrganizationMember + public partial class ShowWorkspaceCommandQuery_Node_PublishedOpenApiModel : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_PublishedOpenApiModel { - public ShowWorkspaceCommandQuery_Node_OrganizationMember() + public ShowWorkspaceCommandQuery_Node_PublishedOpenApiModel() { } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OrganizationMember? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_PublishedOpenApiModel? other) { if (ReferenceEquals(null, other)) { @@ -109004,7 +112502,7 @@ public ShowWorkspaceCommandQuery_Node_OrganizationMember() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OrganizationMember)obj); + return Equals((ShowWorkspaceCommandQuery_Node_PublishedOpenApiModel)obj); } public override global::System.Int32 GetHashCode() @@ -109407,6 +112905,9 @@ public partial interface IShowWorkspaceCommandQuery_Node_ApiDocument : IShowWork } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// API Key Details + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_ApiKey : IShowWorkspaceCommandQuery_Node { @@ -109592,6 +113093,18 @@ public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionVersio { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_OpenApiEndpoint : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_OpenApiModel : IShowWorkspaceCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_Organization : IShowWorkspaceCommandQuery_Node @@ -109604,6 +113117,24 @@ public partial interface IShowWorkspaceCommandQuery_Node_OrganizationMember : IS { } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_PublishedOpenApiCollectionVersion : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_PublishedOpenApiEndpoint : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_PublishedOpenApiModel : IShowWorkspaceCommandQuery_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IShowWorkspaceCommandQuery_Node_SchemaChangeLog : IShowWorkspaceCommandQuery_Node @@ -144373,14 +147904,14 @@ public partial record ValidateSchemaInput : global::ChilliCream.Nitro.Client.Sta [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public enum ProcessingState { + Approved, + Cancelled, + Failed, + Processing, Queued, Ready, - Processing, Success, - Failed, - Cancelled, - WaitingForApproval, - Approved + WaitingForApproval } // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator @@ -144393,14 +147924,14 @@ public ProcessingState Parse(global::System.String serializedValue) { return serializedValue switch { + "APPROVED" => ProcessingState.Approved, + "CANCELLED" => ProcessingState.Cancelled, + "FAILED" => ProcessingState.Failed, + "PROCESSING" => ProcessingState.Processing, "QUEUED" => ProcessingState.Queued, "READY" => ProcessingState.Ready, - "PROCESSING" => ProcessingState.Processing, "SUCCESS" => ProcessingState.Success, - "FAILED" => ProcessingState.Failed, - "CANCELLED" => ProcessingState.Cancelled, "WAITING_FOR_APPROVAL" => ProcessingState.WaitingForApproval, - "APPROVED" => ProcessingState.Approved, _ => throw new global::StrawberryShake.GraphQLClientException($"String value '{serializedValue}' can't be converted to enum ProcessingState")}; } @@ -144408,14 +147939,14 @@ public ProcessingState Parse(global::System.String serializedValue) { return runtimeValue switch { + ProcessingState.Approved => "APPROVED", + ProcessingState.Cancelled => "CANCELLED", + ProcessingState.Failed => "FAILED", + ProcessingState.Processing => "PROCESSING", ProcessingState.Queued => "QUEUED", ProcessingState.Ready => "READY", - ProcessingState.Processing => "PROCESSING", ProcessingState.Success => "SUCCESS", - ProcessingState.Failed => "FAILED", - ProcessingState.Cancelled => "CANCELLED", ProcessingState.WaitingForApproval => "WAITING_FOR_APPROVAL", - ProcessingState.Approved => "APPROVED", _ => throw new global::StrawberryShake.GraphQLClientException($"Enum ProcessingState value '{runtimeValue}' can't be converted to string")}; } } @@ -144424,9 +147955,9 @@ public ProcessingState Parse(global::System.String serializedValue) [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public enum SchemaChangeSeverity { - Safe, + Breaking, Dangerous, - Breaking + Safe } // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator @@ -144439,9 +147970,9 @@ public SchemaChangeSeverity Parse(global::System.String serializedValue) { return serializedValue switch { - "SAFE" => SchemaChangeSeverity.Safe, - "DANGEROUS" => SchemaChangeSeverity.Dangerous, "BREAKING" => SchemaChangeSeverity.Breaking, + "DANGEROUS" => SchemaChangeSeverity.Dangerous, + "SAFE" => SchemaChangeSeverity.Safe, _ => throw new global::StrawberryShake.GraphQLClientException($"String value '{serializedValue}' can't be converted to enum SchemaChangeSeverity")}; } @@ -144449,36 +147980,98 @@ public SchemaChangeSeverity Parse(global::System.String serializedValue) { return runtimeValue switch { - SchemaChangeSeverity.Safe => "SAFE", - SchemaChangeSeverity.Dangerous => "DANGEROUS", SchemaChangeSeverity.Breaking => "BREAKING", + SchemaChangeSeverity.Dangerous => "DANGEROUS", + SchemaChangeSeverity.Safe => "SAFE", _ => throw new global::StrawberryShake.GraphQLClientException($"Enum SchemaChangeSeverity value '{runtimeValue}' can't be converted to string")}; } } // StrawberryShake.CodeGeneration.CSharp.Generators.EnumGenerator + /// + /// A directive in GraphQL can be associated with various components of the GraphQL language. The + /// term DirectiveLocation refers to the specific points within the GraphQL schema + /// where a directive can be applied. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public enum DirectiveLocation { - Query, - Mutation, - Subscription, + /// + /// Location adjacent to an argument definition + /// + ArgumentDefinition, + /// + /// Location adjacent to an enum definition. + /// + Enum, + /// + /// Location adjacent to an enum value definition. + /// + EnumValue, + /// + /// Location adjacent to a field. + /// Field, + /// + /// Location adjacent to a field definition. + /// + FieldDefinition, + /// + /// Location adjacent to a fragment definition. + /// FragmentDefinition, + /// + /// Location adjacent to a fragment spread. + /// FragmentSpread, + /// + /// Location adjacent to an inline fragment. + /// InlineFragment, - VariableDefinition, - Schema, - Scalar, - Object, - FieldDefinition, - ArgumentDefinition, + /// + /// Location adjacent to an input object field definition. + /// + InputFieldDefinition, + /// + /// Location adjacent to an input object type definition. + /// + InputObject, + /// + /// Location adjacent to an interface definition. + /// Interface, + /// + /// Location adjacent to a mutation operation. + /// + Mutation, + /// + /// Location adjacent to an object type definition. + /// + Object, + /// + /// Location adjacent to a query operation. + /// + Query, + /// + /// Location adjacent to a scalar definition. + /// + Scalar, + /// + /// Location adjacent to a schema definition. + /// + Schema, + /// + /// Location adjacent to a subscription operation. + /// + Subscription, + /// + /// Location adjacent to a union definition. + /// Union, - Enum, - EnumValue, - InputObject, - InputFieldDefinition + /// + /// Location adjacent to a field. + /// + VariableDefinition } // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator @@ -144491,25 +148084,25 @@ public DirectiveLocation Parse(global::System.String serializedValue) { return serializedValue switch { - "QUERY" => DirectiveLocation.Query, - "MUTATION" => DirectiveLocation.Mutation, - "SUBSCRIPTION" => DirectiveLocation.Subscription, + "ARGUMENT_DEFINITION" => DirectiveLocation.ArgumentDefinition, + "ENUM" => DirectiveLocation.Enum, + "ENUM_VALUE" => DirectiveLocation.EnumValue, "FIELD" => DirectiveLocation.Field, + "FIELD_DEFINITION" => DirectiveLocation.FieldDefinition, "FRAGMENT_DEFINITION" => DirectiveLocation.FragmentDefinition, "FRAGMENT_SPREAD" => DirectiveLocation.FragmentSpread, "INLINE_FRAGMENT" => DirectiveLocation.InlineFragment, - "VARIABLE_DEFINITION" => DirectiveLocation.VariableDefinition, - "SCHEMA" => DirectiveLocation.Schema, - "SCALAR" => DirectiveLocation.Scalar, - "OBJECT" => DirectiveLocation.Object, - "FIELD_DEFINITION" => DirectiveLocation.FieldDefinition, - "ARGUMENT_DEFINITION" => DirectiveLocation.ArgumentDefinition, + "INPUT_FIELD_DEFINITION" => DirectiveLocation.InputFieldDefinition, + "INPUT_OBJECT" => DirectiveLocation.InputObject, "INTERFACE" => DirectiveLocation.Interface, + "MUTATION" => DirectiveLocation.Mutation, + "OBJECT" => DirectiveLocation.Object, + "QUERY" => DirectiveLocation.Query, + "SCALAR" => DirectiveLocation.Scalar, + "SCHEMA" => DirectiveLocation.Schema, + "SUBSCRIPTION" => DirectiveLocation.Subscription, "UNION" => DirectiveLocation.Union, - "ENUM" => DirectiveLocation.Enum, - "ENUM_VALUE" => DirectiveLocation.EnumValue, - "INPUT_OBJECT" => DirectiveLocation.InputObject, - "INPUT_FIELD_DEFINITION" => DirectiveLocation.InputFieldDefinition, + "VARIABLE_DEFINITION" => DirectiveLocation.VariableDefinition, _ => throw new global::StrawberryShake.GraphQLClientException($"String value '{serializedValue}' can't be converted to enum DirectiveLocation")}; } @@ -144517,25 +148110,25 @@ public DirectiveLocation Parse(global::System.String serializedValue) { return runtimeValue switch { - DirectiveLocation.Query => "QUERY", - DirectiveLocation.Mutation => "MUTATION", - DirectiveLocation.Subscription => "SUBSCRIPTION", + DirectiveLocation.ArgumentDefinition => "ARGUMENT_DEFINITION", + DirectiveLocation.Enum => "ENUM", + DirectiveLocation.EnumValue => "ENUM_VALUE", DirectiveLocation.Field => "FIELD", + DirectiveLocation.FieldDefinition => "FIELD_DEFINITION", DirectiveLocation.FragmentDefinition => "FRAGMENT_DEFINITION", DirectiveLocation.FragmentSpread => "FRAGMENT_SPREAD", DirectiveLocation.InlineFragment => "INLINE_FRAGMENT", - DirectiveLocation.VariableDefinition => "VARIABLE_DEFINITION", - DirectiveLocation.Schema => "SCHEMA", - DirectiveLocation.Scalar => "SCALAR", - DirectiveLocation.Object => "OBJECT", - DirectiveLocation.FieldDefinition => "FIELD_DEFINITION", - DirectiveLocation.ArgumentDefinition => "ARGUMENT_DEFINITION", + DirectiveLocation.InputFieldDefinition => "INPUT_FIELD_DEFINITION", + DirectiveLocation.InputObject => "INPUT_OBJECT", DirectiveLocation.Interface => "INTERFACE", + DirectiveLocation.Mutation => "MUTATION", + DirectiveLocation.Object => "OBJECT", + DirectiveLocation.Query => "QUERY", + DirectiveLocation.Scalar => "SCALAR", + DirectiveLocation.Schema => "SCHEMA", + DirectiveLocation.Subscription => "SUBSCRIPTION", DirectiveLocation.Union => "UNION", - DirectiveLocation.Enum => "ENUM", - DirectiveLocation.EnumValue => "ENUM_VALUE", - DirectiveLocation.InputObject => "INPUT_OBJECT", - DirectiveLocation.InputFieldDefinition => "INPUT_FIELD_DEFINITION", + DirectiveLocation.VariableDefinition => "VARIABLE_DEFINITION", _ => throw new global::StrawberryShake.GraphQLClientException($"Enum DirectiveLocation value '{runtimeValue}' can't be converted to string")}; } } @@ -144545,8 +148138,8 @@ public DirectiveLocation Parse(global::System.String serializedValue) public enum ApiKind { Collection, - Service, - Gateway + Gateway, + Service } // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator @@ -144560,8 +148153,8 @@ public ApiKind Parse(global::System.String serializedValue) return serializedValue switch { "COLLECTION" => ApiKind.Collection, - "SERVICE" => ApiKind.Service, "GATEWAY" => ApiKind.Gateway, + "SERVICE" => ApiKind.Service, _ => throw new global::StrawberryShake.GraphQLClientException($"String value '{serializedValue}' can't be converted to enum ApiKind")}; } @@ -144570,8 +148163,8 @@ public ApiKind Parse(global::System.String serializedValue) return runtimeValue switch { ApiKind.Collection => "COLLECTION", - ApiKind.Service => "SERVICE", ApiKind.Gateway => "GATEWAY", + ApiKind.Service => "SERVICE", _ => throw new global::StrawberryShake.GraphQLClientException($"Enum ApiKind value '{runtimeValue}' can't be converted to string")}; } } @@ -144582,25 +148175,33 @@ public ApiKind Parse(global::System.String serializedValue) /// /// mutation CreateMockSchema( /// $apiId: ID! - /// $baseSchemaFile: Upload! - /// $downstreamUrl: String! - /// $extensionsSchemaFile: Upload! - /// $name: String! + /// $baseSchemaFile: Upload! + /// $downstreamUrl: String! + /// $extensionsSchemaFile: Upload! + /// $name: String! /// ) { - /// createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// createMockSchema( + /// input: { + /// apiId: $apiId + /// baseSchemaFile: $baseSchemaFile + /// downstreamUrl: $downstreamUrl + /// extensionsSchemaFile: $extensionsSchemaFile + /// name: $name + /// } + /// ) { /// __typename /// mockSchema { /// __typename /// id - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... MockSchemaNonUniqueNameError - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...ApiNotFoundError + /// ...MockSchemaNonUniqueNameError + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -144626,7 +148227,7 @@ public ApiKind Parse(global::System.String serializedValue) /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -144637,13 +148238,13 @@ public ApiKind Parse(global::System.String serializedValue) /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -144653,7 +148254,7 @@ public ApiKind Parse(global::System.String serializedValue) /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -144666,8 +148267,8 @@ private CreateMockSchemaMutationDocument() public static CreateMockSchemaMutationDocument Instance { get; } = new CreateMockSchemaMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreateMockSchema($apiId: ID!, $baseSchemaFile: Upload!, $downstreamUrl: String!, $extensionsSchemaFile: Upload!, $name: String!) { createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { __typename mockSchema { __typename id ... MockSchemaDetailPrompt } errors { __typename ... ApiNotFoundError ... MockSchemaNonUniqueNameError ... UnauthorizedOperation ... ValidationError ... Error } } } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment Error on Error { message } fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { __typename message name ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a3671e2d4b62aff1e485a32569cbd2e3"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "9254faca3991f8a742500bc19b536f73"); public override global::System.String ToString() { @@ -144685,25 +148286,33 @@ private CreateMockSchemaMutationDocument() /// /// mutation CreateMockSchema( /// $apiId: ID! - /// $baseSchemaFile: Upload! - /// $downstreamUrl: String! - /// $extensionsSchemaFile: Upload! - /// $name: String! + /// $baseSchemaFile: Upload! + /// $downstreamUrl: String! + /// $extensionsSchemaFile: Upload! + /// $name: String! /// ) { - /// createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// createMockSchema( + /// input: { + /// apiId: $apiId + /// baseSchemaFile: $baseSchemaFile + /// downstreamUrl: $downstreamUrl + /// extensionsSchemaFile: $extensionsSchemaFile + /// name: $name + /// } + /// ) { /// __typename /// mockSchema { /// __typename /// id - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... MockSchemaNonUniqueNameError - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...ApiNotFoundError + /// ...MockSchemaNonUniqueNameError + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -144729,7 +148338,7 @@ private CreateMockSchemaMutationDocument() /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -144740,13 +148349,13 @@ private CreateMockSchemaMutationDocument() /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -144756,7 +148365,7 @@ private CreateMockSchemaMutationDocument() /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -144845,7 +148454,7 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: CreateMockSchemaMutationDocument.Instance.Hash.Value, name: "CreateMockSchema", document: CreateMockSchemaMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreateMockSchemaMutationDocument.Instance.Hash.Value, name: "CreateMockSchema", document: CreateMockSchemaMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -144900,25 +148509,33 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// /// mutation CreateMockSchema( /// $apiId: ID! - /// $baseSchemaFile: Upload! - /// $downstreamUrl: String! - /// $extensionsSchemaFile: Upload! - /// $name: String! + /// $baseSchemaFile: Upload! + /// $downstreamUrl: String! + /// $extensionsSchemaFile: Upload! + /// $name: String! /// ) { - /// createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// createMockSchema( + /// input: { + /// apiId: $apiId + /// baseSchemaFile: $baseSchemaFile + /// downstreamUrl: $downstreamUrl + /// extensionsSchemaFile: $extensionsSchemaFile + /// name: $name + /// } + /// ) { /// __typename /// mockSchema { /// __typename /// id - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... MockSchemaNonUniqueNameError - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...ApiNotFoundError + /// ...MockSchemaNonUniqueNameError + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -144944,7 +148561,7 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -144955,13 +148572,13 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -144971,7 +148588,7 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -144991,25 +148608,33 @@ public partial interface ICreateMockSchemaMutation : global::StrawberryShake.IOp /// /// mutation UpdateMockSchema( /// $mockSchemaId: ID! - /// $baseSchemaFile: Upload - /// $downstreamUrl: String - /// $extensionsSchemaFile: Upload - /// $name: String + /// $baseSchemaFile: Upload + /// $downstreamUrl: String + /// $extensionsSchemaFile: Upload + /// $name: String /// ) { - /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// updateMockSchema( + /// input: { + /// id: $mockSchemaId + /// baseSchemaFile: $baseSchemaFile + /// downstreamUrl: $downstreamUrl + /// extensionsSchemaFile: $extensionsSchemaFile + /// name: $name + /// } + /// ) { /// __typename /// mockSchema { /// __typename /// id - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... MockSchemaNotFoundError - /// ... MockSchemaNonUniqueNameError - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...MockSchemaNotFoundError + /// ...MockSchemaNonUniqueNameError + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -145034,7 +148659,7 @@ public partial interface ICreateMockSchemaMutation : global::StrawberryShake.IOp /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -145045,13 +148670,13 @@ public partial interface ICreateMockSchemaMutation : global::StrawberryShake.IOp /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -145061,7 +148686,7 @@ public partial interface ICreateMockSchemaMutation : global::StrawberryShake.IOp /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -145074,8 +148699,8 @@ private UpdateMockSchemaMutationDocument() public static UpdateMockSchemaMutationDocument Instance { get; } = new UpdateMockSchemaMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation UpdateMockSchema($mockSchemaId: ID!, $baseSchemaFile: Upload, $downstreamUrl: String, $extensionsSchemaFile: Upload, $name: String) { updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { __typename mockSchema { __typename id ... MockSchemaDetailPrompt } errors { __typename ... MockSchemaNotFoundError ... MockSchemaNonUniqueNameError ... UnauthorizedOperation ... ValidationError ... Error } } } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment MockSchemaNotFoundError on MockSchemaNotFoundError { __typename message ... Error } fragment Error on Error { message } fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { __typename message name ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "20c2b10a6921693d62a4326e1c1d4daa"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c3b0b7b02fba7f01d4eb4c788fbfa898"); public override global::System.String ToString() { @@ -145093,25 +148718,33 @@ private UpdateMockSchemaMutationDocument() /// /// mutation UpdateMockSchema( /// $mockSchemaId: ID! - /// $baseSchemaFile: Upload - /// $downstreamUrl: String - /// $extensionsSchemaFile: Upload - /// $name: String + /// $baseSchemaFile: Upload + /// $downstreamUrl: String + /// $extensionsSchemaFile: Upload + /// $name: String /// ) { - /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// updateMockSchema( + /// input: { + /// id: $mockSchemaId + /// baseSchemaFile: $baseSchemaFile + /// downstreamUrl: $downstreamUrl + /// extensionsSchemaFile: $extensionsSchemaFile + /// name: $name + /// } + /// ) { /// __typename /// mockSchema { /// __typename /// id - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... MockSchemaNotFoundError - /// ... MockSchemaNonUniqueNameError - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...MockSchemaNotFoundError + /// ...MockSchemaNonUniqueNameError + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -145136,7 +148769,7 @@ private UpdateMockSchemaMutationDocument() /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -145147,13 +148780,13 @@ private UpdateMockSchemaMutationDocument() /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -145163,7 +148796,7 @@ private UpdateMockSchemaMutationDocument() /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -145252,7 +148885,7 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: UpdateMockSchemaMutationDocument.Instance.Hash.Value, name: "UpdateMockSchema", document: UpdateMockSchemaMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: UpdateMockSchemaMutationDocument.Instance.Hash.Value, name: "UpdateMockSchema", document: UpdateMockSchemaMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatMockSchemaId(global::System.String value) @@ -145325,25 +148958,33 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// /// mutation UpdateMockSchema( /// $mockSchemaId: ID! - /// $baseSchemaFile: Upload - /// $downstreamUrl: String - /// $extensionsSchemaFile: Upload - /// $name: String + /// $baseSchemaFile: Upload + /// $downstreamUrl: String + /// $extensionsSchemaFile: Upload + /// $name: String /// ) { - /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// updateMockSchema( + /// input: { + /// id: $mockSchemaId + /// baseSchemaFile: $baseSchemaFile + /// downstreamUrl: $downstreamUrl + /// extensionsSchemaFile: $extensionsSchemaFile + /// name: $name + /// } + /// ) { /// __typename /// mockSchema { /// __typename /// id - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... MockSchemaNotFoundError - /// ... MockSchemaNonUniqueNameError - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...MockSchemaNotFoundError + /// ...MockSchemaNonUniqueNameError + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -145368,7 +149009,7 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -145379,13 +149020,13 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -145395,7 +149036,7 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -145413,22 +149054,18 @@ public partial interface IUpdateMockSchemaMutation : global::StrawberryShake.IOp /// /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation /// - /// query SelectMockSchemaPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query SelectMockSchemaPromptQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectMockCommand_MockEdge + /// ...SelectMockCommand_MockEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -145438,14 +149075,14 @@ public partial interface IUpdateMockSchemaMutation : global::StrawberryShake.IOp /// cursor /// node { /// __typename - /// ... SelectMockCommand_Mock + /// ...SelectMockCommand_Mock /// } /// } /// /// fragment SelectMockCommand_Mock on MockSchema { /// id /// name - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// /// fragment MockSchemaDetailPrompt on MockSchema { @@ -145482,8 +149119,8 @@ private SelectMockSchemaPromptQueryQueryDocument() public static SelectMockSchemaPromptQueryQueryDocument Instance { get; } = new SelectMockSchemaPromptQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query SelectMockSchemaPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mockSchemas(after: $after, first: $first) { __typename edges { __typename ... SelectMockCommand_MockEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectMockCommand_MockEdge on MockSchemasEdge { cursor node { __typename ... SelectMockCommand_Mock } } fragment SelectMockCommand_Mock on MockSchema { id name ... MockSchemaDetailPrompt } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8e45bab85454282aa6a1f07c57c013a1"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "883246456d7f688b4b338bea544263c3"); public override global::System.String ToString() { @@ -145499,22 +149136,18 @@ private SelectMockSchemaPromptQueryQueryDocument() /// /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation /// - /// query SelectMockSchemaPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query SelectMockSchemaPromptQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectMockCommand_MockEdge + /// ...SelectMockCommand_MockEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -145524,14 +149157,14 @@ private SelectMockSchemaPromptQueryQueryDocument() /// cursor /// node { /// __typename - /// ... SelectMockCommand_Mock + /// ...SelectMockCommand_Mock /// } /// } /// /// fragment SelectMockCommand_Mock on MockSchema { /// id /// name - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// /// fragment MockSchemaDetailPrompt on MockSchema { @@ -145629,7 +149262,7 @@ private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecu private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: SelectMockSchemaPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectMockSchemaPromptQuery", document: SelectMockSchemaPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: SelectMockSchemaPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectMockSchemaPromptQuery", document: SelectMockSchemaPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -145676,22 +149309,18 @@ private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecu /// /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation /// - /// query SelectMockSchemaPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query SelectMockSchemaPromptQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectMockCommand_MockEdge + /// ...SelectMockCommand_MockEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -145701,14 +149330,14 @@ private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecu /// cursor /// node { /// __typename - /// ... SelectMockCommand_Mock + /// ...SelectMockCommand_Mock /// } /// } /// /// fragment SelectMockCommand_Mock on MockSchema { /// id /// name - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// /// fragment MockSchemaDetailPrompt on MockSchema { @@ -145750,22 +149379,18 @@ public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryS /// /// Represents the operation service of the ListMockCommandQuery GraphQL operation /// - /// query ListMockCommandQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListMockCommandQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListMockCommand_MockEdge + /// ...ListMockCommand_MockEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -145775,14 +149400,14 @@ public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryS /// cursor /// node { /// __typename - /// ... ListMockCommand_Mock + /// ...ListMockCommand_Mock /// } /// } /// /// fragment ListMockCommand_Mock on MockSchema { /// id /// name - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// /// fragment MockSchemaDetailPrompt on MockSchema { @@ -145819,8 +149444,8 @@ private ListMockCommandQueryQueryDocument() public static ListMockCommandQueryQueryDocument Instance { get; } = new ListMockCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListMockCommandQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mockSchemas(after: $after, first: $first) { __typename edges { __typename ... ListMockCommand_MockEdge } pageInfo { __typename ... PageInfo } } } } fragment ListMockCommand_MockEdge on MockSchemasEdge { cursor node { __typename ... ListMockCommand_Mock } } fragment ListMockCommand_Mock on MockSchema { id name ... MockSchemaDetailPrompt } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1b7ebd5e95b4f31767e0271f30d34242"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c8f2d56d7e674b50d7af8bdc7722cf3b"); public override global::System.String ToString() { @@ -145836,22 +149461,18 @@ private ListMockCommandQueryQueryDocument() /// /// Represents the operation service of the ListMockCommandQuery GraphQL operation /// - /// query ListMockCommandQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListMockCommandQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListMockCommand_MockEdge + /// ...ListMockCommand_MockEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -145861,14 +149482,14 @@ private ListMockCommandQueryQueryDocument() /// cursor /// node { /// __typename - /// ... ListMockCommand_Mock + /// ...ListMockCommand_Mock /// } /// } /// /// fragment ListMockCommand_Mock on MockSchema { /// id /// name - /// ... MockSchemaDetailPrompt + /// ...MockSchemaDetailPrompt /// } /// /// fragment MockSchemaDetailPrompt on MockSchema { @@ -145966,7 +149587,7 @@ private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: ListMockCommandQueryQueryDocument.Instance.Hash.Value, name: "ListMockCommandQuery", document: ListMockCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListMockCommandQueryQueryDocument.Instance.Hash.Value, name: "ListMockCommandQuery", document: ListMockCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -146013,22 +149634,18 @@ private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListMockCommandQuery GraphQL operation /// - /// query ListMockCommandQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListMockCommandQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListMockCommand_MockEdge + /// ...ListMockCommand_MockEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -146038,14 +149655,14 @@ private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ShowClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery( - /// $clientId: ID! - /// ) { + /// query ShowClientCommandQuery($clientId: ID!) { /// node(id: $clientId) { /// __typename - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// } /// @@ -146108,7 +149723,7 @@ public partial interface IListMockCommandQueryQuery : global::StrawberryShake.IO /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -146145,8 +149760,8 @@ private ShowClientCommandQueryQueryDocument() public static ShowClientCommandQueryQueryDocument Instance { get; } = new ShowClientCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ShowClientCommandQuery($clientId: ID!) { node(id: $clientId) { __typename ... ClientDetailPrompt_Client } } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "202e2ae2330c6b4feffd8347e5769aba"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7a5bde75a9a169c6b00e3a7e3274a3cf"); public override global::System.String ToString() { @@ -146162,12 +149777,10 @@ private ShowClientCommandQueryQueryDocument() /// /// Represents the operation service of the ShowClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery( - /// $clientId: ID! - /// ) { + /// query ShowClientCommandQuery($clientId: ID!) { /// node(id: $clientId) { /// __typename - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// } /// @@ -146183,7 +149796,7 @@ private ShowClientCommandQueryQueryDocument() /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -146273,7 +149886,7 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: ShowClientCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowClientCommandQuery", document: ShowClientCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ShowClientCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowClientCommandQuery", document: ShowClientCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatClientId(global::System.String value) @@ -146296,12 +149909,10 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ShowClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery( - /// $clientId: ID! - /// ) { + /// query ShowClientCommandQuery($clientId: ID!) { /// node(id: $clientId) { /// __typename - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// } /// @@ -146317,7 +149928,7 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// mutation UnpublishClient( - /// $input: UnpublishClientInput! - /// ) { + /// mutation UnpublishClient($input: UnpublishClientInput!) { /// unpublishClient(input: $input) { /// __typename /// clientVersion { @@ -146374,12 +149983,12 @@ public partial interface IShowClientCommandQueryQuery : global::StrawberryShake. /// } /// errors { /// __typename - /// ... ConcurrentOperationError - /// ... StageNotFoundError - /// ... ClientVersionNotFoundError - /// ... UnauthorizedOperation - /// ... ClientNotFoundError - /// ... Error + /// ...ConcurrentOperationError + /// ...StageNotFoundError + /// ...ClientVersionNotFoundError + /// ...UnauthorizedOperation + /// ...ClientNotFoundError + /// ...Error /// } /// } /// } @@ -146387,7 +149996,7 @@ public partial interface IShowClientCommandQueryQuery : global::StrawberryShake. /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -146398,26 +150007,26 @@ public partial interface IShowClientCommandQueryQuery : global::StrawberryShake. /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { /// tag /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// @@ -146430,8 +150039,8 @@ private UnpublishClientMutationDocument() public static UnpublishClientMutationDocument Instance { get; } = new UnpublishClientMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation UnpublishClient($input: UnpublishClientInput!) { unpublishClient(input: $input) { __typename clientVersion { __typename id client { __typename name } } errors { __typename ... ConcurrentOperationError ... StageNotFoundError ... ClientVersionNotFoundError ... UnauthorizedOperation ... ClientNotFoundError ... Error } } } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientVersionNotFoundError on ClientVersionNotFoundError { tag message clientId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c6d62ca62c529e9795322ced95b5c1a8"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "46f17a4290cafa294558f9d2f6ad368e"); public override global::System.String ToString() { @@ -146447,9 +150056,7 @@ private UnpublishClientMutationDocument() /// /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// mutation UnpublishClient( - /// $input: UnpublishClientInput! - /// ) { + /// mutation UnpublishClient($input: UnpublishClientInput!) { /// unpublishClient(input: $input) { /// __typename /// clientVersion { @@ -146462,12 +150069,12 @@ private UnpublishClientMutationDocument() /// } /// errors { /// __typename - /// ... ConcurrentOperationError - /// ... StageNotFoundError - /// ... ClientVersionNotFoundError - /// ... UnauthorizedOperation - /// ... ClientNotFoundError - /// ... Error + /// ...ConcurrentOperationError + /// ...StageNotFoundError + /// ...ClientVersionNotFoundError + /// ...UnauthorizedOperation + /// ...ClientNotFoundError + /// ...Error /// } /// } /// } @@ -146475,7 +150082,7 @@ private UnpublishClientMutationDocument() /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -146486,26 +150093,26 @@ private UnpublishClientMutationDocument() /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { /// tag /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// @@ -146571,7 +150178,7 @@ private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: UnpublishClientMutationDocument.Instance.Hash.Value, name: "UnpublishClient", document: UnpublishClientMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: UnpublishClientMutationDocument.Instance.Hash.Value, name: "UnpublishClient", document: UnpublishClientMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.UnpublishClientInput value) @@ -146594,9 +150201,7 @@ private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// mutation UnpublishClient( - /// $input: UnpublishClientInput! - /// ) { + /// mutation UnpublishClient($input: UnpublishClientInput!) { /// unpublishClient(input: $input) { /// __typename /// clientVersion { @@ -146609,12 +150214,12 @@ private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor /// @@ -146670,10 +150275,7 @@ public partial interface IUnpublishClientMutation : global::StrawberryShake.IOpe /// /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation /// - /// query PageClientVersionDetailQuery( - /// $id: ID! - /// $after: String! - /// ) { + /// query PageClientVersionDetailQuery($id: ID!, $after: String!) { /// node(id: $id) { /// __typename /// ... on Client { @@ -146686,7 +150288,7 @@ public partial interface IUnpublishClientMutation : global::StrawberryShake.IOpe /// } /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// } /// } @@ -146720,8 +150322,8 @@ private PageClientVersionDetailQueryQueryDocument() public static PageClientVersionDetailQueryQueryDocument Instance { get; } = new PageClientVersionDetailQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query PageClientVersionDetailQuery($id: ID!, $after: String!) { node(id: $id) { __typename ... on Client { versions(first: 10, after: $after) { __typename pageInfo { __typename hasNextPage endCursor } edges { __typename ... ClientDetailPrompt_ClientVersionEdge } } } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "d2cc1b6089c0354e5f8addda5f6d5b56"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "f9572566cc8d2a23d5b84b6e007a8db7"); public override global::System.String ToString() { @@ -146737,10 +150339,7 @@ private PageClientVersionDetailQueryQueryDocument() /// /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation /// - /// query PageClientVersionDetailQuery( - /// $id: ID! - /// $after: String! - /// ) { + /// query PageClientVersionDetailQuery($id: ID!, $after: String!) { /// node(id: $id) { /// __typename /// ... on Client { @@ -146753,7 +150352,7 @@ private PageClientVersionDetailQueryQueryDocument() /// } /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// } /// } @@ -146844,7 +150443,7 @@ private PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExec private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: PageClientVersionDetailQueryQueryDocument.Instance.Hash.Value, name: "PageClientVersionDetailQuery", document: PageClientVersionDetailQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: PageClientVersionDetailQueryQueryDocument.Instance.Hash.Value, name: "PageClientVersionDetailQuery", document: PageClientVersionDetailQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatId(global::System.String value) @@ -146877,10 +150476,7 @@ private PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExec /// /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation /// - /// query PageClientVersionDetailQuery( - /// $id: ID! - /// $after: String! - /// ) { + /// query PageClientVersionDetailQuery($id: ID!, $after: String!) { /// node(id: $id) { /// __typename /// ... on Client { @@ -146893,7 +150489,7 @@ private PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExec /// } /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// } /// } @@ -146932,22 +150528,18 @@ public partial interface IPageClientVersionDetailQueryQuery : global::Strawberry /// /// Represents the operation service of the SelectClientPromptQuery GraphQL operation /// - /// query SelectClientPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query SelectClientPromptQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// clients(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectClientPrompt_ClientEdge + /// ...SelectClientPrompt_ClientEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -146957,14 +150549,14 @@ public partial interface IPageClientVersionDetailQueryQuery : global::Strawberry /// cursor /// node { /// __typename - /// ... SelectClientPrompt_Client + /// ...SelectClientPrompt_Client /// } /// } /// /// fragment SelectClientPrompt_Client on Client { /// id /// name - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -146979,7 +150571,7 @@ public partial interface IPageClientVersionDetailQueryQuery : global::Strawberry /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -147023,8 +150615,8 @@ private SelectClientPromptQueryQueryDocument() public static SelectClientPromptQueryQueryDocument Instance { get; } = new SelectClientPromptQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query SelectClientPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename clients(after: $after, first: $first) { __typename edges { __typename ... SelectClientPrompt_ClientEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectClientPrompt_ClientEdge on ClientsEdge { cursor node { __typename ... SelectClientPrompt_Client } } fragment SelectClientPrompt_Client on Client { id name ... ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "89d9fea06884980ce1721212dff781b9"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "6399588510a1813f4429f57bb56267ed"); public override global::System.String ToString() { @@ -147040,22 +150632,18 @@ private SelectClientPromptQueryQueryDocument() /// /// Represents the operation service of the SelectClientPromptQuery GraphQL operation /// - /// query SelectClientPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query SelectClientPromptQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// clients(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectClientPrompt_ClientEdge + /// ...SelectClientPrompt_ClientEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -147065,14 +150653,14 @@ private SelectClientPromptQueryQueryDocument() /// cursor /// node { /// __typename - /// ... SelectClientPrompt_Client + /// ...SelectClientPrompt_Client /// } /// } /// /// fragment SelectClientPrompt_Client on Client { /// id /// name - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -147087,7 +150675,7 @@ private SelectClientPromptQueryQueryDocument() /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -147192,7 +150780,7 @@ private SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor< private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: SelectClientPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectClientPromptQuery", document: SelectClientPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: SelectClientPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectClientPromptQuery", document: SelectClientPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -147239,22 +150827,18 @@ private SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor< /// /// Represents the operation service of the SelectClientPromptQuery GraphQL operation /// - /// query SelectClientPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query SelectClientPromptQuery($apiId: ID!, $after: String, $first: Int) { /// apiById(id: $apiId) { /// __typename /// clients(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectClientPrompt_ClientEdge + /// ...SelectClientPrompt_ClientEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -147264,14 +150848,14 @@ private SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor< /// cursor /// node { /// __typename - /// ... SelectClientPrompt_Client + /// ...SelectClientPrompt_Client /// } /// } /// /// fragment SelectClientPrompt_Client on Client { /// id /// name - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -147286,7 +150870,7 @@ private SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor< /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -147335,9 +150919,7 @@ public partial interface ISelectClientPromptQueryQuery : global::StrawberryShake /// /// Represents the operation service of the UploadClient GraphQL operation /// - /// mutation UploadClient( - /// $input: UploadClientInput! - /// ) { + /// mutation UploadClient($input: UploadClientInput!) { /// uploadClient(input: $input) { /// __typename /// clientVersion { @@ -147346,12 +150928,12 @@ public partial interface ISelectClientPromptQueryQuery : global::StrawberryShake /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ClientNotFoundError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ClientNotFoundError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -147359,7 +150941,7 @@ public partial interface ISelectClientPromptQueryQuery : global::StrawberryShake /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -147369,25 +150951,25 @@ public partial interface ISelectClientPromptQueryQuery : global::StrawberryShake /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -147400,8 +150982,8 @@ private UploadClientMutationDocument() public static UploadClientMutationDocument Instance { get; } = new UploadClientMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation UploadClient($input: UploadClientInput!) { uploadClient(input: $input) { __typename clientVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... ClientNotFoundError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "04a95300043e67348c92bc627adcdc2c"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3ed641cd3b607ce0233451f8292df7c8"); public override global::System.String ToString() { @@ -147417,9 +150999,7 @@ private UploadClientMutationDocument() /// /// Represents the operation service of the UploadClient GraphQL operation /// - /// mutation UploadClient( - /// $input: UploadClientInput! - /// ) { + /// mutation UploadClient($input: UploadClientInput!) { /// uploadClient(input: $input) { /// __typename /// clientVersion { @@ -147428,12 +151008,12 @@ private UploadClientMutationDocument() /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ClientNotFoundError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ClientNotFoundError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -147441,7 +151021,7 @@ private UploadClientMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -147451,25 +151031,25 @@ private UploadClientMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -147552,7 +151132,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: UploadClientMutationDocument.Instance.Hash.Value, name: "UploadClient", document: UploadClientMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: UploadClientMutationDocument.Instance.Hash.Value, name: "UploadClient", document: UploadClientMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.UploadClientInput value) @@ -147575,9 +151155,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// /// Represents the operation service of the UploadClient GraphQL operation /// - /// mutation UploadClient( - /// $input: UploadClientInput! - /// ) { + /// mutation UploadClient($input: UploadClientInput!) { /// uploadClient(input: $input) { /// __typename /// clientVersion { @@ -147586,12 +151164,12 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ClientNotFoundError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ClientNotFoundError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -147599,7 +151177,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -147609,25 +151187,25 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -147645,19 +151223,17 @@ public partial interface IUploadClientMutation : global::StrawberryShake.IOperat /// /// Represents the operation service of the ValidateClientVersion GraphQL operation /// - /// mutation ValidateClientVersion( - /// $input: ValidateClientInput! - /// ) { + /// mutation ValidateClientVersion($input: ValidateClientInput!) { /// validateClient(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ClientNotFoundError + /// ...Error /// } /// } /// } @@ -147665,7 +151241,7 @@ public partial interface IUploadClientMutation : global::StrawberryShake.IOperat /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -147675,20 +151251,20 @@ public partial interface IUploadClientMutation : global::StrawberryShake.IOperat /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// @@ -147701,8 +151277,8 @@ private ValidateClientVersionMutationDocument() public static ValidateClientVersionMutationDocument Instance { get; } = new ValidateClientVersionMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation ValidateClientVersion($input: ValidateClientInput!) { validateClient(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... ClientNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "534b366d72c95afa021a1cf5efbe8972"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "bb27bdf1dde4467fa9948d9d11ced00d"); public override global::System.String ToString() { @@ -147718,19 +151294,17 @@ private ValidateClientVersionMutationDocument() /// /// Represents the operation service of the ValidateClientVersion GraphQL operation /// - /// mutation ValidateClientVersion( - /// $input: ValidateClientInput! - /// ) { + /// mutation ValidateClientVersion($input: ValidateClientInput!) { /// validateClient(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ClientNotFoundError + /// ...Error /// } /// } /// } @@ -147738,7 +151312,7 @@ private ValidateClientVersionMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -147748,20 +151322,20 @@ private ValidateClientVersionMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// @@ -147844,7 +151418,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: ValidateClientVersionMutationDocument.Instance.Hash.Value, name: "ValidateClientVersion", document: ValidateClientVersionMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ValidateClientVersionMutationDocument.Instance.Hash.Value, name: "ValidateClientVersion", document: ValidateClientVersionMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.ValidateClientInput value) @@ -147867,19 +151441,17 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// /// Represents the operation service of the ValidateClientVersion GraphQL operation /// - /// mutation ValidateClientVersion( - /// $input: ValidateClientInput! - /// ) { + /// mutation ValidateClientVersion($input: ValidateClientInput!) { /// validateClient(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ClientNotFoundError + /// ...Error /// } /// } /// } @@ -147887,7 +151459,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -147897,20 +151469,20 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// @@ -147928,15 +151500,13 @@ public partial interface IValidateClientVersionMutation : global::StrawberryShak /// /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation /// - /// subscription OnClientVersionValidationUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnClientVersionValidationUpdated($requestId: ID!) { /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... ClientVersionValidationFailed - /// ... ClientVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...ClientVersionValidationFailed + /// ...ClientVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -147944,9 +151514,9 @@ public partial interface IValidateClientVersionMutation : global::StrawberryShak /// state /// errors { /// __typename - /// ... PersistedQueryValidationError - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError + /// ...PersistedQueryValidationError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError /// } /// } /// @@ -148008,8 +151578,8 @@ private OnClientVersionValidationUpdatedSubscriptionDocument() public static OnClientVersionValidationUpdatedSubscriptionDocument Instance { get; } = new OnClientVersionValidationUpdatedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription OnClientVersionValidationUpdated($requestId: ID!) { onClientVersionValidationUpdate(requestId: $requestId) { __typename ... ClientVersionValidationFailed ... ClientVersionValidationSuccess ... OperationInProgress ... ValidationInProgress } } fragment ClientVersionValidationFailed on ClientVersionValidationFailed { state errors { __typename ... PersistedQueryValidationError ... ProcessingTimeoutError ... UnexpectedProcessingError } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ClientVersionValidationSuccess on ClientVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7bba9b8a24c252e56c3a8f077ab6c62f"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "5a761fdfad0074c3343c677f47143437"); public override global::System.String ToString() { @@ -148025,15 +151595,13 @@ private OnClientVersionValidationUpdatedSubscriptionDocument() /// /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation /// - /// subscription OnClientVersionValidationUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnClientVersionValidationUpdated($requestId: ID!) { /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... ClientVersionValidationFailed - /// ... ClientVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...ClientVersionValidationFailed + /// ...ClientVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -148041,9 +151609,9 @@ private OnClientVersionValidationUpdatedSubscriptionDocument() /// state /// errors { /// __typename - /// ... PersistedQueryValidationError - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError + /// ...PersistedQueryValidationError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError /// } /// } /// @@ -148124,7 +151692,7 @@ public OnClientVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: OnClientVersionValidationUpdatedSubscriptionDocument.Instance.Hash.Value, name: "OnClientVersionValidationUpdated", document: OnClientVersionValidationUpdatedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: OnClientVersionValidationUpdatedSubscriptionDocument.Instance.Hash.Value, name: "OnClientVersionValidationUpdated", document: OnClientVersionValidationUpdatedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -148147,15 +151715,13 @@ public OnClientVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation /// - /// subscription OnClientVersionValidationUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnClientVersionValidationUpdated($requestId: ID!) { /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... ClientVersionValidationFailed - /// ... ClientVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...ClientVersionValidationFailed + /// ...ClientVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -148163,9 +151729,9 @@ public OnClientVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// state /// errors { /// __typename - /// ... PersistedQueryValidationError - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError + /// ...PersistedQueryValidationError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError /// } /// } /// @@ -148228,20 +151794,18 @@ public partial interface IOnClientVersionValidationUpdatedSubscription : global: /// /// Represents the operation service of the DeleteClientByIdCommandMutation GraphQL operation /// - /// mutation DeleteClientByIdCommandMutation( - /// $input: DeleteClientByIdInput! - /// ) { + /// mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { /// deleteClientById(input: $input) { /// __typename /// client { /// __typename - /// ... DeleteClientByIdCommandMutation_Client + /// ...DeleteClientByIdCommandMutation_Client /// } /// errors { /// __typename - /// ... Error - /// ... ClientNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ClientNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -148249,7 +151813,7 @@ public partial interface IOnClientVersionValidationUpdatedSubscription : global: /// fragment DeleteClientByIdCommandMutation_Client on Client { /// name /// id - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -148264,7 +151828,7 @@ public partial interface IOnClientVersionValidationUpdatedSubscription : global: /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -148298,13 +151862,13 @@ public partial interface IOnClientVersionValidationUpdatedSubscription : global: /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -148317,8 +151881,8 @@ private DeleteClientByIdCommandMutationMutationDocument() public static DeleteClientByIdCommandMutationMutationDocument Instance { get; } = new DeleteClientByIdCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { deleteClientById(input: $input) { __typename client { __typename ... DeleteClientByIdCommandMutation_Client } errors { __typename ... Error ... ClientNotFoundError ... UnauthorizedOperation } } } fragment DeleteClientByIdCommandMutation_Client on Client { name id ... ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment Error on Error { message } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "f450cfe13d84ae3c3768bac9c9fbf8b4"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "e1693438c04325d315c3c5d35c930283"); public override global::System.String ToString() { @@ -148334,20 +151898,18 @@ private DeleteClientByIdCommandMutationMutationDocument() /// /// Represents the operation service of the DeleteClientByIdCommandMutation GraphQL operation /// - /// mutation DeleteClientByIdCommandMutation( - /// $input: DeleteClientByIdInput! - /// ) { + /// mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { /// deleteClientById(input: $input) { /// __typename /// client { /// __typename - /// ... DeleteClientByIdCommandMutation_Client + /// ...DeleteClientByIdCommandMutation_Client /// } /// errors { /// __typename - /// ... Error - /// ... ClientNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ClientNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -148355,7 +151917,7 @@ private DeleteClientByIdCommandMutationMutationDocument() /// fragment DeleteClientByIdCommandMutation_Client on Client { /// name /// id - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -148370,7 +151932,7 @@ private DeleteClientByIdCommandMutationMutationDocument() /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -148404,13 +151966,13 @@ private DeleteClientByIdCommandMutationMutationDocument() /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -148476,7 +152038,7 @@ private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperati private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: DeleteClientByIdCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteClientByIdCommandMutation", document: DeleteClientByIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: DeleteClientByIdCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteClientByIdCommandMutation", document: DeleteClientByIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.DeleteClientByIdInput value) @@ -148499,20 +152061,18 @@ private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperati /// /// Represents the operation service of the DeleteClientByIdCommandMutation GraphQL operation /// - /// mutation DeleteClientByIdCommandMutation( - /// $input: DeleteClientByIdInput! - /// ) { + /// mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { /// deleteClientById(input: $input) { /// __typename /// client { /// __typename - /// ... DeleteClientByIdCommandMutation_Client + /// ...DeleteClientByIdCommandMutation_Client /// } /// errors { /// __typename - /// ... Error - /// ... ClientNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ClientNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -148520,7 +152080,7 @@ private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperati /// fragment DeleteClientByIdCommandMutation_Client on Client { /// name /// id - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -148535,7 +152095,7 @@ private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperati /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -148569,13 +152129,13 @@ private DeleteClientByIdCommandMutationMutation(global::StrawberryShake.IOperati /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -148593,20 +152153,18 @@ public partial interface IDeleteClientByIdCommandMutationMutation : global::Stra /// /// Represents the operation service of the PublishClientVersion GraphQL operation /// - /// mutation PublishClientVersion( - /// $input: PublishClientInput! - /// ) { + /// mutation PublishClientVersion($input: PublishClientInput!) { /// publishClient(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... ClientVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ClientNotFoundError + /// ...ClientVersionNotFoundError + /// ...Error /// } /// } /// } @@ -148614,7 +152172,7 @@ public partial interface IDeleteClientByIdCommandMutationMutation : global::Stra /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -148624,27 +152182,27 @@ public partial interface IDeleteClientByIdCommandMutationMutation : global::Stra /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { /// tag /// message /// clientId - /// ... Error + /// ...Error /// } /// /// @@ -148657,8 +152215,8 @@ private PublishClientVersionMutationDocument() public static PublishClientVersionMutationDocument Instance { get; } = new PublishClientVersionMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation PublishClientVersion($input: PublishClientInput!) { publishClient(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... ClientNotFoundError ... ClientVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment ClientVersionNotFoundError on ClientVersionNotFoundError { tag message clientId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7f74dfa45e5ecd418856f7278245de9b"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "824be39d995156b2ef64a26a62e34af1"); public override global::System.String ToString() { @@ -148674,20 +152232,18 @@ private PublishClientVersionMutationDocument() /// /// Represents the operation service of the PublishClientVersion GraphQL operation /// - /// mutation PublishClientVersion( - /// $input: PublishClientInput! - /// ) { + /// mutation PublishClientVersion($input: PublishClientInput!) { /// publishClient(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... ClientVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ClientNotFoundError + /// ...ClientVersionNotFoundError + /// ...Error /// } /// } /// } @@ -148695,7 +152251,7 @@ private PublishClientVersionMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -148705,27 +152261,27 @@ private PublishClientVersionMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { /// tag /// message /// clientId - /// ... Error + /// ...Error /// } /// /// @@ -148791,7 +152347,7 @@ private PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor< private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: PublishClientVersionMutationDocument.Instance.Hash.Value, name: "PublishClientVersion", document: PublishClientVersionMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: PublishClientVersionMutationDocument.Instance.Hash.Value, name: "PublishClientVersion", document: PublishClientVersionMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.PublishClientInput value) @@ -148814,20 +152370,18 @@ private PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor< /// /// Represents the operation service of the PublishClientVersion GraphQL operation /// - /// mutation PublishClientVersion( - /// $input: PublishClientInput! - /// ) { + /// mutation PublishClientVersion($input: PublishClientInput!) { /// publishClient(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... ClientVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ClientNotFoundError + /// ...ClientVersionNotFoundError + /// ...Error /// } /// } /// } @@ -148835,7 +152389,7 @@ private PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor< /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -148845,27 +152399,27 @@ private PublishClientVersionMutation(global::StrawberryShake.IOperationExecutor< /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ClientNotFoundError on ClientNotFoundError { /// message /// clientId - /// ... Error + /// ...Error /// } /// /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { /// tag /// message /// clientId - /// ... Error + /// ...Error /// } /// /// @@ -148883,18 +152437,16 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// /// Represents the operation service of the OnClientVersionPublishUpdated GraphQL operation /// - /// subscription OnClientVersionPublishUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnClientVersionPublishUpdated($requestId: ID!) { /// onClientVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... ClientVersionPublishFailed - /// ... ClientVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...ClientVersionPublishFailed + /// ...ClientVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -148902,10 +152454,10 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... PersistedQueryValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...PersistedQueryValidationError /// } /// } /// @@ -148922,7 +152474,7 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -148967,24 +152519,24 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -149005,26 +152557,26 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -149035,42 +152587,42 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -149078,7 +152630,7 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -149086,7 +152638,7 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -149094,23 +152646,23 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -149119,7 +152671,7 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -149128,27 +152680,27 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -149156,161 +152708,161 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -149328,7 +152880,7 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -149340,18 +152892,18 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -149381,7 +152933,7 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -149393,18 +152945,18 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -149433,32 +152985,32 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -149485,8 +153037,8 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() public static OnClientVersionPublishUpdatedSubscriptionDocument Instance { get; } = new OnClientVersionPublishUpdatedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription OnClientVersionPublishUpdated($requestId: ID!) { onClientVersionPublishingUpdate(requestId: $requestId) { __typename ... ClientVersionPublishFailed ... ClientVersionPublishSuccess ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved ... ProcessingTaskIsReady ... ProcessingTaskIsQueued } } fragment ClientVersionPublishFailed on ClientVersionPublishFailed { state errors { __typename ... UnexpectedProcessingError ... ProcessingTimeoutError ... ConcurrentOperationError ... PersistedQueryValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment ClientVersionPublishSuccess on ClientVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8bce2237d04f18cd7a9952fb2a6c79fc"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "37d55f2306a46b1da2eb2c84fab4f061"); public override global::System.String ToString() { @@ -149502,18 +153054,16 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// /// Represents the operation service of the OnClientVersionPublishUpdated GraphQL operation /// - /// subscription OnClientVersionPublishUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnClientVersionPublishUpdated($requestId: ID!) { /// onClientVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... ClientVersionPublishFailed - /// ... ClientVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...ClientVersionPublishFailed + /// ...ClientVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -149521,10 +153071,10 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... PersistedQueryValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...PersistedQueryValidationError /// } /// } /// @@ -149541,7 +153091,7 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -149586,24 +153136,24 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -149624,26 +153174,26 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -149654,42 +153204,42 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -149697,7 +153247,7 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -149705,7 +153255,7 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -149713,23 +153263,23 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -149738,7 +153288,7 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -149747,27 +153297,27 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -149775,161 +153325,161 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -149947,7 +153497,7 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -149959,18 +153509,18 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -150000,7 +153550,7 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -150012,18 +153562,18 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -150052,32 +153602,32 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -150123,7 +153673,7 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: OnClientVersionPublishUpdatedSubscriptionDocument.Instance.Hash.Value, name: "OnClientVersionPublishUpdated", document: OnClientVersionPublishUpdatedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: OnClientVersionPublishUpdatedSubscriptionDocument.Instance.Hash.Value, name: "OnClientVersionPublishUpdated", document: OnClientVersionPublishUpdatedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -150146,18 +153696,16 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// /// Represents the operation service of the OnClientVersionPublishUpdated GraphQL operation /// - /// subscription OnClientVersionPublishUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnClientVersionPublishUpdated($requestId: ID!) { /// onClientVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... ClientVersionPublishFailed - /// ... ClientVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...ClientVersionPublishFailed + /// ...ClientVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -150165,10 +153713,10 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... PersistedQueryValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...PersistedQueryValidationError /// } /// } /// @@ -150185,7 +153733,7 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -150230,24 +153778,24 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -150268,26 +153816,26 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -150298,42 +153846,42 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -150341,7 +153889,7 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -150349,7 +153897,7 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -150357,23 +153905,23 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -150382,7 +153930,7 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -150391,27 +153939,27 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -150419,161 +153967,161 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -150591,7 +154139,7 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -150603,18 +154151,18 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -150644,7 +154192,7 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -150656,18 +154204,18 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -150696,32 +154244,32 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -150749,11 +154297,7 @@ public partial interface IOnClientVersionPublishUpdatedSubscription : global::St /// /// Represents the operation service of the ListClientCommandQuery GraphQL operation /// - /// query ListClientCommandQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListClientCommandQuery($apiId: ID!, $after: String, $first: Int) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -150766,12 +154310,12 @@ public partial interface IOnClientVersionPublishUpdatedSubscription : global::St /// __typename /// id /// name - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -150790,7 +154334,7 @@ public partial interface IOnClientVersionPublishUpdatedSubscription : global::St /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -150834,8 +154378,8 @@ private ListClientCommandQueryQueryDocument() public static ListClientCommandQueryQueryDocument Instance { get; } = new ListClientCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListClientCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { clients(after: $after, first: $first) { __typename edges { __typename cursor node { __typename id name ... ClientDetailPrompt_Client } } pageInfo { __typename ... PageInfo } } } } } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a2a2d861eabc2d4a6f484b396c3e3c8e"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "82c66f6a532c85a910b82fdfd48cca27"); public override global::System.String ToString() { @@ -150851,11 +154395,7 @@ private ListClientCommandQueryQueryDocument() /// /// Represents the operation service of the ListClientCommandQuery GraphQL operation /// - /// query ListClientCommandQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListClientCommandQuery($apiId: ID!, $after: String, $first: Int) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -150868,12 +154408,12 @@ private ListClientCommandQueryQueryDocument() /// __typename /// id /// name - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -150892,7 +154432,7 @@ private ListClientCommandQueryQueryDocument() /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -150997,7 +154537,7 @@ private ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: ListClientCommandQueryQueryDocument.Instance.Hash.Value, name: "ListClientCommandQuery", document: ListClientCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListClientCommandQueryQueryDocument.Instance.Hash.Value, name: "ListClientCommandQuery", document: ListClientCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -151044,11 +154584,7 @@ private ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListClientCommandQuery GraphQL operation /// - /// query ListClientCommandQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListClientCommandQuery($apiId: ID!, $after: String, $first: Int) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -151061,12 +154597,12 @@ private ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation CreateClientCommandMutation( - /// $input: CreateClientInput! - /// ) { + /// mutation CreateClientCommandMutation($input: CreateClientInput!) { /// createClient(input: $input) { /// __typename /// client { /// __typename - /// ... CreateClientCommandMutation_Client + /// ...CreateClientCommandMutation_Client /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -151155,7 +154690,7 @@ public partial interface IListClientCommandQueryQuery : global::StrawberryShake. /// fragment CreateClientCommandMutation_Client on Client { /// name /// id - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -151170,7 +154705,7 @@ public partial interface IListClientCommandQueryQuery : global::StrawberryShake. /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -151205,13 +154740,19 @@ public partial interface IListClientCommandQueryQuery : global::StrawberryShake. /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -151224,8 +154765,8 @@ private CreateClientCommandMutationMutationDocument() public static CreateClientCommandMutationMutationDocument Instance { get; } = new CreateClientCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreateClientCommandMutation($input: CreateClientInput!) { createClient(input: $input) { __typename client { __typename ... CreateClientCommandMutation_Client } errors { __typename ... Error ... ApiNotFoundError ... UnauthorizedOperation } } } fragment CreateClientCommandMutation_Client on Client { name id ... ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1781486920ef931abe7278a40b70d4cb"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "56b67ff5832a4eee4cc2c9b41645449a"); public override global::System.String ToString() { @@ -151241,20 +154782,19 @@ private CreateClientCommandMutationMutationDocument() /// /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation CreateClientCommandMutation( - /// $input: CreateClientInput! - /// ) { + /// mutation CreateClientCommandMutation($input: CreateClientInput!) { /// createClient(input: $input) { /// __typename /// client { /// __typename - /// ... CreateClientCommandMutation_Client + /// ...CreateClientCommandMutation_Client /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -151262,7 +154802,7 @@ private CreateClientCommandMutationMutationDocument() /// fragment CreateClientCommandMutation_Client on Client { /// name /// id - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -151277,7 +154817,7 @@ private CreateClientCommandMutationMutationDocument() /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -151312,13 +154852,19 @@ private CreateClientCommandMutationMutationDocument() /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -151384,7 +154930,7 @@ private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationEx private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CreateClientCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateClientCommandMutation", document: CreateClientCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreateClientCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateClientCommandMutation", document: CreateClientCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.CreateClientInput value) @@ -151407,20 +154953,19 @@ private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationEx /// /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation CreateClientCommandMutation( - /// $input: CreateClientInput! - /// ) { + /// mutation CreateClientCommandMutation($input: CreateClientInput!) { /// createClient(input: $input) { /// __typename /// client { /// __typename - /// ... CreateClientCommandMutation_Client + /// ...CreateClientCommandMutation_Client /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -151428,7 +154973,7 @@ private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationEx /// fragment CreateClientCommandMutation_Client on Client { /// name /// id - /// ... ClientDetailPrompt_Client + /// ...ClientDetailPrompt_Client /// } /// /// fragment ClientDetailPrompt_Client on Client { @@ -151443,7 +154988,7 @@ private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationEx /// __typename /// edges { /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge + /// ...ClientDetailPrompt_ClientVersionEdge /// } /// pageInfo { /// __typename @@ -151478,13 +155023,19 @@ private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationEx /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -151502,12 +155053,10 @@ public partial interface ICreateClientCommandMutationMutation : global::Strawber /// /// Represents the operation service of the ShowApiCommandQuery GraphQL operation /// - /// query ShowApiCommandQuery( - /// $apiId: ID! - /// ) { + /// query ShowApiCommandQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// } /// @@ -151540,8 +155089,8 @@ private ShowApiCommandQueryQueryDocument() public static ShowApiCommandQueryQueryDocument Instance { get; } = new ShowApiCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ShowApiCommandQuery($apiId: ID!) { node(id: $apiId) { __typename ... ApiDetailPrompt_Api } } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "42881a9198879d969b1951404e14b13a"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "0ea0684e03b71be18834680e140dc78b"); public override global::System.String ToString() { @@ -151557,12 +155106,10 @@ private ShowApiCommandQueryQueryDocument() /// /// Represents the operation service of the ShowApiCommandQuery GraphQL operation /// - /// query ShowApiCommandQuery( - /// $apiId: ID! - /// ) { + /// query ShowApiCommandQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// } /// @@ -151648,7 +155195,7 @@ private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: ShowApiCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowApiCommandQuery", document: ShowApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ShowApiCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowApiCommandQuery", document: ShowApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -151671,12 +155218,10 @@ private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ShowApiCommandQuery GraphQL operation /// - /// query ShowApiCommandQuery( - /// $apiId: ID! - /// ) { + /// query ShowApiCommandQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// } /// @@ -151714,12 +155259,10 @@ public partial interface IShowApiCommandQueryQuery : global::StrawberryShake.IOp /// /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery( - /// $apiId: ID! - /// ) { + /// query DeleteApiCommandQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename - /// ... DeleteApiCommandQuery_Api + /// ...DeleteApiCommandQuery_Api /// } /// } /// @@ -151742,8 +155285,8 @@ private DeleteApiCommandQueryQueryDocument() public static DeleteApiCommandQueryQueryDocument Instance { get; } = new DeleteApiCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query DeleteApiCommandQuery($apiId: ID!) { node(id: $apiId) { __typename ... DeleteApiCommandQuery_Api } } fragment DeleteApiCommandQuery_Api on Api { name version workspace { __typename id } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3b4f426d4f45f7b8d9472110f137e869"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ec810f0d9ed01b6a485004f609913a9f"); public override global::System.String ToString() { @@ -151759,12 +155302,10 @@ private DeleteApiCommandQueryQueryDocument() /// /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery( - /// $apiId: ID! - /// ) { + /// query DeleteApiCommandQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename - /// ... DeleteApiCommandQuery_Api + /// ...DeleteApiCommandQuery_Api /// } /// } /// @@ -151840,7 +155381,7 @@ private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: DeleteApiCommandQueryQueryDocument.Instance.Hash.Value, name: "DeleteApiCommandQuery", document: DeleteApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: DeleteApiCommandQueryQueryDocument.Instance.Hash.Value, name: "DeleteApiCommandQuery", document: DeleteApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -151863,12 +155404,10 @@ private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery( - /// $apiId: ID! - /// ) { + /// query DeleteApiCommandQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename - /// ... DeleteApiCommandQuery_Api + /// ...DeleteApiCommandQuery_Api /// } /// } /// @@ -151896,19 +155435,17 @@ public partial interface IDeleteApiCommandQueryQuery : global::StrawberryShake.I /// /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// mutation DeleteApiCommandMutation( - /// $apiId: ID! - /// ) { + /// mutation DeleteApiCommandMutation($apiId: ID!) { /// deleteApiById(input: { apiId: $apiId }) { /// __typename /// api { /// __typename /// name - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -151946,8 +155483,8 @@ private DeleteApiCommandMutationMutationDocument() public static DeleteApiCommandMutationMutationDocument Instance { get; } = new DeleteApiCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation DeleteApiCommandMutation($apiId: ID!) { deleteApiById(input: { apiId: $apiId }) { __typename api { __typename name ... ApiDetailPrompt_Api } errors { __typename ... Error } } } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment Error on Error { message }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "dff3ece7aa10daff0067410c52faf6d7"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "94c7550f677d23339a7ccf1d0cffcba5"); public override global::System.String ToString() { @@ -151963,19 +155500,17 @@ private DeleteApiCommandMutationMutationDocument() /// /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// mutation DeleteApiCommandMutation( - /// $apiId: ID! - /// ) { + /// mutation DeleteApiCommandMutation($apiId: ID!) { /// deleteApiById(input: { apiId: $apiId }) { /// __typename /// api { /// __typename /// name - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -152066,7 +155601,7 @@ private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecu private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: DeleteApiCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteApiCommandMutation", document: DeleteApiCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: DeleteApiCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteApiCommandMutation", document: DeleteApiCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -152089,19 +155624,17 @@ private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecu /// /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// mutation DeleteApiCommandMutation( - /// $apiId: ID! - /// ) { + /// mutation DeleteApiCommandMutation($apiId: ID!) { /// deleteApiById(input: { apiId: $apiId }) { /// __typename /// api { /// __typename /// name - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -152144,22 +155677,18 @@ public partial interface IDeleteApiCommandMutationMutation : global::StrawberryS /// /// Represents the operation service of the SelectApiPromptQuery GraphQL operation /// - /// query SelectApiPromptQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int - /// ) { + /// query SelectApiPromptQuery($workspaceId: ID!, $after: Version, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectApiPrompt_ApiEdge + /// ...SelectApiPrompt_ApiEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -152169,7 +155698,7 @@ public partial interface IDeleteApiCommandMutationMutation : global::StrawberryS /// cursor /// node { /// __typename - /// ... SelectApiPrompt_Api + /// ...SelectApiPrompt_Api /// } /// } /// @@ -152177,7 +155706,7 @@ public partial interface IDeleteApiCommandMutationMutation : global::StrawberryS /// id /// name /// path - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -152216,8 +155745,8 @@ private SelectApiPromptQueryQueryDocument() public static SelectApiPromptQueryQueryDocument Instance { get; } = new SelectApiPromptQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query SelectApiPromptQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apis(after: $after, first: $first) { __typename edges { __typename ... SelectApiPrompt_ApiEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectApiPrompt_ApiEdge on ApisEdge { cursor node { __typename ... SelectApiPrompt_Api } } fragment SelectApiPrompt_Api on Api { id name path ... ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a99c8cea1f4c187c4b1a8f615aa22fac"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "39e29eafb9c20e09b4a7fc89fc65438c"); public override global::System.String ToString() { @@ -152233,22 +155762,18 @@ private SelectApiPromptQueryQueryDocument() /// /// Represents the operation service of the SelectApiPromptQuery GraphQL operation /// - /// query SelectApiPromptQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int - /// ) { + /// query SelectApiPromptQuery($workspaceId: ID!, $after: Version, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectApiPrompt_ApiEdge + /// ...SelectApiPrompt_ApiEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -152258,7 +155783,7 @@ private SelectApiPromptQueryQueryDocument() /// cursor /// node { /// __typename - /// ... SelectApiPrompt_Api + /// ...SelectApiPrompt_Api /// } /// } /// @@ -152266,7 +155791,7 @@ private SelectApiPromptQueryQueryDocument() /// id /// name /// path - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -152366,7 +155891,7 @@ private SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: SelectApiPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectApiPromptQuery", document: SelectApiPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: SelectApiPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectApiPromptQuery", document: SelectApiPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatWorkspaceId(global::System.String value) @@ -152413,22 +155938,18 @@ private SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the SelectApiPromptQuery GraphQL operation /// - /// query SelectApiPromptQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int - /// ) { + /// query SelectApiPromptQuery($workspaceId: ID!, $after: Version, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectApiPrompt_ApiEdge + /// ...SelectApiPrompt_ApiEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -152438,7 +155959,7 @@ private SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListApiCommandQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int - /// ) { + /// query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListApiCommand_ApiEdge + /// ...ListApiCommand_ApiEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -152515,7 +156032,7 @@ public partial interface ISelectApiPromptQueryQuery : global::StrawberryShake.IO /// cursor /// node { /// __typename - /// ... ListApiCommand_Api + /// ...ListApiCommand_Api /// } /// } /// @@ -152523,7 +156040,7 @@ public partial interface ISelectApiPromptQueryQuery : global::StrawberryShake.IO /// id /// name /// path - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -152562,8 +156079,8 @@ private ListApiCommandQueryQueryDocument() public static ListApiCommandQueryQueryDocument Instance { get; } = new ListApiCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apis(after: $after, first: $first) { __typename edges { __typename ... ListApiCommand_ApiEdge } pageInfo { __typename ... PageInfo } } } } fragment ListApiCommand_ApiEdge on ApisEdge { cursor node { __typename ... ListApiCommand_Api } } fragment ListApiCommand_Api on Api { id name path ... ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "4457adbf3d9f1a7ca591ced02a6e97c0"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "4a43c30757df56561f664081f7e396aa"); public override global::System.String ToString() { @@ -152579,22 +156096,18 @@ private ListApiCommandQueryQueryDocument() /// /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListApiCommandQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int - /// ) { + /// query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListApiCommand_ApiEdge + /// ...ListApiCommand_ApiEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -152604,7 +156117,7 @@ private ListApiCommandQueryQueryDocument() /// cursor /// node { /// __typename - /// ... ListApiCommand_Api + /// ...ListApiCommand_Api /// } /// } /// @@ -152612,7 +156125,7 @@ private ListApiCommandQueryQueryDocument() /// id /// name /// path - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -152712,7 +156225,7 @@ private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: ListApiCommandQueryQueryDocument.Instance.Hash.Value, name: "ListApiCommandQuery", document: ListApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListApiCommandQueryQueryDocument.Instance.Hash.Value, name: "ListApiCommandQuery", document: ListApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatWorkspaceId(global::System.String value) @@ -152759,22 +156272,18 @@ private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListApiCommandQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int - /// ) { + /// query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListApiCommand_ApiEdge + /// ...ListApiCommand_ApiEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -152784,7 +156293,7 @@ private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation /// - /// mutation SetApiSettingsCommandMutation( - /// $input: UpdateApiSettingsInput! - /// ) { + /// mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { /// updateApiSettings(input: $input) { /// __typename /// api { /// __typename - /// ... SetApiSettingsCommandMutation_Api + /// ...SetApiSettingsCommandMutation_Api /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... UnauthorizedOperation - /// ... Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...Error /// } /// } /// } @@ -152857,14 +156364,14 @@ public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOp /// fragment SetApiSettingsCommandMutation_Api on Api { /// name /// path - /// ... SelectApiPrompt_Api + /// ...SelectApiPrompt_Api /// } /// /// fragment SelectApiPrompt_Api on Api { /// id /// name /// path - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -152890,7 +156397,7 @@ public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOp /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -152900,7 +156407,7 @@ public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOp /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -152913,8 +156420,8 @@ private SetApiSettingsCommandMutationMutationDocument() public static SetApiSettingsCommandMutationMutationDocument Instance { get; } = new SetApiSettingsCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { updateApiSettings(input: $input) { __typename api { __typename ... SetApiSettingsCommandMutation_Api } errors { __typename ... ApiNotFoundError ... UnauthorizedOperation ... Error } } } fragment SetApiSettingsCommandMutation_Api on Api { name path ... SelectApiPrompt_Api } fragment SelectApiPrompt_Api on Api { id name path ... ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment Error on Error { message } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1764f051057ef08b61a865c8e104c057"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7285579dd02e02cb7953d0482a02c35f"); public override global::System.String ToString() { @@ -152930,20 +156437,18 @@ private SetApiSettingsCommandMutationMutationDocument() /// /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation /// - /// mutation SetApiSettingsCommandMutation( - /// $input: UpdateApiSettingsInput! - /// ) { + /// mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { /// updateApiSettings(input: $input) { /// __typename /// api { /// __typename - /// ... SetApiSettingsCommandMutation_Api + /// ...SetApiSettingsCommandMutation_Api /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... UnauthorizedOperation - /// ... Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...Error /// } /// } /// } @@ -152951,14 +156456,14 @@ private SetApiSettingsCommandMutationMutationDocument() /// fragment SetApiSettingsCommandMutation_Api on Api { /// name /// path - /// ... SelectApiPrompt_Api + /// ...SelectApiPrompt_Api /// } /// /// fragment SelectApiPrompt_Api on Api { /// id /// name /// path - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -152984,7 +156489,7 @@ private SetApiSettingsCommandMutationMutationDocument() /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -152994,7 +156499,7 @@ private SetApiSettingsCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -153060,7 +156565,7 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: SetApiSettingsCommandMutationMutationDocument.Instance.Hash.Value, name: "SetApiSettingsCommandMutation", document: SetApiSettingsCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: SetApiSettingsCommandMutationMutationDocument.Instance.Hash.Value, name: "SetApiSettingsCommandMutation", document: SetApiSettingsCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.UpdateApiSettingsInput value) @@ -153083,20 +156588,18 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation /// /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation /// - /// mutation SetApiSettingsCommandMutation( - /// $input: UpdateApiSettingsInput! - /// ) { + /// mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { /// updateApiSettings(input: $input) { /// __typename /// api { /// __typename - /// ... SetApiSettingsCommandMutation_Api + /// ...SetApiSettingsCommandMutation_Api /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... UnauthorizedOperation - /// ... Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...Error /// } /// } /// } @@ -153104,14 +156607,14 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation /// fragment SetApiSettingsCommandMutation_Api on Api { /// name /// path - /// ... SelectApiPrompt_Api + /// ...SelectApiPrompt_Api /// } /// /// fragment SelectApiPrompt_Api on Api { /// id /// name /// path - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -153137,7 +156640,7 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -153147,7 +156650,7 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -153167,27 +156670,43 @@ public partial interface ISetApiSettingsCommandMutationMutation : global::Strawb /// /// mutation CreateApiCommandMutation( /// $workspaceId: ID! - /// $path: [String!]! - /// $name: String! - /// $kind: ApiKind + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind /// ) { - /// pushWorkspaceChanges(input: { changes: [{ api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } }] }) { + /// pushWorkspaceChanges( + /// input: { + /// changes: [ + /// { + /// api: { + /// create: { + /// name: $name + /// path: $path + /// referenceId: "api" + /// workspaceId: $workspaceId + /// kind: $kind + /// } + /// } + /// } + /// ] + /// } + /// ) { /// __typename /// changes { /// __typename /// referenceId /// error { /// __typename - /// ... Error + /// ...Error /// } /// result { /// __typename - /// ... CreateApiCommandMutation_Api + /// ...CreateApiCommandMutation_Api /// } /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -153198,7 +156717,7 @@ public partial interface ISetApiSettingsCommandMutationMutation : global::Strawb /// /// fragment CreateApiCommandMutation_Api on Api { /// name - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -153230,8 +156749,8 @@ private CreateApiCommandMutationMutationDocument() public static CreateApiCommandMutationMutationDocument Instance { get; } = new CreateApiCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreateApiCommandMutation($workspaceId: ID!, $path: [String!]!, $name: String!, $kind: ApiKind) { pushWorkspaceChanges(input: { changes: [{ api: { create: { name: $name, path: $path, referenceId: \"api\", workspaceId: $workspaceId, kind: $kind } } }] }) { __typename changes { __typename referenceId error { __typename ... Error } result { __typename ... CreateApiCommandMutation_Api } } errors { __typename ... Error } } } fragment Error on Error { message } fragment CreateApiCommandMutation_Api on Api { name ... ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "011734b7fcf646d45b21a4e46309ba9f"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3ad2c4d970d9fe68dea48b300db3d5c2"); public override global::System.String ToString() { @@ -153249,27 +156768,43 @@ private CreateApiCommandMutationMutationDocument() /// /// mutation CreateApiCommandMutation( /// $workspaceId: ID! - /// $path: [String!]! - /// $name: String! - /// $kind: ApiKind + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind /// ) { - /// pushWorkspaceChanges(input: { changes: [{ api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } }] }) { + /// pushWorkspaceChanges( + /// input: { + /// changes: [ + /// { + /// api: { + /// create: { + /// name: $name + /// path: $path + /// referenceId: "api" + /// workspaceId: $workspaceId + /// kind: $kind + /// } + /// } + /// } + /// ] + /// } + /// ) { /// __typename /// changes { /// __typename /// referenceId /// error { /// __typename - /// ... Error + /// ...Error /// } /// result { /// __typename - /// ... CreateApiCommandMutation_Api + /// ...CreateApiCommandMutation_Api /// } /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -153280,7 +156815,7 @@ private CreateApiCommandMutationMutationDocument() /// /// fragment CreateApiCommandMutation_Api on Api { /// name - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -153374,7 +156909,7 @@ private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecu private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CreateApiCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateApiCommandMutation", document: CreateApiCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreateApiCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateApiCommandMutation", document: CreateApiCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatWorkspaceId(global::System.String value) @@ -153442,27 +156977,43 @@ private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecu /// /// mutation CreateApiCommandMutation( /// $workspaceId: ID! - /// $path: [String!]! - /// $name: String! - /// $kind: ApiKind + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind /// ) { - /// pushWorkspaceChanges(input: { changes: [{ api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } }] }) { + /// pushWorkspaceChanges( + /// input: { + /// changes: [ + /// { + /// api: { + /// create: { + /// name: $name + /// path: $path + /// referenceId: "api" + /// workspaceId: $workspaceId + /// kind: $kind + /// } + /// } + /// } + /// ] + /// } + /// ) { /// __typename /// changes { /// __typename /// referenceId /// error { /// __typename - /// ... Error + /// ...Error /// } /// result { /// __typename - /// ... CreateApiCommandMutation_Api + /// ...CreateApiCommandMutation_Api /// } /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -153473,7 +157024,7 @@ private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecu /// /// fragment CreateApiCommandMutation_Api on Api { /// name - /// ... ApiDetailPrompt_Api + /// ...ApiDetailPrompt_Api /// } /// /// fragment ApiDetailPrompt_Api on Api { @@ -153517,10 +157068,10 @@ public partial interface ICreateApiCommandMutationMutation : global::StrawberryS /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -153528,7 +157079,7 @@ public partial interface ICreateApiCommandMutationMutation : global::StrawberryS /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -153538,13 +157089,13 @@ public partial interface ICreateApiCommandMutationMutation : global::StrawberryS /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -153557,8 +157108,8 @@ private CancelFusionConfigurationPublishMutationDocument() public static CancelFusionConfigurationPublishMutationDocument Instance { get; } = new CancelFusionConfigurationPublishMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CancelFusionConfigurationPublish($input: CancelFusionConfigurationCompositionInput!) { cancelFusionConfigurationComposition(input: $input) { __typename errors { __typename ... UnauthorizedOperation ... FusionConfigurationRequestNotFoundError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "39e48feb517b1ca240cec144623126c8"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "faabe0899189af13b0041fde08b660fa"); public override global::System.String ToString() { @@ -153581,10 +157132,10 @@ private CancelFusionConfigurationPublishMutationDocument() /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -153592,7 +157143,7 @@ private CancelFusionConfigurationPublishMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -153602,13 +157153,13 @@ private CancelFusionConfigurationPublishMutationDocument() /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -153674,7 +157225,7 @@ private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperat private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CancelFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "CancelFusionConfigurationPublish", document: CancelFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CancelFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "CancelFusionConfigurationPublish", document: CancelFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.CancelFusionConfigurationCompositionInput value) @@ -153704,10 +157255,10 @@ private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperat /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -153715,7 +157266,7 @@ private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperat /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -153725,13 +157276,13 @@ private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperat /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -153756,10 +157307,10 @@ public partial interface ICancelFusionConfigurationPublishMutation : global::Str /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -153767,7 +157318,7 @@ public partial interface ICancelFusionConfigurationPublishMutation : global::Str /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -153777,13 +157328,13 @@ public partial interface ICancelFusionConfigurationPublishMutation : global::Str /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -153796,8 +157347,8 @@ private CommitFusionConfigurationPublishMutationDocument() public static CommitFusionConfigurationPublishMutationDocument Instance { get; } = new CommitFusionConfigurationPublishMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CommitFusionConfigurationPublish($input: CommitFusionConfigurationPublishInput!) { commitFusionConfigurationPublish(input: $input) { __typename errors { __typename ... UnauthorizedOperation ... FusionConfigurationRequestNotFoundError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fd942dedfe5e376385ae72436c97104a"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "aba2f198be39d019412db93aaee0f32c"); public override global::System.String ToString() { @@ -153820,10 +157371,10 @@ private CommitFusionConfigurationPublishMutationDocument() /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -153831,7 +157382,7 @@ private CommitFusionConfigurationPublishMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -153841,13 +157392,13 @@ private CommitFusionConfigurationPublishMutationDocument() /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -153930,7 +157481,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: CommitFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "CommitFusionConfigurationPublish", document: CommitFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CommitFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "CommitFusionConfigurationPublish", document: CommitFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.CommitFusionConfigurationPublishInput value) @@ -153960,10 +157511,10 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -153971,7 +157522,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -153981,13 +157532,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -154012,10 +157563,10 @@ public partial interface ICommitFusionConfigurationPublishMutation : global::Str /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -154023,7 +157574,7 @@ public partial interface ICommitFusionConfigurationPublishMutation : global::Str /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -154033,13 +157584,13 @@ public partial interface ICommitFusionConfigurationPublishMutation : global::Str /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -154052,8 +157603,8 @@ private StartFusionConfigurationPublishMutationDocument() public static StartFusionConfigurationPublishMutationDocument Instance { get; } = new StartFusionConfigurationPublishMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation StartFusionConfigurationPublish($input: StartFusionConfigurationCompositionInput!) { startFusionConfigurationComposition(input: $input) { __typename errors { __typename ... UnauthorizedOperation ... FusionConfigurationRequestNotFoundError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "2513a57b937300d59ac37db38e3592e5"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "b5db8e0b48c71d85bd1c3770d5b99490"); public override global::System.String ToString() { @@ -154076,10 +157627,10 @@ private StartFusionConfigurationPublishMutationDocument() /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -154087,7 +157638,7 @@ private StartFusionConfigurationPublishMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -154097,13 +157648,13 @@ private StartFusionConfigurationPublishMutationDocument() /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -154169,7 +157720,7 @@ private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperati private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: StartFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "StartFusionConfigurationPublish", document: StartFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: StartFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "StartFusionConfigurationPublish", document: StartFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.StartFusionConfigurationCompositionInput value) @@ -154199,10 +157750,10 @@ private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperati /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -154210,7 +157761,7 @@ private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperati /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -154220,13 +157771,13 @@ private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperati /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -154252,13 +157803,13 @@ public partial interface IStartFusionConfigurationPublishMutation : global::Stra /// requestId /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ApiNotFoundError - /// ... SubgraphInvalidError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ApiNotFoundError + /// ...SubgraphInvalidError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -154266,7 +157817,7 @@ public partial interface IStartFusionConfigurationPublishMutation : global::Stra /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -154276,33 +157827,33 @@ public partial interface IStartFusionConfigurationPublishMutation : global::Stra /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment SubgraphInvalidError on SubgraphInvalidError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -154315,8 +157866,8 @@ private BeginFusionConfigurationPublishMutationDocument() public static BeginFusionConfigurationPublishMutationDocument Instance { get; } = new BeginFusionConfigurationPublishMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation BeginFusionConfigurationPublish($input: BeginFusionConfigurationPublishInput!) { beginFusionConfigurationPublish(input: $input) { __typename requestId errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... ApiNotFoundError ... SubgraphInvalidError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment SubgraphInvalidError on SubgraphInvalidError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "033e38ddf26a3861b6c3e9bdedeb57ee"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3310d38f716797b6a0caaf3f2ff0cc96"); public override global::System.String ToString() { @@ -154340,13 +157891,13 @@ private BeginFusionConfigurationPublishMutationDocument() /// requestId /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ApiNotFoundError - /// ... SubgraphInvalidError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ApiNotFoundError + /// ...SubgraphInvalidError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -154354,7 +157905,7 @@ private BeginFusionConfigurationPublishMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -154364,33 +157915,33 @@ private BeginFusionConfigurationPublishMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment SubgraphInvalidError on SubgraphInvalidError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -154456,7 +158007,7 @@ private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperati private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: BeginFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "BeginFusionConfigurationPublish", document: BeginFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: BeginFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "BeginFusionConfigurationPublish", document: BeginFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.BeginFusionConfigurationPublishInput value) @@ -154487,13 +158038,13 @@ private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperati /// requestId /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... ApiNotFoundError - /// ... SubgraphInvalidError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...ApiNotFoundError + /// ...SubgraphInvalidError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -154501,7 +158052,7 @@ private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperati /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -154511,33 +158062,33 @@ private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperati /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment SubgraphInvalidError on SubgraphInvalidError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -154555,22 +158106,20 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// /// Represents the operation service of the OnFusionConfigurationPublishingTaskChanged GraphQL operation /// - /// subscription OnFusionConfigurationPublishingTaskChanged( - /// $requestId: ID! - /// ) { + /// subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { /// onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { /// state /// __typename - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued - /// ... FusionConfigurationPublishingSuccess - /// ... FusionConfigurationPublishingFailed - /// ... FusionConfigurationValidationSuccess - /// ... FusionConfigurationValidationFailed - /// ... ValidationInProgress - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued + /// ...FusionConfigurationPublishingSuccess + /// ...FusionConfigurationPublishingFailed + /// ...FusionConfigurationValidationSuccess + /// ...FusionConfigurationValidationFailed + /// ...ValidationInProgress + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved /// } /// } /// @@ -154592,7 +158141,7 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// errors { /// __typename /// message - /// ... InvalidGraphQLSchemaError + /// ...InvalidGraphQLSchemaError /// } /// } /// @@ -154610,26 +158159,26 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// success: __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -154640,42 +158189,42 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -154683,7 +158232,7 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -154691,7 +158240,7 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -154699,23 +158248,23 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -154724,7 +158273,7 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -154733,27 +158282,27 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -154761,161 +158310,161 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -154924,12 +158473,12 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// failed: __typename /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... PersistedQueryValidationError - /// ... SchemaVersionChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...PersistedQueryValidationError + /// ...SchemaVersionChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -154968,14 +158517,14 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -154987,18 +158536,18 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -155028,7 +158577,7 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -155040,18 +158589,18 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -155089,24 +158638,24 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -155127,39 +158676,39 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -155177,8 +158726,8 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() public static OnFusionConfigurationPublishingTaskChangedSubscriptionDocument Instance { get; } = new OnFusionConfigurationPublishingTaskChangedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { state __typename ... ProcessingTaskIsReady ... ProcessingTaskIsQueued ... FusionConfigurationPublishingSuccess ... FusionConfigurationPublishingFailed ... FusionConfigurationValidationSuccess ... FusionConfigurationValidationFailed ... ValidationInProgress ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved } } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition } fragment FusionConfigurationPublishingSuccess on FusionConfigurationPublishingSuccess { success: __typename } fragment FusionConfigurationPublishingFailed on FusionConfigurationPublishingFailed { failed: __typename errors { __typename message ... InvalidGraphQLSchemaError } } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment FusionConfigurationValidationSuccess on FusionConfigurationValidationSuccess { success: __typename changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment FusionConfigurationValidationFailed on FusionConfigurationValidationFailed { failed: __typename errors { __typename ... UnexpectedProcessingError ... PersistedQueryValidationError ... SchemaVersionChangeViolationError ... InvalidGraphQLSchemaError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ... SchemaChangeLogEntry } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ValidationInProgress on ValidationInProgress { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "77b48c0f541be024cd1574449436ad1e"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "69dc84f28a5e8c23004a138d5e8fe5d6"); public override global::System.String ToString() { @@ -155194,22 +158743,20 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// /// Represents the operation service of the OnFusionConfigurationPublishingTaskChanged GraphQL operation /// - /// subscription OnFusionConfigurationPublishingTaskChanged( - /// $requestId: ID! - /// ) { + /// subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { /// onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { /// state /// __typename - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued - /// ... FusionConfigurationPublishingSuccess - /// ... FusionConfigurationPublishingFailed - /// ... FusionConfigurationValidationSuccess - /// ... FusionConfigurationValidationFailed - /// ... ValidationInProgress - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued + /// ...FusionConfigurationPublishingSuccess + /// ...FusionConfigurationPublishingFailed + /// ...FusionConfigurationValidationSuccess + /// ...FusionConfigurationValidationFailed + /// ...ValidationInProgress + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved /// } /// } /// @@ -155231,7 +158778,7 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// errors { /// __typename /// message - /// ... InvalidGraphQLSchemaError + /// ...InvalidGraphQLSchemaError /// } /// } /// @@ -155249,26 +158796,26 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// success: __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -155279,42 +158826,42 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -155322,7 +158869,7 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -155330,7 +158877,7 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -155338,23 +158885,23 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -155363,7 +158910,7 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -155372,27 +158919,27 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -155400,161 +158947,161 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -155563,12 +159110,12 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// failed: __typename /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... PersistedQueryValidationError - /// ... SchemaVersionChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...PersistedQueryValidationError + /// ...SchemaVersionChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -155607,14 +159154,14 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -155626,18 +159173,18 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -155667,7 +159214,7 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -155679,18 +159226,18 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -155728,24 +159275,24 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -155766,39 +159313,39 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -155835,7 +159382,7 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: OnFusionConfigurationPublishingTaskChangedSubscriptionDocument.Instance.Hash.Value, name: "OnFusionConfigurationPublishingTaskChanged", document: OnFusionConfigurationPublishingTaskChangedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: OnFusionConfigurationPublishingTaskChangedSubscriptionDocument.Instance.Hash.Value, name: "OnFusionConfigurationPublishingTaskChanged", document: OnFusionConfigurationPublishingTaskChangedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -155858,22 +159405,20 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// /// Represents the operation service of the OnFusionConfigurationPublishingTaskChanged GraphQL operation /// - /// subscription OnFusionConfigurationPublishingTaskChanged( - /// $requestId: ID! - /// ) { + /// subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { /// onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { /// state /// __typename - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued - /// ... FusionConfigurationPublishingSuccess - /// ... FusionConfigurationPublishingFailed - /// ... FusionConfigurationValidationSuccess - /// ... FusionConfigurationValidationFailed - /// ... ValidationInProgress - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued + /// ...FusionConfigurationPublishingSuccess + /// ...FusionConfigurationPublishingFailed + /// ...FusionConfigurationValidationSuccess + /// ...FusionConfigurationValidationFailed + /// ...ValidationInProgress + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved /// } /// } /// @@ -155895,7 +159440,7 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// errors { /// __typename /// message - /// ... InvalidGraphQLSchemaError + /// ...InvalidGraphQLSchemaError /// } /// } /// @@ -155913,26 +159458,26 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// success: __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -155943,42 +159488,42 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -155986,7 +159531,7 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -155994,7 +159539,7 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -156002,23 +159547,23 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -156027,7 +159572,7 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -156036,27 +159581,27 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -156064,161 +159609,161 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -156227,12 +159772,12 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// failed: __typename /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... PersistedQueryValidationError - /// ... SchemaVersionChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...PersistedQueryValidationError + /// ...SchemaVersionChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -156271,14 +159816,14 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -156290,18 +159835,18 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -156331,7 +159876,7 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -156343,18 +159888,18 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -156392,24 +159937,24 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -156430,39 +159975,39 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -156481,9 +160026,7 @@ public partial interface IOnFusionConfigurationPublishingTaskChangedSubscription /// /// Represents the operation service of the UploadFusionSubgraph GraphQL operation /// - /// mutation UploadFusionSubgraph( - /// $input: UploadFusionSubgraphInput! - /// ) { + /// mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { /// uploadFusionSubgraph(input: $input) { /// __typename /// fusionSubgraphVersion { @@ -156492,12 +160035,12 @@ public partial interface IOnFusionConfigurationPublishingTaskChangedSubscription /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... InvalidFusionSourceSchemaArchiveError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...InvalidFusionSourceSchemaArchiveError + /// ...Error /// } /// } /// } @@ -156505,7 +160048,7 @@ public partial interface IOnFusionConfigurationPublishingTaskChangedSubscription /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -156515,19 +160058,19 @@ public partial interface IOnFusionConfigurationPublishingTaskChangedSubscription /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { @@ -156544,8 +160087,8 @@ private UploadFusionSubgraphMutationDocument() public static UploadFusionSubgraphMutationDocument Instance { get; } = new UploadFusionSubgraphMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { uploadFusionSubgraph(input: $input) { __typename fusionSubgraphVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... DuplicatedTagError ... ConcurrentOperationError ... InvalidFusionSourceSchemaArchiveError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { message }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a24d78b046297512641b7986814774c1"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "bc20864afd9f602197593bf6dd1ff2b9"); public override global::System.String ToString() { @@ -156561,9 +160104,7 @@ private UploadFusionSubgraphMutationDocument() /// /// Represents the operation service of the UploadFusionSubgraph GraphQL operation /// - /// mutation UploadFusionSubgraph( - /// $input: UploadFusionSubgraphInput! - /// ) { + /// mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { /// uploadFusionSubgraph(input: $input) { /// __typename /// fusionSubgraphVersion { @@ -156572,12 +160113,12 @@ private UploadFusionSubgraphMutationDocument() /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... InvalidFusionSourceSchemaArchiveError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...InvalidFusionSourceSchemaArchiveError + /// ...Error /// } /// } /// } @@ -156585,7 +160126,7 @@ private UploadFusionSubgraphMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -156595,19 +160136,19 @@ private UploadFusionSubgraphMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { @@ -156694,7 +160235,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: UploadFusionSubgraphMutationDocument.Instance.Hash.Value, name: "UploadFusionSubgraph", document: UploadFusionSubgraphMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: UploadFusionSubgraphMutationDocument.Instance.Hash.Value, name: "UploadFusionSubgraph", document: UploadFusionSubgraphMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.UploadFusionSubgraphInput value) @@ -156717,9 +160258,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// /// Represents the operation service of the UploadFusionSubgraph GraphQL operation /// - /// mutation UploadFusionSubgraph( - /// $input: UploadFusionSubgraphInput! - /// ) { + /// mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { /// uploadFusionSubgraph(input: $input) { /// __typename /// fusionSubgraphVersion { @@ -156728,12 +160267,12 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... InvalidFusionSourceSchemaArchiveError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...InvalidFusionSourceSchemaArchiveError + /// ...Error /// } /// } /// } @@ -156741,7 +160280,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -156751,19 +160290,19 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { @@ -156792,10 +160331,10 @@ public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -156803,7 +160342,7 @@ public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -156813,13 +160352,13 @@ public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -156832,8 +160371,8 @@ private ValidateFusionConfigurationPublishMutationDocument() public static ValidateFusionConfigurationPublishMutationDocument Instance { get; } = new ValidateFusionConfigurationPublishMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation ValidateFusionConfigurationPublish($input: ValidateFusionConfigurationCompositionInput!) { validateFusionConfigurationComposition(input: $input) { __typename errors { __typename ... UnauthorizedOperation ... FusionConfigurationRequestNotFoundError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "6795a8c7e7e54136f9b2b563753a134e"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "38af18860de2da2d0eac431daf63983f"); public override global::System.String ToString() { @@ -156856,10 +160395,10 @@ private ValidateFusionConfigurationPublishMutationDocument() /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -156867,7 +160406,7 @@ private ValidateFusionConfigurationPublishMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -156877,13 +160416,13 @@ private ValidateFusionConfigurationPublishMutationDocument() /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -156966,7 +160505,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: ValidateFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "ValidateFusionConfigurationPublish", document: ValidateFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ValidateFusionConfigurationPublishMutationDocument.Instance.Hash.Value, name: "ValidateFusionConfigurationPublish", document: ValidateFusionConfigurationPublishMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.ValidateFusionConfigurationCompositionInput value) @@ -156996,10 +160535,10 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// __typename /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... FusionConfigurationRequestNotFoundError - /// ... InvalidProcessingStateTransitionError - /// ... Error + /// ...UnauthorizedOperation + /// ...FusionConfigurationRequestNotFoundError + /// ...InvalidProcessingStateTransitionError + /// ...Error /// } /// } /// } @@ -157007,7 +160546,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -157017,13 +160556,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -157050,15 +160589,15 @@ public partial interface IValidateFusionConfigurationPublishMutation : global::S /// __typename /// stages { /// __typename - /// ... StageDetailPrompt_Stage + /// ...StageDetailPrompt_Stage /// } /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -157069,12 +160608,12 @@ public partial interface IValidateFusionConfigurationPublishMutation : global::S /// displayName /// conditions { /// __typename - /// ... StageCondition + /// ...StageCondition /// } /// } /// /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// ...AfterStageCondition /// } /// /// fragment AfterStageCondition on AfterStageCondition { @@ -157092,20 +160631,20 @@ public partial interface IValidateFusionConfigurationPublishMutation : global::S /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -157118,8 +160657,8 @@ private ForceDeleteStageByApiIdCommandMutationMutationDocument() public static ForceDeleteStageByApiIdCommandMutationMutationDocument Instance { get; } = new ForceDeleteStageByApiIdCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation ForceDeleteStageByApiIdCommandMutation($input: ForceDeleteStageByApiIdInput!) { forceDeleteStageByApiId(input: $input) { __typename api { __typename stages { __typename ... StageDetailPrompt_Stage } } errors { __typename ... Error ... ApiNotFoundError ... StageNotFoundError ... UnauthorizedOperation } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ... StageCondition } } fragment StageCondition on StageCondition { ... AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "f09d08ca218792bbc882c78f0db72836"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "47375b37dedffb465623098e4de93b91"); public override global::System.String ToString() { @@ -157144,15 +160683,15 @@ private ForceDeleteStageByApiIdCommandMutationMutationDocument() /// __typename /// stages { /// __typename - /// ... StageDetailPrompt_Stage + /// ...StageDetailPrompt_Stage /// } /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -157163,12 +160702,12 @@ private ForceDeleteStageByApiIdCommandMutationMutationDocument() /// displayName /// conditions { /// __typename - /// ... StageCondition + /// ...StageCondition /// } /// } /// /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// ...AfterStageCondition /// } /// /// fragment AfterStageCondition on AfterStageCondition { @@ -157186,20 +160725,20 @@ private ForceDeleteStageByApiIdCommandMutationMutationDocument() /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -157265,7 +160804,7 @@ private ForceDeleteStageByApiIdCommandMutationMutation(global::StrawberryShake.I private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ForceDeleteStageByApiIdCommandMutationMutationDocument.Instance.Hash.Value, name: "ForceDeleteStageByApiIdCommandMutation", document: ForceDeleteStageByApiIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ForceDeleteStageByApiIdCommandMutationMutationDocument.Instance.Hash.Value, name: "ForceDeleteStageByApiIdCommandMutation", document: ForceDeleteStageByApiIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.ForceDeleteStageByApiIdInput value) @@ -157297,15 +160836,15 @@ private ForceDeleteStageByApiIdCommandMutationMutation(global::StrawberryShake.I /// __typename /// stages { /// __typename - /// ... StageDetailPrompt_Stage + /// ...StageDetailPrompt_Stage /// } /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -157316,12 +160855,12 @@ private ForceDeleteStageByApiIdCommandMutationMutation(global::StrawberryShake.I /// displayName /// conditions { /// __typename - /// ... StageCondition + /// ...StageCondition /// } /// } /// /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// ...AfterStageCondition /// } /// /// fragment AfterStageCondition on AfterStageCondition { @@ -157339,20 +160878,20 @@ private ForceDeleteStageByApiIdCommandMutationMutation(global::StrawberryShake.I /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -157370,25 +160909,23 @@ public partial interface IForceDeleteStageByApiIdCommandMutationMutation : globa /// /// Represents the operation service of the UpdateStages GraphQL operation /// - /// mutation UpdateStages( - /// $input: UpdateStagesInput! - /// ) { + /// mutation UpdateStages($input: UpdateStagesInput!) { /// updateStages(input: $input) { /// __typename /// api { /// __typename /// stages { /// __typename - /// ... StageDetailPrompt_Stage + /// ...StageDetailPrompt_Stage /// } /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... StagesHavePublishedDependenciesError - /// ... StageValidationError - /// ... Error + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...StagesHavePublishedDependenciesError + /// ...StageValidationError + /// ...Error /// } /// } /// } @@ -157399,12 +160936,12 @@ public partial interface IForceDeleteStageByApiIdCommandMutationMutation : globa /// displayName /// conditions { /// __typename - /// ... StageCondition + /// ...StageCondition /// } /// } /// /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// ...AfterStageCondition /// } /// /// fragment AfterStageCondition on AfterStageCondition { @@ -157418,7 +160955,7 @@ public partial interface IForceDeleteStageByApiIdCommandMutationMutation : globa /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -157429,7 +160966,7 @@ public partial interface IForceDeleteStageByApiIdCommandMutationMutation : globa /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment StagesHavePublishedDependenciesError on StagesHavePublishedDependenciesError { @@ -157465,7 +161002,7 @@ public partial interface IForceDeleteStageByApiIdCommandMutationMutation : globa /// fragment StageValidationError on StageValidationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -157478,8 +161015,8 @@ private UpdateStagesMutationDocument() public static UpdateStagesMutationDocument Instance { get; } = new UpdateStagesMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation UpdateStages($input: UpdateStagesInput!) { updateStages(input: $input) { __typename api { __typename stages { __typename ... StageDetailPrompt_Stage } } errors { __typename ... ApiNotFoundError ... StageNotFoundError ... StagesHavePublishedDependenciesError ... StageValidationError ... Error } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ... StageCondition } } fragment StageCondition on StageCondition { ... AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment StagesHavePublishedDependenciesError on StagesHavePublishedDependenciesError { __typename message stages { __typename name publishedSchema { __typename version { __typename tag } } publishedClients { __typename client { __typename name } publishedVersions { __typename version { __typename tag } } } } } fragment StageValidationError on StageValidationError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "70e1d55453601c7397bf8419c8657e13"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "4ad9d943698d054e95a36afc07288aaa"); public override global::System.String ToString() { @@ -157495,25 +161032,23 @@ private UpdateStagesMutationDocument() /// /// Represents the operation service of the UpdateStages GraphQL operation /// - /// mutation UpdateStages( - /// $input: UpdateStagesInput! - /// ) { + /// mutation UpdateStages($input: UpdateStagesInput!) { /// updateStages(input: $input) { /// __typename /// api { /// __typename /// stages { /// __typename - /// ... StageDetailPrompt_Stage + /// ...StageDetailPrompt_Stage /// } /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... StagesHavePublishedDependenciesError - /// ... StageValidationError - /// ... Error + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...StagesHavePublishedDependenciesError + /// ...StageValidationError + /// ...Error /// } /// } /// } @@ -157524,12 +161059,12 @@ private UpdateStagesMutationDocument() /// displayName /// conditions { /// __typename - /// ... StageCondition + /// ...StageCondition /// } /// } /// /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// ...AfterStageCondition /// } /// /// fragment AfterStageCondition on AfterStageCondition { @@ -157543,7 +161078,7 @@ private UpdateStagesMutationDocument() /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -157554,7 +161089,7 @@ private UpdateStagesMutationDocument() /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment StagesHavePublishedDependenciesError on StagesHavePublishedDependenciesError { @@ -157590,7 +161125,7 @@ private UpdateStagesMutationDocument() /// fragment StageValidationError on StageValidationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -157656,7 +161191,7 @@ private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: UpdateStagesMutationDocument.Instance.Hash.Value, name: "UpdateStages", document: UpdateStagesMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: UpdateStagesMutationDocument.Instance.Hash.Value, name: "UpdateStages", document: UpdateStagesMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.UpdateStagesInput value) @@ -157679,25 +161214,23 @@ private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the UpdateStages GraphQL operation /// - /// mutation UpdateStages( - /// $input: UpdateStagesInput! - /// ) { + /// mutation UpdateStages($input: UpdateStagesInput!) { /// updateStages(input: $input) { /// __typename /// api { /// __typename /// stages { /// __typename - /// ... StageDetailPrompt_Stage + /// ...StageDetailPrompt_Stage /// } /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... StagesHavePublishedDependenciesError - /// ... StageValidationError - /// ... Error + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...StagesHavePublishedDependenciesError + /// ...StageValidationError + /// ...Error /// } /// } /// } @@ -157708,12 +161241,12 @@ private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor /// @@ -157792,9 +161325,7 @@ public partial interface IUpdateStagesMutation : global::StrawberryShake.IOperat /// /// Represents the operation service of the ListStagesQuery GraphQL operation /// - /// query ListStagesQuery( - /// $apiId: ID! - /// ) { + /// query ListStagesQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -157803,7 +161334,7 @@ public partial interface IUpdateStagesMutation : global::StrawberryShake.IOperat /// id /// name /// displayName - /// ... StageDetailPrompt_Stage + /// ...StageDetailPrompt_Stage /// } /// } /// } @@ -157815,12 +161346,12 @@ public partial interface IUpdateStagesMutation : global::StrawberryShake.IOperat /// displayName /// conditions { /// __typename - /// ... StageCondition + /// ...StageCondition /// } /// } /// /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// ...AfterStageCondition /// } /// /// fragment AfterStageCondition on AfterStageCondition { @@ -157840,8 +161371,8 @@ private ListStagesQueryQueryDocument() public static ListStagesQueryQueryDocument Instance { get; } = new ListStagesQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListStagesQuery($apiId: ID!) { node(id: $apiId) { __typename ... on Api { stages { __typename id name displayName ... StageDetailPrompt_Stage } } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ... StageCondition } } fragment StageCondition on StageCondition { ... AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ff9fd00b5a96ac47f6aa413a425337d9"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7dfdaabc65fd10d14471021da5704c32"); public override global::System.String ToString() { @@ -157857,9 +161388,7 @@ private ListStagesQueryQueryDocument() /// /// Represents the operation service of the ListStagesQuery GraphQL operation /// - /// query ListStagesQuery( - /// $apiId: ID! - /// ) { + /// query ListStagesQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -157868,7 +161397,7 @@ private ListStagesQueryQueryDocument() /// id /// name /// displayName - /// ... StageDetailPrompt_Stage + /// ...StageDetailPrompt_Stage /// } /// } /// } @@ -157880,12 +161409,12 @@ private ListStagesQueryQueryDocument() /// displayName /// conditions { /// __typename - /// ... StageCondition + /// ...StageCondition /// } /// } /// /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// ...AfterStageCondition /// } /// /// fragment AfterStageCondition on AfterStageCondition { @@ -157958,7 +161487,7 @@ private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: ListStagesQueryQueryDocument.Instance.Hash.Value, name: "ListStagesQuery", document: ListStagesQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListStagesQueryQueryDocument.Instance.Hash.Value, name: "ListStagesQuery", document: ListStagesQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -157981,9 +161510,7 @@ private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListStagesQuery GraphQL operation /// - /// query ListStagesQuery( - /// $apiId: ID! - /// ) { + /// query ListStagesQuery($apiId: ID!) { /// node(id: $apiId) { /// __typename /// ... on Api { @@ -157992,7 +161519,7 @@ private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor /// query ListEnvironmentCommandQuery( /// $workspaceId: ID! - /// $after: Version - /// $first: Int + /// $after: Version + /// $first: Int /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename @@ -158045,11 +161572,11 @@ public partial interface IListStagesQueryQuery : global::StrawberryShake.IOperat /// __typename /// edges { /// __typename - /// ... ListEnvironmentCommand_EnvironmentEdge + /// ...ListEnvironmentCommand_EnvironmentEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -158059,14 +161586,14 @@ public partial interface IListStagesQueryQuery : global::StrawberryShake.IOperat /// cursor /// node { /// __typename - /// ... ListEnvironmentCommand_Environment + /// ...ListEnvironmentCommand_Environment /// } /// } /// /// fragment ListEnvironmentCommand_Environment on Environment { /// id /// name - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// /// fragment EnvironmentDetailPrompt_Environment on Environment { @@ -158095,8 +161622,8 @@ private ListEnvironmentCommandQueryQueryDocument() public static ListEnvironmentCommandQueryQueryDocument Instance { get; } = new ListEnvironmentCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListEnvironmentCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename environments(after: $after, first: $first) { __typename edges { __typename ... ListEnvironmentCommand_EnvironmentEdge } pageInfo { __typename ... PageInfo } } } } fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { cursor node { __typename ... ListEnvironmentCommand_Environment } } fragment ListEnvironmentCommand_Environment on Environment { id name ... EnvironmentDetailPrompt_Environment } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "5d5c59c7c2e869cd8e37ec6a854f6d61"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "10e86b61553643e84fee0aadd815b253"); public override global::System.String ToString() { @@ -158114,8 +161641,8 @@ private ListEnvironmentCommandQueryQueryDocument() /// /// query ListEnvironmentCommandQuery( /// $workspaceId: ID! - /// $after: Version - /// $first: Int + /// $after: Version + /// $first: Int /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename @@ -158123,11 +161650,11 @@ private ListEnvironmentCommandQueryQueryDocument() /// __typename /// edges { /// __typename - /// ... ListEnvironmentCommand_EnvironmentEdge + /// ...ListEnvironmentCommand_EnvironmentEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -158137,14 +161664,14 @@ private ListEnvironmentCommandQueryQueryDocument() /// cursor /// node { /// __typename - /// ... ListEnvironmentCommand_Environment + /// ...ListEnvironmentCommand_Environment /// } /// } /// /// fragment ListEnvironmentCommand_Environment on Environment { /// id /// name - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// /// fragment EnvironmentDetailPrompt_Environment on Environment { @@ -158234,7 +161761,7 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ListEnvironmentCommandQueryQueryDocument.Instance.Hash.Value, name: "ListEnvironmentCommandQuery", document: ListEnvironmentCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListEnvironmentCommandQueryQueryDocument.Instance.Hash.Value, name: "ListEnvironmentCommandQuery", document: ListEnvironmentCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatWorkspaceId(global::System.String value) @@ -158283,8 +161810,8 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu /// /// query ListEnvironmentCommandQuery( /// $workspaceId: ID! - /// $after: Version - /// $first: Int + /// $after: Version + /// $first: Int /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename @@ -158292,11 +161819,11 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu /// __typename /// edges { /// __typename - /// ... ListEnvironmentCommand_EnvironmentEdge + /// ...ListEnvironmentCommand_EnvironmentEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -158306,14 +161833,14 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu /// cursor /// node { /// __typename - /// ... ListEnvironmentCommand_Environment + /// ...ListEnvironmentCommand_Environment /// } /// } /// /// fragment ListEnvironmentCommand_Environment on Environment { /// id /// name - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// /// fragment EnvironmentDetailPrompt_Environment on Environment { @@ -158347,12 +161874,10 @@ public partial interface IListEnvironmentCommandQueryQuery : global::StrawberryS /// /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation /// - /// query ShowEnvironmentCommandQuery( - /// $workspaceId: ID! - /// ) { + /// query ShowEnvironmentCommandQuery($workspaceId: ID!) { /// node(id: $workspaceId) { /// __typename - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// } /// @@ -158375,8 +161900,8 @@ private ShowEnvironmentCommandQueryQueryDocument() public static ShowEnvironmentCommandQueryQueryDocument Instance { get; } = new ShowEnvironmentCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ShowEnvironmentCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ... EnvironmentDetailPrompt_Environment } } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "35993498c755e51178ea417965c3a164"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a658b21324f2e38acc4a43d11ef5d41d"); public override global::System.String ToString() { @@ -158392,12 +161917,10 @@ private ShowEnvironmentCommandQueryQueryDocument() /// /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation /// - /// query ShowEnvironmentCommandQuery( - /// $workspaceId: ID! - /// ) { + /// query ShowEnvironmentCommandQuery($workspaceId: ID!) { /// node(id: $workspaceId) { /// __typename - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// } /// @@ -158473,7 +161996,7 @@ private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ShowEnvironmentCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowEnvironmentCommandQuery", document: ShowEnvironmentCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ShowEnvironmentCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowEnvironmentCommandQuery", document: ShowEnvironmentCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatWorkspaceId(global::System.String value) @@ -158496,12 +162019,10 @@ private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu /// /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation /// - /// query ShowEnvironmentCommandQuery( - /// $workspaceId: ID! - /// ) { + /// query ShowEnvironmentCommandQuery($workspaceId: ID!) { /// node(id: $workspaceId) { /// __typename - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// } /// @@ -158529,27 +162050,38 @@ public partial interface IShowEnvironmentCommandQueryQuery : global::StrawberryS /// /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation /// - /// mutation CreateEnvironmentCommandMutation( - /// $workspaceId: ID! - /// $name: String! - /// ) { - /// pushWorkspaceChanges(input: { changes: [{ environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } }] }) { + /// mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { + /// pushWorkspaceChanges( + /// input: { + /// changes: [ + /// { + /// environment: { + /// create: { + /// name: $name + /// referenceId: "env" + /// workspaceId: $workspaceId + /// } + /// } + /// } + /// ] + /// } + /// ) { /// __typename /// changes { /// __typename /// referenceId /// error { /// __typename - /// ... Error + /// ...Error /// } /// result { /// __typename - /// ... CreateEnvironmentCommandMutation_Environment + /// ...CreateEnvironmentCommandMutation_Environment /// } /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -158560,7 +162092,7 @@ public partial interface IShowEnvironmentCommandQueryQuery : global::StrawberryS /// /// fragment CreateEnvironmentCommandMutation_Environment on Environment { /// name - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// /// fragment EnvironmentDetailPrompt_Environment on Environment { @@ -158582,8 +162114,8 @@ private CreateEnvironmentCommandMutationMutationDocument() public static CreateEnvironmentCommandMutationMutationDocument Instance { get; } = new CreateEnvironmentCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { pushWorkspaceChanges(input: { changes: [{ environment: { create: { name: $name, referenceId: \"env\", workspaceId: $workspaceId } } }] }) { __typename changes { __typename referenceId error { __typename ... Error } result { __typename ... CreateEnvironmentCommandMutation_Environment } } errors { __typename ... Error } } } fragment Error on Error { message } fragment CreateEnvironmentCommandMutation_Environment on Environment { name ... EnvironmentDetailPrompt_Environment } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "cbc95daacec1d269d959c9a30acedb18"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "30fb53190a948165e729d865e5829706"); public override global::System.String ToString() { @@ -158599,27 +162131,38 @@ private CreateEnvironmentCommandMutationMutationDocument() /// /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation /// - /// mutation CreateEnvironmentCommandMutation( - /// $workspaceId: ID! - /// $name: String! - /// ) { - /// pushWorkspaceChanges(input: { changes: [{ environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } }] }) { + /// mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { + /// pushWorkspaceChanges( + /// input: { + /// changes: [ + /// { + /// environment: { + /// create: { + /// name: $name + /// referenceId: "env" + /// workspaceId: $workspaceId + /// } + /// } + /// } + /// ] + /// } + /// ) { /// __typename /// changes { /// __typename /// referenceId /// error { /// __typename - /// ... Error + /// ...Error /// } /// result { /// __typename - /// ... CreateEnvironmentCommandMutation_Environment + /// ...CreateEnvironmentCommandMutation_Environment /// } /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -158630,7 +162173,7 @@ private CreateEnvironmentCommandMutationMutationDocument() /// /// fragment CreateEnvironmentCommandMutation_Environment on Environment { /// name - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// /// fragment EnvironmentDetailPrompt_Environment on Environment { @@ -158709,7 +162252,7 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CreateEnvironmentCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateEnvironmentCommandMutation", document: CreateEnvironmentCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreateEnvironmentCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateEnvironmentCommandMutation", document: CreateEnvironmentCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatWorkspaceId(global::System.String value) @@ -158742,27 +162285,38 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat /// /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation /// - /// mutation CreateEnvironmentCommandMutation( - /// $workspaceId: ID! - /// $name: String! - /// ) { - /// pushWorkspaceChanges(input: { changes: [{ environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } }] }) { + /// mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { + /// pushWorkspaceChanges( + /// input: { + /// changes: [ + /// { + /// environment: { + /// create: { + /// name: $name + /// referenceId: "env" + /// workspaceId: $workspaceId + /// } + /// } + /// } + /// ] + /// } + /// ) { /// __typename /// changes { /// __typename /// referenceId /// error { /// __typename - /// ... Error + /// ...Error /// } /// result { /// __typename - /// ... CreateEnvironmentCommandMutation_Environment + /// ...CreateEnvironmentCommandMutation_Environment /// } /// } /// errors { /// __typename - /// ... Error + /// ...Error /// } /// } /// } @@ -158773,7 +162327,7 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat /// /// fragment CreateEnvironmentCommandMutation_Environment on Environment { /// name - /// ... EnvironmentDetailPrompt_Environment + /// ...EnvironmentDetailPrompt_Environment /// } /// /// fragment EnvironmentDetailPrompt_Environment on Environment { @@ -158800,22 +162354,18 @@ public partial interface ICreateEnvironmentCommandMutationMutation : global::Str /// /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation /// - /// query ListApiKeyCommandQuery( - /// $workspaceId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apiKeys(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListApiKeyCommand_ApiKeyEdge + /// ...ListApiKeyCommand_ApiKeyEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -158825,14 +162375,14 @@ public partial interface ICreateEnvironmentCommandMutationMutation : global::Str /// cursor /// node { /// __typename - /// ... ListApiKeyCommand_ApiKey + /// ...ListApiKeyCommand_ApiKey /// } /// } /// /// fragment ListApiKeyCommand_ApiKey on ApiKey { /// id /// name - /// ... ApiKeyDetailPrompt_ApiKey + /// ...ApiKeyDetailPrompt_ApiKey /// } /// /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { @@ -158861,8 +162411,8 @@ private ListApiKeyCommandQueryQueryDocument() public static ListApiKeyCommandQueryQueryDocument Instance { get; } = new ListApiKeyCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apiKeys(after: $after, first: $first) { __typename edges { __typename ... ListApiKeyCommand_ApiKeyEdge } pageInfo { __typename ... PageInfo } } } } fragment ListApiKeyCommand_ApiKeyEdge on ApiKeysEdge { cursor node { __typename ... ListApiKeyCommand_ApiKey } } fragment ListApiKeyCommand_ApiKey on ApiKey { id name ... ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "73d47ef547275fb8b3364106fa956029"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "d9c9ca51cd26c49e6c70d5f914db867f"); public override global::System.String ToString() { @@ -158878,22 +162428,18 @@ private ListApiKeyCommandQueryQueryDocument() /// /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation /// - /// query ListApiKeyCommandQuery( - /// $workspaceId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apiKeys(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListApiKeyCommand_ApiKeyEdge + /// ...ListApiKeyCommand_ApiKeyEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -158903,14 +162449,14 @@ private ListApiKeyCommandQueryQueryDocument() /// cursor /// node { /// __typename - /// ... ListApiKeyCommand_ApiKey + /// ...ListApiKeyCommand_ApiKey /// } /// } /// /// fragment ListApiKeyCommand_ApiKey on ApiKey { /// id /// name - /// ... ApiKeyDetailPrompt_ApiKey + /// ...ApiKeyDetailPrompt_ApiKey /// } /// /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { @@ -159000,7 +162546,7 @@ private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return new global::StrawberryShake.OperationRequest(id: ListApiKeyCommandQueryQueryDocument.Instance.Hash.Value, name: "ListApiKeyCommandQuery", document: ListApiKeyCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListApiKeyCommandQueryQueryDocument.Instance.Hash.Value, name: "ListApiKeyCommandQuery", document: ListApiKeyCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatWorkspaceId(global::System.String value) @@ -159047,22 +162593,18 @@ private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation /// - /// query ListApiKeyCommandQuery( - /// $workspaceId: ID! - /// $after: String - /// $first: Int - /// ) { + /// query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { /// workspaceById(workspaceId: $workspaceId) { /// __typename /// apiKeys(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListApiKeyCommand_ApiKeyEdge + /// ...ListApiKeyCommand_ApiKeyEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -159072,14 +162614,14 @@ private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation /// - /// mutation CreateApiKeyCommandMutation( - /// $input: CreateApiKeyInput! - /// ) { + /// mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { /// createApiKey(input: $input) { /// __typename /// result { /// __typename /// key { /// __typename - /// ... CreateApiKeyCommandMutation_ApiKey + /// ...CreateApiKeyCommandMutation_ApiKey /// } /// secret /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... WorkspaceNotFound - /// ... PersonalWorkspaceNotSupportedError - /// ... ValidationError - /// ... RoleNotFoundError - /// ... Error + /// ...ApiNotFoundError + /// ...WorkspaceNotFound + /// ...PersonalWorkspaceNotSupportedError + /// ...ValidationError + /// ...RoleNotFoundError + /// ...Error /// } /// } /// } /// /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { /// id - /// ... ApiKeyDetailPrompt_ApiKey + /// ...ApiKeyDetailPrompt_ApiKey /// } /// /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { @@ -159156,7 +162696,7 @@ public partial interface IListApiKeyCommandQueryQuery : global::StrawberryShake. /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -159167,13 +162707,13 @@ public partial interface IListApiKeyCommandQueryQuery : global::StrawberryShake. /// __typename /// message /// workspaceId - /// ... Error + /// ...Error /// } /// /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -159183,14 +162723,14 @@ public partial interface IListApiKeyCommandQueryQuery : global::StrawberryShake. /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// fragment RoleNotFoundError on RoleNotFoundError { /// __typename /// message /// roleId - /// ... Error + /// ...Error /// } /// /// @@ -159203,8 +162743,8 @@ private CreateApiKeyCommandMutationMutationDocument() public static CreateApiKeyCommandMutationMutationDocument Instance { get; } = new CreateApiKeyCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { createApiKey(input: $input) { __typename result { __typename key { __typename ... CreateApiKeyCommandMutation_ApiKey } secret } errors { __typename ... ApiNotFoundError ... WorkspaceNotFound ... PersonalWorkspaceNotSupportedError ... ValidationError ... RoleNotFoundError ... Error } } } fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { id ... ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment Error on Error { message } fragment WorkspaceNotFound on WorkspaceNotFound { __typename message workspaceId ... Error } fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { __typename message ... Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ... Error } fragment RoleNotFoundError on RoleNotFoundError { __typename message roleId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "992b8ab9fd5e45569fda61f616659e1a"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3ed4591af72cc65f507bdcf207b1c2de"); public override global::System.String ToString() { @@ -159220,34 +162760,32 @@ private CreateApiKeyCommandMutationMutationDocument() /// /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation /// - /// mutation CreateApiKeyCommandMutation( - /// $input: CreateApiKeyInput! - /// ) { + /// mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { /// createApiKey(input: $input) { /// __typename /// result { /// __typename /// key { /// __typename - /// ... CreateApiKeyCommandMutation_ApiKey + /// ...CreateApiKeyCommandMutation_ApiKey /// } /// secret /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... WorkspaceNotFound - /// ... PersonalWorkspaceNotSupportedError - /// ... ValidationError - /// ... RoleNotFoundError - /// ... Error + /// ...ApiNotFoundError + /// ...WorkspaceNotFound + /// ...PersonalWorkspaceNotSupportedError + /// ...ValidationError + /// ...RoleNotFoundError + /// ...Error /// } /// } /// } /// /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { /// id - /// ... ApiKeyDetailPrompt_ApiKey + /// ...ApiKeyDetailPrompt_ApiKey /// } /// /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { @@ -159263,7 +162801,7 @@ private CreateApiKeyCommandMutationMutationDocument() /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -159274,13 +162812,13 @@ private CreateApiKeyCommandMutationMutationDocument() /// __typename /// message /// workspaceId - /// ... Error + /// ...Error /// } /// /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -159290,14 +162828,14 @@ private CreateApiKeyCommandMutationMutationDocument() /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// fragment RoleNotFoundError on RoleNotFoundError { /// __typename /// message /// roleId - /// ... Error + /// ...Error /// } /// /// @@ -159363,7 +162901,7 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CreateApiKeyCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateApiKeyCommandMutation", document: CreateApiKeyCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreateApiKeyCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateApiKeyCommandMutation", document: CreateApiKeyCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.CreateApiKeyInput value) @@ -159386,34 +162924,32 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation /// - /// mutation CreateApiKeyCommandMutation( - /// $input: CreateApiKeyInput! - /// ) { + /// mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { /// createApiKey(input: $input) { /// __typename /// result { /// __typename /// key { /// __typename - /// ... CreateApiKeyCommandMutation_ApiKey + /// ...CreateApiKeyCommandMutation_ApiKey /// } /// secret /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... WorkspaceNotFound - /// ... PersonalWorkspaceNotSupportedError - /// ... ValidationError - /// ... RoleNotFoundError - /// ... Error + /// ...ApiNotFoundError + /// ...WorkspaceNotFound + /// ...PersonalWorkspaceNotSupportedError + /// ...ValidationError + /// ...RoleNotFoundError + /// ...Error /// } /// } /// } /// /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { /// id - /// ... ApiKeyDetailPrompt_ApiKey + /// ...ApiKeyDetailPrompt_ApiKey /// } /// /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { @@ -159429,7 +162965,7 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -159440,13 +162976,13 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// __typename /// message /// workspaceId - /// ... Error + /// ...Error /// } /// /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ValidationError on ValidationError { @@ -159456,14 +162992,14 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// fragment RoleNotFoundError on RoleNotFoundError { /// __typename /// message /// roleId - /// ... Error + /// ...Error /// } /// /// @@ -159481,26 +163017,24 @@ public partial interface ICreateApiKeyCommandMutationMutation : global::Strawber /// /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation /// - /// mutation DeleteApiKeyCommandMutation( - /// $input: DeleteApiKeyInput! - /// ) { + /// mutation DeleteApiKeyCommandMutation($input: DeleteApiKeyInput!) { /// deleteApiKey(input: $input) { /// __typename /// apiKey { /// __typename - /// ... DeleteApiKeyCommand_ApiKey + /// ...DeleteApiKeyCommand_ApiKey /// } /// errors { /// __typename - /// ... ApiKeyNotFoundError - /// ... Error + /// ...ApiKeyNotFoundError + /// ...Error /// } /// } /// } /// /// fragment DeleteApiKeyCommand_ApiKey on ApiKey { /// id - /// ... ApiKeyDetailPrompt_ApiKey + /// ...ApiKeyDetailPrompt_ApiKey /// } /// /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { @@ -159516,7 +163050,7 @@ public partial interface ICreateApiKeyCommandMutationMutation : global::Strawber /// __typename /// message /// apiKeyId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -159533,8 +163067,8 @@ private DeleteApiKeyCommandMutationMutationDocument() public static DeleteApiKeyCommandMutationMutationDocument Instance { get; } = new DeleteApiKeyCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation DeleteApiKeyCommandMutation($input: DeleteApiKeyInput!) { deleteApiKey(input: $input) { __typename apiKey { __typename ... DeleteApiKeyCommand_ApiKey } errors { __typename ... ApiKeyNotFoundError ... Error } } } fragment DeleteApiKeyCommand_ApiKey on ApiKey { id ... ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment ApiKeyNotFoundError on ApiKeyNotFoundError { __typename message apiKeyId ... Error } fragment Error on Error { message }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1dc6ae2e10cfb2219195df7ca38bf4bf"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fcaa17bc5d82a61a9984b6f3d5989eb7"); public override global::System.String ToString() { @@ -159550,26 +163084,24 @@ private DeleteApiKeyCommandMutationMutationDocument() /// /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation /// - /// mutation DeleteApiKeyCommandMutation( - /// $input: DeleteApiKeyInput! - /// ) { + /// mutation DeleteApiKeyCommandMutation($input: DeleteApiKeyInput!) { /// deleteApiKey(input: $input) { /// __typename /// apiKey { /// __typename - /// ... DeleteApiKeyCommand_ApiKey + /// ...DeleteApiKeyCommand_ApiKey /// } /// errors { /// __typename - /// ... ApiKeyNotFoundError - /// ... Error + /// ...ApiKeyNotFoundError + /// ...Error /// } /// } /// } /// /// fragment DeleteApiKeyCommand_ApiKey on ApiKey { /// id - /// ... ApiKeyDetailPrompt_ApiKey + /// ...ApiKeyDetailPrompt_ApiKey /// } /// /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { @@ -159585,7 +163117,7 @@ private DeleteApiKeyCommandMutationMutationDocument() /// __typename /// message /// apiKeyId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -159655,7 +163187,7 @@ private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: DeleteApiKeyCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteApiKeyCommandMutation", document: DeleteApiKeyCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: DeleteApiKeyCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteApiKeyCommandMutation", document: DeleteApiKeyCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.DeleteApiKeyInput value) @@ -159678,26 +163210,24 @@ private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation /// - /// mutation DeleteApiKeyCommandMutation( - /// $input: DeleteApiKeyInput! - /// ) { + /// mutation DeleteApiKeyCommandMutation($input: DeleteApiKeyInput!) { /// deleteApiKey(input: $input) { /// __typename /// apiKey { /// __typename - /// ... DeleteApiKeyCommand_ApiKey + /// ...DeleteApiKeyCommand_ApiKey /// } /// errors { /// __typename - /// ... ApiKeyNotFoundError - /// ... Error + /// ...ApiKeyNotFoundError + /// ...Error /// } /// } /// } /// /// fragment DeleteApiKeyCommand_ApiKey on ApiKey { /// id - /// ... ApiKeyDetailPrompt_ApiKey + /// ...ApiKeyDetailPrompt_ApiKey /// } /// /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { @@ -159713,7 +163243,7 @@ private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// __typename /// message /// apiKeyId - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -159737,8 +163267,8 @@ public partial interface IDeleteApiKeyCommandMutationMutation : global::Strawber /// /// query SelectMcpFeatureCollectionPromptQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename @@ -159746,11 +163276,11 @@ public partial interface IDeleteApiKeyCommandMutationMutation : global::Strawber /// __typename /// edges { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge + /// ...SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -159760,14 +163290,14 @@ public partial interface IDeleteApiKeyCommandMutationMutation : global::Strawber /// cursor /// node { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollection + /// ...SelectMcpFeatureCollectionPrompt_McpFeatureCollection /// } /// } /// /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -159792,8 +163322,8 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() public static SelectMcpFeatureCollectionPromptQueryQueryDocument Instance { get; } = new SelectMcpFeatureCollectionPromptQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query SelectMcpFeatureCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mcpFeatureCollections(after: $after, first: $first) { __typename edges { __typename ... SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { cursor node { __typename ... SelectMcpFeatureCollectionPrompt_McpFeatureCollection } } fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { id name ... McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "021d1bafc7178634565bd5543b9e55b7"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "5e554e6ab701dcaa625bd0ad5d07879e"); public override global::System.String ToString() { @@ -159811,8 +163341,8 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() /// /// query SelectMcpFeatureCollectionPromptQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename @@ -159820,11 +163350,11 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() /// __typename /// edges { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge + /// ...SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -159834,14 +163364,14 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() /// cursor /// node { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollection + /// ...SelectMcpFeatureCollectionPrompt_McpFeatureCollection /// } /// } /// /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -159927,7 +163457,7 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: SelectMcpFeatureCollectionPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectMcpFeatureCollectionPromptQuery", document: SelectMcpFeatureCollectionPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: SelectMcpFeatureCollectionPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectMcpFeatureCollectionPromptQuery", document: SelectMcpFeatureCollectionPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -159976,8 +163506,8 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper /// /// query SelectMcpFeatureCollectionPromptQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename @@ -159985,11 +163515,11 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper /// __typename /// edges { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge + /// ...SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -159999,14 +163529,14 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper /// cursor /// node { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollection + /// ...SelectMcpFeatureCollectionPrompt_McpFeatureCollection /// } /// } /// /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -160047,13 +163577,13 @@ public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::S /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... McpFeatureCollectionNotFoundError - /// ... InvalidMcpFeatureCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...McpFeatureCollectionNotFoundError + /// ...InvalidMcpFeatureCollectionArchiveError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -160061,7 +163591,7 @@ public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::S /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -160071,12 +163601,12 @@ public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::S /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { @@ -160086,13 +163616,13 @@ public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::S /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -160105,8 +163635,8 @@ private UploadMcpFeatureCollectionCommandMutationMutationDocument() public static UploadMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new UploadMcpFeatureCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation UploadMcpFeatureCollectionCommandMutation($input: UploadMcpFeatureCollectionInput!) { uploadMcpFeatureCollection(input: $input) { __typename mcpFeatureCollectionVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... McpFeatureCollectionNotFoundError ... InvalidMcpFeatureCollectionArchiveError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error } fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fd7aa538673131f16cd54fe2aec5b00d"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "4b72fdf31ca2701bf6001a8f7211f740"); public override global::System.String ToString() { @@ -160133,13 +163663,13 @@ private UploadMcpFeatureCollectionCommandMutationMutationDocument() /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... McpFeatureCollectionNotFoundError - /// ... InvalidMcpFeatureCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...McpFeatureCollectionNotFoundError + /// ...InvalidMcpFeatureCollectionArchiveError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -160147,7 +163677,7 @@ private UploadMcpFeatureCollectionCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -160157,12 +163687,12 @@ private UploadMcpFeatureCollectionCommandMutationMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { @@ -160172,13 +163702,13 @@ private UploadMcpFeatureCollectionCommandMutationMutationDocument() /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -160261,7 +163791,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: UploadMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "UploadMcpFeatureCollectionCommandMutation", document: UploadMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: UploadMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "UploadMcpFeatureCollectionCommandMutation", document: UploadMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.UploadMcpFeatureCollectionInput value) @@ -160295,13 +163825,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... McpFeatureCollectionNotFoundError - /// ... InvalidMcpFeatureCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...McpFeatureCollectionNotFoundError + /// ...InvalidMcpFeatureCollectionArchiveError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -160309,7 +163839,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -160319,12 +163849,12 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { @@ -160334,13 +163864,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -160366,11 +163896,11 @@ public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : gl /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...McpFeatureCollectionNotFoundError + /// ...Error /// } /// } /// } @@ -160378,7 +163908,7 @@ public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : gl /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -160388,19 +163918,19 @@ public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : gl /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -160413,8 +163943,8 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() public static ValidateMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new ValidateMcpFeatureCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation ValidateMcpFeatureCollectionCommandMutation($input: ValidateMcpFeatureCollectionInput!) { validateMcpFeatureCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... McpFeatureCollectionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "947f511e1d35365c0162b3fde9b0f0c2"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "034b954a7bdc2b82523236e0fb9274dc"); public override global::System.String ToString() { @@ -160438,11 +163968,11 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...McpFeatureCollectionNotFoundError + /// ...Error /// } /// } /// } @@ -160450,7 +163980,7 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -160460,19 +163990,19 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -160555,7 +164085,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: ValidateMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "ValidateMcpFeatureCollectionCommandMutation", document: ValidateMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ValidateMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "ValidateMcpFeatureCollectionCommandMutation", document: ValidateMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.ValidateMcpFeatureCollectionInput value) @@ -160586,11 +164116,11 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...McpFeatureCollectionNotFoundError + /// ...Error /// } /// } /// } @@ -160598,7 +164128,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -160608,19 +164138,19 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -160638,15 +164168,13 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription ValidateMcpFeatureCollectionCommandSubscription($requestId: ID!) { /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionValidationFailed - /// ... McpFeatureCollectionVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...McpFeatureCollectionVersionValidationFailed + /// ...McpFeatureCollectionVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -160654,10 +164182,10 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// state /// errors { /// __typename - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError - /// ... McpFeatureCollectionValidationError - /// ... McpFeatureCollectionValidationArchiveError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError + /// ...McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationArchiveError /// } /// } /// @@ -160674,7 +164202,7 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -160686,18 +164214,18 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -160749,8 +164277,8 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() public static ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription ValidateMcpFeatureCollectionCommandSubscription($requestId: ID!) { onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { __typename ... McpFeatureCollectionVersionValidationFailed ... McpFeatureCollectionVersionValidationSuccess ... OperationInProgress ... ValidationInProgress } } fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { state errors { __typename ... ProcessingTimeoutError ... UnexpectedProcessingError ... McpFeatureCollectionValidationError ... McpFeatureCollectionValidationArchiveError } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { message } fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fe2972801aa1d2abcc74cd8414984de2"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "599cdfc271c083da34e4f8d8cbdf2988"); public override global::System.String ToString() { @@ -160766,15 +164294,13 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription ValidateMcpFeatureCollectionCommandSubscription($requestId: ID!) { /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionValidationFailed - /// ... McpFeatureCollectionVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...McpFeatureCollectionVersionValidationFailed + /// ...McpFeatureCollectionVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -160782,10 +164308,10 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// state /// errors { /// __typename - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError - /// ... McpFeatureCollectionValidationError - /// ... McpFeatureCollectionValidationArchiveError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError + /// ...McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationArchiveError /// } /// } /// @@ -160802,7 +164328,7 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -160814,18 +164340,18 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -160896,7 +164422,7 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument.Instance.Hash.Value, name: "ValidateMcpFeatureCollectionCommandSubscription", document: ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument.Instance.Hash.Value, name: "ValidateMcpFeatureCollectionCommandSubscription", document: ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -160919,15 +164445,13 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription ValidateMcpFeatureCollectionCommandSubscription($requestId: ID!) { /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionValidationFailed - /// ... McpFeatureCollectionVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...McpFeatureCollectionVersionValidationFailed + /// ...McpFeatureCollectionVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -160935,10 +164459,10 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// state /// errors { /// __typename - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError - /// ... McpFeatureCollectionValidationError - /// ... McpFeatureCollectionValidationArchiveError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError + /// ...McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationArchiveError /// } /// } /// @@ -160955,7 +164479,7 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -160967,18 +164491,18 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -161038,13 +164562,13 @@ public partial interface IValidateMcpFeatureCollectionCommandSubscriptionSubscri /// __typename /// mcpFeatureCollection { /// __typename - /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection + /// ...DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection /// } /// errors { /// __typename - /// ... Error - /// ... McpFeatureCollectionNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...McpFeatureCollectionNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -161052,7 +164576,7 @@ public partial interface IValidateMcpFeatureCollectionCommandSubscriptionSubscri /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { /// name /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161066,13 +164590,13 @@ public partial interface IValidateMcpFeatureCollectionCommandSubscriptionSubscri /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -161085,8 +164609,8 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() public static DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument Instance { get; } = new DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation DeleteMcpFeatureCollectionByIdCommandMutation($input: DeleteMcpFeatureCollectionByIdInput!) { deleteMcpFeatureCollectionById(input: $input) { __typename mcpFeatureCollection { __typename ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection } errors { __typename ... Error ... McpFeatureCollectionNotFoundError ... UnauthorizedOperation } } } fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { name id ... McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment Error on Error { message } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a87294003c8142e3996f1398a866c64f"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "67e9e3cbf535abf7922ff80655cf6d10"); public override global::System.String ToString() { @@ -161109,13 +164633,13 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() /// __typename /// mcpFeatureCollection { /// __typename - /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection + /// ...DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection /// } /// errors { /// __typename - /// ... Error - /// ... McpFeatureCollectionNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...McpFeatureCollectionNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -161123,7 +164647,7 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { /// name /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161137,13 +164661,13 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -161209,7 +164733,7 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::Strawberry private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteMcpFeatureCollectionByIdCommandMutation", document: DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteMcpFeatureCollectionByIdCommandMutation", document: DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.DeleteMcpFeatureCollectionByIdInput value) @@ -161239,13 +164763,13 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::Strawberry /// __typename /// mcpFeatureCollection { /// __typename - /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection + /// ...DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection /// } /// errors { /// __typename - /// ... Error - /// ... McpFeatureCollectionNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...McpFeatureCollectionNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -161253,7 +164777,7 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::Strawberry /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { /// name /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161267,13 +164791,13 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::Strawberry /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -161298,13 +164822,14 @@ public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationMutation /// __typename /// mcpFeatureCollection { /// __typename - /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + /// ...CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -161312,7 +164837,7 @@ public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationMutation /// fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { /// name /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161328,13 +164853,19 @@ public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationMutation /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -161347,8 +164878,8 @@ private CreateMcpFeatureCollectionCommandMutationMutationDocument() public static CreateMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new CreateMcpFeatureCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreateMcpFeatureCollectionCommandMutation($input: CreateMcpFeatureCollectionInput!) { createMcpFeatureCollection(input: $input) { __typename mcpFeatureCollection { __typename ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection } errors { __typename ... Error ... ApiNotFoundError ... UnauthorizedOperation } } } fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { name id ... McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ba70847f71df37bf6b676e2c4ef91570"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "cfd69c8f196180ce83e912ef8342b8f5"); public override global::System.String ToString() { @@ -161371,13 +164902,14 @@ private CreateMcpFeatureCollectionCommandMutationMutationDocument() /// __typename /// mcpFeatureCollection { /// __typename - /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + /// ...CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -161385,7 +164917,7 @@ private CreateMcpFeatureCollectionCommandMutationMutationDocument() /// fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { /// name /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161401,13 +164933,19 @@ private CreateMcpFeatureCollectionCommandMutationMutationDocument() /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -161473,7 +165011,7 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CreateMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateMcpFeatureCollectionCommandMutation", document: CreateMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreateMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateMcpFeatureCollectionCommandMutation", document: CreateMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.CreateMcpFeatureCollectionInput value) @@ -161503,13 +165041,14 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak /// __typename /// mcpFeatureCollection { /// __typename - /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + /// ...CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -161517,7 +165056,7 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak /// fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { /// name /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161533,13 +165072,19 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -161559,8 +165104,8 @@ public partial interface ICreateMcpFeatureCollectionCommandMutationMutation : gl /// /// query ListMcpFeatureCollectionCommandQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// node(id: $apiId) { /// __typename @@ -161569,11 +165114,11 @@ public partial interface ICreateMcpFeatureCollectionCommandMutationMutation : gl /// __typename /// edges { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + /// ...ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -161584,14 +165129,14 @@ public partial interface ICreateMcpFeatureCollectionCommandMutationMutation : gl /// cursor /// node { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// ...ListMcpFeatureCollectionCommandQuery_McpFeatureCollection /// } /// } /// /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161616,8 +165161,8 @@ private ListMcpFeatureCollectionCommandQueryQueryDocument() public static ListMcpFeatureCollectionCommandQueryQueryDocument Instance { get; } = new ListMcpFeatureCollectionCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListMcpFeatureCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { mcpFeatureCollections(first: $first, after: $after) { __typename edges { __typename ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge } pageInfo { __typename ... PageInfo } } } } } fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { cursor node { __typename ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection } } fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { id name ... McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7fed272d6aaed647d16d156856db0eed"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "27a826eab8d2159e07d65c6292a8a11f"); public override global::System.String ToString() { @@ -161635,8 +165180,8 @@ private ListMcpFeatureCollectionCommandQueryQueryDocument() /// /// query ListMcpFeatureCollectionCommandQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// node(id: $apiId) { /// __typename @@ -161645,11 +165190,11 @@ private ListMcpFeatureCollectionCommandQueryQueryDocument() /// __typename /// edges { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + /// ...ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -161660,14 +165205,14 @@ private ListMcpFeatureCollectionCommandQueryQueryDocument() /// cursor /// node { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// ...ListMcpFeatureCollectionCommandQuery_McpFeatureCollection /// } /// } /// /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161753,7 +165298,7 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ListMcpFeatureCollectionCommandQueryQueryDocument.Instance.Hash.Value, name: "ListMcpFeatureCollectionCommandQuery", document: ListMcpFeatureCollectionCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListMcpFeatureCollectionCommandQueryQueryDocument.Instance.Hash.Value, name: "ListMcpFeatureCollectionCommandQuery", document: ListMcpFeatureCollectionCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -161802,8 +165347,8 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera /// /// query ListMcpFeatureCollectionCommandQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// node(id: $apiId) { /// __typename @@ -161812,11 +165357,11 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera /// __typename /// edges { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + /// ...ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -161827,14 +165372,14 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera /// cursor /// node { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// ...ListMcpFeatureCollectionCommandQuery_McpFeatureCollection /// } /// } /// /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ...McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { @@ -161872,12 +165417,12 @@ public partial interface IListMcpFeatureCollectionCommandQueryQuery : global::St /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... McpFeatureCollectionVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...McpFeatureCollectionNotFoundError + /// ...McpFeatureCollectionVersionNotFoundError + /// ...Error /// } /// } /// } @@ -161885,7 +165430,7 @@ public partial interface IListMcpFeatureCollectionCommandQueryQuery : global::St /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -161895,26 +165440,26 @@ public partial interface IListMcpFeatureCollectionCommandQueryQuery : global::St /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { /// tag /// message /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -161927,8 +165472,8 @@ private PublishMcpFeatureCollectionCommandMutationMutationDocument() public static PublishMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new PublishMcpFeatureCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation PublishMcpFeatureCollectionCommandMutation($input: PublishMcpFeatureCollectionInput!) { publishMcpFeatureCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... McpFeatureCollectionNotFoundError ... McpFeatureCollectionVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error } fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { tag message mcpFeatureCollectionId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "e460f497fd49f63b41a11a0caf5b839e"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3fefaacf6e734fbd0d4a5f991db21689"); public override global::System.String ToString() { @@ -161952,12 +165497,12 @@ private PublishMcpFeatureCollectionCommandMutationMutationDocument() /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... McpFeatureCollectionVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...McpFeatureCollectionNotFoundError + /// ...McpFeatureCollectionVersionNotFoundError + /// ...Error /// } /// } /// } @@ -161965,7 +165510,7 @@ private PublishMcpFeatureCollectionCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -161975,26 +165520,26 @@ private PublishMcpFeatureCollectionCommandMutationMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { /// tag /// message /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -162060,7 +165605,7 @@ private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberrySha private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: PublishMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "PublishMcpFeatureCollectionCommandMutation", document: PublishMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: PublishMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "PublishMcpFeatureCollectionCommandMutation", document: PublishMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.PublishMcpFeatureCollectionInput value) @@ -162091,12 +165636,12 @@ private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberrySha /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... McpFeatureCollectionVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...McpFeatureCollectionNotFoundError + /// ...McpFeatureCollectionVersionNotFoundError + /// ...Error /// } /// } /// } @@ -162104,7 +165649,7 @@ private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberrySha /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -162114,26 +165659,26 @@ private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberrySha /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { /// tag /// message /// mcpFeatureCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -162151,18 +165696,16 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionPublishFailed - /// ... McpFeatureCollectionVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...McpFeatureCollectionVersionPublishFailed + /// ...McpFeatureCollectionVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -162170,10 +165713,10 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -162190,7 +165733,7 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -162200,7 +165743,7 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -162212,18 +165755,18 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -162261,24 +165804,24 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -162299,26 +165842,26 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -162329,42 +165872,42 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -162372,7 +165915,7 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -162380,7 +165923,7 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -162388,23 +165931,23 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -162413,7 +165956,7 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -162422,27 +165965,27 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -162450,161 +165993,161 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -162648,7 +166191,7 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -162660,18 +166203,18 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -162701,32 +166244,32 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -162753,8 +166296,8 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() public static PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { __typename ... McpFeatureCollectionVersionPublishFailed ... McpFeatureCollectionVersionPublishSuccess ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved ... ProcessingTaskIsReady ... ProcessingTaskIsQueued } } fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersionPublishFailed { state errors { __typename ... UnexpectedProcessingError ... ProcessingTimeoutError ... ConcurrentOperationError ... McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "381ceb6777bb01c5c260599a269f85d5"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8822eea5656a4952edfa28ce20ff5d16"); public override global::System.String ToString() { @@ -162770,18 +166313,16 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionPublishFailed - /// ... McpFeatureCollectionVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...McpFeatureCollectionVersionPublishFailed + /// ...McpFeatureCollectionVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -162789,10 +166330,10 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -162809,7 +166350,7 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -162819,7 +166360,7 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -162831,18 +166372,18 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -162880,24 +166421,24 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -162918,26 +166459,26 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -162948,42 +166489,42 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -162991,7 +166532,7 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -162999,7 +166540,7 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -163007,23 +166548,23 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -163032,7 +166573,7 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -163041,27 +166582,27 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -163069,161 +166610,161 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -163267,7 +166808,7 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -163279,18 +166820,18 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -163320,32 +166861,32 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -163391,7 +166932,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument.Instance.Hash.Value, name: "PublishMcpFeatureCollectionCommandSubscription", document: PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument.Instance.Hash.Value, name: "PublishMcpFeatureCollectionCommandSubscription", document: PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -163414,18 +166955,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionPublishFailed - /// ... McpFeatureCollectionVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...McpFeatureCollectionVersionPublishFailed + /// ...McpFeatureCollectionVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -163433,10 +166972,10 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -163453,7 +166992,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -163463,7 +167002,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -163475,18 +167014,18 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -163524,24 +167063,24 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -163562,26 +167101,26 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -163592,42 +167131,42 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -163635,7 +167174,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -163643,7 +167182,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -163651,23 +167190,23 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -163676,7 +167215,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -163685,27 +167224,27 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -163713,161 +167252,161 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -163911,7 +167450,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -163923,18 +167462,18 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -163964,32 +167503,32 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -164017,21 +167556,18 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscriptionSubscrip /// /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery( - /// $after: String - /// $first: Int - /// ) { + /// query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { /// me { /// __typename /// personalAccessTokens(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge + /// ...ListPersonalAccessTokenCommand_PersonalAccessTokenEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -164041,7 +167577,7 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscriptionSubscrip /// cursor /// node { /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessToken + /// ...ListPersonalAccessTokenCommand_PersonalAccessToken /// } /// } /// @@ -164050,7 +167586,7 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscriptionSubscrip /// description /// expiresAt /// createdAt - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164077,8 +167613,8 @@ private ListPersonalAccessTokenCommandQueryQueryDocument() public static ListPersonalAccessTokenCommandQueryQueryDocument Instance { get; } = new ListPersonalAccessTokenCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { me { __typename personalAccessTokens(after: $after, first: $first) { __typename edges { __typename ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge } pageInfo { __typename ... PageInfo } } } } fragment ListPersonalAccessTokenCommand_PersonalAccessTokenEdge on PersonalAccessTokensEdge { cursor node { __typename ... ListPersonalAccessTokenCommand_PersonalAccessToken } } fragment ListPersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { id description expiresAt createdAt ... PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8403a76012480cacf4ff791dfdf9ab03"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "21e2885367beae6b8bb032fc34666b2f"); public override global::System.String ToString() { @@ -164094,21 +167630,18 @@ private ListPersonalAccessTokenCommandQueryQueryDocument() /// /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery( - /// $after: String - /// $first: Int - /// ) { + /// query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { /// me { /// __typename /// personalAccessTokens(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge + /// ...ListPersonalAccessTokenCommand_PersonalAccessTokenEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -164118,7 +167651,7 @@ private ListPersonalAccessTokenCommandQueryQueryDocument() /// cursor /// node { /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessToken + /// ...ListPersonalAccessTokenCommand_PersonalAccessToken /// } /// } /// @@ -164127,7 +167660,7 @@ private ListPersonalAccessTokenCommandQueryQueryDocument() /// description /// expiresAt /// createdAt - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164211,7 +167744,7 @@ private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperat private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ListPersonalAccessTokenCommandQueryQueryDocument.Instance.Hash.Value, name: "ListPersonalAccessTokenCommandQuery", document: ListPersonalAccessTokenCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListPersonalAccessTokenCommandQueryQueryDocument.Instance.Hash.Value, name: "ListPersonalAccessTokenCommandQuery", document: ListPersonalAccessTokenCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatAfter(global::System.String? value) @@ -164248,21 +167781,18 @@ private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperat /// /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery( - /// $after: String - /// $first: Int - /// ) { + /// query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { /// me { /// __typename /// personalAccessTokens(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge + /// ...ListPersonalAccessTokenCommand_PersonalAccessTokenEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -164272,7 +167802,7 @@ private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperat /// cursor /// node { /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessToken + /// ...ListPersonalAccessTokenCommand_PersonalAccessToken /// } /// } /// @@ -164281,7 +167811,7 @@ private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperat /// description /// expiresAt /// createdAt - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164322,21 +167852,21 @@ public partial interface IListPersonalAccessTokenCommandQueryQuery : global::Str /// __typename /// token { /// __typename - /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken + /// ...CreatePersonalAccessTokenCommandMutation_PersonalAccessToken /// } /// secret /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... Error + /// ...UnauthorizedOperation + /// ...Error /// } /// } /// } /// /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { /// id - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164349,7 +167879,7 @@ public partial interface IListPersonalAccessTokenCommandQueryQuery : global::Str /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -164366,8 +167896,8 @@ private CreatePersonalAccessTokenCommandMutationMutationDocument() public static CreatePersonalAccessTokenCommandMutationMutationDocument Instance { get; } = new CreatePersonalAccessTokenCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreatePersonalAccessTokenCommandMutation($input: CreatePersonalAccessTokenInput!) { createPersonalAccessToken(input: $input) { __typename result { __typename token { __typename ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken } secret } errors { __typename ... UnauthorizedOperation ... Error } } } fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { id ... PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "46cc5ecdb98af795749ecb6f2d419092"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a7d38d70b218bc48bf6cb95643fc224d"); public override global::System.String ToString() { @@ -164392,21 +167922,21 @@ private CreatePersonalAccessTokenCommandMutationMutationDocument() /// __typename /// token { /// __typename - /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken + /// ...CreatePersonalAccessTokenCommandMutation_PersonalAccessToken /// } /// secret /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... Error + /// ...UnauthorizedOperation + /// ...Error /// } /// } /// } /// /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { /// id - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164419,7 +167949,7 @@ private CreatePersonalAccessTokenCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -164489,7 +168019,7 @@ private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CreatePersonalAccessTokenCommandMutationMutationDocument.Instance.Hash.Value, name: "CreatePersonalAccessTokenCommandMutation", document: CreatePersonalAccessTokenCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreatePersonalAccessTokenCommandMutationMutationDocument.Instance.Hash.Value, name: "CreatePersonalAccessTokenCommandMutation", document: CreatePersonalAccessTokenCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.CreatePersonalAccessTokenInput value) @@ -164521,21 +168051,21 @@ private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake /// __typename /// token { /// __typename - /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken + /// ...CreatePersonalAccessTokenCommandMutation_PersonalAccessToken /// } /// secret /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... Error + /// ...UnauthorizedOperation + /// ...Error /// } /// } /// } /// /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { /// id - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164548,7 +168078,7 @@ private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -164577,12 +168107,12 @@ public partial interface ICreatePersonalAccessTokenCommandMutationMutation : glo /// __typename /// personalAccessToken { /// __typename - /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken + /// ...RevokePersonalAccessTokenCommand_PersonalAccessToken /// } /// errors { /// __typename - /// ... PersonalAccessTokenNotFoundError - /// ... Error + /// ...PersonalAccessTokenNotFoundError + /// ...Error /// } /// } /// } @@ -164590,7 +168120,7 @@ public partial interface ICreatePersonalAccessTokenCommandMutationMutation : glo /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { /// id /// description - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164603,7 +168133,7 @@ public partial interface ICreatePersonalAccessTokenCommandMutationMutation : glo /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -164620,8 +168150,8 @@ private RevokePersonalAccessTokenCommandMutationMutationDocument() public static RevokePersonalAccessTokenCommandMutationMutationDocument Instance { get; } = new RevokePersonalAccessTokenCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation RevokePersonalAccessTokenCommandMutation($input: RevokePersonalAccessTokenInput!) { revokePersonalAccessToken(input: $input) { __typename personalAccessToken { __typename ... RevokePersonalAccessTokenCommand_PersonalAccessToken } errors { __typename ... PersonalAccessTokenNotFoundError ... Error } } } fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { id description ... PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { __typename message ... Error } fragment Error on Error { message }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "147298b7a2e237b07f06e5a7c2b1ef84"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fd6810811811ffd810356773fca8d7b1"); public override global::System.String ToString() { @@ -164644,12 +168174,12 @@ private RevokePersonalAccessTokenCommandMutationMutationDocument() /// __typename /// personalAccessToken { /// __typename - /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken + /// ...RevokePersonalAccessTokenCommand_PersonalAccessToken /// } /// errors { /// __typename - /// ... PersonalAccessTokenNotFoundError - /// ... Error + /// ...PersonalAccessTokenNotFoundError + /// ...Error /// } /// } /// } @@ -164657,7 +168187,7 @@ private RevokePersonalAccessTokenCommandMutationMutationDocument() /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { /// id /// description - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164670,7 +168200,7 @@ private RevokePersonalAccessTokenCommandMutationMutationDocument() /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -164740,7 +168270,7 @@ private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: RevokePersonalAccessTokenCommandMutationMutationDocument.Instance.Hash.Value, name: "RevokePersonalAccessTokenCommandMutation", document: RevokePersonalAccessTokenCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: RevokePersonalAccessTokenCommandMutationMutationDocument.Instance.Hash.Value, name: "RevokePersonalAccessTokenCommandMutation", document: RevokePersonalAccessTokenCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.RevokePersonalAccessTokenInput value) @@ -164770,12 +168300,12 @@ private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake /// __typename /// personalAccessToken { /// __typename - /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken + /// ...RevokePersonalAccessTokenCommand_PersonalAccessToken /// } /// errors { /// __typename - /// ... PersonalAccessTokenNotFoundError - /// ... Error + /// ...PersonalAccessTokenNotFoundError + /// ...Error /// } /// } /// } @@ -164783,7 +168313,7 @@ private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { /// id /// description - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ...PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { @@ -164796,7 +168326,7 @@ private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -164820,8 +168350,8 @@ public partial interface IRevokePersonalAccessTokenCommandMutationMutation : glo /// /// query SelectOpenApiCollectionPromptQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename @@ -164829,11 +168359,11 @@ public partial interface IRevokePersonalAccessTokenCommandMutationMutation : glo /// __typename /// edges { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollectionEdge + /// ...SelectOpenApiCollectionPrompt_OpenApiCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -164843,14 +168373,14 @@ public partial interface IRevokePersonalAccessTokenCommandMutationMutation : glo /// cursor /// node { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollection + /// ...SelectOpenApiCollectionPrompt_OpenApiCollection /// } /// } /// /// fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -164875,8 +168405,8 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() public static SelectOpenApiCollectionPromptQueryQueryDocument Instance { get; } = new SelectOpenApiCollectionPromptQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query SelectOpenApiCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename openApiCollections(after: $after, first: $first) { __typename edges { __typename ... SelectOpenApiCollectionPrompt_OpenApiCollectionEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectOpenApiCollectionPrompt_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { cursor node { __typename ... SelectOpenApiCollectionPrompt_OpenApiCollection } } fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { id name ... OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "cac7b1f4800fb9c9c07bed47c5bbd775"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "04dc2966f6e31ef4aa9f0e54b84b105b"); public override global::System.String ToString() { @@ -164894,8 +168424,8 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() /// /// query SelectOpenApiCollectionPromptQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename @@ -164903,11 +168433,11 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() /// __typename /// edges { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollectionEdge + /// ...SelectOpenApiCollectionPrompt_OpenApiCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -164917,14 +168447,14 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() /// cursor /// node { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollection + /// ...SelectOpenApiCollectionPrompt_OpenApiCollection /// } /// } /// /// fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -165010,7 +168540,7 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: SelectOpenApiCollectionPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectOpenApiCollectionPromptQuery", document: SelectOpenApiCollectionPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: SelectOpenApiCollectionPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectOpenApiCollectionPromptQuery", document: SelectOpenApiCollectionPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -165059,8 +168589,8 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati /// /// query SelectOpenApiCollectionPromptQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename @@ -165068,11 +168598,11 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati /// __typename /// edges { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollectionEdge + /// ...SelectOpenApiCollectionPrompt_OpenApiCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -165082,14 +168612,14 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati /// cursor /// node { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollection + /// ...SelectOpenApiCollectionPrompt_OpenApiCollection /// } /// } /// /// fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -165130,13 +168660,13 @@ public partial interface ISelectOpenApiCollectionPromptQueryQuery : global::Stra /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... OpenApiCollectionNotFoundError - /// ... InvalidOpenApiCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...OpenApiCollectionNotFoundError + /// ...InvalidOpenApiCollectionArchiveError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -165144,7 +168674,7 @@ public partial interface ISelectOpenApiCollectionPromptQueryQuery : global::Stra /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -165154,12 +168684,12 @@ public partial interface ISelectOpenApiCollectionPromptQueryQuery : global::Stra /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { @@ -165169,13 +168699,13 @@ public partial interface ISelectOpenApiCollectionPromptQueryQuery : global::Stra /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -165188,8 +168718,8 @@ private UploadOpenApiCollectionCommandMutationMutationDocument() public static UploadOpenApiCollectionCommandMutationMutationDocument Instance { get; } = new UploadOpenApiCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation UploadOpenApiCollectionCommandMutation($input: UploadOpenApiCollectionInput!) { uploadOpenApiCollection(input: $input) { __typename openApiCollectionVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... OpenApiCollectionNotFoundError ... InvalidOpenApiCollectionArchiveError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error } fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8da9fa5fb4c5244d81ad802bfc49eb73"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a5184fe6045704a79e9a87a59f358e6f"); public override global::System.String ToString() { @@ -165216,13 +168746,13 @@ private UploadOpenApiCollectionCommandMutationMutationDocument() /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... OpenApiCollectionNotFoundError - /// ... InvalidOpenApiCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...OpenApiCollectionNotFoundError + /// ...InvalidOpenApiCollectionArchiveError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -165230,7 +168760,7 @@ private UploadOpenApiCollectionCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -165240,12 +168770,12 @@ private UploadOpenApiCollectionCommandMutationMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { @@ -165255,13 +168785,13 @@ private UploadOpenApiCollectionCommandMutationMutationDocument() /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -165344,7 +168874,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: UploadOpenApiCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "UploadOpenApiCollectionCommandMutation", document: UploadOpenApiCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: UploadOpenApiCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "UploadOpenApiCollectionCommandMutation", document: UploadOpenApiCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.UploadOpenApiCollectionInput value) @@ -165378,13 +168908,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... OpenApiCollectionNotFoundError - /// ... InvalidOpenApiCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...OpenApiCollectionNotFoundError + /// ...InvalidOpenApiCollectionArchiveError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...Error /// } /// } /// } @@ -165392,7 +168922,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -165402,12 +168932,12 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { @@ -165417,13 +168947,13 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -165443,8 +168973,8 @@ public partial interface IUploadOpenApiCollectionCommandMutationMutation : globa /// /// query ListOpenApiCollectionCommandQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// node(id: $apiId) { /// __typename @@ -165453,11 +168983,11 @@ public partial interface IUploadOpenApiCollectionCommandMutationMutation : globa /// __typename /// edges { /// __typename - /// ... ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge + /// ...ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -165468,14 +168998,14 @@ public partial interface IUploadOpenApiCollectionCommandMutationMutation : globa /// cursor /// node { /// __typename - /// ... ListOpenApiCollectionCommandQuery_OpenApiCollection + /// ...ListOpenApiCollectionCommandQuery_OpenApiCollection /// } /// } /// /// fragment ListOpenApiCollectionCommandQuery_OpenApiCollection on OpenApiCollection { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -165500,8 +169030,8 @@ private ListOpenApiCollectionCommandQueryQueryDocument() public static ListOpenApiCollectionCommandQueryQueryDocument Instance { get; } = new ListOpenApiCollectionCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListOpenApiCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { openApiCollections(first: $first, after: $after) { __typename edges { __typename ... ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge } pageInfo { __typename ... PageInfo } } } } } fragment ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { cursor node { __typename ... ListOpenApiCollectionCommandQuery_OpenApiCollection } } fragment ListOpenApiCollectionCommandQuery_OpenApiCollection on OpenApiCollection { id name ... OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "cd98258e9a04da627abb631685b299df"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "6720f7621fe7d02b19295299149bf8d5"); public override global::System.String ToString() { @@ -165519,8 +169049,8 @@ private ListOpenApiCollectionCommandQueryQueryDocument() /// /// query ListOpenApiCollectionCommandQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// node(id: $apiId) { /// __typename @@ -165529,11 +169059,11 @@ private ListOpenApiCollectionCommandQueryQueryDocument() /// __typename /// edges { /// __typename - /// ... ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge + /// ...ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -165544,14 +169074,14 @@ private ListOpenApiCollectionCommandQueryQueryDocument() /// cursor /// node { /// __typename - /// ... ListOpenApiCollectionCommandQuery_OpenApiCollection + /// ...ListOpenApiCollectionCommandQuery_OpenApiCollection /// } /// } /// /// fragment ListOpenApiCollectionCommandQuery_OpenApiCollection on OpenApiCollection { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -165637,7 +169167,7 @@ private ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperatio private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ListOpenApiCollectionCommandQueryQueryDocument.Instance.Hash.Value, name: "ListOpenApiCollectionCommandQuery", document: ListOpenApiCollectionCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListOpenApiCollectionCommandQueryQueryDocument.Instance.Hash.Value, name: "ListOpenApiCollectionCommandQuery", document: ListOpenApiCollectionCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatApiId(global::System.String value) @@ -165686,8 +169216,8 @@ private ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperatio /// /// query ListOpenApiCollectionCommandQuery( /// $apiId: ID! - /// $after: String - /// $first: Int + /// $after: String + /// $first: Int /// ) { /// node(id: $apiId) { /// __typename @@ -165696,11 +169226,11 @@ private ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperatio /// __typename /// edges { /// __typename - /// ... ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge + /// ...ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -165711,14 +169241,14 @@ private ListOpenApiCollectionCommandQueryQuery(global::StrawberryShake.IOperatio /// cursor /// node { /// __typename - /// ... ListOpenApiCollectionCommandQuery_OpenApiCollection + /// ...ListOpenApiCollectionCommandQuery_OpenApiCollection /// } /// } /// /// fragment ListOpenApiCollectionCommandQuery_OpenApiCollection on OpenApiCollection { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -165756,12 +169286,12 @@ public partial interface IListOpenApiCollectionCommandQueryQuery : global::Straw /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... OpenApiCollectionNotFoundError - /// ... OpenApiCollectionVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...OpenApiCollectionNotFoundError + /// ...OpenApiCollectionVersionNotFoundError + /// ...Error /// } /// } /// } @@ -165769,7 +169299,7 @@ public partial interface IListOpenApiCollectionCommandQueryQuery : global::Straw /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -165779,26 +169309,26 @@ public partial interface IListOpenApiCollectionCommandQueryQuery : global::Straw /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionVersionNotFoundError on OpenApiCollectionVersionNotFoundError { /// tag /// message /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -165811,8 +169341,8 @@ private PublishOpenApiCollectionCommandMutationMutationDocument() public static PublishOpenApiCollectionCommandMutationMutationDocument Instance { get; } = new PublishOpenApiCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation PublishOpenApiCollectionCommandMutation($input: PublishOpenApiCollectionInput!) { publishOpenApiCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... OpenApiCollectionNotFoundError ... OpenApiCollectionVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error } fragment OpenApiCollectionVersionNotFoundError on OpenApiCollectionVersionNotFoundError { tag message openApiCollectionId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "bf8efb75f96a146224e816ce18c29e4a"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "0b62118a8025b07b5dbd103fcca1c74c"); public override global::System.String ToString() { @@ -165836,12 +169366,12 @@ private PublishOpenApiCollectionCommandMutationMutationDocument() /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... OpenApiCollectionNotFoundError - /// ... OpenApiCollectionVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...OpenApiCollectionNotFoundError + /// ...OpenApiCollectionVersionNotFoundError + /// ...Error /// } /// } /// } @@ -165849,7 +169379,7 @@ private PublishOpenApiCollectionCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -165859,26 +169389,26 @@ private PublishOpenApiCollectionCommandMutationMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionVersionNotFoundError on OpenApiCollectionVersionNotFoundError { /// tag /// message /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -165944,7 +169474,7 @@ private PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake. private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: PublishOpenApiCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "PublishOpenApiCollectionCommandMutation", document: PublishOpenApiCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: PublishOpenApiCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "PublishOpenApiCollectionCommandMutation", document: PublishOpenApiCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.PublishOpenApiCollectionInput value) @@ -165975,12 +169505,12 @@ private PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake. /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... OpenApiCollectionNotFoundError - /// ... OpenApiCollectionVersionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...OpenApiCollectionNotFoundError + /// ...OpenApiCollectionVersionNotFoundError + /// ...Error /// } /// } /// } @@ -165988,7 +169518,7 @@ private PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake. /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -165998,26 +169528,26 @@ private PublishOpenApiCollectionCommandMutationMutation(global::StrawberryShake. /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionVersionNotFoundError on OpenApiCollectionVersionNotFoundError { /// tag /// message /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -166035,18 +169565,16 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// /// Represents the operation service of the PublishOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription PublishOpenApiCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { /// onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... OpenApiCollectionVersionPublishFailed - /// ... OpenApiCollectionVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...OpenApiCollectionVersionPublishFailed + /// ...OpenApiCollectionVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -166054,10 +169582,10 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... OpenApiCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...OpenApiCollectionValidationError /// } /// } /// @@ -166074,7 +169602,7 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -166084,7 +169612,7 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -166096,18 +169624,18 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -166146,24 +169674,24 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -166184,26 +169712,26 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -166214,42 +169742,42 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -166257,7 +169785,7 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -166265,7 +169793,7 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -166273,23 +169801,23 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -166298,7 +169826,7 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -166307,27 +169835,27 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -166335,161 +169863,161 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -166533,7 +170061,7 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -166545,18 +170073,18 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -166585,32 +170113,32 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -166637,8 +170165,8 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() public static PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { __typename ... OpenApiCollectionVersionPublishFailed ... OpenApiCollectionVersionPublishSuccess ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved ... ProcessingTaskIsReady ... ProcessingTaskIsQueued } } fragment OpenApiCollectionVersionPublishFailed on OpenApiCollectionVersionPublishFailed { state errors { __typename ... UnexpectedProcessingError ... ProcessingTimeoutError ... ConcurrentOperationError ... OpenApiCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment OpenApiCollectionVersionPublishSuccess on OpenApiCollectionVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "bf9391b6c3d81cd1d134abd99df1d69a"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3512e0a50b4aa97928f2d6ae20efde7a"); public override global::System.String ToString() { @@ -166654,18 +170182,16 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// /// Represents the operation service of the PublishOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription PublishOpenApiCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { /// onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... OpenApiCollectionVersionPublishFailed - /// ... OpenApiCollectionVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...OpenApiCollectionVersionPublishFailed + /// ...OpenApiCollectionVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -166673,10 +170199,10 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... OpenApiCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...OpenApiCollectionValidationError /// } /// } /// @@ -166693,7 +170219,7 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -166703,7 +170229,7 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -166715,18 +170241,18 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -166765,24 +170291,24 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -166803,26 +170329,26 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -166833,42 +170359,42 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -166876,7 +170402,7 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -166884,7 +170410,7 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -166892,23 +170418,23 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -166917,7 +170443,7 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -166926,27 +170452,27 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -166954,161 +170480,161 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -167152,7 +170678,7 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -167164,18 +170690,18 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -167204,32 +170730,32 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -167275,7 +170801,7 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument.Instance.Hash.Value, name: "PublishOpenApiCollectionCommandSubscription", document: PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument.Instance.Hash.Value, name: "PublishOpenApiCollectionCommandSubscription", document: PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -167298,18 +170824,16 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// /// Represents the operation service of the PublishOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription PublishOpenApiCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { /// onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... OpenApiCollectionVersionPublishFailed - /// ... OpenApiCollectionVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...OpenApiCollectionVersionPublishFailed + /// ...OpenApiCollectionVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -167317,10 +170841,10 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... OpenApiCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...ConcurrentOperationError + /// ...OpenApiCollectionValidationError /// } /// } /// @@ -167337,7 +170861,7 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -167347,7 +170871,7 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -167359,18 +170883,18 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -167409,24 +170933,24 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -167447,26 +170971,26 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -167477,42 +171001,42 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -167520,7 +171044,7 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -167528,7 +171052,7 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -167536,23 +171060,23 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -167561,7 +171085,7 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -167570,27 +171094,27 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -167598,161 +171122,161 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -167796,7 +171320,7 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -167808,18 +171332,18 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -167848,32 +171372,32 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -167909,11 +171433,11 @@ public partial interface IPublishOpenApiCollectionCommandSubscriptionSubscriptio /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... OpenApiCollectionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...OpenApiCollectionNotFoundError + /// ...Error /// } /// } /// } @@ -167921,7 +171445,7 @@ public partial interface IPublishOpenApiCollectionCommandSubscriptionSubscriptio /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -167931,19 +171455,19 @@ public partial interface IPublishOpenApiCollectionCommandSubscriptionSubscriptio /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -167956,8 +171480,8 @@ private ValidateOpenApiCollectionCommandMutationMutationDocument() public static ValidateOpenApiCollectionCommandMutationMutationDocument Instance { get; } = new ValidateOpenApiCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation ValidateOpenApiCollectionCommandMutation($input: ValidateOpenApiCollectionInput!) { validateOpenApiCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... OpenApiCollectionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1257353d56bd6458656d913055988aa2"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "f287f09481a7cedef576d565a0ee328d"); public override global::System.String ToString() { @@ -167981,11 +171505,11 @@ private ValidateOpenApiCollectionCommandMutationMutationDocument() /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... OpenApiCollectionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...OpenApiCollectionNotFoundError + /// ...Error /// } /// } /// } @@ -167993,7 +171517,7 @@ private ValidateOpenApiCollectionCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -168003,19 +171527,19 @@ private ValidateOpenApiCollectionCommandMutationMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -168098,7 +171622,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: ValidateOpenApiCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "ValidateOpenApiCollectionCommandMutation", document: ValidateOpenApiCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ValidateOpenApiCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "ValidateOpenApiCollectionCommandMutation", document: ValidateOpenApiCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.ValidateOpenApiCollectionInput value) @@ -168129,11 +171653,11 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... StageNotFoundError - /// ... OpenApiCollectionNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...StageNotFoundError + /// ...OpenApiCollectionNotFoundError + /// ...Error /// } /// } /// } @@ -168141,7 +171665,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -168151,19 +171675,19 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// @@ -168181,15 +171705,13 @@ public partial interface IValidateOpenApiCollectionCommandMutationMutation : glo /// /// Represents the operation service of the ValidateOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateOpenApiCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { /// onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... OpenApiCollectionVersionValidationFailed - /// ... OpenApiCollectionVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...OpenApiCollectionVersionValidationFailed + /// ...OpenApiCollectionVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -168197,10 +171719,10 @@ public partial interface IValidateOpenApiCollectionCommandMutationMutation : glo /// state /// errors { /// __typename - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError - /// ... OpenApiCollectionValidationError - /// ... OpenApiCollectionValidationArchiveError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError + /// ...OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationArchiveError /// } /// } /// @@ -168217,7 +171739,7 @@ public partial interface IValidateOpenApiCollectionCommandMutationMutation : glo /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -168229,18 +171751,18 @@ public partial interface IValidateOpenApiCollectionCommandMutationMutation : glo /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -168293,8 +171815,8 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() public static ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { __typename ... OpenApiCollectionVersionValidationFailed ... OpenApiCollectionVersionValidationSuccess ... OperationInProgress ... ValidationInProgress } } fragment OpenApiCollectionVersionValidationFailed on OpenApiCollectionVersionValidationFailed { state errors { __typename ... ProcessingTimeoutError ... UnexpectedProcessingError ... OpenApiCollectionValidationError ... OpenApiCollectionValidationArchiveError } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment OpenApiCollectionValidationArchiveError on OpenApiCollectionValidationArchiveError { message } fragment OpenApiCollectionVersionValidationSuccess on OpenApiCollectionVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "f8c29ad7ac636836aada903ed7b4e9f3"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "20825e3570c4360eb9a194378f9f3b66"); public override global::System.String ToString() { @@ -168310,15 +171832,13 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// /// Represents the operation service of the ValidateOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateOpenApiCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { /// onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... OpenApiCollectionVersionValidationFailed - /// ... OpenApiCollectionVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...OpenApiCollectionVersionValidationFailed + /// ...OpenApiCollectionVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -168326,10 +171846,10 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// state /// errors { /// __typename - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError - /// ... OpenApiCollectionValidationError - /// ... OpenApiCollectionValidationArchiveError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError + /// ...OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationArchiveError /// } /// } /// @@ -168346,7 +171866,7 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -168358,18 +171878,18 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -168441,7 +171961,7 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument.Instance.Hash.Value, name: "ValidateOpenApiCollectionCommandSubscription", document: ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument.Instance.Hash.Value, name: "ValidateOpenApiCollectionCommandSubscription", document: ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -168464,15 +171984,13 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber /// /// Represents the operation service of the ValidateOpenApiCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateOpenApiCollectionCommandSubscription( - /// $requestId: ID! - /// ) { + /// subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { /// onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... OpenApiCollectionVersionValidationFailed - /// ... OpenApiCollectionVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...OpenApiCollectionVersionValidationFailed + /// ...OpenApiCollectionVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -168480,10 +171998,10 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber /// state /// errors { /// __typename - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError - /// ... OpenApiCollectionValidationError - /// ... OpenApiCollectionValidationArchiveError + /// ...ProcessingTimeoutError + /// ...UnexpectedProcessingError + /// ...OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationArchiveError /// } /// } /// @@ -168500,7 +172018,7 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -168512,18 +172030,18 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -168584,13 +172102,14 @@ public partial interface IValidateOpenApiCollectionCommandSubscriptionSubscripti /// __typename /// openApiCollection { /// __typename - /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection + /// ...CreateOpenApiCollectionCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -168598,7 +172117,7 @@ public partial interface IValidateOpenApiCollectionCommandSubscriptionSubscripti /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { /// name /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -168614,13 +172133,19 @@ public partial interface IValidateOpenApiCollectionCommandSubscriptionSubscripti /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -168633,8 +172158,8 @@ private CreateOpenApiCollectionCommandMutationMutationDocument() public static CreateOpenApiCollectionCommandMutationMutationDocument Instance { get; } = new CreateOpenApiCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreateOpenApiCollectionCommandMutation($input: CreateOpenApiCollectionInput!) { createOpenApiCollection(input: $input) { __typename openApiCollection { __typename ... CreateOpenApiCollectionCommandMutation_OpenApiCollection } errors { __typename ... Error ... ApiNotFoundError ... UnauthorizedOperation } } } fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { name id ... OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "5758d2edb80ceb1aa05694485dfdaeed"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "68ee21904180a19e10dbe3a73bf793df"); public override global::System.String ToString() { @@ -168657,13 +172182,14 @@ private CreateOpenApiCollectionCommandMutationMutationDocument() /// __typename /// openApiCollection { /// __typename - /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection + /// ...CreateOpenApiCollectionCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -168671,7 +172197,7 @@ private CreateOpenApiCollectionCommandMutationMutationDocument() /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { /// name /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -168687,13 +172213,19 @@ private CreateOpenApiCollectionCommandMutationMutationDocument() /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -168759,7 +172291,7 @@ private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.I private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CreateOpenApiCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateOpenApiCollectionCommandMutation", document: CreateOpenApiCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreateOpenApiCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateOpenApiCollectionCommandMutation", document: CreateOpenApiCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.CreateOpenApiCollectionInput value) @@ -168789,13 +172321,14 @@ private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.I /// __typename /// openApiCollection { /// __typename - /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection + /// ...CreateOpenApiCollectionCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...ApiNotFoundError + /// ...UnauthorizedOperation + /// ...DuplicateNameError /// } /// } /// } @@ -168803,7 +172336,7 @@ private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.I /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { /// name /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -168819,13 +172352,19 @@ private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.I /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error + /// } + /// + /// fragment DuplicateNameError on DuplicateNameError { + /// __typename + /// message + /// ...Error /// } /// /// @@ -168850,13 +172389,13 @@ public partial interface ICreateOpenApiCollectionCommandMutationMutation : globa /// __typename /// openApiCollection { /// __typename - /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// ...DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... Error - /// ... OpenApiCollectionNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...OpenApiCollectionNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -168864,7 +172403,7 @@ public partial interface ICreateOpenApiCollectionCommandMutationMutation : globa /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { /// name /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -168878,13 +172417,13 @@ public partial interface ICreateOpenApiCollectionCommandMutationMutation : globa /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -168897,8 +172436,8 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() public static DeleteOpenApiCollectionByIdCommandMutationMutationDocument Instance { get; } = new DeleteOpenApiCollectionByIdCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation DeleteOpenApiCollectionByIdCommandMutation($input: DeleteOpenApiCollectionByIdInput!) { deleteOpenApiCollectionById(input: $input) { __typename openApiCollection { __typename ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection } errors { __typename ... Error ... OpenApiCollectionNotFoundError ... UnauthorizedOperation } } } fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { name id ... OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment Error on Error { message } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "e7828352aef7a0d78376c52b11a5f54e"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "069660299554e65bfccf95611934f155"); public override global::System.String ToString() { @@ -168921,13 +172460,13 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() /// __typename /// openApiCollection { /// __typename - /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// ...DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... Error - /// ... OpenApiCollectionNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...OpenApiCollectionNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -168935,7 +172474,7 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { /// name /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -168949,13 +172488,13 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -169021,7 +172560,7 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: DeleteOpenApiCollectionByIdCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteOpenApiCollectionByIdCommandMutation", document: DeleteOpenApiCollectionByIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: DeleteOpenApiCollectionByIdCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteOpenApiCollectionByIdCommandMutation", document: DeleteOpenApiCollectionByIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.DeleteOpenApiCollectionByIdInput value) @@ -169051,13 +172590,13 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha /// __typename /// openApiCollection { /// __typename - /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// ...DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... Error - /// ... OpenApiCollectionNotFoundError - /// ... UnauthorizedOperation + /// ...Error + /// ...OpenApiCollectionNotFoundError + /// ...UnauthorizedOperation /// } /// } /// } @@ -169065,7 +172604,7 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { /// name /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ...OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { @@ -169079,13 +172618,13 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha /// /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { /// openApiCollectionId - /// ... Error + /// ...Error /// } /// /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// @@ -169103,12 +172642,10 @@ public partial interface IDeleteOpenApiCollectionByIdCommandMutationMutation : g /// /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation /// - /// query ShowWorkspaceCommandQuery( - /// $workspaceId: ID! - /// ) { + /// query ShowWorkspaceCommandQuery($workspaceId: ID!) { /// node(id: $workspaceId) { /// __typename - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// } /// @@ -169128,8 +172665,8 @@ private ShowWorkspaceCommandQueryQueryDocument() public static ShowWorkspaceCommandQueryQueryDocument Instance { get; } = new ShowWorkspaceCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ShowWorkspaceCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ... WorkspaceDetailPrompt_Workspace } } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c46bc0ec07d6718f937f666a59f957b0"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "f1049732f0f8a825f66efa03d9822d61"); public override global::System.String ToString() { @@ -169145,12 +172682,10 @@ private ShowWorkspaceCommandQueryQueryDocument() /// /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation /// - /// query ShowWorkspaceCommandQuery( - /// $workspaceId: ID! - /// ) { + /// query ShowWorkspaceCommandQuery($workspaceId: ID!) { /// node(id: $workspaceId) { /// __typename - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// } /// @@ -169223,7 +172758,7 @@ private ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ShowWorkspaceCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowWorkspaceCommandQuery", document: ShowWorkspaceCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ShowWorkspaceCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowWorkspaceCommandQuery", document: ShowWorkspaceCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatWorkspaceId(global::System.String value) @@ -169246,12 +172781,10 @@ private ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto /// /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation /// - /// query ShowWorkspaceCommandQuery( - /// $workspaceId: ID! - /// ) { + /// query ShowWorkspaceCommandQuery($workspaceId: ID!) { /// node(id: $workspaceId) { /// __typename - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// } /// @@ -169276,22 +172809,20 @@ public partial interface IShowWorkspaceCommandQueryQuery : global::StrawberrySha /// /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation( - /// $input: CreateWorkspaceInput! - /// ) { + /// mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { /// createWorkspace(input: $input) { /// __typename /// workspace { /// __typename /// id /// name - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -169305,7 +172836,7 @@ public partial interface IShowWorkspaceCommandQueryQuery : global::StrawberrySha /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -169319,7 +172850,7 @@ public partial interface IShowWorkspaceCommandQueryQuery : global::StrawberrySha /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -169332,8 +172863,8 @@ private CreateWorkspaceCommandMutationMutationDocument() public static CreateWorkspaceCommandMutationMutationDocument Instance { get; } = new CreateWorkspaceCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { createWorkspace(input: $input) { __typename workspace { __typename id name ... WorkspaceDetailPrompt_Workspace } errors { __typename ... UnauthorizedOperation ... ValidationError ... Error } } } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment ValidationError on ValidationError { __typename message errors { __typename message } ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "2320b839fb4e97010cfe6a4ccdd34287"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "94e392cf29081fc79bd64abfb50215b2"); public override global::System.String ToString() { @@ -169349,22 +172880,20 @@ private CreateWorkspaceCommandMutationMutationDocument() /// /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation( - /// $input: CreateWorkspaceInput! - /// ) { + /// mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { /// createWorkspace(input: $input) { /// __typename /// workspace { /// __typename /// id /// name - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -169378,7 +172907,7 @@ private CreateWorkspaceCommandMutationMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -169392,7 +172921,7 @@ private CreateWorkspaceCommandMutationMutationDocument() /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -169458,7 +172987,7 @@ private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperatio private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: CreateWorkspaceCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateWorkspaceCommandMutation", document: CreateWorkspaceCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: CreateWorkspaceCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateWorkspaceCommandMutation", document: CreateWorkspaceCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.CreateWorkspaceInput value) @@ -169481,22 +173010,20 @@ private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperatio /// /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation( - /// $input: CreateWorkspaceInput! - /// ) { + /// mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { /// createWorkspace(input: $input) { /// __typename /// workspace { /// __typename /// id /// name - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... ValidationError - /// ... Error + /// ...UnauthorizedOperation + /// ...ValidationError + /// ...Error /// } /// } /// } @@ -169510,7 +173037,7 @@ private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperatio /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -169524,7 +173051,7 @@ private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperatio /// __typename /// message /// } - /// ... Error + /// ...Error /// } /// /// @@ -169542,21 +173069,18 @@ public partial interface ICreateWorkspaceCommandMutationMutation : global::Straw /// /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation /// - /// query ListWorkspaceCommandQuery( - /// $after: String - /// $first: Int - /// ) { + /// query ListWorkspaceCommandQuery($after: String, $first: Int) { /// me { /// __typename /// workspaces(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListWorkspaceCommand_WorkspaceEdge + /// ...ListWorkspaceCommand_WorkspaceEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -169566,7 +173090,7 @@ public partial interface ICreateWorkspaceCommandMutationMutation : global::Straw /// cursor /// node { /// __typename - /// ... ListWorkspaceCommand_Workspace + /// ...ListWorkspaceCommand_Workspace /// } /// } /// @@ -169574,7 +173098,7 @@ public partial interface ICreateWorkspaceCommandMutationMutation : global::Straw /// id /// name /// personal - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// /// fragment WorkspaceDetailPrompt_Workspace on Workspace { @@ -169600,8 +173124,8 @@ private ListWorkspaceCommandQueryQueryDocument() public static ListWorkspaceCommandQueryQueryDocument Instance { get; } = new ListWorkspaceCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query ListWorkspaceCommandQuery($after: String, $first: Int) { me { __typename workspaces(after: $after, first: $first) { __typename edges { __typename ... ListWorkspaceCommand_WorkspaceEdge } pageInfo { __typename ... PageInfo } } } } fragment ListWorkspaceCommand_WorkspaceEdge on WorkspacesEdge { cursor node { __typename ... ListWorkspaceCommand_Workspace } } fragment ListWorkspaceCommand_Workspace on Workspace { id name personal ... WorkspaceDetailPrompt_Workspace } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "81090212b99490332c1b0614e4509b64"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "920381dec40d088256e2070d0d9fccf8"); public override global::System.String ToString() { @@ -169617,21 +173141,18 @@ private ListWorkspaceCommandQueryQueryDocument() /// /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation /// - /// query ListWorkspaceCommandQuery( - /// $after: String - /// $first: Int - /// ) { + /// query ListWorkspaceCommandQuery($after: String, $first: Int) { /// me { /// __typename /// workspaces(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListWorkspaceCommand_WorkspaceEdge + /// ...ListWorkspaceCommand_WorkspaceEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -169641,7 +173162,7 @@ private ListWorkspaceCommandQueryQueryDocument() /// cursor /// node { /// __typename - /// ... ListWorkspaceCommand_Workspace + /// ...ListWorkspaceCommand_Workspace /// } /// } /// @@ -169649,7 +173170,7 @@ private ListWorkspaceCommandQueryQueryDocument() /// id /// name /// personal - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// /// fragment WorkspaceDetailPrompt_Workspace on Workspace { @@ -169732,7 +173253,7 @@ private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ListWorkspaceCommandQueryQueryDocument.Instance.Hash.Value, name: "ListWorkspaceCommandQuery", document: ListWorkspaceCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ListWorkspaceCommandQueryQueryDocument.Instance.Hash.Value, name: "ListWorkspaceCommandQuery", document: ListWorkspaceCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatAfter(global::System.String? value) @@ -169769,21 +173290,18 @@ private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto /// /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation /// - /// query ListWorkspaceCommandQuery( - /// $after: String - /// $first: Int - /// ) { + /// query ListWorkspaceCommandQuery($after: String, $first: Int) { /// me { /// __typename /// workspaces(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListWorkspaceCommand_WorkspaceEdge + /// ...ListWorkspaceCommand_WorkspaceEdge /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -169793,7 +173311,7 @@ private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto /// cursor /// node { /// __typename - /// ... ListWorkspaceCommand_Workspace + /// ...ListWorkspaceCommand_Workspace /// } /// } /// @@ -169801,7 +173319,7 @@ private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto /// id /// name /// personal - /// ... WorkspaceDetailPrompt_Workspace + /// ...WorkspaceDetailPrompt_Workspace /// } /// /// fragment WorkspaceDetailPrompt_Workspace on Workspace { @@ -169834,7 +173352,7 @@ public partial interface IListWorkspaceCommandQueryQuery : global::StrawberrySha /// /// query SetDefaultWorkspaceCommand_SelectWorkspace_Query( /// $after: String - /// $first: Int + /// $first: Int /// ) { /// me { /// __typename @@ -169845,12 +173363,12 @@ public partial interface IListWorkspaceCommandQueryQuery : global::StrawberrySha /// cursor /// node { /// __typename - /// ... SetDefaultWorkspaceCommand_Workspace + /// ...SetDefaultWorkspaceCommand_Workspace /// } /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -169879,8 +173397,8 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument() public static SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument Instance { get; } = new SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query SetDefaultWorkspaceCommand_SelectWorkspace_Query($after: String, $first: Int) { me { __typename workspaces(after: $after, first: $first) { __typename edges { __typename cursor node { __typename ... SetDefaultWorkspaceCommand_Workspace } } pageInfo { __typename ... PageInfo } } } } fragment SetDefaultWorkspaceCommand_Workspace on Workspace { id name personal } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "bb47ed5730c7751c64b0f1fdcc3f0bf5"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "905085434ac609917eefded220f6aaf2"); public override global::System.String ToString() { @@ -169898,7 +173416,7 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument() /// /// query SetDefaultWorkspaceCommand_SelectWorkspace_Query( /// $after: String - /// $first: Int + /// $first: Int /// ) { /// me { /// __typename @@ -169909,12 +173427,12 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument() /// cursor /// node { /// __typename - /// ... SetDefaultWorkspaceCommand_Workspace + /// ...SetDefaultWorkspaceCommand_Workspace /// } /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -170000,7 +173518,7 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::Strawberry private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument.Instance.Hash.Value, name: "SetDefaultWorkspaceCommand_SelectWorkspace_Query", document: SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument.Instance.Hash.Value, name: "SetDefaultWorkspaceCommand_SelectWorkspace_Query", document: SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatAfter(global::System.String? value) @@ -170039,7 +173557,7 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::Strawberry /// /// query SetDefaultWorkspaceCommand_SelectWorkspace_Query( /// $after: String - /// $first: Int + /// $first: Int /// ) { /// me { /// __typename @@ -170050,12 +173568,12 @@ private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::Strawberry /// cursor /// node { /// __typename - /// ... SetDefaultWorkspaceCommand_Workspace + /// ...SetDefaultWorkspaceCommand_Workspace /// } /// } /// pageInfo { /// __typename - /// ... PageInfo + /// ...PageInfo /// } /// } /// } @@ -170089,20 +173607,18 @@ public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery /// /// Represents the operation service of the PublishSchemaVersion GraphQL operation /// - /// mutation PublishSchemaVersion( - /// $input: PublishSchemaInput! - /// ) { + /// mutation PublishSchemaVersion($input: PublishSchemaInput!) { /// publishSchema(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...SchemaNotFoundError + /// ...Error /// } /// } /// } @@ -170110,7 +173626,7 @@ public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -170120,28 +173636,28 @@ public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment SchemaNotFoundError on SchemaNotFoundError { /// message /// apiId /// tag - /// ... Error + /// ...Error /// } /// /// @@ -170154,8 +173670,8 @@ private PublishSchemaVersionMutationDocument() public static PublishSchemaVersionMutationDocument Instance { get; } = new PublishSchemaVersionMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation PublishSchemaVersion($input: PublishSchemaInput!) { publishSchema(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... ApiNotFoundError ... StageNotFoundError ... SchemaNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "566a2e73892876ac7cc9eff834775e67"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "4ceeaf878edd49cfcb678e7c9ce62af8"); public override global::System.String ToString() { @@ -170171,20 +173687,18 @@ private PublishSchemaVersionMutationDocument() /// /// Represents the operation service of the PublishSchemaVersion GraphQL operation /// - /// mutation PublishSchemaVersion( - /// $input: PublishSchemaInput! - /// ) { + /// mutation PublishSchemaVersion($input: PublishSchemaInput!) { /// publishSchema(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...SchemaNotFoundError + /// ...Error /// } /// } /// } @@ -170192,7 +173706,7 @@ private PublishSchemaVersionMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -170202,28 +173716,28 @@ private PublishSchemaVersionMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment SchemaNotFoundError on SchemaNotFoundError { /// message /// apiId /// tag - /// ... Error + /// ...Error /// } /// /// @@ -170289,7 +173803,7 @@ private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor< private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: PublishSchemaVersionMutationDocument.Instance.Hash.Value, name: "PublishSchemaVersion", document: PublishSchemaVersionMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: PublishSchemaVersionMutationDocument.Instance.Hash.Value, name: "PublishSchemaVersion", document: PublishSchemaVersionMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.PublishSchemaInput value) @@ -170312,20 +173826,18 @@ private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor< /// /// Represents the operation service of the PublishSchemaVersion GraphQL operation /// - /// mutation PublishSchemaVersion( - /// $input: PublishSchemaInput! - /// ) { + /// mutation PublishSchemaVersion($input: PublishSchemaInput!) { /// publishSchema(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...SchemaNotFoundError + /// ...Error /// } /// } /// } @@ -170333,7 +173845,7 @@ private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor< /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -170343,28 +173855,28 @@ private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor< /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment SchemaNotFoundError on SchemaNotFoundError { /// message /// apiId /// tag - /// ... Error + /// ...Error /// } /// /// @@ -170382,18 +173894,16 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// /// Represents the operation service of the OnSchemaVersionPublishUpdated GraphQL operation /// - /// subscription OnSchemaVersionPublishUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnSchemaVersionPublishUpdated($requestId: ID!) { /// onSchemaVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... SchemaVersionPublishFailed - /// ... SchemaVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...SchemaVersionPublishFailed + /// ...SchemaVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -170402,23 +173912,23 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// state /// errors { /// __typename - /// ... ConcurrentOperationError - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaVersionChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...ConcurrentOperationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaVersionChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -170442,26 +173952,26 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -170472,42 +173982,42 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -170515,7 +174025,7 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -170523,7 +174033,7 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -170531,23 +174041,23 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -170556,7 +174066,7 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -170565,27 +174075,27 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -170593,161 +174103,161 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -170801,7 +174311,7 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -170813,18 +174323,18 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -170854,7 +174364,7 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -170866,18 +174376,18 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -170916,24 +174426,24 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -170941,39 +174451,39 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -171000,8 +174510,8 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() public static OnSchemaVersionPublishUpdatedSubscriptionDocument Instance { get; } = new OnSchemaVersionPublishUpdatedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription OnSchemaVersionPublishUpdated($requestId: ID!) { onSchemaVersionPublishingUpdate(requestId: $requestId) { __typename ... SchemaVersionPublishFailed ... SchemaVersionPublishSuccess ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved ... ProcessingTaskIsReady ... ProcessingTaskIsQueued } } fragment SchemaVersionPublishFailed on SchemaVersionPublishFailed { __typename state errors { __typename ... ConcurrentOperationError ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaVersionChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... UnexpectedProcessingError ... ProcessingTimeoutError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment SchemaVersionPublishSuccess on SchemaVersionPublishSuccess { __typename state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "21554a694a1dc511c9d6f03f84d9bdd6"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "2d9b6713c872d9c0917d0f85f53eeb24"); public override global::System.String ToString() { @@ -171017,18 +174527,16 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// /// Represents the operation service of the OnSchemaVersionPublishUpdated GraphQL operation /// - /// subscription OnSchemaVersionPublishUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnSchemaVersionPublishUpdated($requestId: ID!) { /// onSchemaVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... SchemaVersionPublishFailed - /// ... SchemaVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...SchemaVersionPublishFailed + /// ...SchemaVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -171037,23 +174545,23 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// state /// errors { /// __typename - /// ... ConcurrentOperationError - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaVersionChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...ConcurrentOperationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaVersionChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -171077,26 +174585,26 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -171107,42 +174615,42 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -171150,7 +174658,7 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -171158,7 +174666,7 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -171166,23 +174674,23 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -171191,7 +174699,7 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -171200,27 +174708,27 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -171228,161 +174736,161 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -171436,7 +174944,7 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -171448,18 +174956,18 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -171489,7 +174997,7 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -171501,18 +175009,18 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -171551,24 +175059,24 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -171576,39 +175084,39 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -171654,7 +175162,7 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: OnSchemaVersionPublishUpdatedSubscriptionDocument.Instance.Hash.Value, name: "OnSchemaVersionPublishUpdated", document: OnSchemaVersionPublishUpdatedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: OnSchemaVersionPublishUpdatedSubscriptionDocument.Instance.Hash.Value, name: "OnSchemaVersionPublishUpdated", document: OnSchemaVersionPublishUpdatedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -171677,18 +175185,16 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// /// Represents the operation service of the OnSchemaVersionPublishUpdated GraphQL operation /// - /// subscription OnSchemaVersionPublishUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnSchemaVersionPublishUpdated($requestId: ID!) { /// onSchemaVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... SchemaVersionPublishFailed - /// ... SchemaVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ...SchemaVersionPublishFailed + /// ...SchemaVersionPublishSuccess + /// ...OperationInProgress + /// ...WaitForApproval + /// ...ProcessingTaskApproved + /// ...ProcessingTaskIsReady + /// ...ProcessingTaskIsQueued /// } /// } /// @@ -171697,23 +175203,23 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// state /// errors { /// __typename - /// ... ConcurrentOperationError - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaVersionChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...ConcurrentOperationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaVersionChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -171737,26 +175243,26 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -171767,42 +175273,42 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -171810,7 +175316,7 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -171818,7 +175324,7 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -171826,23 +175332,23 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -171851,7 +175357,7 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -171860,27 +175366,27 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -171888,161 +175394,161 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -172096,7 +175602,7 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -172108,18 +175614,18 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -172149,7 +175655,7 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -172161,18 +175667,18 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -172211,24 +175717,24 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// state /// deployment { /// __typename - /// ... SchemaDeployment - /// ... ClientDeployment - /// ... FusionConfigurationDeployment - /// ... OpenApiCollectionDeployment - /// ... McpFeatureCollectionDeployment + /// ...SchemaDeployment + /// ...ClientDeployment + /// ...FusionConfigurationDeployment + /// ...OpenApiCollectionDeployment + /// ...McpFeatureCollectionDeployment /// } /// } /// /// fragment SchemaDeployment on SchemaDeployment { /// errors { /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...OperationsAreNotAllowedError + /// ...SchemaVersionSyntaxError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -172236,39 +175742,39 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// message /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment ClientDeployment on ClientDeployment { /// errors { /// __typename - /// ... PersistedQueryValidationError + /// ...PersistedQueryValidationError /// } /// } /// /// fragment FusionConfigurationDeployment on FusionConfigurationDeployment { /// errors { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...SchemaChangeViolationError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// /// fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { /// errors { /// __typename - /// ... OpenApiCollectionValidationError + /// ...OpenApiCollectionValidationError /// } /// } /// /// fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { /// errors { /// __typename - /// ... McpFeatureCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -172296,9 +175802,7 @@ public partial interface IOnSchemaVersionPublishUpdatedSubscription : global::St /// /// Represents the operation service of the UploadSchema GraphQL operation /// - /// mutation UploadSchema( - /// $input: UploadSchemaInput! - /// ) { + /// mutation UploadSchema($input: UploadSchemaInput!) { /// uploadSchema(input: $input) { /// __typename /// schemaVersion { @@ -172307,12 +175811,12 @@ public partial interface IOnSchemaVersionPublishUpdatedSubscription : global::St /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... ApiNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...ApiNotFoundError + /// ...Error /// } /// } /// } @@ -172320,7 +175824,7 @@ public partial interface IOnSchemaVersionPublishUpdatedSubscription : global::St /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -172330,26 +175834,26 @@ public partial interface IOnSchemaVersionPublishUpdatedSubscription : global::St /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// @@ -172362,8 +175866,8 @@ private UploadSchemaMutationDocument() public static UploadSchemaMutationDocument Instance { get; } = new UploadSchemaMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation UploadSchema($input: UploadSchemaInput!) { uploadSchema(input: $input) { __typename schemaVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... DuplicatedTagError ... ConcurrentOperationError ... ApiNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "bd8cf591a522bbf497338c1f143f203d"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "60a06cbe1829322754f958ed97e8db69"); public override global::System.String ToString() { @@ -172379,9 +175883,7 @@ private UploadSchemaMutationDocument() /// /// Represents the operation service of the UploadSchema GraphQL operation /// - /// mutation UploadSchema( - /// $input: UploadSchemaInput! - /// ) { + /// mutation UploadSchema($input: UploadSchemaInput!) { /// uploadSchema(input: $input) { /// __typename /// schemaVersion { @@ -172390,12 +175892,12 @@ private UploadSchemaMutationDocument() /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... ApiNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...ApiNotFoundError + /// ...Error /// } /// } /// } @@ -172403,7 +175905,7 @@ private UploadSchemaMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -172413,26 +175915,26 @@ private UploadSchemaMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// @@ -172515,7 +176017,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: UploadSchemaMutationDocument.Instance.Hash.Value, name: "UploadSchema", document: UploadSchemaMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: UploadSchemaMutationDocument.Instance.Hash.Value, name: "UploadSchema", document: UploadSchemaMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.UploadSchemaInput value) @@ -172538,9 +176040,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// /// Represents the operation service of the UploadSchema GraphQL operation /// - /// mutation UploadSchema( - /// $input: UploadSchemaInput! - /// ) { + /// mutation UploadSchema($input: UploadSchemaInput!) { /// uploadSchema(input: $input) { /// __typename /// schemaVersion { @@ -172549,12 +176049,12 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... ApiNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...DuplicatedTagError + /// ...ConcurrentOperationError + /// ...ApiNotFoundError + /// ...Error /// } /// } /// } @@ -172562,7 +176062,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -172572,26 +176072,26 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// @@ -172609,20 +176109,18 @@ public partial interface IUploadSchemaMutation : global::StrawberryShake.IOperat /// /// Represents the operation service of the ValidateSchemaVersion GraphQL operation /// - /// mutation ValidateSchemaVersion( - /// $input: ValidateSchemaInput! - /// ) { + /// mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { /// validateSchema(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...SchemaNotFoundError + /// ...Error /// } /// } /// } @@ -172630,7 +176128,7 @@ public partial interface IUploadSchemaMutation : global::StrawberryShake.IOperat /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -172640,28 +176138,28 @@ public partial interface IUploadSchemaMutation : global::StrawberryShake.IOperat /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment SchemaNotFoundError on SchemaNotFoundError { /// message /// apiId /// tag - /// ... Error + /// ...Error /// } /// /// @@ -172674,8 +176172,8 @@ private ValidateSchemaVersionMutationDocument() public static ValidateSchemaVersionMutationDocument Instance { get; } = new ValidateSchemaVersionMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { validateSchema(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... ApiNotFoundError ... StageNotFoundError ... SchemaNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ... Error }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "eaeac9ef60d35adedb9a860de9f5f51d"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "52e3ec89850a6e90930cda465d3c0028"); public override global::System.String ToString() { @@ -172691,20 +176189,18 @@ private ValidateSchemaVersionMutationDocument() /// /// Represents the operation service of the ValidateSchemaVersion GraphQL operation /// - /// mutation ValidateSchemaVersion( - /// $input: ValidateSchemaInput! - /// ) { + /// mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { /// validateSchema(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...SchemaNotFoundError + /// ...Error /// } /// } /// } @@ -172712,7 +176208,7 @@ private ValidateSchemaVersionMutationDocument() /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -172722,28 +176218,28 @@ private ValidateSchemaVersionMutationDocument() /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment SchemaNotFoundError on SchemaNotFoundError { /// message /// apiId /// tag - /// ... Error + /// ...Error /// } /// /// @@ -172826,7 +176322,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: ValidateSchemaVersionMutationDocument.Instance.Hash.Value, name: "ValidateSchemaVersion", document: ValidateSchemaVersionMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, files: files, variables: variables); + return new global::StrawberryShake.OperationRequest(id: ValidateSchemaVersionMutationDocument.Instance.Hash.Value, name: "ValidateSchemaVersion", document: ValidateSchemaVersionMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); } private global::System.Object? FormatInput(global::ChilliCream.Nitro.Client.ValidateSchemaInput value) @@ -172849,20 +176345,18 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// /// Represents the operation service of the ValidateSchemaVersion GraphQL operation /// - /// mutation ValidateSchemaVersion( - /// $input: ValidateSchemaInput! - /// ) { + /// mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { /// validateSchema(input: $input) { /// __typename /// id /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... InvalidSourceMetadataInputError - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ...UnauthorizedOperation + /// ...InvalidSourceMetadataInputError + /// ...ApiNotFoundError + /// ...StageNotFoundError + /// ...SchemaNotFoundError + /// ...Error /// } /// } /// } @@ -172870,7 +176364,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment Error on Error { @@ -172880,28 +176374,28 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { /// __typename /// message - /// ... Error + /// ...Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message /// apiId - /// ... Error + /// ...Error /// } /// /// fragment StageNotFoundError on StageNotFoundError { /// __typename /// message /// name - /// ... Error + /// ...Error /// } /// /// fragment SchemaNotFoundError on SchemaNotFoundError { /// message /// apiId /// tag - /// ... Error + /// ...Error /// } /// /// @@ -172919,15 +176413,13 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// /// Represents the operation service of the OnSchemaVersionValidationUpdated GraphQL operation /// - /// subscription OnSchemaVersionValidationUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnSchemaVersionValidationUpdated($requestId: ID!) { /// onSchemaVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... SchemaVersionValidationFailed - /// ... SchemaVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...SchemaVersionValidationFailed + /// ...SchemaVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -172935,15 +176427,15 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... SchemaVersionSyntaxError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... SchemaVersionChangeViolationError - /// ... OperationsAreNotAllowedError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...SchemaVersionSyntaxError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...SchemaVersionChangeViolationError + /// ...OperationsAreNotAllowedError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -173005,26 +176497,26 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -173035,42 +176527,42 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -173078,7 +176570,7 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -173086,7 +176578,7 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -173094,23 +176586,23 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -173119,7 +176611,7 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -173128,27 +176620,27 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -173156,161 +176648,161 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -173323,7 +176815,7 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -173335,18 +176827,18 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -173376,7 +176868,7 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -173388,18 +176880,18 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -173429,7 +176921,7 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// state /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// @@ -173451,8 +176943,8 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() public static OnSchemaVersionValidationUpdatedSubscriptionDocument Instance { get; } = new OnSchemaVersionValidationUpdatedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription OnSchemaVersionValidationUpdated($requestId: ID!) { onSchemaVersionValidationUpdate(requestId: $requestId) { __typename ... SchemaVersionValidationFailed ... SchemaVersionValidationSuccess ... OperationInProgress ... ValidationInProgress } } fragment SchemaVersionValidationFailed on SchemaVersionValidationFailed { state errors { __typename ... UnexpectedProcessingError ... ProcessingTimeoutError ... SchemaVersionSyntaxError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... SchemaVersionChangeViolationError ... OperationsAreNotAllowedError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment SchemaVersionValidationSuccess on SchemaVersionValidationSuccess { state changes { __typename ... SchemaChangeLogEntry } } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8521648fbc9e310053367892fdbb8798"); + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "6ecc0a13d76ca1bba6f293cfcf0a108a"); public override global::System.String ToString() { @@ -173468,15 +176960,13 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// /// Represents the operation service of the OnSchemaVersionValidationUpdated GraphQL operation /// - /// subscription OnSchemaVersionValidationUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnSchemaVersionValidationUpdated($requestId: ID!) { /// onSchemaVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... SchemaVersionValidationFailed - /// ... SchemaVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...SchemaVersionValidationFailed + /// ...SchemaVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -173484,15 +176974,15 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... SchemaVersionSyntaxError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... SchemaVersionChangeViolationError - /// ... OperationsAreNotAllowedError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...SchemaVersionSyntaxError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...SchemaVersionChangeViolationError + /// ...OperationsAreNotAllowedError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -173554,26 +177044,26 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -173584,42 +177074,42 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -173627,7 +177117,7 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -173635,7 +177125,7 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -173643,23 +177133,23 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -173668,7 +177158,7 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -173677,27 +177167,27 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -173705,161 +177195,161 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -173872,7 +177362,7 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -173884,18 +177374,18 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -173925,7 +177415,7 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -173937,18 +177427,18 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -173978,7 +177468,7 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// state /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// @@ -174019,7 +177509,7 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: OnSchemaVersionValidationUpdatedSubscriptionDocument.Instance.Hash.Value, name: "OnSchemaVersionValidationUpdated", document: OnSchemaVersionValidationUpdatedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.Default, variables: variables); + return new global::StrawberryShake.OperationRequest(id: OnSchemaVersionValidationUpdatedSubscriptionDocument.Instance.Hash.Value, name: "OnSchemaVersionValidationUpdated", document: OnSchemaVersionValidationUpdatedSubscriptionDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } private global::System.Object? FormatRequestId(global::System.String value) @@ -174042,15 +177532,13 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// /// Represents the operation service of the OnSchemaVersionValidationUpdated GraphQL operation /// - /// subscription OnSchemaVersionValidationUpdated( - /// $requestId: ID! - /// ) { + /// subscription OnSchemaVersionValidationUpdated($requestId: ID!) { /// onSchemaVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... SchemaVersionValidationFailed - /// ... SchemaVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// ...SchemaVersionValidationFailed + /// ...SchemaVersionValidationSuccess + /// ...OperationInProgress + /// ...ValidationInProgress /// } /// } /// @@ -174058,15 +177546,15 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// state /// errors { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... SchemaVersionSyntaxError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... SchemaVersionChangeViolationError - /// ... OperationsAreNotAllowedError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ...UnexpectedProcessingError + /// ...ProcessingTimeoutError + /// ...SchemaVersionSyntaxError + /// ...InvalidGraphQLSchemaError + /// ...PersistedQueryValidationError + /// ...SchemaVersionChangeViolationError + /// ...OperationsAreNotAllowedError + /// ...OpenApiCollectionValidationError + /// ...McpFeatureCollectionValidationError /// } /// } /// @@ -174128,26 +177616,26 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// __typename /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// ...TypeSystemMemberAddedChange + /// ...TypeSystemMemberRemovedChange + /// ...ObjectModifiedChange + /// ...InputObjectModifiedChange + /// ...DirectiveModifiedChange + /// ...ScalarModifiedChange + /// ...EnumModifiedChange + /// ...UnionModifiedChange + /// ...InterfaceModifiedChange + /// ...SchemaChange /// } /// /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename @@ -174158,42 +177646,42 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// } /// /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged /// } /// } /// /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// interfaceName /// severity /// } /// /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange + /// ...SchemaChange /// old /// new /// severity @@ -174201,7 +177689,7 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -174209,7 +177697,7 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// typeName /// fieldName @@ -174217,23 +177705,23 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...ArgumentRemoved + /// ...ArgumentAdded + /// ...ArgumentChanged + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -174242,7 +177730,7 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name @@ -174251,27 +177739,27 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// name /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// ...DescriptionChanged + /// ...DeprecatedChange + /// ...TypeChanged /// } /// } /// /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange + /// ...SchemaChange /// deprecationReason /// severity /// } /// /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange + /// ...SchemaChange /// oldType /// newType /// severity @@ -174279,161 +177767,161 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...InputFieldChanged /// } /// } /// /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// fieldName /// changes { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ...DescriptionChanged + /// ...TypeChanged + /// ...DeprecatedChange /// } /// } /// /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ...DirectiveLocationAdded + /// ...DirectiveLocationRemoved + /// ...DescriptionChanged + /// ...ArgumentRemoved + /// ...ArgumentChanged + /// ...ArgumentAdded /// } /// } /// /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange + /// ...SchemaChange /// location /// severity /// __typename /// } /// /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged + /// ...DescriptionChanged /// } /// } /// /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// ...DescriptionChanged + /// ...EnumValueRemoved + /// ...EnumValueAdded + /// ...EnumValueChanged /// } /// } /// /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// } /// /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// changes { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// ...DeprecatedChange + /// ...DescriptionChanged /// } /// } /// /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// ...DescriptionChanged + /// ...UnionMemberRemoved + /// ...UnionMemberAdded /// } /// } /// /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange + /// ...SchemaChange /// coordinate /// severity /// __typename /// changes { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ...InterfaceImplementationAdded + /// ...InterfaceImplementationRemoved + /// ...DescriptionChanged + /// ...FieldAddedChange + /// ...FieldRemovedChange + /// ...OutputFieldChanged + /// ...PossibleTypeAdded + /// ...PossibleTypeRemoved /// } /// } /// /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } /// /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange + /// ...SchemaChange /// typeName /// severity /// } @@ -174446,7 +177934,7 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// ... OpenApiCollectionValidationCollection + /// ...OpenApiCollectionValidationCollection /// } /// } /// @@ -174458,18 +177946,18 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// entities { /// __typename - /// ... OpenApiCollectionValidationEntity + /// ...OpenApiCollectionValidationEntity /// } /// } /// /// fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ...OpenApiCollectionValidationDocumentError + /// ...OpenApiCollectionValidationEntityValidationError /// } - /// ... OpenApiCollectionValidationEndpoint - /// ... OpenApiCollectionValidationModel + /// ...OpenApiCollectionValidationEndpoint + /// ...OpenApiCollectionValidationModel /// } /// /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { @@ -174499,7 +177987,7 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// ... McpFeatureCollectionValidationCollection + /// ...McpFeatureCollectionValidationCollection /// } /// } /// @@ -174511,18 +177999,18 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// } /// entities { /// __typename - /// ... McpFeatureCollectionValidationEntity + /// ...McpFeatureCollectionValidationEntity /// } /// } /// /// fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { /// errors { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError + /// ...McpFeatureCollectionValidationDocumentError + /// ...McpFeatureCollectionValidationEntityValidationError /// } - /// ... McpFeatureCollectionValidationPrompt - /// ... McpFeatureCollectionValidationTool + /// ...McpFeatureCollectionValidationPrompt + /// ...McpFeatureCollectionValidationTool /// } /// /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { @@ -174552,7 +178040,7 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// state /// changes { /// __typename - /// ... SchemaChangeLogEntry + /// ...SchemaChangeLogEntry /// } /// } /// @@ -175821,6 +179309,14 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes { returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_Organization(); @@ -175829,6 +179325,18 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes { returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.ShowClientCommandQuery_Node_SchemaChangeLog(); @@ -176348,6 +179856,14 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat { returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_Organization(); @@ -176356,6 +179872,18 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat { returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.PageClientVersionDetailQuery_Node_SchemaChangeLog(); @@ -179555,6 +183083,14 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes { returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_Organization(); @@ -179563,6 +183099,18 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes { returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.ListClientCommandQuery_Node_SchemaChangeLog(); @@ -180090,6 +183638,10 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati { returnValue = new global::ChilliCream.Nitro.Client.CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } + else if (data is global::ChilliCream.Nitro.Client.State.DuplicateNameErrorData duplicateNameError) + { + returnValue = new global::ChilliCream.Nitro.Client.CreateClientCommandMutation_CreateClient_Errors_DuplicateNameError(duplicateNameError.Message ?? throw new global::System.ArgumentNullException(), duplicateNameError.__typename ?? throw new global::System.ArgumentNullException()); + } else { throw new global::System.NotSupportedException(); @@ -180283,6 +183835,14 @@ public ShowApiCommandQueryResult Create(global::StrawberryShake.IOperationResult { returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_Organization(); @@ -180291,6 +183851,18 @@ public ShowApiCommandQueryResult Create(global::StrawberryShake.IOperationResult { returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.ShowApiCommandQuery_Node_SchemaChangeLog(); @@ -180561,6 +184133,14 @@ public DeleteApiCommandQueryResult Create(global::StrawberryShake.IOperationResu { returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_Organization(); @@ -180569,6 +184149,18 @@ public DeleteApiCommandQueryResult Create(global::StrawberryShake.IOperationResu { returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.DeleteApiCommandQuery_Node_SchemaChangeLog(); @@ -185010,6 +188602,14 @@ public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultData { returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_Organization(); @@ -185018,6 +188618,18 @@ public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultData { returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.ListStagesQuery_Node_SchemaChangeLog(); @@ -185486,6 +189098,14 @@ public ShowEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati { returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_Organization(); @@ -185494,6 +189114,18 @@ public ShowEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati { returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.ShowEnvironmentCommandQuery_Node_SchemaChangeLog(); @@ -187158,6 +190790,10 @@ public CreateMcpFeatureCollectionCommandMutationResult Create(global::Strawberry { returnValue = new global::ChilliCream.Nitro.Client.CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } + else if (data is global::ChilliCream.Nitro.Client.State.DuplicateNameErrorData duplicateNameError) + { + returnValue = new global::ChilliCream.Nitro.Client.CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_DuplicateNameError(duplicateNameError.Message ?? throw new global::System.ArgumentNullException(), duplicateNameError.__typename ?? throw new global::System.ArgumentNullException()); + } else { throw new global::System.NotSupportedException(); @@ -187351,6 +190987,14 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake { returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_Organization(); @@ -187359,6 +191003,18 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake { returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog(); @@ -190128,6 +193784,14 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO { returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_Organization(); @@ -190136,6 +193800,18 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO { returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog(); @@ -192553,6 +196229,10 @@ public CreateOpenApiCollectionCommandMutationResult Create(global::StrawberrySha { returnValue = new global::ChilliCream.Nitro.Client.CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } + else if (data is global::ChilliCream.Nitro.Client.State.DuplicateNameErrorData duplicateNameError) + { + returnValue = new global::ChilliCream.Nitro.Client.CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_DuplicateNameError(duplicateNameError.Message ?? throw new global::System.ArgumentNullException(), duplicateNameError.__typename ?? throw new global::System.ArgumentNullException()); + } else { throw new global::System.NotSupportedException(); @@ -192861,6 +196541,14 @@ public ShowWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation { returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion(); } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiEndpointData openApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_OpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.OpenApiModelData openApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_OpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.OrganizationData organization) { returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_Organization(); @@ -192869,6 +196557,18 @@ public ShowWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation { returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_OrganizationMember(); } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData publishedOpenApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_PublishedOpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData publishedOpenApiEndpoint) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_PublishedOpenApiEndpoint(); + } + else if (data is global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData publishedOpenApiModel) + { + returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_PublishedOpenApiModel(); + } else if (data is global::ChilliCream.Nitro.Client.State.SchemaChangeLogData schemaChangeLog) { returnValue = new global::ChilliCream.Nitro.Client.ShowWorkspaceCommandQuery_Node_SchemaChangeLog(); @@ -198854,6 +202554,16 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -198864,6 +202574,21 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -199531,6 +203256,16 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -199541,6 +203276,21 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -203445,6 +207195,16 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -203455,6 +207215,21 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -204244,6 +208019,11 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu return new global::ChilliCream.Nitro.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } + if (typename?.Equals("DuplicateNameError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.DuplicateNameErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } } @@ -204448,6 +208228,16 @@ public ShowApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -204458,6 +208248,21 @@ public ShowApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -204806,6 +208611,16 @@ public DeleteApiCommandQueryBuilder(global::StrawberryShake.IOperationResultData return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -204816,6 +208631,21 @@ public DeleteApiCommandQueryBuilder(global::StrawberryShake.IOperationResultData return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -209800,6 +213630,16 @@ public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactor return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -209810,6 +213650,21 @@ public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactor return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -210381,6 +214236,16 @@ public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -210391,6 +214256,21 @@ public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -212408,6 +216288,11 @@ public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. return new global::ChilliCream.Nitro.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } + if (typename?.Equals("DuplicateNameError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.DuplicateNameErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } } @@ -212614,6 +216499,16 @@ public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOper return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -212624,6 +216519,21 @@ public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOper return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -215876,6 +219786,16 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -215886,6 +219806,21 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -218709,6 +222644,11 @@ public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp return new global::ChilliCream.Nitro.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } + if (typename?.Equals("DuplicateNameError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.DuplicateNameErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } } @@ -219038,6 +222978,16 @@ public ShowWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult return new global::ChilliCream.Nitro.Client.State.OpenApiCollectionVersionData(typename); } + if (typename?.Equals("OpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiEndpointData(typename); + } + + if (typename?.Equals("OpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.OpenApiModelData(typename); + } + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.OrganizationData(typename); @@ -219048,6 +222998,21 @@ public ShowWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult return new global::ChilliCream.Nitro.Client.State.OrganizationMemberData(typename); } + if (typename?.Equals("PublishedOpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiCollectionVersionData(typename); + } + + if (typename?.Equals("PublishedOpenApiEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiEndpointData(typename); + } + + if (typename?.Equals("PublishedOpenApiModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.Client.State.PublishedOpenApiModelData(typename); + } + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.Client.State.SchemaChangeLogData(typename); @@ -224271,6 +228236,7 @@ public ApiDocumentData(global::System.String __typename) } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///API Key Details [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IAuthorizationEventLogSubjectData { @@ -224278,6 +228244,7 @@ public partial interface IAuthorizationEventLogSubjectData } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///API Key Details [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiKeyData : IAuthorizationEventLogPrincipalData, IAuthorizationEventLogSubjectData, INodeData { @@ -224741,6 +228708,30 @@ public partial record OpenApiCollectionVersionData : INodeData public global::System.String? Id { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record OpenApiEndpointData : INodeData + { + public OpenApiEndpointData(global::System.String __typename) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + } + + public global::System.String __typename { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record OpenApiModelData : INodeData + { + public OpenApiModelData(global::System.String __typename) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + } + + public global::System.String __typename { get; init; } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IAuthorizationEventLogRealmData @@ -224772,6 +228763,42 @@ public OrganizationMemberData(global::System.String __typename) public global::System.String __typename { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record PublishedOpenApiCollectionVersionData : INodeData + { + public PublishedOpenApiCollectionVersionData(global::System.String __typename) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + } + + public global::System.String __typename { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record PublishedOpenApiEndpointData : INodeData + { + public PublishedOpenApiEndpointData(global::System.String __typename) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + } + + public global::System.String __typename { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record PublishedOpenApiModelData : INodeData + { + public PublishedOpenApiModelData(global::System.String __typename) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + } + + public global::System.String __typename { get; init; } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record SchemaChangeLogData : IStageChangeLogData, INodeData @@ -226592,6 +230619,20 @@ public partial record CreateClientPayloadData public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record DuplicateNameErrorData : ICreateClientErrorData, ICreateMcpFeatureCollectionErrorData, ICreateOpenApiCollectionErrorData, IErrorData + { + public DuplicateNameErrorData(global::System.String __typename, global::System.String? message = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Message = message; + } + + public global::System.String __typename { get; init; } + public global::System.String? Message { get; init; } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiSettingsData diff --git a/src/Nitro/Common/src/ChilliCream.Nitro.Client/Mcp/Operations/CreateMcpFeatureCollectionCommand.graphql b/src/Nitro/Common/src/ChilliCream.Nitro.Client/Mcp/Operations/CreateMcpFeatureCollectionCommand.graphql index 742c285f32b..bb8f9ac0ea8 100644 --- a/src/Nitro/Common/src/ChilliCream.Nitro.Client/Mcp/Operations/CreateMcpFeatureCollectionCommand.graphql +++ b/src/Nitro/Common/src/ChilliCream.Nitro.Client/Mcp/Operations/CreateMcpFeatureCollectionCommand.graphql @@ -7,6 +7,7 @@ mutation CreateMcpFeatureCollectionCommandMutation($input: CreateMcpFeatureColle ...Error ...ApiNotFoundError ...UnauthorizedOperation + ...DuplicateNameError } } } diff --git a/src/Nitro/Common/src/ChilliCream.Nitro.Client/OpenApi/Operations/CreateOpenApiCollectionCommand.graphql b/src/Nitro/Common/src/ChilliCream.Nitro.Client/OpenApi/Operations/CreateOpenApiCollectionCommand.graphql index 73c20b209bd..c24ad6ebcce 100644 --- a/src/Nitro/Common/src/ChilliCream.Nitro.Client/OpenApi/Operations/CreateOpenApiCollectionCommand.graphql +++ b/src/Nitro/Common/src/ChilliCream.Nitro.Client/OpenApi/Operations/CreateOpenApiCollectionCommand.graphql @@ -7,6 +7,7 @@ mutation CreateOpenApiCollectionCommandMutation($input: CreateOpenApiCollectionI ...Error ...ApiNotFoundError ...UnauthorizedOperation + ...DuplicateNameError } } } diff --git a/src/Nitro/Common/src/ChilliCream.Nitro.Client/fragments.graphql b/src/Nitro/Common/src/ChilliCream.Nitro.Client/fragments.graphql index d56859f1b90..6c6348f49fa 100644 --- a/src/Nitro/Common/src/ChilliCream.Nitro.Client/fragments.graphql +++ b/src/Nitro/Common/src/ChilliCream.Nitro.Client/fragments.graphql @@ -56,6 +56,12 @@ fragment DuplicatedTagError on DuplicatedTagError { ...Error } +fragment DuplicateNameError on DuplicateNameError { + __typename + message + ...Error +} + fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message diff --git a/src/Nitro/Common/src/ChilliCream.Nitro.Client/persisted/operations.json b/src/Nitro/Common/src/ChilliCream.Nitro.Client/persisted/operations.json index 8aa9dac6d72..855610a4aa4 100644 --- a/src/Nitro/Common/src/ChilliCream.Nitro.Client/persisted/operations.json +++ b/src/Nitro/Common/src/ChilliCream.Nitro.Client/persisted/operations.json @@ -1 +1 @@ -{"011734b7fcf646d45b21a4e46309ba9f":"mutation CreateApiCommandMutation($workspaceId: ID!, $path: [String!]!, $name: String!, $kind: ApiKind) { pushWorkspaceChanges(input: { changes: [{ api: { create: { name: $name, path: $path, referenceId: \u0022api\u0022, workspaceId: $workspaceId, kind: $kind } } }] }) { __typename changes { __typename referenceId error { __typename ... Error } result { __typename ... CreateApiCommandMutation_Api } } errors { __typename ... Error } } } fragment Error on Error { message } fragment CreateApiCommandMutation_Api on Api { name ... ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } }","021d1bafc7178634565bd5543b9e55b7":"query SelectMcpFeatureCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mcpFeatureCollections(after: $after, first: $first) { __typename edges { __typename ... SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { cursor node { __typename ... SelectMcpFeatureCollectionPrompt_McpFeatureCollection } } fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { id name ... McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","033e38ddf26a3861b6c3e9bdedeb57ee":"mutation BeginFusionConfigurationPublish($input: BeginFusionConfigurationPublishInput!) { beginFusionConfigurationPublish(input: $input) { __typename requestId errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... ApiNotFoundError ... SubgraphInvalidError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment SubgraphInvalidError on SubgraphInvalidError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }","04a95300043e67348c92bc627adcdc2c":"mutation UploadClient($input: UploadClientInput!) { uploadClient(input: $input) { __typename clientVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... ClientNotFoundError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error }","1257353d56bd6458656d913055988aa2":"mutation ValidateOpenApiCollectionCommandMutation($input: ValidateOpenApiCollectionInput!) { validateOpenApiCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... OpenApiCollectionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error }","147298b7a2e237b07f06e5a7c2b1ef84":"mutation RevokePersonalAccessTokenCommandMutation($input: RevokePersonalAccessTokenInput!) { revokePersonalAccessToken(input: $input) { __typename personalAccessToken { __typename ... RevokePersonalAccessTokenCommand_PersonalAccessToken } errors { __typename ... PersonalAccessTokenNotFoundError ... Error } } } fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { id description ... PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { __typename message ... Error } fragment Error on Error { message }","1764f051057ef08b61a865c8e104c057":"mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { updateApiSettings(input: $input) { __typename api { __typename ... SetApiSettingsCommandMutation_Api } errors { __typename ... ApiNotFoundError ... UnauthorizedOperation ... Error } } } fragment SetApiSettingsCommandMutation_Api on Api { name path ... SelectApiPrompt_Api } fragment SelectApiPrompt_Api on Api { id name path ... ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment Error on Error { message } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }","1781486920ef931abe7278a40b70d4cb":"mutation CreateClientCommandMutation($input: CreateClientInput!) { createClient(input: $input) { __typename client { __typename ... CreateClientCommandMutation_Client } errors { __typename ... Error ... ApiNotFoundError ... UnauthorizedOperation } } } fragment CreateClientCommandMutation_Client on Client { name id ... ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }","1b7ebd5e95b4f31767e0271f30d34242":"query ListMockCommandQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mockSchemas(after: $after, first: $first) { __typename edges { __typename ... ListMockCommand_MockEdge } pageInfo { __typename ... PageInfo } } } } fragment ListMockCommand_MockEdge on MockSchemasEdge { cursor node { __typename ... ListMockCommand_Mock } } fragment ListMockCommand_Mock on MockSchema { id name ... MockSchemaDetailPrompt } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","1dc6ae2e10cfb2219195df7ca38bf4bf":"mutation DeleteApiKeyCommandMutation($input: DeleteApiKeyInput!) { deleteApiKey(input: $input) { __typename apiKey { __typename ... DeleteApiKeyCommand_ApiKey } errors { __typename ... ApiKeyNotFoundError ... Error } } } fragment DeleteApiKeyCommand_ApiKey on ApiKey { id ... ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment ApiKeyNotFoundError on ApiKeyNotFoundError { __typename message apiKeyId ... Error } fragment Error on Error { message }","202e2ae2330c6b4feffd8347e5769aba":"query ShowClientCommandQuery($clientId: ID!) { node(id: $clientId) { __typename ... ClientDetailPrompt_Client } } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } }","20c2b10a6921693d62a4326e1c1d4daa":"mutation UpdateMockSchema($mockSchemaId: ID!, $baseSchemaFile: Upload, $downstreamUrl: String, $extensionsSchemaFile: Upload, $name: String) { updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { __typename mockSchema { __typename id ... MockSchemaDetailPrompt } errors { __typename ... MockSchemaNotFoundError ... MockSchemaNonUniqueNameError ... UnauthorizedOperation ... ValidationError ... Error } } } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment MockSchemaNotFoundError on MockSchemaNotFoundError { __typename message ... Error } fragment Error on Error { message } fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { __typename message name ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ... Error }","21554a694a1dc511c9d6f03f84d9bdd6":"subscription OnSchemaVersionPublishUpdated($requestId: ID!) { onSchemaVersionPublishingUpdate(requestId: $requestId) { __typename ... SchemaVersionPublishFailed ... SchemaVersionPublishSuccess ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved ... ProcessingTaskIsReady ... ProcessingTaskIsQueued } } fragment SchemaVersionPublishFailed on SchemaVersionPublishFailed { __typename state errors { __typename ... ConcurrentOperationError ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaVersionChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... UnexpectedProcessingError ... ProcessingTimeoutError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment SchemaVersionPublishSuccess on SchemaVersionPublishSuccess { __typename state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","2320b839fb4e97010cfe6a4ccdd34287":"mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { createWorkspace(input: $input) { __typename workspace { __typename id name ... WorkspaceDetailPrompt_Workspace } errors { __typename ... UnauthorizedOperation ... ValidationError ... Error } } } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment ValidationError on ValidationError { __typename message errors { __typename message } ... Error }","2513a57b937300d59ac37db38e3592e5":"mutation StartFusionConfigurationPublish($input: StartFusionConfigurationCompositionInput!) { startFusionConfigurationComposition(input: $input) { __typename errors { __typename ... UnauthorizedOperation ... FusionConfigurationRequestNotFoundError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }","35993498c755e51178ea417965c3a164":"query ShowEnvironmentCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ... EnvironmentDetailPrompt_Environment } } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } }","381ceb6777bb01c5c260599a269f85d5":"subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { __typename ... McpFeatureCollectionVersionPublishFailed ... McpFeatureCollectionVersionPublishSuccess ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved ... ProcessingTaskIsReady ... ProcessingTaskIsQueued } } fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersionPublishFailed { state errors { __typename ... UnexpectedProcessingError ... ProcessingTimeoutError ... ConcurrentOperationError ... McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","39e48feb517b1ca240cec144623126c8":"mutation CancelFusionConfigurationPublish($input: CancelFusionConfigurationCompositionInput!) { cancelFusionConfigurationComposition(input: $input) { __typename errors { __typename ... UnauthorizedOperation ... FusionConfigurationRequestNotFoundError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }","3b4f426d4f45f7b8d9472110f137e869":"query DeleteApiCommandQuery($apiId: ID!) { node(id: $apiId) { __typename ... DeleteApiCommandQuery_Api } } fragment DeleteApiCommandQuery_Api on Api { name version workspace { __typename id } }","42881a9198879d969b1951404e14b13a":"query ShowApiCommandQuery($apiId: ID!) { node(id: $apiId) { __typename ... ApiDetailPrompt_Api } } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } }","4457adbf3d9f1a7ca591ced02a6e97c0":"query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apis(after: $after, first: $first) { __typename edges { __typename ... ListApiCommand_ApiEdge } pageInfo { __typename ... PageInfo } } } } fragment ListApiCommand_ApiEdge on ApisEdge { cursor node { __typename ... ListApiCommand_Api } } fragment ListApiCommand_Api on Api { id name path ... ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","46cc5ecdb98af795749ecb6f2d419092":"mutation CreatePersonalAccessTokenCommandMutation($input: CreatePersonalAccessTokenInput!) { createPersonalAccessToken(input: $input) { __typename result { __typename token { __typename ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken } secret } errors { __typename ... UnauthorizedOperation ... Error } } } fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { id ... PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message }","534b366d72c95afa021a1cf5efbe8972":"mutation ValidateClientVersion($input: ValidateClientInput!) { validateClient(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... ClientNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error }","566a2e73892876ac7cc9eff834775e67":"mutation PublishSchemaVersion($input: PublishSchemaInput!) { publishSchema(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... ApiNotFoundError ... StageNotFoundError ... SchemaNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ... Error }","5758d2edb80ceb1aa05694485dfdaeed":"mutation CreateOpenApiCollectionCommandMutation($input: CreateOpenApiCollectionInput!) { createOpenApiCollection(input: $input) { __typename openApiCollection { __typename ... CreateOpenApiCollectionCommandMutation_OpenApiCollection } errors { __typename ... Error ... ApiNotFoundError ... UnauthorizedOperation } } } fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { name id ... OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }","5d5c59c7c2e869cd8e37ec6a854f6d61":"query ListEnvironmentCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename environments(after: $after, first: $first) { __typename edges { __typename ... ListEnvironmentCommand_EnvironmentEdge } pageInfo { __typename ... PageInfo } } } } fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { cursor node { __typename ... ListEnvironmentCommand_Environment } } fragment ListEnvironmentCommand_Environment on Environment { id name ... EnvironmentDetailPrompt_Environment } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","6795a8c7e7e54136f9b2b563753a134e":"mutation ValidateFusionConfigurationPublish($input: ValidateFusionConfigurationCompositionInput!) { validateFusionConfigurationComposition(input: $input) { __typename errors { __typename ... UnauthorizedOperation ... FusionConfigurationRequestNotFoundError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }","70e1d55453601c7397bf8419c8657e13":"mutation UpdateStages($input: UpdateStagesInput!) { updateStages(input: $input) { __typename api { __typename stages { __typename ... StageDetailPrompt_Stage } } errors { __typename ... ApiNotFoundError ... StageNotFoundError ... StagesHavePublishedDependenciesError ... StageValidationError ... Error } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ... StageCondition } } fragment StageCondition on StageCondition { ... AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment StagesHavePublishedDependenciesError on StagesHavePublishedDependenciesError { __typename message stages { __typename name publishedSchema { __typename version { __typename tag } } publishedClients { __typename client { __typename name } publishedVersions { __typename version { __typename tag } } } } } fragment StageValidationError on StageValidationError { __typename message ... Error }","73d47ef547275fb8b3364106fa956029":"query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apiKeys(after: $after, first: $first) { __typename edges { __typename ... ListApiKeyCommand_ApiKeyEdge } pageInfo { __typename ... PageInfo } } } } fragment ListApiKeyCommand_ApiKeyEdge on ApiKeysEdge { cursor node { __typename ... ListApiKeyCommand_ApiKey } } fragment ListApiKeyCommand_ApiKey on ApiKey { id name ... ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","77b48c0f541be024cd1574449436ad1e":"subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { state __typename ... ProcessingTaskIsReady ... ProcessingTaskIsQueued ... FusionConfigurationPublishingSuccess ... FusionConfigurationPublishingFailed ... FusionConfigurationValidationSuccess ... FusionConfigurationValidationFailed ... ValidationInProgress ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved } } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition } fragment FusionConfigurationPublishingSuccess on FusionConfigurationPublishingSuccess { success: __typename } fragment FusionConfigurationPublishingFailed on FusionConfigurationPublishingFailed { failed: __typename errors { __typename message ... InvalidGraphQLSchemaError } } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment FusionConfigurationValidationSuccess on FusionConfigurationValidationSuccess { success: __typename changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment FusionConfigurationValidationFailed on FusionConfigurationValidationFailed { failed: __typename errors { __typename ... UnexpectedProcessingError ... PersistedQueryValidationError ... SchemaVersionChangeViolationError ... InvalidGraphQLSchemaError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ... SchemaChangeLogEntry } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ValidationInProgress on ValidationInProgress { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state }","7bba9b8a24c252e56c3a8f077ab6c62f":"subscription OnClientVersionValidationUpdated($requestId: ID!) { onClientVersionValidationUpdate(requestId: $requestId) { __typename ... ClientVersionValidationFailed ... ClientVersionValidationSuccess ... OperationInProgress ... ValidationInProgress } } fragment ClientVersionValidationFailed on ClientVersionValidationFailed { state errors { __typename ... PersistedQueryValidationError ... ProcessingTimeoutError ... UnexpectedProcessingError } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ClientVersionValidationSuccess on ClientVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","7f74dfa45e5ecd418856f7278245de9b":"mutation PublishClientVersion($input: PublishClientInput!) { publishClient(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... ClientNotFoundError ... ClientVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment ClientVersionNotFoundError on ClientVersionNotFoundError { tag message clientId ... Error }","7fed272d6aaed647d16d156856db0eed":"query ListMcpFeatureCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { mcpFeatureCollections(first: $first, after: $after) { __typename edges { __typename ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge } pageInfo { __typename ... PageInfo } } } } } fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { cursor node { __typename ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection } } fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { id name ... McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","81090212b99490332c1b0614e4509b64":"query ListWorkspaceCommandQuery($after: String, $first: Int) { me { __typename workspaces(after: $after, first: $first) { __typename edges { __typename ... ListWorkspaceCommand_WorkspaceEdge } pageInfo { __typename ... PageInfo } } } } fragment ListWorkspaceCommand_WorkspaceEdge on WorkspacesEdge { cursor node { __typename ... ListWorkspaceCommand_Workspace } } fragment ListWorkspaceCommand_Workspace on Workspace { id name personal ... WorkspaceDetailPrompt_Workspace } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","8403a76012480cacf4ff791dfdf9ab03":"query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { me { __typename personalAccessTokens(after: $after, first: $first) { __typename edges { __typename ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge } pageInfo { __typename ... PageInfo } } } } fragment ListPersonalAccessTokenCommand_PersonalAccessTokenEdge on PersonalAccessTokensEdge { cursor node { __typename ... ListPersonalAccessTokenCommand_PersonalAccessToken } } fragment ListPersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { id description expiresAt createdAt ... PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","8521648fbc9e310053367892fdbb8798":"subscription OnSchemaVersionValidationUpdated($requestId: ID!) { onSchemaVersionValidationUpdate(requestId: $requestId) { __typename ... SchemaVersionValidationFailed ... SchemaVersionValidationSuccess ... OperationInProgress ... ValidationInProgress } } fragment SchemaVersionValidationFailed on SchemaVersionValidationFailed { state errors { __typename ... UnexpectedProcessingError ... ProcessingTimeoutError ... SchemaVersionSyntaxError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... SchemaVersionChangeViolationError ... OperationsAreNotAllowedError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment SchemaVersionValidationSuccess on SchemaVersionValidationSuccess { state changes { __typename ... SchemaChangeLogEntry } } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","89d9fea06884980ce1721212dff781b9":"query SelectClientPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename clients(after: $after, first: $first) { __typename edges { __typename ... SelectClientPrompt_ClientEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectClientPrompt_ClientEdge on ClientsEdge { cursor node { __typename ... SelectClientPrompt_Client } } fragment SelectClientPrompt_Client on Client { id name ... ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","8bce2237d04f18cd7a9952fb2a6c79fc":"subscription OnClientVersionPublishUpdated($requestId: ID!) { onClientVersionPublishingUpdate(requestId: $requestId) { __typename ... ClientVersionPublishFailed ... ClientVersionPublishSuccess ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved ... ProcessingTaskIsReady ... ProcessingTaskIsQueued } } fragment ClientVersionPublishFailed on ClientVersionPublishFailed { state errors { __typename ... UnexpectedProcessingError ... ProcessingTimeoutError ... ConcurrentOperationError ... PersistedQueryValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment ClientVersionPublishSuccess on ClientVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","8da9fa5fb4c5244d81ad802bfc49eb73":"mutation UploadOpenApiCollectionCommandMutation($input: UploadOpenApiCollectionInput!) { uploadOpenApiCollection(input: $input) { __typename openApiCollectionVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... OpenApiCollectionNotFoundError ... InvalidOpenApiCollectionArchiveError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error } fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error }","8e45bab85454282aa6a1f07c57c013a1":"query SelectMockSchemaPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mockSchemas(after: $after, first: $first) { __typename edges { __typename ... SelectMockCommand_MockEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectMockCommand_MockEdge on MockSchemasEdge { cursor node { __typename ... SelectMockCommand_Mock } } fragment SelectMockCommand_Mock on MockSchema { id name ... MockSchemaDetailPrompt } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","947f511e1d35365c0162b3fde9b0f0c2":"mutation ValidateMcpFeatureCollectionCommandMutation($input: ValidateMcpFeatureCollectionInput!) { validateMcpFeatureCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... McpFeatureCollectionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error }","992b8ab9fd5e45569fda61f616659e1a":"mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { createApiKey(input: $input) { __typename result { __typename key { __typename ... CreateApiKeyCommandMutation_ApiKey } secret } errors { __typename ... ApiNotFoundError ... WorkspaceNotFound ... PersonalWorkspaceNotSupportedError ... ValidationError ... RoleNotFoundError ... Error } } } fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { id ... ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment Error on Error { message } fragment WorkspaceNotFound on WorkspaceNotFound { __typename message workspaceId ... Error } fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { __typename message ... Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ... Error } fragment RoleNotFoundError on RoleNotFoundError { __typename message roleId ... Error }","a24d78b046297512641b7986814774c1":"mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { uploadFusionSubgraph(input: $input) { __typename fusionSubgraphVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... DuplicatedTagError ... ConcurrentOperationError ... InvalidFusionSourceSchemaArchiveError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { message }","a2a2d861eabc2d4a6f484b396c3e3c8e":"query ListClientCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { clients(after: $after, first: $first) { __typename edges { __typename cursor node { __typename id name ... ClientDetailPrompt_Client } } pageInfo { __typename ... PageInfo } } } } } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","a3671e2d4b62aff1e485a32569cbd2e3":"mutation CreateMockSchema($apiId: ID!, $baseSchemaFile: Upload!, $downstreamUrl: String!, $extensionsSchemaFile: Upload!, $name: String!) { createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { __typename mockSchema { __typename id ... MockSchemaDetailPrompt } errors { __typename ... ApiNotFoundError ... MockSchemaNonUniqueNameError ... UnauthorizedOperation ... ValidationError ... Error } } } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment Error on Error { message } fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { __typename message name ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ... Error }","a87294003c8142e3996f1398a866c64f":"mutation DeleteMcpFeatureCollectionByIdCommandMutation($input: DeleteMcpFeatureCollectionByIdInput!) { deleteMcpFeatureCollectionById(input: $input) { __typename mcpFeatureCollection { __typename ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection } errors { __typename ... Error ... McpFeatureCollectionNotFoundError ... UnauthorizedOperation } } } fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { name id ... McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment Error on Error { message } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }","a99c8cea1f4c187c4b1a8f615aa22fac":"query SelectApiPromptQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apis(after: $after, first: $first) { __typename edges { __typename ... SelectApiPrompt_ApiEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectApiPrompt_ApiEdge on ApisEdge { cursor node { __typename ... SelectApiPrompt_Api } } fragment SelectApiPrompt_Api on Api { id name path ... ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","ba70847f71df37bf6b676e2c4ef91570":"mutation CreateMcpFeatureCollectionCommandMutation($input: CreateMcpFeatureCollectionInput!) { createMcpFeatureCollection(input: $input) { __typename mcpFeatureCollection { __typename ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection } errors { __typename ... Error ... ApiNotFoundError ... UnauthorizedOperation } } } fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { name id ... McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }","bb47ed5730c7751c64b0f1fdcc3f0bf5":"query SetDefaultWorkspaceCommand_SelectWorkspace_Query($after: String, $first: Int) { me { __typename workspaces(after: $after, first: $first) { __typename edges { __typename cursor node { __typename ... SetDefaultWorkspaceCommand_Workspace } } pageInfo { __typename ... PageInfo } } } } fragment SetDefaultWorkspaceCommand_Workspace on Workspace { id name personal } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","bd8cf591a522bbf497338c1f143f203d":"mutation UploadSchema($input: UploadSchemaInput!) { uploadSchema(input: $input) { __typename schemaVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... DuplicatedTagError ... ConcurrentOperationError ... ApiNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error }","bf8efb75f96a146224e816ce18c29e4a":"mutation PublishOpenApiCollectionCommandMutation($input: PublishOpenApiCollectionInput!) { publishOpenApiCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... OpenApiCollectionNotFoundError ... OpenApiCollectionVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error } fragment OpenApiCollectionVersionNotFoundError on OpenApiCollectionVersionNotFoundError { tag message openApiCollectionId ... Error }","bf9391b6c3d81cd1d134abd99df1d69a":"subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { __typename ... OpenApiCollectionVersionPublishFailed ... OpenApiCollectionVersionPublishSuccess ... OperationInProgress ... WaitForApproval ... ProcessingTaskApproved ... ProcessingTaskIsReady ... ProcessingTaskIsQueued } } fragment OpenApiCollectionVersionPublishFailed on OpenApiCollectionVersionPublishFailed { state errors { __typename ... UnexpectedProcessingError ... ProcessingTimeoutError ... ConcurrentOperationError ... OpenApiCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment OpenApiCollectionVersionPublishSuccess on OpenApiCollectionVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... SchemaDeployment ... ClientDeployment ... FusionConfigurationDeployment ... OpenApiCollectionDeployment ... McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ... TypeSystemMemberAddedChange ... TypeSystemMemberRemovedChange ... ObjectModifiedChange ... InputObjectModifiedChange ... DirectiveModifiedChange ... ScalarModifiedChange ... EnumModifiedChange ... UnionModifiedChange ... InterfaceModifiedChange ... SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ... SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ... SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ... SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ... SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ... SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ... SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ... SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... ArgumentRemoved ... ArgumentAdded ... ArgumentChanged ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ... SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ... SchemaChange coordinate severity name __typename changes { __typename ... DescriptionChanged ... DeprecatedChange ... TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ... SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ... SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ... SchemaChange coordinate severity fieldName changes { __typename ... DescriptionChanged ... TypeChanged ... DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DirectiveLocationAdded ... DirectiveLocationRemoved ... DescriptionChanged ... ArgumentRemoved ... ArgumentChanged ... ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ... SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ... SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... EnumValueRemoved ... EnumValueAdded ... EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ... SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ... SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ... SchemaChange coordinate severity changes { __typename ... DeprecatedChange ... DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... DescriptionChanged ... UnionMemberRemoved ... UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ... SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ... SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ... SchemaChange coordinate severity __typename changes { __typename ... InterfaceImplementationAdded ... InterfaceImplementationRemoved ... DescriptionChanged ... FieldAddedChange ... FieldRemovedChange ... OutputFieldChanged ... PossibleTypeAdded ... PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ... SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ... SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ClientDeployment on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","c46bc0ec07d6718f937f666a59f957b0":"query ShowWorkspaceCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ... WorkspaceDetailPrompt_Workspace } } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal }","c6d62ca62c529e9795322ced95b5c1a8":"mutation UnpublishClient($input: UnpublishClientInput!) { unpublishClient(input: $input) { __typename clientVersion { __typename id client { __typename name } } errors { __typename ... ConcurrentOperationError ... StageNotFoundError ... ClientVersionNotFoundError ... UnauthorizedOperation ... ClientNotFoundError ... Error } } } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientVersionNotFoundError on ClientVersionNotFoundError { tag message clientId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error }","cac7b1f4800fb9c9c07bed47c5bbd775":"query SelectOpenApiCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename openApiCollections(after: $after, first: $first) { __typename edges { __typename ... SelectOpenApiCollectionPrompt_OpenApiCollectionEdge } pageInfo { __typename ... PageInfo } } } } fragment SelectOpenApiCollectionPrompt_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { cursor node { __typename ... SelectOpenApiCollectionPrompt_OpenApiCollection } } fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { id name ... OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","cbc95daacec1d269d959c9a30acedb18":"mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { pushWorkspaceChanges(input: { changes: [{ environment: { create: { name: $name, referenceId: \u0022env\u0022, workspaceId: $workspaceId } } }] }) { __typename changes { __typename referenceId error { __typename ... Error } result { __typename ... CreateEnvironmentCommandMutation_Environment } } errors { __typename ... Error } } } fragment Error on Error { message } fragment CreateEnvironmentCommandMutation_Environment on Environment { name ... EnvironmentDetailPrompt_Environment } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } }","cd98258e9a04da627abb631685b299df":"query ListOpenApiCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { openApiCollections(first: $first, after: $after) { __typename edges { __typename ... ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge } pageInfo { __typename ... PageInfo } } } } } fragment ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { cursor node { __typename ... ListOpenApiCollectionCommandQuery_OpenApiCollection } } fragment ListOpenApiCollectionCommandQuery_OpenApiCollection on OpenApiCollection { id name ... OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","d2cc1b6089c0354e5f8addda5f6d5b56":"query PageClientVersionDetailQuery($id: ID!, $after: String!) { node(id: $id) { __typename ... on Client { versions(first: 10, after: $after) { __typename pageInfo { __typename hasNextPage endCursor } edges { __typename ... ClientDetailPrompt_ClientVersionEdge } } } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } }","dff3ece7aa10daff0067410c52faf6d7":"mutation DeleteApiCommandMutation($apiId: ID!) { deleteApiById(input: { apiId: $apiId }) { __typename api { __typename name ... ApiDetailPrompt_Api } errors { __typename ... Error } } } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment Error on Error { message }","e460f497fd49f63b41a11a0caf5b839e":"mutation PublishMcpFeatureCollectionCommandMutation($input: PublishMcpFeatureCollectionInput!) { publishMcpFeatureCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... StageNotFoundError ... McpFeatureCollectionNotFoundError ... McpFeatureCollectionVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error } fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { tag message mcpFeatureCollectionId ... Error }","e7828352aef7a0d78376c52b11a5f54e":"mutation DeleteOpenApiCollectionByIdCommandMutation($input: DeleteOpenApiCollectionByIdInput!) { deleteOpenApiCollectionById(input: $input) { __typename openApiCollection { __typename ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection } errors { __typename ... Error ... OpenApiCollectionNotFoundError ... UnauthorizedOperation } } } fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { name id ... OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment Error on Error { message } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }","eaeac9ef60d35adedb9a860de9f5f51d":"mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { validateSchema(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... ApiNotFoundError ... StageNotFoundError ... SchemaNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ... Error }","f09d08ca218792bbc882c78f0db72836":"mutation ForceDeleteStageByApiIdCommandMutation($input: ForceDeleteStageByApiIdInput!) { forceDeleteStageByApiId(input: $input) { __typename api { __typename stages { __typename ... StageDetailPrompt_Stage } } errors { __typename ... Error ... ApiNotFoundError ... StageNotFoundError ... UnauthorizedOperation } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ... StageCondition } } fragment StageCondition on StageCondition { ... AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }","f450cfe13d84ae3c3768bac9c9fbf8b4":"mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { deleteClientById(input: $input) { __typename client { __typename ... DeleteClientByIdCommandMutation_Client } errors { __typename ... Error ... ClientNotFoundError ... UnauthorizedOperation } } } fragment DeleteClientByIdCommandMutation_Client on Client { name id ... ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ... ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment Error on Error { message } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error }","f8c29ad7ac636836aada903ed7b4e9f3":"subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { __typename ... OpenApiCollectionVersionValidationFailed ... OpenApiCollectionVersionValidationSuccess ... OperationInProgress ... ValidationInProgress } } fragment OpenApiCollectionVersionValidationFailed on OpenApiCollectionVersionValidationFailed { state errors { __typename ... ProcessingTimeoutError ... UnexpectedProcessingError ... OpenApiCollectionValidationError ... OpenApiCollectionValidationArchiveError } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ... OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ... OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... OpenApiCollectionValidationEndpoint ... OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment OpenApiCollectionValidationArchiveError on OpenApiCollectionValidationArchiveError { message } fragment OpenApiCollectionVersionValidationSuccess on OpenApiCollectionVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","fd7aa538673131f16cd54fe2aec5b00d":"mutation UploadMcpFeatureCollectionCommandMutation($input: UploadMcpFeatureCollectionInput!) { uploadMcpFeatureCollection(input: $input) { __typename mcpFeatureCollectionVersion { __typename id } errors { __typename ... UnauthorizedOperation ... InvalidSourceMetadataInputError ... McpFeatureCollectionNotFoundError ... InvalidMcpFeatureCollectionArchiveError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error } fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error }","fd942dedfe5e376385ae72436c97104a":"mutation CommitFusionConfigurationPublish($input: CommitFusionConfigurationPublishInput!) { commitFusionConfigurationPublish(input: $input) { __typename errors { __typename ... UnauthorizedOperation ... FusionConfigurationRequestNotFoundError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ... Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ... Error }","fe2972801aa1d2abcc74cd8414984de2":"subscription ValidateMcpFeatureCollectionCommandSubscription($requestId: ID!) { onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { __typename ... McpFeatureCollectionVersionValidationFailed ... McpFeatureCollectionVersionValidationSuccess ... OperationInProgress ... ValidationInProgress } } fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { state errors { __typename ... ProcessingTimeoutError ... UnexpectedProcessingError ... McpFeatureCollectionValidationError ... McpFeatureCollectionValidationArchiveError } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ... McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ... McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... McpFeatureCollectionValidationPrompt ... McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { message } fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","ff9fd00b5a96ac47f6aa413a425337d9":"query ListStagesQuery($apiId: ID!) { node(id: $apiId) { __typename ... on Api { stages { __typename id name displayName ... StageDetailPrompt_Stage } } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ... StageCondition } } fragment StageCondition on StageCondition { ... AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } }"} \ No newline at end of file +{"034b954a7bdc2b82523236e0fb9274dc":"mutation ValidateMcpFeatureCollectionCommandMutation($input: ValidateMcpFeatureCollectionInput!) { validateMcpFeatureCollection(input: $input) { __typename id errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...StageNotFoundError ...McpFeatureCollectionNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ...Error }","04dc2966f6e31ef4aa9f0e54b84b105b":"query SelectOpenApiCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename openApiCollections(after: $after, first: $first) { __typename edges { __typename ...SelectOpenApiCollectionPrompt_OpenApiCollectionEdge } pageInfo { __typename ...PageInfo } } } } fragment SelectOpenApiCollectionPrompt_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { cursor node { __typename ...SelectOpenApiCollectionPrompt_OpenApiCollection } } fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { id name ...OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","069660299554e65bfccf95611934f155":"mutation DeleteOpenApiCollectionByIdCommandMutation($input: DeleteOpenApiCollectionByIdInput!) { deleteOpenApiCollectionById(input: $input) { __typename openApiCollection { __typename ...DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection } errors { __typename ...Error ...OpenApiCollectionNotFoundError ...UnauthorizedOperation } } } fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { name id ...OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment Error on Error { message } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error }","0b62118a8025b07b5dbd103fcca1c74c":"mutation PublishOpenApiCollectionCommandMutation($input: PublishOpenApiCollectionInput!) { publishOpenApiCollection(input: $input) { __typename id errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...StageNotFoundError ...OpenApiCollectionNotFoundError ...OpenApiCollectionVersionNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ...Error } fragment OpenApiCollectionVersionNotFoundError on OpenApiCollectionVersionNotFoundError { tag message openApiCollectionId ...Error }","0ea0684e03b71be18834680e140dc78b":"query ShowApiCommandQuery($apiId: ID!) { node(id: $apiId) { __typename ...ApiDetailPrompt_Api } } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } }","10e86b61553643e84fee0aadd815b253":"query ListEnvironmentCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename environments(after: $after, first: $first) { __typename edges { __typename ...ListEnvironmentCommand_EnvironmentEdge } pageInfo { __typename ...PageInfo } } } } fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { cursor node { __typename ...ListEnvironmentCommand_Environment } } fragment ListEnvironmentCommand_Environment on Environment { id name ...EnvironmentDetailPrompt_Environment } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","20825e3570c4360eb9a194378f9f3b66":"subscription ValidateOpenApiCollectionCommandSubscription($requestId: ID!) { onOpenApiCollectionVersionValidationUpdate(requestId: $requestId) { __typename ...OpenApiCollectionVersionValidationFailed ...OpenApiCollectionVersionValidationSuccess ...OperationInProgress ...ValidationInProgress } } fragment OpenApiCollectionVersionValidationFailed on OpenApiCollectionVersionValidationFailed { state errors { __typename ...ProcessingTimeoutError ...UnexpectedProcessingError ...OpenApiCollectionValidationError ...OpenApiCollectionValidationArchiveError } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ...OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ...OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ...OpenApiCollectionValidationDocumentError ...OpenApiCollectionValidationEntityValidationError } ...OpenApiCollectionValidationEndpoint ...OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment OpenApiCollectionValidationArchiveError on OpenApiCollectionValidationArchiveError { message } fragment OpenApiCollectionVersionValidationSuccess on OpenApiCollectionVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","21e2885367beae6b8bb032fc34666b2f":"query ListPersonalAccessTokenCommandQuery($after: String, $first: Int) { me { __typename personalAccessTokens(after: $after, first: $first) { __typename edges { __typename ...ListPersonalAccessTokenCommand_PersonalAccessTokenEdge } pageInfo { __typename ...PageInfo } } } } fragment ListPersonalAccessTokenCommand_PersonalAccessTokenEdge on PersonalAccessTokensEdge { cursor node { __typename ...ListPersonalAccessTokenCommand_PersonalAccessToken } } fragment ListPersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { id description expiresAt createdAt ...PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","27a826eab8d2159e07d65c6292a8a11f":"query ListMcpFeatureCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { mcpFeatureCollections(first: $first, after: $after) { __typename edges { __typename ...ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge } pageInfo { __typename ...PageInfo } } } } } fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { cursor node { __typename ...ListMcpFeatureCollectionCommandQuery_McpFeatureCollection } } fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { id name ...McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","2d9b6713c872d9c0917d0f85f53eeb24":"subscription OnSchemaVersionPublishUpdated($requestId: ID!) { onSchemaVersionPublishingUpdate(requestId: $requestId) { __typename ...SchemaVersionPublishFailed ...SchemaVersionPublishSuccess ...OperationInProgress ...WaitForApproval ...ProcessingTaskApproved ...ProcessingTaskIsReady ...ProcessingTaskIsQueued } } fragment SchemaVersionPublishFailed on SchemaVersionPublishFailed { __typename state errors { __typename ...ConcurrentOperationError ...OperationsAreNotAllowedError ...SchemaVersionSyntaxError ...SchemaVersionChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...UnexpectedProcessingError ...ProcessingTimeoutError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error } fragment Error on Error { message } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ...SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ...TypeSystemMemberAddedChange ...TypeSystemMemberRemovedChange ...ObjectModifiedChange ...InputObjectModifiedChange ...DirectiveModifiedChange ...ScalarModifiedChange ...EnumModifiedChange ...UnionModifiedChange ...InterfaceModifiedChange ...SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ...SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ...SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ...SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ...SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ...SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ...SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ...SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...ArgumentRemoved ...ArgumentAdded ...ArgumentChanged ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ...SchemaChange coordinate severity name __typename changes { __typename ...DescriptionChanged ...DeprecatedChange ...TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ...SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ...SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DirectiveLocationAdded ...DirectiveLocationRemoved ...DescriptionChanged ...ArgumentRemoved ...ArgumentChanged ...ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ...SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ...SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...EnumValueRemoved ...EnumValueAdded ...EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ...SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ...SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ...SchemaChange coordinate severity changes { __typename ...DeprecatedChange ...DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...UnionMemberRemoved ...UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ...SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ...SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged ...PossibleTypeAdded ...PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ...SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ...SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ...OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ...OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ...OpenApiCollectionValidationDocumentError ...OpenApiCollectionValidationEntityValidationError } ...OpenApiCollectionValidationEndpoint ...OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ...McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ...McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ...McpFeatureCollectionValidationDocumentError ...McpFeatureCollectionValidationEntityValidationError } ...McpFeatureCollectionValidationPrompt ...McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment SchemaVersionPublishSuccess on SchemaVersionPublishSuccess { __typename state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ...SchemaDeployment ...ClientDeployment ...FusionConfigurationDeployment ...OpenApiCollectionDeployment ...McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ...OperationsAreNotAllowedError ...SchemaVersionSyntaxError ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ...SchemaChangeLogEntry } } fragment ClientDeployment on ClientDeployment { errors { __typename ...PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ...OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ...McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","30fb53190a948165e729d865e5829706":"mutation CreateEnvironmentCommandMutation($workspaceId: ID!, $name: String!) { pushWorkspaceChanges(input: { changes: [{ environment: { create: { name: $name, referenceId: \u0022env\u0022, workspaceId: $workspaceId } } }] }) { __typename changes { __typename referenceId error { __typename ...Error } result { __typename ...CreateEnvironmentCommandMutation_Environment } } errors { __typename ...Error } } } fragment Error on Error { message } fragment CreateEnvironmentCommandMutation_Environment on Environment { name ...EnvironmentDetailPrompt_Environment } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } }","3310d38f716797b6a0caaf3f2ff0cc96":"mutation BeginFusionConfigurationPublish($input: BeginFusionConfigurationPublishInput!) { beginFusionConfigurationPublish(input: $input) { __typename requestId errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...StageNotFoundError ...ApiNotFoundError ...SubgraphInvalidError ...InvalidProcessingStateTransitionError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment SubgraphInvalidError on SubgraphInvalidError { __typename message ...Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ...Error }","3512e0a50b4aa97928f2d6ae20efde7a":"subscription PublishOpenApiCollectionCommandSubscription($requestId: ID!) { onOpenApiCollectionVersionPublishingUpdate(requestId: $requestId) { __typename ...OpenApiCollectionVersionPublishFailed ...OpenApiCollectionVersionPublishSuccess ...OperationInProgress ...WaitForApproval ...ProcessingTaskApproved ...ProcessingTaskIsReady ...ProcessingTaskIsQueued } } fragment OpenApiCollectionVersionPublishFailed on OpenApiCollectionVersionPublishFailed { state errors { __typename ...UnexpectedProcessingError ...ProcessingTimeoutError ...ConcurrentOperationError ...OpenApiCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error } fragment Error on Error { message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ...OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ...OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ...OpenApiCollectionValidationDocumentError ...OpenApiCollectionValidationEntityValidationError } ...OpenApiCollectionValidationEndpoint ...OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment OpenApiCollectionVersionPublishSuccess on OpenApiCollectionVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ...SchemaDeployment ...ClientDeployment ...FusionConfigurationDeployment ...OpenApiCollectionDeployment ...McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ...OperationsAreNotAllowedError ...SchemaVersionSyntaxError ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ...SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ...TypeSystemMemberAddedChange ...TypeSystemMemberRemovedChange ...ObjectModifiedChange ...InputObjectModifiedChange ...DirectiveModifiedChange ...ScalarModifiedChange ...EnumModifiedChange ...UnionModifiedChange ...InterfaceModifiedChange ...SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ...SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ...SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ...SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ...SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ...SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ...SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ...SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...ArgumentRemoved ...ArgumentAdded ...ArgumentChanged ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ...SchemaChange coordinate severity name __typename changes { __typename ...DescriptionChanged ...DeprecatedChange ...TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ...SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ...SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DirectiveLocationAdded ...DirectiveLocationRemoved ...DescriptionChanged ...ArgumentRemoved ...ArgumentChanged ...ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ...SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ...SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...EnumValueRemoved ...EnumValueAdded ...EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ...SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ...SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ...SchemaChange coordinate severity changes { __typename ...DeprecatedChange ...DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...UnionMemberRemoved ...UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ...SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ...SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged ...PossibleTypeAdded ...PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ...SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ...SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ...McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ...McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ...McpFeatureCollectionValidationDocumentError ...McpFeatureCollectionValidationEntityValidationError } ...McpFeatureCollectionValidationPrompt ...McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ClientDeployment on ClientDeployment { errors { __typename ...PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ...OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ...McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","37d55f2306a46b1da2eb2c84fab4f061":"subscription OnClientVersionPublishUpdated($requestId: ID!) { onClientVersionPublishingUpdate(requestId: $requestId) { __typename ...ClientVersionPublishFailed ...ClientVersionPublishSuccess ...OperationInProgress ...WaitForApproval ...ProcessingTaskApproved ...ProcessingTaskIsReady ...ProcessingTaskIsQueued } } fragment ClientVersionPublishFailed on ClientVersionPublishFailed { state errors { __typename ...UnexpectedProcessingError ...ProcessingTimeoutError ...ConcurrentOperationError ...PersistedQueryValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error } fragment Error on Error { message } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment ClientVersionPublishSuccess on ClientVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ...SchemaDeployment ...ClientDeployment ...FusionConfigurationDeployment ...OpenApiCollectionDeployment ...McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ...OperationsAreNotAllowedError ...SchemaVersionSyntaxError ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ...SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ...TypeSystemMemberAddedChange ...TypeSystemMemberRemovedChange ...ObjectModifiedChange ...InputObjectModifiedChange ...DirectiveModifiedChange ...ScalarModifiedChange ...EnumModifiedChange ...UnionModifiedChange ...InterfaceModifiedChange ...SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ...SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ...SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ...SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ...SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ...SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ...SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ...SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...ArgumentRemoved ...ArgumentAdded ...ArgumentChanged ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ...SchemaChange coordinate severity name __typename changes { __typename ...DescriptionChanged ...DeprecatedChange ...TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ...SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ...SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DirectiveLocationAdded ...DirectiveLocationRemoved ...DescriptionChanged ...ArgumentRemoved ...ArgumentChanged ...ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ...SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ...SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...EnumValueRemoved ...EnumValueAdded ...EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ...SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ...SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ...SchemaChange coordinate severity changes { __typename ...DeprecatedChange ...DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...UnionMemberRemoved ...UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ...SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ...SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged ...PossibleTypeAdded ...PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ...SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ...SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ...OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ...OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ...OpenApiCollectionValidationDocumentError ...OpenApiCollectionValidationEntityValidationError } ...OpenApiCollectionValidationEndpoint ...OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ...McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ...McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ...McpFeatureCollectionValidationDocumentError ...McpFeatureCollectionValidationEntityValidationError } ...McpFeatureCollectionValidationPrompt ...McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ClientDeployment on ClientDeployment { errors { __typename ...PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ...OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ...McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","38af18860de2da2d0eac431daf63983f":"mutation ValidateFusionConfigurationPublish($input: ValidateFusionConfigurationCompositionInput!) { validateFusionConfigurationComposition(input: $input) { __typename errors { __typename ...UnauthorizedOperation ...FusionConfigurationRequestNotFoundError ...InvalidProcessingStateTransitionError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ...Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ...Error }","39e29eafb9c20e09b4a7fc89fc65438c":"query SelectApiPromptQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apis(after: $after, first: $first) { __typename edges { __typename ...SelectApiPrompt_ApiEdge } pageInfo { __typename ...PageInfo } } } } fragment SelectApiPrompt_ApiEdge on ApisEdge { cursor node { __typename ...SelectApiPrompt_Api } } fragment SelectApiPrompt_Api on Api { id name path ...ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","3ad2c4d970d9fe68dea48b300db3d5c2":"mutation CreateApiCommandMutation($workspaceId: ID!, $path: [String!]!, $name: String!, $kind: ApiKind) { pushWorkspaceChanges(input: { changes: [{ api: { create: { name: $name, path: $path, referenceId: \u0022api\u0022, workspaceId: $workspaceId, kind: $kind } } }] }) { __typename changes { __typename referenceId error { __typename ...Error } result { __typename ...CreateApiCommandMutation_Api } } errors { __typename ...Error } } } fragment Error on Error { message } fragment CreateApiCommandMutation_Api on Api { name ...ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } }","3ed4591af72cc65f507bdcf207b1c2de":"mutation CreateApiKeyCommandMutation($input: CreateApiKeyInput!) { createApiKey(input: $input) { __typename result { __typename key { __typename ...CreateApiKeyCommandMutation_ApiKey } secret } errors { __typename ...ApiNotFoundError ...WorkspaceNotFound ...PersonalWorkspaceNotSupportedError ...ValidationError ...RoleNotFoundError ...Error } } } fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { id ...ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment Error on Error { message } fragment WorkspaceNotFound on WorkspaceNotFound { __typename message workspaceId ...Error } fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { __typename message ...Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ...Error } fragment RoleNotFoundError on RoleNotFoundError { __typename message roleId ...Error }","3ed641cd3b607ce0233451f8292df7c8":"mutation UploadClient($input: UploadClientInput!) { uploadClient(input: $input) { __typename clientVersion { __typename id } errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...ClientNotFoundError ...DuplicatedTagError ...ConcurrentOperationError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ...Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ...Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error }","3fefaacf6e734fbd0d4a5f991db21689":"mutation PublishMcpFeatureCollectionCommandMutation($input: PublishMcpFeatureCollectionInput!) { publishMcpFeatureCollection(input: $input) { __typename id errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...StageNotFoundError ...McpFeatureCollectionNotFoundError ...McpFeatureCollectionVersionNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ...Error } fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { tag message mcpFeatureCollectionId ...Error }","46f17a4290cafa294558f9d2f6ad368e":"mutation UnpublishClient($input: UnpublishClientInput!) { unpublishClient(input: $input) { __typename clientVersion { __typename id client { __typename name } } errors { __typename ...ConcurrentOperationError ...StageNotFoundError ...ClientVersionNotFoundError ...UnauthorizedOperation ...ClientNotFoundError ...Error } } } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment ClientVersionNotFoundError on ClientVersionNotFoundError { tag message clientId ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ...Error }","47375b37dedffb465623098e4de93b91":"mutation ForceDeleteStageByApiIdCommandMutation($input: ForceDeleteStageByApiIdInput!) { forceDeleteStageByApiId(input: $input) { __typename api { __typename stages { __typename ...StageDetailPrompt_Stage } } errors { __typename ...Error ...ApiNotFoundError ...StageNotFoundError ...UnauthorizedOperation } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ...StageCondition } } fragment StageCondition on StageCondition { ...AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error }","4a43c30757df56561f664081f7e396aa":"query ListApiCommandQuery($workspaceId: ID!, $after: Version, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apis(after: $after, first: $first) { __typename edges { __typename ...ListApiCommand_ApiEdge } pageInfo { __typename ...PageInfo } } } } fragment ListApiCommand_ApiEdge on ApisEdge { cursor node { __typename ...ListApiCommand_Api } } fragment ListApiCommand_Api on Api { id name path ...ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","4ad9d943698d054e95a36afc07288aaa":"mutation UpdateStages($input: UpdateStagesInput!) { updateStages(input: $input) { __typename api { __typename stages { __typename ...StageDetailPrompt_Stage } } errors { __typename ...ApiNotFoundError ...StageNotFoundError ...StagesHavePublishedDependenciesError ...StageValidationError ...Error } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ...StageCondition } } fragment StageCondition on StageCondition { ...AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment StagesHavePublishedDependenciesError on StagesHavePublishedDependenciesError { __typename message stages { __typename name publishedSchema { __typename version { __typename tag } } publishedClients { __typename client { __typename name } publishedVersions { __typename version { __typename tag } } } } } fragment StageValidationError on StageValidationError { __typename message ...Error }","4b72fdf31ca2701bf6001a8f7211f740":"mutation UploadMcpFeatureCollectionCommandMutation($input: UploadMcpFeatureCollectionInput!) { uploadMcpFeatureCollection(input: $input) { __typename mcpFeatureCollectionVersion { __typename id } errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...McpFeatureCollectionNotFoundError ...InvalidMcpFeatureCollectionArchiveError ...DuplicatedTagError ...ConcurrentOperationError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ...Error } fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ...Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error }","4ceeaf878edd49cfcb678e7c9ce62af8":"mutation PublishSchemaVersion($input: PublishSchemaInput!) { publishSchema(input: $input) { __typename id errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...ApiNotFoundError ...StageNotFoundError ...SchemaNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ...Error }","52e3ec89850a6e90930cda465d3c0028":"mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { validateSchema(input: $input) { __typename id errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...ApiNotFoundError ...StageNotFoundError ...SchemaNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ...Error }","56b67ff5832a4eee4cc2c9b41645449a":"mutation CreateClientCommandMutation($input: CreateClientInput!) { createClient(input: $input) { __typename client { __typename ...CreateClientCommandMutation_Client } errors { __typename ...Error ...ApiNotFoundError ...UnauthorizedOperation ...DuplicateNameError } } } fragment CreateClientCommandMutation_Client on Client { name id ...ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ...ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment DuplicateNameError on DuplicateNameError { __typename message ...Error }","599cdfc271c083da34e4f8d8cbdf2988":"subscription ValidateMcpFeatureCollectionCommandSubscription($requestId: ID!) { onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { __typename ...McpFeatureCollectionVersionValidationFailed ...McpFeatureCollectionVersionValidationSuccess ...OperationInProgress ...ValidationInProgress } } fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { state errors { __typename ...ProcessingTimeoutError ...UnexpectedProcessingError ...McpFeatureCollectionValidationError ...McpFeatureCollectionValidationArchiveError } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ...McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ...McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ...McpFeatureCollectionValidationDocumentError ...McpFeatureCollectionValidationEntityValidationError } ...McpFeatureCollectionValidationPrompt ...McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { message } fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","5a761fdfad0074c3343c677f47143437":"subscription OnClientVersionValidationUpdated($requestId: ID!) { onClientVersionValidationUpdate(requestId: $requestId) { __typename ...ClientVersionValidationFailed ...ClientVersionValidationSuccess ...OperationInProgress ...ValidationInProgress } } fragment ClientVersionValidationFailed on ClientVersionValidationFailed { state errors { __typename ...PersistedQueryValidationError ...ProcessingTimeoutError ...UnexpectedProcessingError } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ClientVersionValidationSuccess on ClientVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","5e554e6ab701dcaa625bd0ad5d07879e":"query SelectMcpFeatureCollectionPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mcpFeatureCollections(after: $after, first: $first) { __typename edges { __typename ...SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge } pageInfo { __typename ...PageInfo } } } } fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { cursor node { __typename ...SelectMcpFeatureCollectionPrompt_McpFeatureCollection } } fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { id name ...McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","60a06cbe1829322754f958ed97e8db69":"mutation UploadSchema($input: UploadSchemaInput!) { uploadSchema(input: $input) { __typename schemaVersion { __typename id } errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...DuplicatedTagError ...ConcurrentOperationError ...ApiNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ...Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error }","6399588510a1813f4429f57bb56267ed":"query SelectClientPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename clients(after: $after, first: $first) { __typename edges { __typename ...SelectClientPrompt_ClientEdge } pageInfo { __typename ...PageInfo } } } } fragment SelectClientPrompt_ClientEdge on ClientsEdge { cursor node { __typename ...SelectClientPrompt_Client } } fragment SelectClientPrompt_Client on Client { id name ...ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ...ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","6720f7621fe7d02b19295299149bf8d5":"query ListOpenApiCollectionCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { openApiCollections(first: $first, after: $after) { __typename edges { __typename ...ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge } pageInfo { __typename ...PageInfo } } } } } fragment ListOpenApiCollectionCommandQuery_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { cursor node { __typename ...ListOpenApiCollectionCommandQuery_OpenApiCollection } } fragment ListOpenApiCollectionCommandQuery_OpenApiCollection on OpenApiCollection { id name ...OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","67e9e3cbf535abf7922ff80655cf6d10":"mutation DeleteMcpFeatureCollectionByIdCommandMutation($input: DeleteMcpFeatureCollectionByIdInput!) { deleteMcpFeatureCollectionById(input: $input) { __typename mcpFeatureCollection { __typename ...DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection } errors { __typename ...Error ...McpFeatureCollectionNotFoundError ...UnauthorizedOperation } } } fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { name id ...McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment Error on Error { message } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error }","68ee21904180a19e10dbe3a73bf793df":"mutation CreateOpenApiCollectionCommandMutation($input: CreateOpenApiCollectionInput!) { createOpenApiCollection(input: $input) { __typename openApiCollection { __typename ...CreateOpenApiCollectionCommandMutation_OpenApiCollection } errors { __typename ...Error ...ApiNotFoundError ...UnauthorizedOperation ...DuplicateNameError } } } fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { name id ...OpenApiCollectionDetailPrompt_OpenApiCollection } fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { id name } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment DuplicateNameError on DuplicateNameError { __typename message ...Error }","69dc84f28a5e8c23004a138d5e8fe5d6":"subscription OnFusionConfigurationPublishingTaskChanged($requestId: ID!) { onFusionConfigurationPublishingTaskChanged(requestId: $requestId) { state __typename ...ProcessingTaskIsReady ...ProcessingTaskIsQueued ...FusionConfigurationPublishingSuccess ...FusionConfigurationPublishingFailed ...FusionConfigurationValidationSuccess ...FusionConfigurationValidationFailed ...ValidationInProgress ...OperationInProgress ...WaitForApproval ...ProcessingTaskApproved } } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition } fragment FusionConfigurationPublishingSuccess on FusionConfigurationPublishingSuccess { success: __typename } fragment FusionConfigurationPublishingFailed on FusionConfigurationPublishingFailed { failed: __typename errors { __typename message ...InvalidGraphQLSchemaError } } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment FusionConfigurationValidationSuccess on FusionConfigurationValidationSuccess { success: __typename changes { __typename ...SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ...TypeSystemMemberAddedChange ...TypeSystemMemberRemovedChange ...ObjectModifiedChange ...InputObjectModifiedChange ...DirectiveModifiedChange ...ScalarModifiedChange ...EnumModifiedChange ...UnionModifiedChange ...InterfaceModifiedChange ...SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ...SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ...SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ...SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ...SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ...SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ...SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ...SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...ArgumentRemoved ...ArgumentAdded ...ArgumentChanged ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ...SchemaChange coordinate severity name __typename changes { __typename ...DescriptionChanged ...DeprecatedChange ...TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ...SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ...SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DirectiveLocationAdded ...DirectiveLocationRemoved ...DescriptionChanged ...ArgumentRemoved ...ArgumentChanged ...ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ...SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ...SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...EnumValueRemoved ...EnumValueAdded ...EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ...SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ...SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ...SchemaChange coordinate severity changes { __typename ...DeprecatedChange ...DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...UnionMemberRemoved ...UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ...SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ...SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged ...PossibleTypeAdded ...PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ...SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ...SchemaChange typeName severity } fragment FusionConfigurationValidationFailed on FusionConfigurationValidationFailed { failed: __typename errors { __typename ...UnexpectedProcessingError ...PersistedQueryValidationError ...SchemaVersionChangeViolationError ...InvalidGraphQLSchemaError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ...SchemaChangeLogEntry } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ...OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ...OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ...OpenApiCollectionValidationDocumentError ...OpenApiCollectionValidationEntityValidationError } ...OpenApiCollectionValidationEndpoint ...OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ...McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ...McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ...McpFeatureCollectionValidationDocumentError ...McpFeatureCollectionValidationEntityValidationError } ...McpFeatureCollectionValidationPrompt ...McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment ValidationInProgress on ValidationInProgress { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ...SchemaDeployment ...ClientDeployment ...FusionConfigurationDeployment ...OpenApiCollectionDeployment ...McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ...OperationsAreNotAllowedError ...SchemaVersionSyntaxError ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ...SchemaChangeLogEntry } } fragment ClientDeployment on ClientDeployment { errors { __typename ...PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ...OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ...McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state }","6ecc0a13d76ca1bba6f293cfcf0a108a":"subscription OnSchemaVersionValidationUpdated($requestId: ID!) { onSchemaVersionValidationUpdate(requestId: $requestId) { __typename ...SchemaVersionValidationFailed ...SchemaVersionValidationSuccess ...OperationInProgress ...ValidationInProgress } } fragment SchemaVersionValidationFailed on SchemaVersionValidationFailed { state errors { __typename ...UnexpectedProcessingError ...ProcessingTimeoutError ...SchemaVersionSyntaxError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...SchemaVersionChangeViolationError ...OperationsAreNotAllowedError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { __typename changes { __typename ...SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ...TypeSystemMemberAddedChange ...TypeSystemMemberRemovedChange ...ObjectModifiedChange ...InputObjectModifiedChange ...DirectiveModifiedChange ...ScalarModifiedChange ...EnumModifiedChange ...UnionModifiedChange ...InterfaceModifiedChange ...SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ...SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ...SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ...SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ...SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ...SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ...SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ...SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...ArgumentRemoved ...ArgumentAdded ...ArgumentChanged ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ...SchemaChange coordinate severity name __typename changes { __typename ...DescriptionChanged ...DeprecatedChange ...TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ...SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ...SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DirectiveLocationAdded ...DirectiveLocationRemoved ...DescriptionChanged ...ArgumentRemoved ...ArgumentChanged ...ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ...SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ...SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...EnumValueRemoved ...EnumValueAdded ...EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ...SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ...SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ...SchemaChange coordinate severity changes { __typename ...DeprecatedChange ...DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...UnionMemberRemoved ...UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ...SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ...SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged ...PossibleTypeAdded ...PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ...SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ...SchemaChange typeName severity } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ...OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ...OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ...OpenApiCollectionValidationDocumentError ...OpenApiCollectionValidationEntityValidationError } ...OpenApiCollectionValidationEndpoint ...OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ...McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ...McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ...McpFeatureCollectionValidationDocumentError ...McpFeatureCollectionValidationEntityValidationError } ...McpFeatureCollectionValidationPrompt ...McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment SchemaVersionValidationSuccess on SchemaVersionValidationSuccess { state changes { __typename ...SchemaChangeLogEntry } } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","7285579dd02e02cb7953d0482a02c35f":"mutation SetApiSettingsCommandMutation($input: UpdateApiSettingsInput!) { updateApiSettings(input: $input) { __typename api { __typename ...SetApiSettingsCommandMutation_Api } errors { __typename ...ApiNotFoundError ...UnauthorizedOperation ...Error } } } fragment SetApiSettingsCommandMutation_Api on Api { name path ...SelectApiPrompt_Api } fragment SelectApiPrompt_Api on Api { id name path ...ApiDetailPrompt_Api } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment Error on Error { message } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error }","7a5bde75a9a169c6b00e3a7e3274a3cf":"query ShowClientCommandQuery($clientId: ID!) { node(id: $clientId) { __typename ...ClientDetailPrompt_Client } } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ...ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } }","7dfdaabc65fd10d14471021da5704c32":"query ListStagesQuery($apiId: ID!) { node(id: $apiId) { __typename ... on Api { stages { __typename id name displayName ...StageDetailPrompt_Stage } } } } fragment StageDetailPrompt_Stage on Stage { id name displayName conditions { __typename ...StageCondition } } fragment StageCondition on StageCondition { ...AfterStageCondition } fragment AfterStageCondition on AfterStageCondition { afterStage { __typename name } }","824be39d995156b2ef64a26a62e34af1":"mutation PublishClientVersion($input: PublishClientInput!) { publishClient(input: $input) { __typename id errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...StageNotFoundError ...ClientNotFoundError ...ClientVersionNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ...Error } fragment ClientVersionNotFoundError on ClientVersionNotFoundError { tag message clientId ...Error }","82c66f6a532c85a910b82fdfd48cca27":"query ListClientCommandQuery($apiId: ID!, $after: String, $first: Int) { node(id: $apiId) { __typename ... on Api { clients(after: $after, first: $first) { __typename edges { __typename cursor node { __typename id name ...ClientDetailPrompt_Client } } pageInfo { __typename ...PageInfo } } } } } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ...ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","8822eea5656a4952edfa28ce20ff5d16":"subscription PublishMcpFeatureCollectionCommandSubscription($requestId: ID!) { onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { __typename ...McpFeatureCollectionVersionPublishFailed ...McpFeatureCollectionVersionPublishSuccess ...OperationInProgress ...WaitForApproval ...ProcessingTaskApproved ...ProcessingTaskIsReady ...ProcessingTaskIsQueued } } fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersionPublishFailed { state errors { __typename ...UnexpectedProcessingError ...ProcessingTimeoutError ...ConcurrentOperationError ...McpFeatureCollectionValidationError } } fragment UnexpectedProcessingError on UnexpectedProcessingError { __typename message } fragment ProcessingTimeoutError on ProcessingTimeoutError { __typename message } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error } fragment Error on Error { message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename ...McpFeatureCollectionValidationCollection } } fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { mcpFeatureCollection { __typename id name } entities { __typename ...McpFeatureCollectionValidationEntity } } fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { errors { __typename ...McpFeatureCollectionValidationDocumentError ...McpFeatureCollectionValidationEntityValidationError } ...McpFeatureCollectionValidationPrompt ...McpFeatureCollectionValidationTool } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { name } fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { name } fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ...SchemaDeployment ...ClientDeployment ...FusionConfigurationDeployment ...OpenApiCollectionDeployment ...McpFeatureCollectionDeployment } } fragment SchemaDeployment on SchemaDeployment { errors { __typename ...OperationsAreNotAllowedError ...SchemaVersionSyntaxError ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { __typename message } fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { __typename message column position line } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ...SchemaChangeLogEntry } } fragment SchemaChangeLogEntry on SchemaChangeLogEntry { __typename ...TypeSystemMemberAddedChange ...TypeSystemMemberRemovedChange ...ObjectModifiedChange ...InputObjectModifiedChange ...DirectiveModifiedChange ...ScalarModifiedChange ...EnumModifiedChange ...UnionModifiedChange ...InterfaceModifiedChange ...SchemaChange } fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { ...SchemaChange coordinate severity __typename } fragment SchemaChange on SchemaChange { severity } fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { ...SchemaChange coordinate severity __typename } fragment ObjectModifiedChange on ObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged } } fragment InterfaceImplementationAdded on InterfaceImplementationAdded { ...SchemaChange interfaceName severity } fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { ...SchemaChange interfaceName severity } fragment DescriptionChanged on DescriptionChanged { ...SchemaChange old new severity __typename } fragment FieldAddedChange on FieldAddedChange { ...SchemaChange coordinate typeName fieldName severity } fragment FieldRemovedChange on FieldRemovedChange { ...SchemaChange coordinate typeName fieldName severity } fragment OutputFieldChanged on OutputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...ArgumentRemoved ...ArgumentAdded ...ArgumentChanged ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment ArgumentRemoved on ArgumentRemoved { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentAdded on ArgumentAdded { ...SchemaChange coordinate severity name typeName __typename } fragment ArgumentChanged on ArgumentChanged { ...SchemaChange coordinate severity name __typename changes { __typename ...DescriptionChanged ...DeprecatedChange ...TypeChanged } } fragment DeprecatedChange on DeprecatedChange { ...SchemaChange deprecationReason severity } fragment TypeChanged on TypeChanged { ...SchemaChange oldType newType severity __typename } fragment InputObjectModifiedChange on InputObjectModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...InputFieldChanged } } fragment InputFieldChanged on InputFieldChanged { ...SchemaChange coordinate severity fieldName changes { __typename ...DescriptionChanged ...TypeChanged ...DeprecatedChange } } fragment DirectiveModifiedChange on DirectiveModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DirectiveLocationAdded ...DirectiveLocationRemoved ...DescriptionChanged ...ArgumentRemoved ...ArgumentChanged ...ArgumentAdded } } fragment DirectiveLocationAdded on DirectiveLocationAdded { ...SchemaChange location severity __typename } fragment DirectiveLocationRemoved on DirectiveLocationRemoved { ...SchemaChange location severity __typename } fragment ScalarModifiedChange on ScalarModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged } } fragment EnumModifiedChange on EnumModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...EnumValueRemoved ...EnumValueAdded ...EnumValueChanged } } fragment EnumValueRemoved on EnumValueRemoved { ...SchemaChange coordinate severity } fragment EnumValueAdded on EnumValueAdded { ...SchemaChange coordinate severity } fragment EnumValueChanged on EnumValueChanged { ...SchemaChange coordinate severity changes { __typename ...DeprecatedChange ...DescriptionChanged } } fragment UnionModifiedChange on UnionModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...DescriptionChanged ...UnionMemberRemoved ...UnionMemberAdded } } fragment UnionMemberRemoved on UnionMemberRemoved { ...SchemaChange typeName severity } fragment UnionMemberAdded on UnionMemberAdded { ...SchemaChange typeName severity } fragment InterfaceModifiedChange on InterfaceModifiedChange { ...SchemaChange coordinate severity __typename changes { __typename ...InterfaceImplementationAdded ...InterfaceImplementationRemoved ...DescriptionChanged ...FieldAddedChange ...FieldRemovedChange ...OutputFieldChanged ...PossibleTypeAdded ...PossibleTypeRemoved } } fragment PossibleTypeAdded on PossibleTypeAdded { ...SchemaChange typeName severity } fragment PossibleTypeRemoved on PossibleTypeRemoved { ...SchemaChange typeName severity } fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { __typename message errors { __typename message code } } fragment PersistedQueryValidationError on PersistedQueryValidationError { message client { __typename id name } queries { __typename deployedTags message hash errors { __typename message code path locations { __typename column line } } } } fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { __typename ...OpenApiCollectionValidationCollection } } fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { openApiCollection { __typename id name } entities { __typename ...OpenApiCollectionValidationEntity } } fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { errors { __typename ...OpenApiCollectionValidationDocumentError ...OpenApiCollectionValidationEntityValidationError } ...OpenApiCollectionValidationEndpoint ...OpenApiCollectionValidationModel } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { httpMethod route } fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { name } fragment ClientDeployment on ClientDeployment { errors { __typename ...PersistedQueryValidationError } } fragment FusionConfigurationDeployment on FusionConfigurationDeployment { errors { __typename ...SchemaChangeViolationError ...InvalidGraphQLSchemaError ...PersistedQueryValidationError ...OpenApiCollectionValidationError ...McpFeatureCollectionValidationError } } fragment OpenApiCollectionDeployment on OpenApiCollectionDeployment { errors { __typename ...OpenApiCollectionValidationError } } fragment McpFeatureCollectionDeployment on McpFeatureCollectionDeployment { errors { __typename ...McpFeatureCollectionValidationError } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","883246456d7f688b4b338bea544263c3":"query SelectMockSchemaPromptQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mockSchemas(after: $after, first: $first) { __typename edges { __typename ...SelectMockCommand_MockEdge } pageInfo { __typename ...PageInfo } } } } fragment SelectMockCommand_MockEdge on MockSchemasEdge { cursor node { __typename ...SelectMockCommand_Mock } } fragment SelectMockCommand_Mock on MockSchema { id name ...MockSchemaDetailPrompt } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","905085434ac609917eefded220f6aaf2":"query SetDefaultWorkspaceCommand_SelectWorkspace_Query($after: String, $first: Int) { me { __typename workspaces(after: $after, first: $first) { __typename edges { __typename cursor node { __typename ...SetDefaultWorkspaceCommand_Workspace } } pageInfo { __typename ...PageInfo } } } } fragment SetDefaultWorkspaceCommand_Workspace on Workspace { id name personal } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","920381dec40d088256e2070d0d9fccf8":"query ListWorkspaceCommandQuery($after: String, $first: Int) { me { __typename workspaces(after: $after, first: $first) { __typename edges { __typename ...ListWorkspaceCommand_WorkspaceEdge } pageInfo { __typename ...PageInfo } } } } fragment ListWorkspaceCommand_WorkspaceEdge on WorkspacesEdge { cursor node { __typename ...ListWorkspaceCommand_Workspace } } fragment ListWorkspaceCommand_Workspace on Workspace { id name personal ...WorkspaceDetailPrompt_Workspace } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","9254faca3991f8a742500bc19b536f73":"mutation CreateMockSchema($apiId: ID!, $baseSchemaFile: Upload!, $downstreamUrl: String!, $extensionsSchemaFile: Upload!, $name: String!) { createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { __typename mockSchema { __typename id ...MockSchemaDetailPrompt } errors { __typename ...ApiNotFoundError ...MockSchemaNonUniqueNameError ...UnauthorizedOperation ...ValidationError ...Error } } } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment Error on Error { message } fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { __typename message name ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ...Error }","94c7550f677d23339a7ccf1d0cffcba5":"mutation DeleteApiCommandMutation($apiId: ID!) { deleteApiById(input: { apiId: $apiId }) { __typename api { __typename name ...ApiDetailPrompt_Api } errors { __typename ...Error } } } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } } fragment Error on Error { message }","94e392cf29081fc79bd64abfb50215b2":"mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { createWorkspace(input: $input) { __typename workspace { __typename id name ...WorkspaceDetailPrompt_Workspace } errors { __typename ...UnauthorizedOperation ...ValidationError ...Error } } } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment ValidationError on ValidationError { __typename message errors { __typename message } ...Error }","a5184fe6045704a79e9a87a59f358e6f":"mutation UploadOpenApiCollectionCommandMutation($input: UploadOpenApiCollectionInput!) { uploadOpenApiCollection(input: $input) { __typename openApiCollectionVersion { __typename id } errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...OpenApiCollectionNotFoundError ...InvalidOpenApiCollectionArchiveError ...DuplicatedTagError ...ConcurrentOperationError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ...Error } fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ...Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error }","a658b21324f2e38acc4a43d11ef5d41d":"query ShowEnvironmentCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ...EnvironmentDetailPrompt_Environment } } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } }","a7d38d70b218bc48bf6cb95643fc224d":"mutation CreatePersonalAccessTokenCommandMutation($input: CreatePersonalAccessTokenInput!) { createPersonalAccessToken(input: $input) { __typename result { __typename token { __typename ...CreatePersonalAccessTokenCommandMutation_PersonalAccessToken } secret } errors { __typename ...UnauthorizedOperation ...Error } } } fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { id ...PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message }","aba2f198be39d019412db93aaee0f32c":"mutation CommitFusionConfigurationPublish($input: CommitFusionConfigurationPublishInput!) { commitFusionConfigurationPublish(input: $input) { __typename errors { __typename ...UnauthorizedOperation ...FusionConfigurationRequestNotFoundError ...InvalidProcessingStateTransitionError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ...Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ...Error }","b5db8e0b48c71d85bd1c3770d5b99490":"mutation StartFusionConfigurationPublish($input: StartFusionConfigurationCompositionInput!) { startFusionConfigurationComposition(input: $input) { __typename errors { __typename ...UnauthorizedOperation ...FusionConfigurationRequestNotFoundError ...InvalidProcessingStateTransitionError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ...Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ...Error }","bb27bdf1dde4467fa9948d9d11ced00d":"mutation ValidateClientVersion($input: ValidateClientInput!) { validateClient(input: $input) { __typename id errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...StageNotFoundError ...ClientNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ...Error }","bc20864afd9f602197593bf6dd1ff2b9":"mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { uploadFusionSubgraph(input: $input) { __typename fusionSubgraphVersion { __typename id } errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...DuplicatedTagError ...ConcurrentOperationError ...InvalidFusionSourceSchemaArchiveError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ...Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ...Error } fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { message }","c3b0b7b02fba7f01d4eb4c788fbfa898":"mutation UpdateMockSchema($mockSchemaId: ID!, $baseSchemaFile: Upload, $downstreamUrl: String, $extensionsSchemaFile: Upload, $name: String) { updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { __typename mockSchema { __typename id ...MockSchemaDetailPrompt } errors { __typename ...MockSchemaNotFoundError ...MockSchemaNonUniqueNameError ...UnauthorizedOperation ...ValidationError ...Error } } } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment MockSchemaNotFoundError on MockSchemaNotFoundError { __typename message ...Error } fragment Error on Error { message } fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { __typename message name ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment ValidationError on ValidationError { __typename message errors { __typename message } ...Error }","c8f2d56d7e674b50d7af8bdc7722cf3b":"query ListMockCommandQuery($apiId: ID!, $after: String, $first: Int) { apiById(id: $apiId) { __typename mockSchemas(after: $after, first: $first) { __typename edges { __typename ...ListMockCommand_MockEdge } pageInfo { __typename ...PageInfo } } } } fragment ListMockCommand_MockEdge on MockSchemasEdge { cursor node { __typename ...ListMockCommand_Mock } } fragment ListMockCommand_Mock on MockSchema { id name ...MockSchemaDetailPrompt } fragment MockSchemaDetailPrompt on MockSchema { id name createdAt createdBy { __typename username } modifiedAt modifiedBy { __typename username } downstreamUrl url } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","cfd69c8f196180ce83e912ef8342b8f5":"mutation CreateMcpFeatureCollectionCommandMutation($input: CreateMcpFeatureCollectionInput!) { createMcpFeatureCollection(input: $input) { __typename mcpFeatureCollection { __typename ...CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection } errors { __typename ...Error ...ApiNotFoundError ...UnauthorizedOperation ...DuplicateNameError } } } fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { name id ...McpFeatureCollectionDetailPrompt_McpFeatureCollection } fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { id name } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment DuplicateNameError on DuplicateNameError { __typename message ...Error }","d9c9ca51cd26c49e6c70d5f914db867f":"query ListApiKeyCommandQuery($workspaceId: ID!, $after: String, $first: Int) { workspaceById(workspaceId: $workspaceId) { __typename apiKeys(after: $after, first: $first) { __typename edges { __typename ...ListApiKeyCommand_ApiKeyEdge } pageInfo { __typename ...PageInfo } } } } fragment ListApiKeyCommand_ApiKeyEdge on ApiKeysEdge { cursor node { __typename ...ListApiKeyCommand_ApiKey } } fragment ListApiKeyCommand_ApiKey on ApiKey { id name ...ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment PageInfo on PageInfo { hasPreviousPage hasNextPage endCursor startCursor }","e1693438c04325d315c3c5d35c930283":"mutation DeleteClientByIdCommandMutation($input: DeleteClientByIdInput!) { deleteClientById(input: $input) { __typename client { __typename ...DeleteClientByIdCommandMutation_Client } errors { __typename ...Error ...ClientNotFoundError ...UnauthorizedOperation } } } fragment DeleteClientByIdCommandMutation_Client on Client { name id ...ClientDetailPrompt_Client } fragment ClientDetailPrompt_Client on Client { id name api { __typename name path } versions { __typename edges { __typename ...ClientDetailPrompt_ClientVersionEdge } pageInfo { __typename hasNextPage endCursor } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } } fragment Error on Error { message } fragment ClientNotFoundError on ClientNotFoundError { message clientId ...Error } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error }","ec810f0d9ed01b6a485004f609913a9f":"query DeleteApiCommandQuery($apiId: ID!) { node(id: $apiId) { __typename ...DeleteApiCommandQuery_Api } } fragment DeleteApiCommandQuery_Api on Api { name version workspace { __typename id } }","f1049732f0f8a825f66efa03d9822d61":"query ShowWorkspaceCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ...WorkspaceDetailPrompt_Workspace } } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal }","f287f09481a7cedef576d565a0ee328d":"mutation ValidateOpenApiCollectionCommandMutation($input: ValidateOpenApiCollectionInput!) { validateOpenApiCollection(input: $input) { __typename id errors { __typename ...UnauthorizedOperation ...InvalidSourceMetadataInputError ...StageNotFoundError ...OpenApiCollectionNotFoundError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment InvalidSourceMetadataInputError on InvalidSourceMetadataInputError { __typename message ...Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ...Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ...Error }","f9572566cc8d2a23d5b84b6e007a8db7":"query PageClientVersionDetailQuery($id: ID!, $after: String!) { node(id: $id) { __typename ... on Client { versions(first: 10, after: $after) { __typename pageInfo { __typename hasNextPage endCursor } edges { __typename ...ClientDetailPrompt_ClientVersionEdge } } } } } fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { cursor node { __typename id createdAt tag publishedTo { __typename stage { __typename name } } } }","faabe0899189af13b0041fde08b660fa":"mutation CancelFusionConfigurationPublish($input: CancelFusionConfigurationCompositionInput!) { cancelFusionConfigurationComposition(input: $input) { __typename errors { __typename ...UnauthorizedOperation ...FusionConfigurationRequestNotFoundError ...InvalidProcessingStateTransitionError ...Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ...Error } fragment Error on Error { message } fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { __typename message ...Error } fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { __typename message ...Error }","fcaa17bc5d82a61a9984b6f3d5989eb7":"mutation DeleteApiKeyCommandMutation($input: DeleteApiKeyInput!) { deleteApiKey(input: $input) { __typename apiKey { __typename ...DeleteApiKeyCommand_ApiKey } errors { __typename ...ApiKeyNotFoundError ...Error } } } fragment DeleteApiKeyCommand_ApiKey on ApiKey { id ...ApiKeyDetailPrompt_ApiKey } fragment ApiKeyDetailPrompt_ApiKey on ApiKey { id name workspace { __typename name } } fragment ApiKeyNotFoundError on ApiKeyNotFoundError { __typename message apiKeyId ...Error } fragment Error on Error { message }","fd6810811811ffd810356773fca8d7b1":"mutation RevokePersonalAccessTokenCommandMutation($input: RevokePersonalAccessTokenInput!) { revokePersonalAccessToken(input: $input) { __typename personalAccessToken { __typename ...RevokePersonalAccessTokenCommand_PersonalAccessToken } errors { __typename ...PersonalAccessTokenNotFoundError ...Error } } } fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { id description ...PersonalAccessTokenDetailPrompt_PersonalAccessToken } fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { id description createdAt expiresAt } fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { __typename message ...Error } fragment Error on Error { message }"} \ No newline at end of file diff --git a/src/Nitro/Common/src/ChilliCream.Nitro.Client/schema.graphql b/src/Nitro/Common/src/ChilliCream.Nitro.Client/schema.graphql index cee8286f520..4b244b78603 100644 --- a/src/Nitro/Common/src/ChilliCream.Nitro.Client/schema.graphql +++ b/src/Nitro/Common/src/ChilliCream.Nitro.Client/schema.graphql @@ -4,7 +4,272 @@ schema { subscription: Subscription } -interface ApiChangeLog implements WorkspaceChangeLog { +type Query { + apiById(id: ID!): Api + fusionConfigurationByApiId(id: ID!, stage: String!): FusionConfiguration + me: Viewer + "Fetches an object given its ID." + node("ID of the object." id: ID!): Node + "Lookup nodes by a list of IDs." + nodes("The list of node IDs." ids: [ID!]!): [Node]! + openApiCollectionById(id: ID!): OpenApiCollection + organizationById(id: ID!): Organization + stageById(id: ID!): Stage + workspaceById(workspaceId: ID!): Workspace +} + +type Mutation { + approveDeployment(input: ApproveDeploymentInput!): ApproveDeploymentPayload! + beginFusionConfigurationPublish( + input: BeginFusionConfigurationPublishInput! + ): BeginFusionConfigurationPublishPayload! + cancelDeployment(input: CancelDeploymentInput!): CancelDeploymentPayload! + cancelFusionConfigurationComposition( + input: CancelFusionConfigurationCompositionInput! + ): CancelFusionConfigurationCompositionPayload! + commitFusionConfigurationPublish( + input: CommitFusionConfigurationPublishInput! + ): CommitFusionConfigurationPublishPayload! + createAccount: CreateAccountPayload! + createApiKey(input: CreateApiKeyInput!): CreateApiKeyPayload! + createApiKeyForApi( + input: CreateApiKeyForApiInput! + ): CreateApiKeyForApiPayload! + createClient(input: CreateClientInput!): CreateClientPayload! + createMcpFeatureCollection( + input: CreateMcpFeatureCollectionInput! + ): CreateMcpFeatureCollectionPayload! + createMockSchema(input: CreateMockSchemaInput!): CreateMockSchemaPayload! + createOpenApiCollection( + input: CreateOpenApiCollectionInput! + ): CreateOpenApiCollectionPayload! + createPersonalAccessToken( + input: CreatePersonalAccessTokenInput! + ): CreatePersonalAccessTokenPayload! + createWorkspace(input: CreateWorkspaceInput!): CreateWorkspacePayload! + deleteApiById(input: DeleteApiByIdInput!): DeleteApiByIdPayload! + deleteApiKey(input: DeleteApiKeyInput!): DeleteApiKeyPayload! + deleteClientById(input: DeleteClientByIdInput!): DeleteClientByIdPayload! + deleteMcpFeatureCollectionById( + input: DeleteMcpFeatureCollectionByIdInput! + ): DeleteMcpFeatureCollectionByIdPayload! + deleteMockSchemaById( + input: DeleteMockSchemaByIdInput! + ): DeleteMockSchemaByIdPayload! + deleteOpenApiCollectionById( + input: DeleteOpenApiCollectionByIdInput! + ): DeleteOpenApiCollectionByIdPayload! + ensureTunnelSession: EnsureTunnelSessionPayload! + forceDeleteStageByApiId( + input: ForceDeleteStageByApiIdInput! + ): ForceDeleteStageByApiIdPayload! + pollClientVersionPublishRequest( + input: PollClientVersionPublishRequestInput! + ): PollClientVersionPublishRequestPayload! + pollClientVersionValidationRequest( + input: PollClientVersionValidationRequestInput! + ): PollClientVersionValidationRequestPayload! + pollSchemaVersionPublishRequest( + input: PollSchemaVersionPublishRequestInput! + ): PollSchemaVersionPublishRequestPayload! + pollSchemaVersionValidationRequest( + input: PollSchemaVersionValidationRequestInput! + ): PollSchemaVersionValidationRequestPayload! + publishClient(input: PublishClientInput!): PublishClientPayload! + publishMcpFeatureCollection( + input: PublishMcpFeatureCollectionInput! + ): PublishMcpFeatureCollectionPayload! + publishOpenApiCollection( + input: PublishOpenApiCollectionInput! + ): PublishOpenApiCollectionPayload! + publishSchema(input: PublishSchemaInput!): PublishSchemaPayload! + pushDocumentChanges( + input: PushDocumentChangeInput! + ): PushDocumentChangesPayload! @deprecated(reason: "Use pushWorkspaceChanges") + pushWorkspaceChanges( + input: PushWorkspaceChangesInput! + ): PushWorkspaceChangesPayload! + removeWorkspace(input: RemoveWorkspaceInput!): RemoveWorkspacePayload! + renameWorkspace(input: RenameWorkspaceInput!): RenameWorkspacePayload! + revokePersonalAccessToken( + input: RevokePersonalAccessTokenInput! + ): RevokePersonalAccessTokenPayload! + setActiveWorkspace( + input: SetActiveWorkspaceInput! + ): SetActiveWorkspacePayload! + startFusionConfigurationComposition( + input: StartFusionConfigurationCompositionInput! + ): StartFusionConfigurationCompositionPayload! + unpublishClient(input: UnpublishClientInput!): UnpublishClientPayload! + updateApiSettings(input: UpdateApiSettingsInput!): UpdateApiSettingsPayload! + updateFeatureFlags( + input: UpdateFeatureFlagsInput! + ): UpdateFeatureFlagsPayload! + updateMockSchema(input: UpdateMockSchemaInput!): UpdateMockSchemaPayload! + updatePreferences(input: UpdatePreferencesInput!): UpdatePreferencesPayload! + updateStages(input: UpdateStagesInput!): UpdateStagesPayload! + updateThemeSettings( + input: UpdateThemeSettingsInput! + ): UpdateThemeSettingsPayload! + uploadClient(input: UploadClientInput!): UploadClientPayload! + uploadFusionSubgraph( + input: UploadFusionSubgraphInput! + ): UploadFusionSubgraphPayload! + uploadMcpFeatureCollection( + input: UploadMcpFeatureCollectionInput! + ): UploadMcpFeatureCollectionPayload! + uploadOpenApiCollection( + input: UploadOpenApiCollectionInput! + ): UploadOpenApiCollectionPayload! + uploadSchema(input: UploadSchemaInput!): UploadSchemaPayload! + validateClient(input: ValidateClientInput!): ValidateClientPayload! + validateFusionConfigurationComposition( + input: ValidateFusionConfigurationCompositionInput! + ): ValidateFusionConfigurationCompositionPayload! + validateMcpFeatureCollection( + input: ValidateMcpFeatureCollectionInput! + ): ValidateMcpFeatureCollectionPayload! + validateOpenApiCollection( + input: ValidateOpenApiCollectionInput! + ): ValidateOpenApiCollectionPayload! + validateSchema(input: ValidateSchemaInput!): ValidateSchemaPayload! +} + +type Subscription { + onClientVersionPublishingUpdate(requestId: ID!): ClientVersionPublishResult! + onClientVersionValidationUpdate( + requestId: ID! + ): ClientVersionValidationResult! + onFusionConfigurationPublishingTaskChanged( + requestId: ID! + ): FusionConfigurationPublishingResult! + onMcpFeatureCollectionVersionPublishingUpdate( + requestId: ID! + ): McpFeatureCollectionVersionPublishResult! + onMcpFeatureCollectionVersionValidationUpdate( + requestId: ID! + ): McpFeatureCollectionVersionValidationResult! + onOpenApiCollectionVersionPublishingUpdate( + requestId: ID! + ): OpenApiCollectionVersionPublishResult! + onOpenApiCollectionVersionValidationUpdate( + requestId: ID! + ): OpenApiCollectionVersionValidationResult! + onPersistedQueriesChanged( + apiId: ID! + stageName: String! + ): PersistedQueriesChanged! + @deprecated(reason: "Use `onStageChanged` instead.") + onSchemaVersionPublishingUpdate(requestId: ID!): SchemaVersionPublishResult! + onSchemaVersionValidationUpdate( + requestId: ID! + ): SchemaVersionValidationResult! + onStageChanged( + apiId: ID! + kind: [StageChangeKind!] + stageName: String! + ): StageChangedEvent! + onStageChangeLogAdded( + apiId: ID! + kind: [StageChangeLogKind!] + stageName: String! + ): StageChangeLog! + onStageDeploymentsChanged(stageId: ID!): DeploymentEvent! +} + +type AfterStageCondition { + afterStage: Stage +} + +type Api implements Node { + clients( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): ClientsConnection + createdAt: DateTime! + createdBy: UserInfo! + documents( + "Returns the elements in the list that come after the specified cursor." + after: Version + "Returns the first _n_ elements from the list." + first: Int + ): ApiDocumentConnection + httpConnection: ApiHttpConnection + id: ID! + kind: ApiKind + mcpFeatureCollections( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + search: String + ): ApiMcpFeatureCollectionsConnection + mockSchemas( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): MockSchemasConnection + modifiedAt: DateTime! + modifiedBy: UserInfo! + name: String! + openApiCollections( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + search: String + ): ApiOpenApiCollectionsConnection + openApiCollectionVersions( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): ApiOpenApiCollectionVersionsConnection + operations( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): OperationsConnection + path: [String!]! + referenceName: String! + schemaVersions( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): SchemaVersionsConnection + settings: ApiSettings! + stages: [Stage!]! + version: Version! + workspace: Workspace +} + +type ApiChanged implements ApiChangeLog & WorkspaceChangeLog { + api(onlyIfLatest: Boolean): Api apiId: ID! changedAt: DateTime! changedBy: UserInfo! @@ -15,11 +280,11 @@ interface ApiChangeLog implements WorkspaceChangeLog { workspaceId: ID! } -interface ApiDocumentChangeLog implements WorkspaceChangeLog { +type ApiCreated implements ApiChangeLog & WorkspaceChangeLog { + api(onlyIfLatest: Boolean): Api apiId: ID! changedAt: DateTime! changedBy: UserInfo! - documentId: ID! id: ID! name: String! path: [String!]! @@ -27,45 +292,63 @@ interface ApiDocumentChangeLog implements WorkspaceChangeLog { workspaceId: ID! } -interface ClientVersionPublishError { - message: String! -} - -interface ClientVersionPublishResult { - state: ProcessingState! +type ApiDeleted implements ApiChangeLog & WorkspaceChangeLog { + api(onlyIfLatest: Boolean): Api + apiId: ID! + changedAt: DateTime! + changedBy: UserInfo! + id: ID! + name: String! + path: [String!]! + version: Version! + workspaceId: ID! } -interface ClientVersionValidationError { +type ApiDeletionFailedError implements Error { + apiId: ID! message: String! } -interface ClientVersionValidationResult { - state: ProcessingState! -} - -interface CoordinateMetrics { - clientUsage(clientId: ID from: DateTime! to: DateTime!): CoordinateClientUsage - clientUsages(from: DateTime! to: DateTime!): [CoordinateClientUsage!]! - requests(from: DateTime! resolution: Int! = 300 to: DateTime!): CoordinateRequestGraph - usages(from: DateTime! resolution: Int! = 300 to: DateTime!): CoordinateUsageGraph +type ApiDocument implements Node { + api: Api + body: String! + createdAt: DateTime! + createdBy: UserInfo! + id: ID! + modifiedAt: DateTime! + modifiedBy: UserInfo! + name: String! + path: [String!]! + variables: String + version: Version! } -interface Deployment { - approval: DeploymentApproval - createdAt: DateTime! +type ApiDocumentChanged implements ApiDocumentChangeLog & WorkspaceChangeLog { + apiDocument(onlyIfLatest: Boolean): ApiDocument + apiId: ID! + changedAt: DateTime! + changedBy: UserInfo! + documentId: ID! id: ID! - logs: [DeploymentLog!]! - source: SourceMetadata - status: DeploymentStatus! - tag: String! + name: String! + path: [String!]! + version: Version! + workspaceId: ID! } -interface DeploymentLog { - message: String! - timestamp: DateTime! +"A connection to a list of items." +type ApiDocumentConnection { + "A list of edges." + edges: [ApiDocumentEdge!] + "A flattened list of the nodes." + nodes: [ApiDocument!] + "Information to aid in pagination." + pageInfo: PageInfo! } -interface DocumentChangeLog implements WorkspaceChangeLog { +type ApiDocumentCreated implements ApiDocumentChangeLog & WorkspaceChangeLog { + apiDocument(onlyIfLatest: Boolean): ApiDocument + apiId: ID! changedAt: DateTime! changedBy: UserInfo! documentId: ID! @@ -76,2157 +359,2110 @@ interface DocumentChangeLog implements WorkspaceChangeLog { workspaceId: ID! } -interface EnvironmentChangeLog implements WorkspaceChangeLog { +type ApiDocumentDeleted implements ApiDocumentChangeLog & WorkspaceChangeLog { + apiDocument(onlyIfLatest: Boolean): ApiDocument + apiId: ID! changedAt: DateTime! changedBy: UserInfo! - environmentId: ID! + documentId: ID! id: ID! name: String! + path: [String!]! version: Version! workspaceId: ID! } -interface Error { - message: String! +"An edge in a connection." +type ApiDocumentEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: ApiDocument! } -interface FusionConfigurationPublishingError { - message: String! +"A connection to a list of items." +type ApiDocumentsConnection { + "A list of edges." + edges: [ApiDocumentsEdge!] + "A flattened list of the nodes." + nodes: [ApiDocument!] + "Information to aid in pagination." + pageInfo: PageInfo! } -interface FusionConfigurationPublishingResult { - state: ProcessingState! +"An edge in a connection." +type ApiDocumentsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: ApiDocument! } -interface FusionConfigurationValidationError { - message: String! +type ApiHeader { + enabled: Boolean! + name: String! + value: String! } -interface GraphQLInputValueDefinition implements GraphQLTypeSystemMember { - coordinate: String! - id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! - usage(from: DateTime to: DateTime): CoordinateUsage! +type ApiHttpAuthentication { + activeAuthenticationKind: String! + basicOptions: BasicAuthenticationFlowOptions + bearerOptions: BearerAuthenticationFlowOptions + oAuth2Options: OAuth2AuthenticationFlowOptions } -interface GraphQLOutputFieldArgumentDefinition implements GraphQLTypeSystemMember & GraphQLInputValueDefinition { - coordinate: String! - declaringField: String! - declaringType: String! - id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! +type ApiHttpConnection { + authentication: ApiHttpAuthentication + endpoint: String! + headers: [ApiHeader!] + includeCookies: Boolean! + sdlEndpoint: String + sseSubscriptionEndpoint: String + subscriptionEndpoint: String + subscriptionProtocol: String + useGet: Boolean! + useTunnel: Boolean! } -interface GraphQLOutputFieldDefinition implements GraphQLTypeSystemMember { - arguments: GraphQLOutputFieldDefinitionArgumentsConnection! - coordinate: String! +"API Key Details" +type ApiKey implements Node { + createdBy: UserInfo! id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! + roleAssignments( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): ApiKeyRoleAssignmentsConnection + scopes: [ApiKeyScope!]! + workspace: Workspace } -interface GraphQLOutputFieldDefinitionArgumentsConnection { - nodes: [GraphQLOutputFieldArgumentDefinition!]! +type ApiKeyNotFoundError implements Error { + apiKeyId: ID! + message: String! } -interface GraphQLTypeSystemMember { - coordinate: String! - isDeprecated: Boolean! - metrics: CoordinateMetrics - usage(from: DateTime to: DateTime): CoordinateUsage! +"A connection to a list of items." +type ApiKeyRoleAssignmentsConnection { + "A list of edges." + edges: [ApiKeyRoleAssignmentsEdge!] + "A flattened list of the nodes." + nodes: [RoleAssignment!] + "Information to aid in pagination." + pageInfo: PageInfo! } -interface GroupMember { - assignedAt: DateTime! - group: Group - id: ID! +"An edge in a connection." +type ApiKeyRoleAssignmentsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: RoleAssignment! } -interface McpFeatureCollectionValidationEntity { - errors: [McpFeatureCollectionValidationEntityError!]! +"A connection to a list of items." +type ApiKeysConnection { + "A list of edges." + edges: [ApiKeysEdge!] + "A flattened list of the nodes." + nodes: [ApiKey!] + "Information to aid in pagination." + pageInfo: PageInfo! } -interface McpFeatureCollectionValidationEntityError { - message: String! +type ApiKeyScope { + kind: String! + reference: ApiKeyReference + referenceId: String! } -interface McpFeatureCollectionVersionPublishError { - message: String! +"An edge in a connection." +type ApiKeysEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: ApiKey! } -interface McpFeatureCollectionVersionPublishResult { - state: ProcessingState! +type ApiKeyWithSecret { + key: ApiKey! + secret: String! } -interface McpFeatureCollectionVersionValidationError { +"A connection to a list of items." +type ApiMcpFeatureCollectionsConnection { + "A list of edges." + edges: [ApiMcpFeatureCollectionsEdge!] + "A flattened list of the nodes." + nodes: [McpFeatureCollection!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type ApiMcpFeatureCollectionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: McpFeatureCollection! +} + +type ApiNotFoundError implements Error { + apiId: ID! message: String! } -interface McpFeatureCollectionVersionValidationResult { - state: ProcessingState! +"A connection to a list of items." +type ApiOpenApiCollectionsConnection { + "A list of edges." + edges: [ApiOpenApiCollectionsEdge!] + "A flattened list of the nodes." + nodes: [OpenApiCollection!] + "Information to aid in pagination." + pageInfo: PageInfo! } -"The node interface is implemented by entities that have a global unique identifier." -interface Node { +"An edge in a connection." +type ApiOpenApiCollectionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: OpenApiCollection! +} + +"A connection to a list of items." +type ApiOpenApiCollectionVersionsConnection { + "A list of edges." + edges: [ApiOpenApiCollectionVersionsEdge!] + "A flattened list of the nodes." + nodes: [OpenApiCollectionVersion!] + "Information to aid in pagination." + pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! +} + +"An edge in a connection." +type ApiOpenApiCollectionVersionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: OpenApiCollectionVersion! +} + +type ApiPermissionScope implements PermissionScope { + api: Api id: ID! + type: String! } -interface OpenApiCollectionValidationEntity { - errors: [OpenApiCollectionValidationEntityError!]! +"A connection to a list of items." +type ApisConnection { + "A list of edges." + edges: [ApisEdge!] + "A flattened list of the nodes." + nodes: [Api!] + "Information to aid in pagination." + pageInfo: PageInfo! } -interface OpenApiCollectionValidationEntityError { - message: String! +"An edge in a connection." +type ApisEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: Api! } -interface OpenApiCollectionVersionPublishError { - message: String! +type ApiSettings { + schemaRegistry: SchemaRegistrySettings! } -interface OpenApiCollectionVersionPublishResult { - state: ProcessingState! +type ApproveDeploymentPayload { + deployment: Deployment + errors: [ApproveDeploymentError!] } -interface OpenApiCollectionVersionValidationError { - message: String! +type ArgumentAdded implements SchemaChange { + coordinate: String! + name: String! + severity: SchemaChangeSeverity! + typeName: String! } -interface OpenApiCollectionVersionValidationResult { - state: ProcessingState! +type ArgumentChanged implements SchemaChange { + changes: [ArgumentChange!]! + coordinate: String! + name: String! + severity: SchemaChangeSeverity! } -interface OpenTelemetryAttribute { +type ArgumentRemoved implements SchemaChange { + coordinate: String! + name: String! + severity: SchemaChangeSeverity! + typeName: String! +} + +type Attribute { key: String! + value: String! } -interface OpenTelemetrySpan { - api: Api - clockSkew: Float - duration: Float! - epoch: Float! - events: [OpenTelemetryTraceEvent!]! - links: [OpenTelemetryTraceLink!]! - parentSpanId: String! - resourceAttributes: [Attribute!]! - spanAttributes: [Attribute!]! - spanId: String! - spanKind: String! - spanName: String! - stage: Stage - statusCode: String! - statusMessage: String! +""" +Representing an authorization audit log entry optimized for ClickHouse storage. +This single structure captures all authorization events with event-specific nullable fields. +""" +type AuthorizationEventLog { + effect: AuthorizationEventEffect! + "Unique identifier for this audit log entry." + eventId: UUID! + eventType: AuthorizationEventType! + """ + Whether the permission evaluation was conditional. + Used by: PermissionMatchEvent when PermissionResult.Condition is not null + """ + isConditional: Boolean! + organization: Organization + """ + Permission name for permission-related events. + Used by: PermissionMatchEvent, PermissionNoMatchEvent, PermissionBypassedEvent + """ + permission: String! + principal: AuthorizationEventLogPrincipal + realm: AuthorizationEventLogRealm + resource: AuthorizationEventLogResource + subject: AuthorizationEventLogSubject + timestamp: DateTime! + """ + Trace ID from the activity context. + Used by: PermissionMatchEvent + """ traceId: String! - traceState: String! + workspace: Workspace } -interface PermissionScope { - id: ID! - type: String! +type BasicAuthenticationFlowOptions { + password: String! + username: String! } -interface ProcessingError { - message: String! +type BearerAuthenticationFlowOptions { + prefix: String + token: String! } -interface SchemaChange { - severity: SchemaChangeSeverity! +type BeginFusionConfigurationPublishPayload { + errors: [BeginFusionConfigurationPublishError!] + requestId: ID } -interface SchemaVersionPublishError { - message: String! +type CancelDeploymentPayload { + deployment: Deployment + errors: [CancelDeploymentError!] } -interface SchemaVersionPublishResult { - state: ProcessingState! +type CancelFusionConfigurationCompositionPayload { + errors: [CancelFusionConfigurationCompositionError!] + requestId: ID } -interface SchemaVersionValidationError { - message: String! +"A connection to a list of items." +type ChangesConnection { + "A list of edges." + edges: [ChangesEdge!] + "A flattened list of the nodes." + nodes: [WorkspaceChangeLog] + "Information to aid in pagination." + pageInfo: PageInfo! } -interface SchemaVersionValidationResult { - state: ProcessingState! +"An edge in a connection." +type ChangesEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: WorkspaceChangeLog } -interface StageChangeLog { - changedAt: DateTime! - id: ID! - kind: StageChangeLogKind! - tag: String! +type ChangeStructureInvalid implements Error { + message: String! } -interface StageChangedEvent { - kind: StageChangeKind! +type ChangeValidationFailed implements Error { + errors: [ValidationErrorProperty!]! + message: String! + workspaceId: ID! } -interface Subgraph { +type Client implements Node { api: Api + createdAt: DateTime! + createdBy: UserInfo! id: ID! name: String! + operations( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): OperationsConnection + versions( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): ClientVersionConnection } -interface WorkspaceChangeLog { +type ClientChangeLog implements StageChangeLog & Node { changedAt: DateTime! - changedBy: UserInfo! id: ID! - version: Version! - workspaceId: ID! + kind: StageChangeLogKind! + tag: String! } -type AfterStageCondition { - afterStage: Stage +type ClientDeletedStageChangeEvent implements StageChangedEvent { + clientId: ID! + kind: StageChangeKind! } -type Api implements Node { - clients("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): ClientsConnection +type ClientDeployment implements Node & Deployment { + approval: DeploymentApproval + client: Client createdAt: DateTime! - createdBy: UserInfo! - documents("Returns the elements in the list that come after the specified cursor." after: Version "Returns the first _n_ elements from the list." first: Int): ApiDocumentConnection - httpConnection: ApiHttpConnection + errors: [ClientDeploymentError!]! id: ID! - kind: ApiKind - mcpFeatureCollections("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): ApiMcpFeatureCollectionsConnection - mockSchemas("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): MockSchemasConnection - modifiedAt: DateTime! - modifiedBy: UserInfo! - name: String! - openApiCollections("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): ApiOpenApiCollectionsConnection - operations("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): OperationsConnection - path: [String!]! - schemaVersions("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): SchemaVersionsConnection - settings: ApiSettings! - stages: [Stage!]! - version: Version! - workspace: Workspace + logs: [DeploymentLog!]! + source: SourceMetadata + status: DeploymentStatus! + tag: String! } -type ApiChanged implements ApiChangeLog & WorkspaceChangeLog { - api(onlyIfLatest: Boolean): Api - apiId: ID! - changedAt: DateTime! - changedBy: UserInfo! +type ClientInsight { + averageLatency: Float + client: Client + errorRate: Float id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! + impact: Float + name: String + opm: Float + successRate: Float + totalCount: Long + totalCountWithErrors: Long } -type ApiCreated implements ApiChangeLog & WorkspaceChangeLog { - api(onlyIfLatest: Boolean): Api - apiId: ID! - changedAt: DateTime! - changedBy: UserInfo! - id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! +"A connection to a list of items." +type ClientInsightsConnection { + "A list of edges." + edges: [ClientInsightsEdge!] + "A flattened list of the nodes." + nodes: [ClientInsight!] + "Information to aid in pagination." + pageInfo: PageInfo! } -type ApiDeleted implements ApiChangeLog & WorkspaceChangeLog { - api(onlyIfLatest: Boolean): Api - apiId: ID! - changedAt: DateTime! - changedBy: UserInfo! - id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! +"An edge in a connection." +type ClientInsightsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: ClientInsight! } -type ApiDeletionFailedError implements Error { - apiId: ID! +type ClientNotFoundError implements Error { + clientId: ID! message: String! } -type ApiDocument implements Node { - api: Api - body: String! - createdAt: DateTime! - createdBy: UserInfo! - id: ID! - modifiedAt: DateTime! - modifiedBy: UserInfo! - name: String! - path: [String!]! - variables: String - version: Version! -} - -type ApiDocumentChanged implements ApiDocumentChangeLog & WorkspaceChangeLog { - apiDocument(onlyIfLatest: Boolean): ApiDocument - apiId: ID! - changedAt: DateTime! - changedBy: UserInfo! - documentId: ID! - id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! -} - "A connection to a list of items." -type ApiDocumentConnection { +type ClientsConnection { "A list of edges." - edges: [ApiDocumentEdge!] + edges: [ClientsEdge!] "A flattened list of the nodes." - nodes: [ApiDocument!] + nodes: [Client!] "Information to aid in pagination." pageInfo: PageInfo! } -type ApiDocumentCreated implements ApiDocumentChangeLog & WorkspaceChangeLog { - apiDocument(onlyIfLatest: Boolean): ApiDocument - apiId: ID! - changedAt: DateTime! - changedBy: UserInfo! - documentId: ID! - id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! -} - -type ApiDocumentDeleted implements ApiDocumentChangeLog & WorkspaceChangeLog { - apiDocument(onlyIfLatest: Boolean): ApiDocument - apiId: ID! - changedAt: DateTime! - changedBy: UserInfo! - documentId: ID! - id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! -} - "An edge in a connection." -type ApiDocumentEdge { +type ClientsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: ApiDocument! + node: Client! +} + +type ClientVersion implements Node { + client: Client + createdAt: DateTime! + id: ID! + persistedQueries( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): PersistedQueriesConnection + publishedTo: [PublishedClientVersion!]! + tag: String! + tags: [String!]! @deprecated(reason: "Use `tag` instead.") } "A connection to a list of items." -type ApiDocumentsConnection { +type ClientVersionConnection { "A list of edges." - edges: [ApiDocumentsEdge!] + edges: [ClientVersionEdge!] "A flattened list of the nodes." - nodes: [ApiDocument!] + nodes: [ClientVersion!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type ApiDocumentsEdge { +type ClientVersionEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: ApiDocument! + node: ClientVersion! } -type ApiHeader { - enabled: Boolean! - name: String! - value: String! +type ClientVersionNotFoundError implements Error { + clientId: ID! + message: String! + tag: String! } -type ApiHttpAuthentication { - activeAuthenticationKind: String! - basicOptions: BasicAuthenticationFlowOptions - bearerOptions: BearerAuthenticationFlowOptions - oAuth2Options: OAuth2AuthenticationFlowOptions +type ClientVersionPublishedStageChangeEvent implements StageChangedEvent { + clientVersion: ClientVersion + kind: StageChangeKind! } -type ApiHttpConnection { - authentication: ApiHttpAuthentication - endpoint: String! - headers: [ApiHeader!] - includeCookies: Boolean! - sdlEndpoint: String - sseSubscriptionEndpoint: String - subscriptionEndpoint: String - subscriptionProtocol: String - useGet: Boolean! - useTunnel: Boolean! +type ClientVersionPublishFailed implements ClientVersionPublishResult { + errors: [ClientVersionPublishError!]! + state: ProcessingState! } -type ApiKey implements Node { - createdBy: UserInfo! - id: ID! - name: String! - roleAssignments("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): ApiKeyRoleAssignmentsConnection - scopes: [ApiKeyScope!]! - workspace: Workspace +type ClientVersionPublishSuccess implements ClientVersionPublishResult { + clientVersion: ClientVersion + state: ProcessingState! } -type ApiKeyNotFoundError implements Error { - apiKeyId: ID! +type ClientVersionRequestNotFoundError implements Error { + message: String! + requestId: ID! +} + +type ClientVersionUnpublishedStageChangeEvent implements StageChangedEvent { + clientVersion: ClientVersion + kind: StageChangeKind! +} + +type ClientVersionValidationFailed implements ClientVersionValidationResult { + errors: [ClientVersionValidationError!]! + state: ProcessingState! +} + +type ClientVersionValidationSuccess implements ClientVersionValidationResult { + state: ProcessingState! +} + +type CommitFusionConfigurationPublishPayload { + errors: [CommitFusionConfigurationPublishError!] + requestId: ID +} + +type ConcurrentOperationError implements Error & SchemaVersionPublishError & ClientVersionPublishError & FusionConfigurationPublishingError & OpenApiCollectionVersionPublishError & McpFeatureCollectionVersionPublishError & ProcessingError { message: String! } +type CoordinateClientUsage { + client: Client + metrics: CoordinateClientUsageMetrics! + name: String + totalOperations: Long! + totalRequests: Long! + totalVersions: Long! +} + +type CoordinateClientUsageMetrics implements Node { + id: ID! + operations( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): CoordinateClientUsageOperationInsightsConnection +} + +type CoordinateClientUsageOperationInsight { + averageLatency: Float! + coordinate: String! + errorRate: Float! + hash: String! + impact: Float! + kind: OperationKind + operationName: String! + opm: Float! + successRate: Float! + totalCount: Long! + totalCountWithErrors: Long! + totalVersions: Long! +} + "A connection to a list of items." -type ApiKeyRoleAssignmentsConnection { +type CoordinateClientUsageOperationInsightsConnection { "A list of edges." - edges: [ApiKeyRoleAssignmentsEdge!] + edges: [CoordinateClientUsageOperationInsightsEdge!] "A flattened list of the nodes." - nodes: [RoleAssignment!] + nodes: [CoordinateClientUsageOperationInsight!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type ApiKeyRoleAssignmentsEdge { +type CoordinateClientUsageOperationInsightsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: RoleAssignment! + node: CoordinateClientUsageOperationInsight! } -type ApiKeyScope { - kind: String! - reference: ApiKeyReference - referenceId: String! +type CoordinateRequestGraph { + dataset: [CoordinateRequestGraphData!]! } -type ApiKeyWithSecret { - key: ApiKey! - secret: String! +type CoordinateRequestGraphData { + count: Long! + epoch: Long! } "A connection to a list of items." -type ApiKeysConnection { +type CoordinatesConnection { "A list of edges." - edges: [ApiKeysEdge!] + edges: [CoordinatesEdge!] "A flattened list of the nodes." - nodes: [ApiKey!] + nodes: [GraphQLTypeSystemMember!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type ApiKeysEdge { +type CoordinatesEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: ApiKey! + node: GraphQLTypeSystemMember! } -"A connection to a list of items." -type ApiMcpFeatureCollectionsConnection { - "A list of edges." - edges: [ApiMcpFeatureCollectionsEdge!] - "A flattened list of the nodes." - nodes: [McpFeatureCollection!] - "Information to aid in pagination." - pageInfo: PageInfo! +type CoordinateUsage { + clientCount: Long! + errorRate: Float + firstSeen: DateTime + lastSeen: DateTime + meanDuration: Float + operationCount: Long! + opm: Float + totalReference: Long! @deprecated(reason: "Use totalReferences instead") + totalReferences: Long! + totalRequests: Long + totalUsages: Long } -"An edge in a connection." -type ApiMcpFeatureCollectionsEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: McpFeatureCollection! +type CoordinateUsageGraph { + dataset: [CoordinateUsageGraphData!]! } -type ApiNotFoundError implements Error { - apiId: ID! - message: String! +type CoordinateUsageGraphData { + count: Long! + epoch: Long! } -"A connection to a list of items." -type ApiOpenApiCollectionsConnection { - "A list of edges." - edges: [ApiOpenApiCollectionsEdge!] - "A flattened list of the nodes." - nodes: [OpenApiCollection!] - "Information to aid in pagination." - pageInfo: PageInfo! +type CreateAccountPayload { + errors: [CreateAccountError!] + user: User } -"An edge in a connection." -type ApiOpenApiCollectionsEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: OpenApiCollection! +type CreateApiKeyForApiPayload { + errors: [CreateApiKeyForApiError!] + result: ApiKeyWithSecret } -type ApiPermissionScope implements PermissionScope { - api: Api - id: ID! - type: String! +type CreateApiKeyPayload { + errors: [CreateApiKeyError!] + result: ApiKeyWithSecret } -type ApiSettings { - schemaRegistry: SchemaRegistrySettings! +type CreateClientPayload { + client: Client + errors: [CreateClientError!] } -"A connection to a list of items." -type ApisConnection { - "A list of edges." - edges: [ApisEdge!] - "A flattened list of the nodes." - nodes: [Api!] - "Information to aid in pagination." - pageInfo: PageInfo! +type CreateMcpFeatureCollectionPayload { + errors: [CreateMcpFeatureCollectionError!] + mcpFeatureCollection: McpFeatureCollection } -"An edge in a connection." -type ApisEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: Api! +type CreateMockSchemaPayload { + errors: [CreateMockSchemaError!] + mockSchema: MockSchema } -type ApproveDeploymentPayload { - deployment: Deployment - errors: [ApproveDeploymentError!] +type CreateOpenApiCollectionPayload { + errors: [CreateOpenApiCollectionError!] + openApiCollection: OpenApiCollection } -type ArgumentAdded implements SchemaChange { - coordinate: String! - name: String! - severity: SchemaChangeSeverity! - typeName: String! +type CreatePersonalAccessTokenPayload { + errors: [CreatePersonalAccessTokenError!] + result: PersonalAccessTokenWithSecret } -type ArgumentChanged implements SchemaChange { - changes: [ArgumentChange!]! - coordinate: String! - name: String! - severity: SchemaChangeSeverity! +type CreateWorkspacePayload { + errors: [CreateWorkspaceError!] + workspace: Workspace } -type ArgumentRemoved implements SchemaChange { - coordinate: String! - name: String! - severity: SchemaChangeSeverity! - typeName: String! +type DeleteApiByIdPayload { + api: Api + errors: [DeleteApiByIdError!] } -type Attribute { - key: String! - value: String! +type DeleteApiKeyPayload { + apiKey: ApiKey + errors: [DeleteApiKeyError!] } -type AuthorizationEventLog { - effect: AuthorizationEventEffect! - eventId: UUID! - eventType: AuthorizationEventType! - isConditional: Boolean! - organization: Organization - permission: String! - principal: AuthorizationEventLogPrincipal - realm: AuthorizationEventLogRealm - resource: AuthorizationEventLogResource - subject: AuthorizationEventLogSubject +type DeleteClientByIdPayload { + client: Client + errors: [DeleteClientByIdError!] +} + +type DeleteMcpFeatureCollectionByIdPayload { + errors: [DeleteMcpFeatureCollectionByIdError!] + mcpFeatureCollection: McpFeatureCollection +} + +type DeleteMockSchemaByIdPayload { + errors: [DeleteMockSchemaByIdError!] + mockSchema: MockSchema +} + +type DeleteOpenApiCollectionByIdPayload { + errors: [DeleteOpenApiCollectionByIdError!] + openApiCollection: OpenApiCollection +} + +type DeploymentApproval { + approvedAt: DateTime! + approvedBy: UserInfo! +} + +type DeploymentApprovedLog implements DeploymentLog { + message: String! timestamp: DateTime! - traceId: String! - workspace: Workspace } -type BasicAuthenticationFlowOptions { - password: String! - username: String! +type DeploymentCancelledLog implements DeploymentLog { + message: String! + timestamp: DateTime! } -type BearerAuthenticationFlowOptions { - prefix: String - token: String! +type DeploymentCannotBeCancelledError implements Error { + deploymentId: ID! + message: String! + status: DeploymentStatus! } -type BeginFusionConfigurationPublishPayload { - errors: [BeginFusionConfigurationPublishError!] - requestId: ID +type DeploymentCreatedEvent { + deployment: Deployment! } -type CancelDeploymentPayload { - deployment: Deployment - errors: [CancelDeploymentError!] +type DeploymentCreatedLog implements DeploymentLog { + message: String! + timestamp: DateTime! } -type CancelFusionConfigurationCompositionPayload { - errors: [CancelFusionConfigurationCompositionError!] - requestId: ID +type DeploymentFailedLog implements DeploymentLog { + errors: [ProcessingError!]! + message: String! + timestamp: DateTime! } -type ChangeStructureInvalid implements Error { +type DeploymentIsNotWaitingForApprovalError implements Error { + deploymentId: ID! message: String! } -type ChangeValidationFailed implements Error { - errors: [ValidationErrorProperty!]! +type DeploymentNotFoundError implements Error { + deploymentId: ID! message: String! - workspaceId: ID! +} + +type DeploymentQueuedLog implements DeploymentLog { + message: String! + timestamp: DateTime! +} + +type DeploymentReadyLog implements DeploymentLog { + message: String! + timestamp: DateTime! } "A connection to a list of items." -type ChangesConnection { +type DeploymentsConnection { "A list of edges." - edges: [ChangesEdge!] + edges: [DeploymentsEdge!] "A flattened list of the nodes." - nodes: [WorkspaceChangeLog] + nodes: [Deployment!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type ChangesEdge { +type DeploymentsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: WorkspaceChangeLog + node: Deployment! } -type Client implements Node { - api: Api - createdAt: DateTime! - createdBy: UserInfo! - id: ID! - name: String! - operations("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): OperationsConnection - versions("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): ClientVersionConnection +type DeploymentStartedProcessingLog implements DeploymentLog { + message: String! + timestamp: DateTime! } -type ClientChangeLog implements StageChangeLog & Node { - changedAt: DateTime! - id: ID! - kind: StageChangeLogKind! - tag: String! +type DeploymentSubgraphsConnection { + edges: [DeploymentSubgraphsEdge!] + nodes: [FusionSubgraph!]! + pageInfo: PageInfo! } -type ClientDeletedStageChangeEvent implements StageChangedEvent { - clientId: ID! - kind: StageChangeKind! +type DeploymentSubgraphsEdge { + cursor: String! + node: FusionSubgraph! + version: String } -type ClientDeployment implements Node & Deployment { - approval: DeploymentApproval - client: Client - createdAt: DateTime! - errors: [ClientDeploymentError!]! - id: ID! - logs: [DeploymentLog!]! - source: SourceMetadata - status: DeploymentStatus! - tag: String! +type DeploymentSuccessLog implements DeploymentLog { + message: String! + timestamp: DateTime! } -type ClientInsight { - averageLatency: Float - client: Client - errorRate: Float +type DeploymentUpdatedEvent { + deployment: Deployment! +} + +type DeploymentWaitingForApprovalLog implements DeploymentLog { + message: String! + timestamp: DateTime! +} + +type DeprecatedChange implements SchemaChange { + deprecationReason: String + severity: SchemaChangeSeverity! +} + +type DescriptionChanged implements SchemaChange { + new: String + old: String + severity: SchemaChangeSeverity! +} + +type DirectiveLocationAdded implements SchemaChange { + location: DirectiveLocation! + severity: SchemaChangeSeverity! +} + +type DirectiveLocationRemoved implements SchemaChange { + location: DirectiveLocation! + severity: SchemaChangeSeverity! +} + +type DirectiveModifiedChange implements SchemaChange { + changes: [DirectiveChange!]! + coordinate: String! + kind: TypeSystemMemberKind! + severity: SchemaChangeSeverity! +} + +type DocumentChanged implements DocumentChangeLog & WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + document(onlyIfLatest: Boolean): WorkspaceDocument + documentId: ID! id: ID! - impact: Float - name: String - opm: Float - successRate: Float - totalCount: Long - totalCountWithErrors: Long + name: String! + path: [String!]! + version: Version! + workspaceId: ID! +} + +type DocumentChangedConflict implements Error { + document: WorkspaceDocument! + message: String! } "A connection to a list of items." -type ClientInsightsConnection { +type DocumentChangesConnection { "A list of edges." - edges: [ClientInsightsEdge!] + edges: [DocumentChangesEdge!] "A flattened list of the nodes." - nodes: [ClientInsight!] + nodes: [DocumentChangeLog] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type ClientInsightsEdge { +type DocumentChangesEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: ClientInsight! + node: DocumentChangeLog } -type ClientNotFoundError implements Error { - clientId: ID! +type DocumentChangeValidationFailed implements Error { + errors: [ValidationErrorProperty!]! message: String! + workspaceId: ID! } -type ClientVersion implements Node { - client: Client - createdAt: DateTime! +type DocumentCreated implements DocumentChangeLog & WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + document(onlyIfLatest: Boolean): WorkspaceDocument + documentId: ID! id: ID! - persistedQueries("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): PersistedQueriesConnection - publishedTo: [PublishedClientVersion!]! - tag: String! - tags: [String!]! @deprecated(reason: "Use `tag` instead.") + name: String! + path: [String!]! + version: Version! + workspaceId: ID! +} + +type DocumentDeleted implements DocumentChangeLog & WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + document(onlyIfLatest: Boolean): WorkspaceDocument + documentId: ID! + id: ID! + name: String! + path: [String!]! + version: Version! + workspaceId: ID! +} + +type DocumentDeletionConflict implements Error { + message: String! + workspaceId: ID! +} + +type DocumentNameCollisionConflict implements Error { + document: WorkspaceDocument! + message: String! } "A connection to a list of items." -type ClientVersionConnection { +type DocumentsConnection { "A list of edges." - edges: [ClientVersionEdge!] + edges: [DocumentsEdge!] "A flattened list of the nodes." - nodes: [ClientVersion!] + nodes: [WorkspaceDocument!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type ClientVersionEdge { +type DocumentsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: ClientVersion! + node: WorkspaceDocument! } -type ClientVersionNotFoundError implements Error { - clientId: ID! +type DuplicatedTagError implements Error { message: String! tag: String! } -type ClientVersionPublishFailed implements ClientVersionPublishResult { - errors: [ClientVersionPublishError!]! - state: ProcessingState! +type DuplicateNameError implements Error { + message: String! } -type ClientVersionPublishSuccess implements ClientVersionPublishResult { - clientVersion: ClientVersion - state: ProcessingState! +type EnsureTunnelSessionPayload { + errors: [EnsureTunnelSessionError!] + tunnelSession: TunnelSession } -type ClientVersionPublishedStageChangeEvent implements StageChangedEvent { - clientVersion: ClientVersion - kind: StageChangeKind! +type EnumModifiedChange implements SchemaChange { + changes: [EnumChange!]! + coordinate: String! + kind: TypeSystemMemberKind! + severity: SchemaChangeSeverity! } -type ClientVersionRequestNotFoundError implements Error { - message: String! - requestId: ID! +type EnumValueAdded implements SchemaChange { + coordinate: String! + severity: SchemaChangeSeverity! + value: String! } -type ClientVersionUnpublishedStageChangeEvent implements StageChangedEvent { - clientVersion: ClientVersion - kind: StageChangeKind! +type EnumValueChanged implements SchemaChange { + changes: [EnumValueChange!]! + coordinate: String! + severity: SchemaChangeSeverity! + value: String! } -type ClientVersionValidationFailed implements ClientVersionValidationResult { - errors: [ClientVersionValidationError!]! - state: ProcessingState! +type EnumValueRemoved implements SchemaChange { + coordinate: String! + severity: SchemaChangeSeverity! + value: String! } -type ClientVersionValidationSuccess implements ClientVersionValidationResult { - state: ProcessingState! +type Environment implements Node { + createdAt: DateTime! + createdBy: UserInfo! + id: ID! + modifiedAt: DateTime! + modifiedBy: UserInfo! + name: String! + variables: [EnvironmentVariable!]! + version: Version! + workspace: Workspace +} + +type EnvironmentChanged implements EnvironmentChangeLog & WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + environment(onlyIfLatest: Boolean): Environment + environmentId: ID! + id: ID! + name: String! + version: Version! + workspaceId: ID! +} + +type EnvironmentCreated implements EnvironmentChangeLog & WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + environment(onlyIfLatest: Boolean): Environment + environmentId: ID! + id: ID! + name: String! + version: Version! + workspaceId: ID! +} + +type EnvironmentDeleted implements EnvironmentChangeLog & WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + environment(onlyIfLatest: Boolean): Environment + environmentId: ID! + id: ID! + name: String! + version: Version! + workspaceId: ID! } "A connection to a list of items." -type ClientsConnection { +type EnvironmentsConnection { "A list of edges." - edges: [ClientsEdge!] + edges: [EnvironmentsEdge!] "A flattened list of the nodes." - nodes: [Client!] + nodes: [Environment!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type ClientsEdge { +type EnvironmentsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: Client! -} - -type CommitFusionConfigurationPublishPayload { - errors: [CommitFusionConfigurationPublishError!] - requestId: ID -} - -type ConcurrentOperationError implements Error & SchemaVersionPublishError & ClientVersionPublishError & FusionConfigurationPublishingError & OpenApiCollectionVersionPublishError & McpFeatureCollectionVersionPublishError & ProcessingError { - message: String! + node: Environment! } -type CoordinateClientUsage { - client: Client - metrics: CoordinateClientUsageMetrics! - name: String - totalOperations: Long! - totalRequests: Long! - totalVersions: Long! +type EnvironmentVariable { + id: String! + isSecret: Boolean! + name: String! + value: String! } -type CoordinateClientUsageMetrics implements Node { +type ErrorInsight { + epm: Float! id: ID! - operations("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): CoordinateClientUsageOperationInsightsConnection -} - -type CoordinateClientUsageOperationInsight { - averageLatency: Float! - coordinate: String! - errorRate: Float! - hash: String! - impact: Float! - kind: OperationKind - operationName: String! - opm: Float! - successRate: Float! - totalCount: Long! - totalCountWithErrors: Long! - totalVersions: Long! + lastSeen: Float! + message: String! + totalCount: Long! + type: String! } "A connection to a list of items." -type CoordinateClientUsageOperationInsightsConnection { +type ErrorInsightsConnection { "A list of edges." - edges: [CoordinateClientUsageOperationInsightsEdge!] + edges: [ErrorInsightsEdge!] "A flattened list of the nodes." - nodes: [CoordinateClientUsageOperationInsight!] + nodes: [ErrorInsight!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type CoordinateClientUsageOperationInsightsEdge { +type ErrorInsightsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: CoordinateClientUsageOperationInsight! -} - -type CoordinateRequestGraph { - dataset: [CoordinateRequestGraphData!]! + node: ErrorInsight! } -type CoordinateRequestGraphData { - count: Long! - epoch: Long! +type FieldAddedChange implements SchemaChange { + coordinate: String! + fieldName: String! + severity: SchemaChangeSeverity! + typeName: String! } -type CoordinateUsage { - clientCount: Long! - errorRate: Float - firstSeen: DateTime - lastSeen: DateTime - meanDuration: Float - operationCount: Long! - opm: Float - totalReference: Long! @deprecated(reason: "Use totalReferences instead") - totalReferences: Long! - totalRequests: Long - totalUsages: Long +type FieldCoordinateMetrics implements CoordinateMetrics { + clientUsage( + clientId: ID + from: DateTime! + to: DateTime! + ): CoordinateClientUsage + clientUsages(from: DateTime!, to: DateTime!): [CoordinateClientUsage!]! + duration( + from: DateTime! + resolution: Int! = 300 + to: DateTime! + ): FieldDurationGraph + requests( + from: DateTime! + resolution: Int! = 300 + to: DateTime! + ): CoordinateRequestGraph + usages( + from: DateTime! + resolution: Int! = 300 + to: DateTime! + ): CoordinateUsageGraph } -type CoordinateUsageGraph { - dataset: [CoordinateUsageGraphData!]! +type FieldDurationGraph { + dataset: [FieldDurationGraphData!]! } -type CoordinateUsageGraphData { - count: Long! +type FieldDurationGraphData { epoch: Long! + max: Float! + mean: Float! + min: Float! + p50: Float! + p95: Float! + p99: Float! } -"A connection to a list of items." -type CoordinatesConnection { - "A list of edges." - edges: [CoordinatesEdge!] - "A flattened list of the nodes." - nodes: [GraphQLTypeSystemMember!] - "Information to aid in pagination." - pageInfo: PageInfo! +type FieldRemovedChange implements SchemaChange { + coordinate: String! + fieldName: String! + severity: SchemaChangeSeverity! + typeName: String! } -"An edge in a connection." -type CoordinatesEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: GraphQLTypeSystemMember! +type ForceDeleteStageByApiIdPayload { + api: Api + errors: [ForceDeleteStageByApiIdError!] } -type CreateAccountPayload { - errors: [CreateAccountError!] - user: User +type FusionConfiguration { + downloadUrl: String! + format: FusionConfigurationFormat! + id: ID! + publishedAt: DateTime! + supportedVersions: [String!]! + tag: String! } -type CreateApiKeyForApiPayload { - errors: [CreateApiKeyForApiError!] - result: ApiKeyWithSecret +type FusionConfigurationChangeLog implements StageChangeLog & Node { + changedAt: DateTime! + id: ID! + kind: StageChangeLogKind! + tag: String! } -type CreateApiKeyPayload { - errors: [CreateApiKeyError!] - result: ApiKeyWithSecret +type FusionConfigurationDeployment implements Node & Deployment { + approval: DeploymentApproval + createdAt: DateTime! + errors: [FusionConfigurationDeploymentError!]! + id: ID! + logs: [DeploymentLog!]! + schemaChanges: FusionConfigurationDeploymentSchemaChanges + source: SourceMetadata + status: DeploymentStatus! + subgraph: Subgraph @deprecated(reason: "Use `subgraphs` instead.") + subgraphs( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): DeploymentSubgraphsConnection + tag: String! } -type CreateClientPayload { - client: Client - errors: [CreateClientError!] +type FusionConfigurationDeploymentSchemaChanges { + changes( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + severity: SchemaChangeSeverity + ): SchemaChangesConnection + statistic: SchemaChangeLogStatistic! } -type CreateMcpFeatureCollectionPayload { - errors: [CreateMcpFeatureCollectionError!] - mcpFeatureCollection: McpFeatureCollection +type FusionConfigurationPublishedStageChangeEvent implements StageChangedEvent { + fusionConfiguration: FusionConfiguration + kind: StageChangeKind! } -type CreateMockSchemaPayload { - errors: [CreateMockSchemaError!] - mockSchema: MockSchema +type FusionConfigurationPublishingFailed implements FusionConfigurationPublishingResult { + errors: [FusionConfigurationPublishingError!]! + state: ProcessingState! } -type CreateOpenApiCollectionPayload { - errors: [CreateOpenApiCollectionError!] - openApiCollection: OpenApiCollection +type FusionConfigurationPublishingSuccess implements FusionConfigurationPublishingResult { + state: ProcessingState! } -type CreatePersonalAccessTokenPayload { - errors: [CreatePersonalAccessTokenError!] - result: PersonalAccessTokenWithSecret +type FusionConfigurationRequestNotFoundError implements Error { + message: String! + requestId: ID! } -type CreateWorkspacePayload { - errors: [CreateWorkspaceError!] - workspace: Workspace +type FusionConfigurationValidationFailed implements FusionConfigurationPublishingResult { + errors: [FusionConfigurationValidationError!]! + state: ProcessingState! } -type DeleteApiByIdPayload { - api: Api - errors: [DeleteApiByIdError!] +type FusionConfigurationValidationSuccess implements FusionConfigurationPublishingResult { + changes: [SchemaChangeLogEntry!]! + state: ProcessingState! } -type DeleteApiKeyPayload { - apiKey: ApiKey - errors: [DeleteApiKeyError!] +type FusionSubgraph implements Subgraph { + api: Api + id: ID! + name: String! } -type DeleteClientByIdPayload { - client: Client - errors: [DeleteClientByIdError!] +type FusionSubgraphVersion { + createdAt: DateTime! + fusionSubgraph: FusionSubgraph! + id: ID! + tag: String! } -type DeleteMcpFeatureCollectionByIdPayload { - errors: [DeleteMcpFeatureCollectionByIdError!] - mcpFeatureCollection: McpFeatureCollection +type GitHubSourceMetadata { + commitUrl: URL! + shortCommitHash: String! + workflowRunName: String! + workflowRunUrl: URL! } -type DeleteMockSchemaByIdPayload { - errors: [DeleteMockSchemaByIdError!] - mockSchema: MockSchema +type GraphQLDirectiveArgumentDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition { + coordinate: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeleteOpenApiCollectionByIdPayload { - errors: [DeleteOpenApiCollectionByIdError!] - openApiCollection: OpenApiCollection +type GraphQLDirectiveDefinition implements Node & GraphQLTypeSystemMember { + arguments: GraphQLDirectiveDefinitionArgumentsConnection! + coordinate: String! + id: ID! + isDeprecated: Boolean! + kind: TypeSystemMemberKind! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeploymentApproval { - approvedAt: DateTime! - approvedBy: UserInfo! +type GraphQLDirectiveDefinitionArgumentsConnection { + nodes: [GraphQLDirectiveArgumentDefinition!]! } -type DeploymentApprovedLog implements DeploymentLog { - message: String! - timestamp: DateTime! +type GraphQLEnumTypeDefinition implements Node & GraphQLTypeSystemMember { + coordinate: String! + id: ID! + isDeprecated: Boolean! + kind: TypeSystemMemberKind! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! + values: GraphQLEnumTypeDefinitionValuesConnection! } -type DeploymentCancelledLog implements DeploymentLog { - message: String! - timestamp: DateTime! +type GraphQLEnumTypeDefinitionValuesConnection { + nodes: [GraphQLEnumValueDefinition!]! } -type DeploymentCannotBeCancelledError implements Error { - deploymentId: ID! - message: String! - status: DeploymentStatus! +type GraphQLEnumValueDefinition implements Node & GraphQLTypeSystemMember { + coordinate: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeploymentCreatedEvent { - deployment: Deployment! +type GraphQLInputObjectFieldDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition { + coordinate: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeploymentCreatedLog implements DeploymentLog { - message: String! - timestamp: DateTime! +type GraphQLInputObjectTypeDefinition implements Node & GraphQLTypeSystemMember { + coordinate: String! + fields: GraphQLInputObjectTypeDefinitionFieldsConnection! + id: ID! + isDeprecated: Boolean! + kind: TypeSystemMemberKind! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeploymentFailedLog implements DeploymentLog { - errors: [ProcessingError!]! - message: String! - timestamp: DateTime! +type GraphQLInputObjectTypeDefinitionFieldsConnection { + nodes: [GraphQLInputObjectFieldDefinition!]! } -type DeploymentIsNotWaitingForApprovalError implements Error { - deploymentId: ID! - message: String! -} - -type DeploymentNotFoundError implements Error { - deploymentId: ID! - message: String! -} - -type DeploymentQueuedLog implements DeploymentLog { - message: String! - timestamp: DateTime! -} - -type DeploymentReadyLog implements DeploymentLog { - message: String! - timestamp: DateTime! -} - -type DeploymentStartedProcessingLog implements DeploymentLog { - message: String! - timestamp: DateTime! +type GraphQLInterfaceFieldArgumentDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition & GraphQLOutputFieldArgumentDefinition { + coordinate: String! + declaringField: String! + declaringType: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeploymentSubgraphsConnection { - edges: [DeploymentSubgraphsEdge!] - nodes: [FusionSubgraph!]! - pageInfo: PageInfo! +type GraphQLInterfaceFieldArgumentDefinitionArgumentsConnection implements GraphQLOutputFieldDefinitionArgumentsConnection { + nodes: [GraphQLInterfaceFieldArgumentDefinition!]! } -type DeploymentSubgraphsEdge { - cursor: String! - node: FusionSubgraph! - version: String +type GraphQLInterfaceFieldDefinition implements Node & GraphQLTypeSystemMember & GraphQLOutputFieldDefinition { + arguments: GraphQLInterfaceFieldArgumentDefinitionArgumentsConnection! + coordinate: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeploymentSuccessLog implements DeploymentLog { - message: String! - timestamp: DateTime! +type GraphQLInterfaceTypeDefinition implements Node & GraphQLTypeSystemMember { + coordinate: String! + fields: GraphQLInterfaceTypeDefinitionFieldsConnection! + id: ID! + isDeprecated: Boolean! + kind: TypeSystemMemberKind! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeploymentUpdatedEvent { - deployment: Deployment! +type GraphQLInterfaceTypeDefinitionFieldsConnection { + nodes: [GraphQLInterfaceFieldDefinition!]! } -type DeploymentWaitingForApprovalLog implements DeploymentLog { - message: String! - timestamp: DateTime! +type GraphQLObjectFieldArgumentDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition & GraphQLOutputFieldArgumentDefinition { + coordinate: String! + declaringField: String! + declaringType: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -"A connection to a list of items." -type DeploymentsConnection { - "A list of edges." - edges: [DeploymentsEdge!] - "A flattened list of the nodes." - nodes: [Deployment!] - "Information to aid in pagination." - pageInfo: PageInfo! +type GraphQLObjectFieldArgumentDefinitionArgumentsConnection implements GraphQLOutputFieldDefinitionArgumentsConnection { + nodes: [GraphQLObjectFieldArgumentDefinition!]! } -"An edge in a connection." -type DeploymentsEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: Deployment! +type GraphQLObjectFieldDefinition implements Node & GraphQLTypeSystemMember & GraphQLOutputFieldDefinition { + arguments: GraphQLObjectFieldArgumentDefinitionArgumentsConnection! + coordinate: String! + id: ID! + isDeprecated: Boolean! + metrics: FieldCoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DeprecatedChange implements SchemaChange { - deprecationReason: String - severity: SchemaChangeSeverity! +type GraphQLObjectTypeDefinition implements GraphQLTypeSystemMember { + coordinate: String! + fields: GraphQLObjectTypeDefinitionFieldsConnection! + isDeprecated: Boolean! + kind: TypeSystemMemberKind! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DescriptionChanged implements SchemaChange { - new: String - old: String - severity: SchemaChangeSeverity! +type GraphQLObjectTypeDefinitionFieldsConnection { + nodes: [GraphQLObjectFieldDefinition!]! } -type DirectiveLocationAdded implements SchemaChange { - location: DirectiveLocation! - severity: SchemaChangeSeverity! +type GraphQLScalarTypeDefinition implements Node & GraphQLTypeSystemMember { + coordinate: String! + id: ID! + isDeprecated: Boolean! + kind: TypeSystemMemberKind! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DirectiveLocationRemoved implements SchemaChange { - location: DirectiveLocation! - severity: SchemaChangeSeverity! +type GraphQLSchemaError { + code: String + message: String! } -type DirectiveModifiedChange implements SchemaChange { - changes: [DirectiveChange!]! +type GraphQLUnionTypeDefinition implements Node & GraphQLTypeSystemMember { coordinate: String! + id: ID! + isDeprecated: Boolean! kind: TypeSystemMemberKind! - severity: SchemaChangeSeverity! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type DocumentChangeValidationFailed implements Error { - errors: [ValidationErrorProperty!]! - message: String! - workspaceId: ID! +type Group implements Node { + description: String! + groups( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): GroupGroupsConnection + id: ID! + isDefault: Boolean! + members( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): GroupMembersConnection + name: String! + organization: Organization + roleAssignments( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): GroupRoleAssignmentsConnection } -type DocumentChanged implements DocumentChangeLog & WorkspaceChangeLog { - changedAt: DateTime! - changedBy: UserInfo! - document(onlyIfLatest: Boolean): WorkspaceDocument - documentId: ID! +type GroupGroupMember implements GroupMember { + assignedAt: DateTime! + group: Group id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! + nestedGroup: Group + type: String! } -type DocumentChangedConflict implements Error { - document: WorkspaceDocument! - message: String! +"A connection to a list of groups via group members." +type GroupGroupsConnection { + "A list of edges." + edges: [GroupGroupsEdge!] + "A flattened list of the nodes." + nodes: [Group!]! + "Information to aid in pagination." + pageInfo: PageInfo! +} + +type GroupGroupsEdge { + cursor: String! + node: Group! } "A connection to a list of items." -type DocumentChangesConnection { +type GroupMembersConnection { "A list of edges." - edges: [DocumentChangesEdge!] + edges: [GroupMembersEdge!] "A flattened list of the nodes." - nodes: [DocumentChangeLog] + nodes: [GroupMember!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type DocumentChangesEdge { +type GroupMembersEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: DocumentChangeLog -} - -type DocumentCreated implements DocumentChangeLog & WorkspaceChangeLog { - changedAt: DateTime! - changedBy: UserInfo! - document(onlyIfLatest: Boolean): WorkspaceDocument - documentId: ID! - id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! -} - -type DocumentDeleted implements DocumentChangeLog & WorkspaceChangeLog { - changedAt: DateTime! - changedBy: UserInfo! - document(onlyIfLatest: Boolean): WorkspaceDocument - documentId: ID! - id: ID! - name: String! - path: [String!]! - version: Version! - workspaceId: ID! -} - -type DocumentDeletionConflict implements Error { - message: String! - workspaceId: ID! -} - -type DocumentNameCollisionConflict implements Error { - document: WorkspaceDocument! - message: String! + node: GroupMember! } "A connection to a list of items." -type DocumentsConnection { +type GroupRoleAssignmentsConnection { "A list of edges." - edges: [DocumentsEdge!] + edges: [GroupRoleAssignmentsEdge!] "A flattened list of the nodes." - nodes: [WorkspaceDocument!] + nodes: [RoleAssignment!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type DocumentsEdge { +type GroupRoleAssignmentsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: WorkspaceDocument! + node: RoleAssignment! } -type DuplicatedTagError implements Error { +type HasBeenChangedConflict implements Error { + current: WorkspaceChangeResult! message: String! - tag: String! } -type EnsureTunnelSessionPayload { - errors: [EnsureTunnelSessionError!] - tunnelSession: TunnelSession +type HasBeenDeletedConflict implements Error { + message: String! + workspaceId: ID! } -type EnumModifiedChange implements SchemaChange { - changes: [EnumChange!]! +type IdentifierCollisionConflict implements Error { + collidesWith: WorkspaceChangeResult! + message: String! +} + +type InputFieldChanged implements SchemaChange { + changes: [InputFieldChange!]! coordinate: String! - kind: TypeSystemMemberKind! + fieldName: String! severity: SchemaChangeSeverity! } -type EnumValueAdded implements SchemaChange { +type InputObjectModifiedChange implements SchemaChange { + changes: [InputObjectChange!]! coordinate: String! + kind: TypeSystemMemberKind! severity: SchemaChangeSeverity! - value: String! } -type EnumValueChanged implements SchemaChange { - changes: [EnumValueChange!]! - coordinate: String! +type InterfaceImplementationAdded implements SchemaChange { + interfaceName: String! severity: SchemaChangeSeverity! - value: String! } -type EnumValueRemoved implements SchemaChange { - coordinate: String! +type InterfaceImplementationRemoved implements SchemaChange { + interfaceName: String! severity: SchemaChangeSeverity! - value: String! -} - -type Environment implements Node { - createdAt: DateTime! - createdBy: UserInfo! - id: ID! - modifiedAt: DateTime! - modifiedBy: UserInfo! - name: String! - variables: [EnvironmentVariable!]! - version: Version! - workspace: Workspace -} - -type EnvironmentChanged implements EnvironmentChangeLog & WorkspaceChangeLog { - changedAt: DateTime! - changedBy: UserInfo! - environment(onlyIfLatest: Boolean): Environment - environmentId: ID! - id: ID! - name: String! - version: Version! - workspaceId: ID! -} - -type EnvironmentCreated implements EnvironmentChangeLog & WorkspaceChangeLog { - changedAt: DateTime! - changedBy: UserInfo! - environment(onlyIfLatest: Boolean): Environment - environmentId: ID! - id: ID! - name: String! - version: Version! - workspaceId: ID! -} - -type EnvironmentDeleted implements EnvironmentChangeLog & WorkspaceChangeLog { - changedAt: DateTime! - changedBy: UserInfo! - environment(onlyIfLatest: Boolean): Environment - environmentId: ID! - id: ID! - name: String! - version: Version! - workspaceId: ID! -} - -type EnvironmentVariable { - id: String! - isSecret: Boolean! - name: String! - value: String! -} - -"A connection to a list of items." -type EnvironmentsConnection { - "A list of edges." - edges: [EnvironmentsEdge!] - "A flattened list of the nodes." - nodes: [Environment!] - "Information to aid in pagination." - pageInfo: PageInfo! } -"An edge in a connection." -type EnvironmentsEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: Environment! +type InterfaceModifiedChange implements SchemaChange { + changes: [InterfaceChange!]! + coordinate: String! + kind: TypeSystemMemberKind! + severity: SchemaChangeSeverity! } -type ErrorInsight { - epm: Float! - id: ID! - lastSeen: Float! +type InvalidFusionSourceSchemaArchiveError implements Error { message: String! - totalCount: Long! - type: String! -} - -"A connection to a list of items." -type ErrorInsightsConnection { - "A list of edges." - edges: [ErrorInsightsEdge!] - "A flattened list of the nodes." - nodes: [ErrorInsight!] - "Information to aid in pagination." - pageInfo: PageInfo! } -"An edge in a connection." -type ErrorInsightsEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: ErrorInsight! +type InvalidGraphQLSchemaError implements SchemaVersionValidationError & SchemaVersionPublishError & FusionConfigurationPublishingError & FusionConfigurationValidationError & ProcessingError { + errors: [GraphQLSchemaError!]! + message: String! } -type FieldAddedChange implements SchemaChange { - coordinate: String! - fieldName: String! - severity: SchemaChangeSeverity! - typeName: String! +type InvalidMcpFeatureCollectionArchiveError implements Error { + message: String! } -type FieldCoordinateMetrics implements CoordinateMetrics { - clientUsage(clientId: ID from: DateTime! to: DateTime!): CoordinateClientUsage - clientUsages(from: DateTime! to: DateTime!): [CoordinateClientUsage!]! - duration(from: DateTime! resolution: Int! = 300 to: DateTime!): FieldDurationGraph - requests(from: DateTime! resolution: Int! = 300 to: DateTime!): CoordinateRequestGraph - usages(from: DateTime! resolution: Int! = 300 to: DateTime!): CoordinateUsageGraph +type InvalidOpenApiCollectionArchiveError implements Error { + message: String! } -type FieldDurationGraph { - dataset: [FieldDurationGraphData!]! +type InvalidPersistedQueryError implements Error { + content: String! + hash: String! + message: String! } -type FieldDurationGraphData { - epoch: Long! - max: Float! - mean: Float! - min: Float! - p50: Float! - p95: Float! - p99: Float! +type InvalidProcessingStateTransitionError implements Error { + message: String! } -type FieldRemovedChange implements SchemaChange { - coordinate: String! - fieldName: String! - severity: SchemaChangeSeverity! - typeName: String! +type InvalidSourceMetadataInputError implements Error { + message: String! } -type ForceDeleteStageByApiIdPayload { +type McpFeatureCollection implements Node { api: Api - errors: [ForceDeleteStageByApiIdError!] -} - -type FusionConfiguration { - downloadUrl: String! - format: FusionConfigurationFormat! + createdAt: DateTime! + createdBy: UserInfo! id: ID! - publishedAt: DateTime! - supportedVersions: [String!]! - tag: String! + name: String! + versions( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): McpFeatureCollectionVersionsConnection } -type FusionConfigurationChangeLog implements StageChangeLog & Node { +type McpFeatureCollectionChangeLog implements StageChangeLog & Node { changedAt: DateTime! id: ID! kind: StageChangeLogKind! tag: String! } -type FusionConfigurationDeployment implements Node & Deployment { +type McpFeatureCollectionDeletedStageChangeEvent implements StageChangedEvent { + kind: StageChangeKind! + mcpFeatureCollectionId: ID! +} + +type McpFeatureCollectionDeployment implements Node & Deployment { approval: DeploymentApproval createdAt: DateTime! - errors: [FusionConfigurationDeploymentError!]! + errors: [McpFeatureCollectionDeploymentError!]! id: ID! logs: [DeploymentLog!]! - schemaChanges: FusionConfigurationDeploymentSchemaChanges + mcpFeatureCollection: McpFeatureCollection source: SourceMetadata status: DeploymentStatus! - subgraph: Subgraph - subgraphs("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): DeploymentSubgraphsConnection tag: String! } -type FusionConfigurationDeploymentSchemaChanges { - changes("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int severity: SchemaChangeSeverity): SchemaChangesConnection - statistic: SchemaChangeLogStatistic! +type McpFeatureCollectionNotFoundError implements Error { + mcpFeatureCollectionId: ID! + message: String! } -type FusionConfigurationPublishedStageChangeEvent implements StageChangedEvent { - fusionConfiguration: FusionConfiguration - kind: StageChangeKind! +type McpFeatureCollectionValidationArchiveError implements McpFeatureCollectionVersionValidationError & ProcessingError { + message: String! } -type FusionConfigurationPublishingFailed implements FusionConfigurationPublishingResult { - errors: [FusionConfigurationPublishingError!]! - state: ProcessingState! +type McpFeatureCollectionValidationCollection { + entities: [McpFeatureCollectionValidationEntity!]! + mcpFeatureCollection: McpFeatureCollection } -type FusionConfigurationPublishingSuccess implements FusionConfigurationPublishingResult { - state: ProcessingState! +type McpFeatureCollectionValidationDocumentError implements McpFeatureCollectionValidationEntityError { + code: String + locations: [McpFeatureCollectionValidationDocumentErrorLocation!] + message: String! + path: String } -type FusionConfigurationRequestNotFoundError implements Error { +type McpFeatureCollectionValidationDocumentErrorLocation { + column: Int! + line: Int! +} + +type McpFeatureCollectionValidationEntityValidationError implements McpFeatureCollectionValidationEntityError { message: String! - requestId: ID! } -type FusionConfigurationValidationFailed implements FusionConfigurationPublishingResult { - errors: [FusionConfigurationValidationError!]! - state: ProcessingState! +type McpFeatureCollectionValidationError implements McpFeatureCollectionVersionPublishError & McpFeatureCollectionVersionValidationError & SchemaVersionPublishError & SchemaVersionValidationError & FusionConfigurationValidationError & ProcessingError { + collections: [McpFeatureCollectionValidationCollection!]! + message: String! } -type FusionConfigurationValidationSuccess implements FusionConfigurationPublishingResult { - changes: [SchemaChangeLogEntry!]! - state: ProcessingState! +type McpFeatureCollectionValidationPrompt implements McpFeatureCollectionValidationEntity { + errors: [McpFeatureCollectionValidationEntityError!]! + name: String! } -type FusionSubgraph implements Subgraph { - api: Api - id: ID! +type McpFeatureCollectionValidationTool implements McpFeatureCollectionValidationEntity { + errors: [McpFeatureCollectionValidationEntityError!]! name: String! } -type FusionSubgraphVersion { +type McpFeatureCollectionVersion implements Node { createdAt: DateTime! - fusionSubgraph: FusionSubgraph! + hash: String! id: ID! + mcpFeatureCollection: McpFeatureCollection tag: String! } -type GitHubSourceMetadata { - commitUrl: URL! - shortCommitHash: String! - workflowRunName: String! - workflowRunUrl: URL! +type McpFeatureCollectionVersionNotFoundError implements Error { + mcpFeatureCollectionId: ID! + message: String! + tag: String! } -type GraphQLDirectiveArgumentDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition { - coordinate: String! - id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! +type McpFeatureCollectionVersionPublishedStageChangeEvent implements StageChangedEvent { + kind: StageChangeKind! + mcpFeatureCollectionVersion: McpFeatureCollectionVersion } -type GraphQLDirectiveDefinition implements Node & GraphQLTypeSystemMember { - arguments: GraphQLDirectiveDefinitionArgumentsConnection! - coordinate: String! - id: ID! - isDeprecated: Boolean! - kind: TypeSystemMemberKind! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! +type McpFeatureCollectionVersionPublishFailed implements McpFeatureCollectionVersionPublishResult { + errors: [McpFeatureCollectionVersionPublishError!]! + state: ProcessingState! } -type GraphQLDirectiveDefinitionArgumentsConnection { - nodes: [GraphQLDirectiveArgumentDefinition!]! -} - -type GraphQLEnumTypeDefinition implements Node & GraphQLTypeSystemMember { - coordinate: String! - id: ID! - isDeprecated: Boolean! - kind: TypeSystemMemberKind! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! - values: GraphQLEnumTypeDefinitionValuesConnection! -} - -type GraphQLEnumTypeDefinitionValuesConnection { - nodes: [GraphQLEnumValueDefinition!]! +type McpFeatureCollectionVersionPublishSuccess implements McpFeatureCollectionVersionPublishResult { + mcpFeatureCollectionVersion: McpFeatureCollectionVersion + state: ProcessingState! } -type GraphQLEnumValueDefinition implements Node & GraphQLTypeSystemMember { - coordinate: String! - id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! +"A connection to a list of items." +type McpFeatureCollectionVersionsConnection { + "A list of edges." + edges: [McpFeatureCollectionVersionsEdge!] + "A flattened list of the nodes." + nodes: [McpFeatureCollectionVersion!] + "Information to aid in pagination." + pageInfo: PageInfo! } -type GraphQLInputObjectFieldDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition { - coordinate: String! - id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! +"An edge in a connection." +type McpFeatureCollectionVersionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: McpFeatureCollectionVersion! } -type GraphQLInputObjectTypeDefinition implements Node & GraphQLTypeSystemMember { - coordinate: String! - fields: GraphQLInputObjectTypeDefinitionFieldsConnection! - id: ID! - isDeprecated: Boolean! - kind: TypeSystemMemberKind! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! +type McpFeatureCollectionVersionValidationFailed implements McpFeatureCollectionVersionValidationResult { + errors: [McpFeatureCollectionVersionValidationError!]! + state: ProcessingState! } -type GraphQLInputObjectTypeDefinitionFieldsConnection { - nodes: [GraphQLInputObjectFieldDefinition!]! +type McpFeatureCollectionVersionValidationSuccess implements McpFeatureCollectionVersionValidationResult { + state: ProcessingState! } -type GraphQLInterfaceFieldArgumentDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition & GraphQLOutputFieldArgumentDefinition { - coordinate: String! - declaringField: String! - declaringType: String! +type MockSchema { + baseSchemaDownloadUrl: String! + createdAt: DateTime! + createdBy: UserInfo! + downstreamUrl: URI! + extensionsSchemaDownloadUrl: String! id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! + modifiedAt: DateTime! + modifiedBy: UserInfo! name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! -} - -type GraphQLInterfaceFieldArgumentDefinitionArgumentsConnection implements GraphQLOutputFieldDefinitionArgumentsConnection { - nodes: [GraphQLInterfaceFieldArgumentDefinition!]! + url: String! } -type GraphQLInterfaceFieldDefinition implements Node & GraphQLTypeSystemMember & GraphQLOutputFieldDefinition { - arguments: GraphQLInterfaceFieldArgumentDefinitionArgumentsConnection! - coordinate: String! - id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! +type MockSchemaNonUniqueNameError implements Error { + message: String! name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! } -type GraphQLInterfaceTypeDefinition implements Node & GraphQLTypeSystemMember { - coordinate: String! - fields: GraphQLInterfaceTypeDefinitionFieldsConnection! +type MockSchemaNotFoundError implements Error { id: ID! - isDeprecated: Boolean! - kind: TypeSystemMemberKind! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! -} - -type GraphQLInterfaceTypeDefinitionFieldsConnection { - nodes: [GraphQLInterfaceFieldDefinition!]! + message: String! } -type GraphQLObjectFieldArgumentDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition & GraphQLOutputFieldArgumentDefinition { - coordinate: String! - declaringField: String! - declaringType: String! - id: ID! - isDeprecated: Boolean! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! +"A connection to a list of items." +type MockSchemasConnection { + "A list of edges." + edges: [MockSchemasEdge!] + "A flattened list of the nodes." + nodes: [MockSchema!] + "Information to aid in pagination." + pageInfo: PageInfo! } -type GraphQLObjectFieldArgumentDefinitionArgumentsConnection implements GraphQLOutputFieldDefinitionArgumentsConnection { - nodes: [GraphQLObjectFieldArgumentDefinition!]! +"An edge in a connection." +type MockSchemasEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: MockSchema! } -type GraphQLObjectFieldDefinition implements Node & GraphQLTypeSystemMember & GraphQLOutputFieldDefinition { - arguments: GraphQLObjectFieldArgumentDefinitionArgumentsConnection! - coordinate: String! - id: ID! - isDeprecated: Boolean! - metrics: FieldCoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! +type OAuth2AuthenticationFlowOptions { + accessTokenUrl: String! + activeFlowKind: String! + audience: String! + authorizationUrl: String! + clientId: String! + clientSecret: String! + credentialsInBody: Boolean! + grantType: String! + origin: String! + password: String! + pkceMethod: String! + prefix: String! + redirectUrl: String! + resource: String! + responseType: String! + scope: String! + state: String! + usePkce: Boolean! + username: String! } -type GraphQLObjectTypeDefinition implements GraphQLTypeSystemMember { +type ObjectModifiedChange implements SchemaChange { + changes: [ObjectChange!]! coordinate: String! - fields: GraphQLObjectTypeDefinitionFieldsConnection! - isDeprecated: Boolean! kind: TypeSystemMemberKind! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! + severity: SchemaChangeSeverity! } -type GraphQLObjectTypeDefinitionFieldsConnection { - nodes: [GraphQLObjectFieldDefinition!]! +type OpenApiCollection implements Node { + api: Api + createdAt: DateTime! + createdBy: UserInfo! + deployments( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + stageId: ID + ): OpenApiCollectionDeploymentsConnection + id: ID! + name: String! + publishedEndpoints( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + stageId: ID! + ): OpenApiCollectionPublishedEndpointsConnection + publishedModels( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + stageId: ID! + ): OpenApiCollectionPublishedModelsConnection + publishedVersion(stageId: ID!): PublishedOpenApiCollectionVersion + versions( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): OpenApiCollectionVersionsConnection } -type GraphQLScalarTypeDefinition implements Node & GraphQLTypeSystemMember { - coordinate: String! +type OpenApiCollectionChangeLog implements StageChangeLog & Node { + changedAt: DateTime! id: ID! - isDeprecated: Boolean! - kind: TypeSystemMemberKind! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! + kind: StageChangeLogKind! + tag: String! } -type GraphQLSchemaError { - code: String - message: String! +type OpenApiCollectionDeletedStageChangeEvent implements StageChangedEvent { + kind: StageChangeKind! + openApiCollectionId: ID! } -type GraphQLUnionTypeDefinition implements Node & GraphQLTypeSystemMember { - coordinate: String! +type OpenApiCollectionDeployment implements Node & Deployment { + approval: DeploymentApproval + createdAt: DateTime! + errors: [OpenApiCollectionDeploymentError!]! id: ID! - isDeprecated: Boolean! - kind: TypeSystemMemberKind! - metrics: CoordinateMetrics! - name: String! - usage(from: DateTime to: DateTime): CoordinateUsage! + logs: [DeploymentLog!]! + openApiCollection: OpenApiCollection + source: SourceMetadata + status: DeploymentStatus! + tag: String! } -type Group implements Node { - description: String! - groups("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): GroupGroupsConnection - id: ID! - isDefault: Boolean! - members("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): GroupMembersConnection - name: String! - organization: Organization - roleAssignments("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): GroupRoleAssignmentsConnection +"A connection to a list of items." +type OpenApiCollectionDeploymentsConnection { + "A list of edges." + edges: [OpenApiCollectionDeploymentsEdge!] + "A flattened list of the nodes." + nodes: [OpenApiCollectionDeployment!] + "Information to aid in pagination." + pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! } -type GroupGroupMember implements GroupMember { - assignedAt: DateTime! - group: Group +"An edge in a connection." +type OpenApiCollectionDeploymentsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: OpenApiCollectionDeployment! +} + +type OpenApiCollectionInsight { + averageLatency: Float + errorRate: Float id: ID! - nestedGroup: Group - type: String! + impact: Float + openApiCollection: OpenApiCollection + opm: Float + successRate: Float + totalCount: Long + totalCountWithErrors: Long } -"A connection to a list of groups via group members." -type GroupGroupsConnection { - edges: [GroupGroupsEdge!] - nodes: [Group!]! +"A connection to a list of items." +type OpenApiCollectionInsightsConnection { + "A list of edges." + edges: [OpenApiCollectionInsightsEdge!] + "A flattened list of the nodes." + nodes: [OpenApiCollectionInsight!] + "Information to aid in pagination." pageInfo: PageInfo! } -type GroupGroupsEdge { +"An edge in a connection." +type OpenApiCollectionInsightsEdge { + "A cursor for use in pagination." cursor: String! - node: Group! + "The item at the end of the edge." + node: OpenApiCollectionInsight! +} + +type OpenApiCollectionNotFoundError implements Error { + message: String! + openApiCollectionId: ID! } "A connection to a list of items." -type GroupMembersConnection { +type OpenApiCollectionPublishedEndpointsConnection { "A list of edges." - edges: [GroupMembersEdge!] + edges: [OpenApiCollectionPublishedEndpointsEdge!] "A flattened list of the nodes." - nodes: [GroupMember!] + nodes: [PublishedOpenApiEndpoint!] "Information to aid in pagination." pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! } "An edge in a connection." -type GroupMembersEdge { +type OpenApiCollectionPublishedEndpointsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: GroupMember! + node: PublishedOpenApiEndpoint! } "A connection to a list of items." -type GroupRoleAssignmentsConnection { +type OpenApiCollectionPublishedModelsConnection { "A list of edges." - edges: [GroupRoleAssignmentsEdge!] + edges: [OpenApiCollectionPublishedModelsEdge!] "A flattened list of the nodes." - nodes: [RoleAssignment!] + nodes: [PublishedOpenApiModel!] "Information to aid in pagination." pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! } "An edge in a connection." -type GroupRoleAssignmentsEdge { +type OpenApiCollectionPublishedModelsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: RoleAssignment! + node: PublishedOpenApiModel! } -type HasBeenChangedConflict implements Error { - current: WorkspaceChangeResult! - message: String! -} - -type HasBeenDeletedConflict implements Error { - message: String! - workspaceId: ID! -} - -type IdentifierCollisionConflict implements Error { - collidesWith: WorkspaceChangeResult! - message: String! -} - -type InputFieldChanged implements SchemaChange { - changes: [InputFieldChange!]! - coordinate: String! - fieldName: String! - severity: SchemaChangeSeverity! -} - -type InputObjectModifiedChange implements SchemaChange { - changes: [InputObjectChange!]! - coordinate: String! - kind: TypeSystemMemberKind! - severity: SchemaChangeSeverity! -} - -type InterfaceImplementationAdded implements SchemaChange { - interfaceName: String! - severity: SchemaChangeSeverity! -} - -type InterfaceImplementationRemoved implements SchemaChange { - interfaceName: String! - severity: SchemaChangeSeverity! -} - -type InterfaceModifiedChange implements SchemaChange { - changes: [InterfaceChange!]! - coordinate: String! - kind: TypeSystemMemberKind! - severity: SchemaChangeSeverity! -} - -type InvalidFusionSourceSchemaArchiveError implements Error { - message: String! -} - -type InvalidGraphQLSchemaError implements SchemaVersionValidationError & SchemaVersionPublishError & FusionConfigurationPublishingError & FusionConfigurationValidationError & ProcessingError { - errors: [GraphQLSchemaError!]! - message: String! -} - -type InvalidMcpFeatureCollectionArchiveError implements Error { - message: String! -} - -type InvalidOpenApiCollectionArchiveError implements Error { - message: String! -} - -type InvalidPersistedQueryError implements Error { - content: String! - hash: String! - message: String! -} - -type InvalidProcessingStateTransitionError implements Error { - message: String! -} - -type InvalidSourceMetadataInputError implements Error { - message: String! -} - -type McpFeatureCollection implements Node { - api: Api - createdAt: DateTime! - createdBy: UserInfo! - id: ID! - name: String! - versions("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): McpFeatureCollectionVersionsConnection -} - -type McpFeatureCollectionChangeLog implements StageChangeLog & Node { - changedAt: DateTime! - id: ID! - kind: StageChangeLogKind! - tag: String! -} - -type McpFeatureCollectionDeletedStageChangeEvent implements StageChangedEvent { - kind: StageChangeKind! - mcpFeatureCollectionId: ID! -} - -type McpFeatureCollectionDeployment implements Node & Deployment { - approval: DeploymentApproval - createdAt: DateTime! - errors: [McpFeatureCollectionDeploymentError!]! - id: ID! - logs: [DeploymentLog!]! - mcpFeatureCollection: McpFeatureCollection - source: SourceMetadata - status: DeploymentStatus! - tag: String! -} - -type McpFeatureCollectionNotFoundError implements Error { - mcpFeatureCollectionId: ID! - message: String! -} - -type McpFeatureCollectionValidationArchiveError implements McpFeatureCollectionVersionValidationError & ProcessingError { +type OpenApiCollectionValidationArchiveError implements OpenApiCollectionVersionValidationError & ProcessingError { message: String! } -type McpFeatureCollectionValidationCollection { - entities: [McpFeatureCollectionValidationEntity!]! - mcpFeatureCollection: McpFeatureCollection +type OpenApiCollectionValidationCollection { + entities: [OpenApiCollectionValidationEntity!]! + openApiCollection: OpenApiCollection } -type McpFeatureCollectionValidationDocumentError implements McpFeatureCollectionValidationEntityError { +type OpenApiCollectionValidationDocumentError implements OpenApiCollectionValidationEntityError { code: String - locations: [McpFeatureCollectionValidationDocumentErrorLocation!] + locations: [OpenApiCollectionValidationDocumentErrorLocation!] message: String! path: String } -type McpFeatureCollectionValidationDocumentErrorLocation { +type OpenApiCollectionValidationDocumentErrorLocation { column: Int! line: Int! } -type McpFeatureCollectionValidationEntityValidationError implements McpFeatureCollectionValidationEntityError { - message: String! +type OpenApiCollectionValidationEndpoint implements OpenApiCollectionValidationEntity { + errors: [OpenApiCollectionValidationEntityError!]! + httpMethod: String! + route: String! } -type McpFeatureCollectionValidationError implements McpFeatureCollectionVersionPublishError & McpFeatureCollectionVersionValidationError & SchemaVersionPublishError & SchemaVersionValidationError & FusionConfigurationValidationError & ProcessingError { - collections: [McpFeatureCollectionValidationCollection!]! +type OpenApiCollectionValidationEntityValidationError implements OpenApiCollectionValidationEntityError { message: String! } -type McpFeatureCollectionValidationPrompt implements McpFeatureCollectionValidationEntity { - errors: [McpFeatureCollectionValidationEntityError!]! - name: String! +type OpenApiCollectionValidationError implements OpenApiCollectionVersionPublishError & OpenApiCollectionVersionValidationError & SchemaVersionPublishError & SchemaVersionValidationError & FusionConfigurationValidationError & ProcessingError { + collections: [OpenApiCollectionValidationCollection!]! + message: String! } -type McpFeatureCollectionValidationTool implements McpFeatureCollectionValidationEntity { - errors: [McpFeatureCollectionValidationEntityError!]! +type OpenApiCollectionValidationModel implements OpenApiCollectionValidationEntity { + errors: [OpenApiCollectionValidationEntityError!]! name: String! } -type McpFeatureCollectionVersion implements Node { +type OpenApiCollectionVersion implements Node { createdAt: DateTime! hash: String! id: ID! - mcpFeatureCollection: McpFeatureCollection + openApiCollection: OpenApiCollection + publishedTo( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): PublishedOpenApiCollectionVersionsConnection tag: String! } -type McpFeatureCollectionVersionNotFoundError implements Error { - mcpFeatureCollectionId: ID! +type OpenApiCollectionVersionNotFoundError implements Error { message: String! + openApiCollectionId: ID! tag: String! } -type McpFeatureCollectionVersionPublishFailed implements McpFeatureCollectionVersionPublishResult { - errors: [McpFeatureCollectionVersionPublishError!]! - state: ProcessingState! -} - -type McpFeatureCollectionVersionPublishSuccess implements McpFeatureCollectionVersionPublishResult { - mcpFeatureCollectionVersion: McpFeatureCollectionVersion - state: ProcessingState! -} - -type McpFeatureCollectionVersionPublishedStageChangeEvent implements StageChangedEvent { +type OpenApiCollectionVersionPublishedStageChangeEvent implements StageChangedEvent { kind: StageChangeKind! - mcpFeatureCollectionVersion: McpFeatureCollectionVersion + openApiCollectionVersion: OpenApiCollectionVersion } -type McpFeatureCollectionVersionValidationFailed implements McpFeatureCollectionVersionValidationResult { - errors: [McpFeatureCollectionVersionValidationError!]! +type OpenApiCollectionVersionPublishFailed implements OpenApiCollectionVersionPublishResult { + errors: [OpenApiCollectionVersionPublishError!]! state: ProcessingState! } -type McpFeatureCollectionVersionValidationSuccess implements McpFeatureCollectionVersionValidationResult { +type OpenApiCollectionVersionPublishSuccess implements OpenApiCollectionVersionPublishResult { + openApiCollectionVersion: OpenApiCollectionVersion state: ProcessingState! } "A connection to a list of items." -type McpFeatureCollectionVersionsConnection { +type OpenApiCollectionVersionsConnection { "A list of edges." - edges: [McpFeatureCollectionVersionsEdge!] + edges: [OpenApiCollectionVersionsEdge!] "A flattened list of the nodes." - nodes: [McpFeatureCollectionVersion!] + nodes: [OpenApiCollectionVersion!] "Information to aid in pagination." pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! } "An edge in a connection." -type McpFeatureCollectionVersionsEdge { +type OpenApiCollectionVersionsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: McpFeatureCollectionVersion! + node: OpenApiCollectionVersion! } -type MockSchema { - baseSchemaDownloadUrl: String! - createdAt: DateTime! - createdBy: UserInfo! - downstreamUrl: URI! - extensionsSchemaDownloadUrl: String! - id: ID! - modifiedAt: DateTime! - modifiedBy: UserInfo! - name: String! - url: String! +type OpenApiCollectionVersionValidationFailed implements OpenApiCollectionVersionValidationResult { + errors: [OpenApiCollectionVersionValidationError!]! + state: ProcessingState! } -type MockSchemaNonUniqueNameError implements Error { - message: String! - name: String! +type OpenApiCollectionVersionValidationSuccess implements OpenApiCollectionVersionValidationResult { + state: ProcessingState! } -type MockSchemaNotFoundError implements Error { +type OpenApiEndpoint implements Node { + httpMethod: String! id: ID! + route: String! +} + +type OpenApiEndpointErrorInsight { + epm: Float! + id: ID! + lastSeen: DateTime! message: String! + totalCount: Long! + type: String! } "A connection to a list of items." -type MockSchemasConnection { +type OpenApiEndpointErrorInsightsConnection { "A list of edges." - edges: [MockSchemasEdge!] + edges: [OpenApiEndpointErrorInsightsEdge!] "A flattened list of the nodes." - nodes: [MockSchema!] + nodes: [OpenApiEndpointErrorInsight!] "Information to aid in pagination." pageInfo: PageInfo! } "An edge in a connection." -type MockSchemasEdge { +type OpenApiEndpointErrorInsightsEdge { "A cursor for use in pagination." cursor: String! "The item at the end of the edge." - node: MockSchema! + node: OpenApiEndpointErrorInsight! } -type Mutation { - approveDeployment(input: ApproveDeploymentInput!): ApproveDeploymentPayload! - beginFusionConfigurationPublish(input: BeginFusionConfigurationPublishInput!): BeginFusionConfigurationPublishPayload! - cancelDeployment(input: CancelDeploymentInput!): CancelDeploymentPayload! - cancelFusionConfigurationComposition(input: CancelFusionConfigurationCompositionInput!): CancelFusionConfigurationCompositionPayload! - commitFusionConfigurationPublish(input: CommitFusionConfigurationPublishInput!): CommitFusionConfigurationPublishPayload! - createAccount: CreateAccountPayload! - createApiKey(input: CreateApiKeyInput!): CreateApiKeyPayload! - createApiKeyForApi(input: CreateApiKeyForApiInput!): CreateApiKeyForApiPayload! - createClient(input: CreateClientInput!): CreateClientPayload! - createMcpFeatureCollection(input: CreateMcpFeatureCollectionInput!): CreateMcpFeatureCollectionPayload! - createMockSchema(input: CreateMockSchemaInput!): CreateMockSchemaPayload! - createOpenApiCollection(input: CreateOpenApiCollectionInput!): CreateOpenApiCollectionPayload! - createPersonalAccessToken(input: CreatePersonalAccessTokenInput!): CreatePersonalAccessTokenPayload! - createWorkspace(input: CreateWorkspaceInput!): CreateWorkspacePayload! - deleteApiById(input: DeleteApiByIdInput!): DeleteApiByIdPayload! - deleteApiKey(input: DeleteApiKeyInput!): DeleteApiKeyPayload! - deleteClientById(input: DeleteClientByIdInput!): DeleteClientByIdPayload! - deleteMcpFeatureCollectionById(input: DeleteMcpFeatureCollectionByIdInput!): DeleteMcpFeatureCollectionByIdPayload! - deleteMockSchemaById(input: DeleteMockSchemaByIdInput!): DeleteMockSchemaByIdPayload! - deleteOpenApiCollectionById(input: DeleteOpenApiCollectionByIdInput!): DeleteOpenApiCollectionByIdPayload! - ensureTunnelSession: EnsureTunnelSessionPayload! - forceDeleteStageByApiId(input: ForceDeleteStageByApiIdInput!): ForceDeleteStageByApiIdPayload! - pollClientVersionPublishRequest(input: PollClientVersionPublishRequestInput!): PollClientVersionPublishRequestPayload! - pollClientVersionValidationRequest(input: PollClientVersionValidationRequestInput!): PollClientVersionValidationRequestPayload! - pollSchemaVersionPublishRequest(input: PollSchemaVersionPublishRequestInput!): PollSchemaVersionPublishRequestPayload! - pollSchemaVersionValidationRequest(input: PollSchemaVersionValidationRequestInput!): PollSchemaVersionValidationRequestPayload! - publishClient(input: PublishClientInput!): PublishClientPayload! - publishMcpFeatureCollection(input: PublishMcpFeatureCollectionInput!): PublishMcpFeatureCollectionPayload! - publishOpenApiCollection(input: PublishOpenApiCollectionInput!): PublishOpenApiCollectionPayload! - publishSchema(input: PublishSchemaInput!): PublishSchemaPayload! - pushDocumentChanges(input: PushDocumentChangeInput!): PushDocumentChangesPayload! - pushWorkspaceChanges(input: PushWorkspaceChangesInput!): PushWorkspaceChangesPayload! - removeWorkspace(input: RemoveWorkspaceInput!): RemoveWorkspacePayload! - renameWorkspace(input: RenameWorkspaceInput!): RenameWorkspacePayload! - revokePersonalAccessToken(input: RevokePersonalAccessTokenInput!): RevokePersonalAccessTokenPayload! - setActiveWorkspace(input: SetActiveWorkspaceInput!): SetActiveWorkspacePayload! - startFusionConfigurationComposition(input: StartFusionConfigurationCompositionInput!): StartFusionConfigurationCompositionPayload! - unpublishClient(input: UnpublishClientInput!): UnpublishClientPayload! - updateApiSettings(input: UpdateApiSettingsInput!): UpdateApiSettingsPayload! - updateFeatureFlags(input: UpdateFeatureFlagsInput!): UpdateFeatureFlagsPayload! - updateMockSchema(input: UpdateMockSchemaInput!): UpdateMockSchemaPayload! - updatePreferences(input: UpdatePreferencesInput!): UpdatePreferencesPayload! - updateStages(input: UpdateStagesInput!): UpdateStagesPayload! - updateThemeSettings(input: UpdateThemeSettingsInput!): UpdateThemeSettingsPayload! - uploadClient(input: UploadClientInput!): UploadClientPayload! - uploadFusionSubgraph(input: UploadFusionSubgraphInput!): UploadFusionSubgraphPayload! - uploadMcpFeatureCollection(input: UploadMcpFeatureCollectionInput!): UploadMcpFeatureCollectionPayload! - uploadOpenApiCollection(input: UploadOpenApiCollectionInput!): UploadOpenApiCollectionPayload! - uploadSchema(input: UploadSchemaInput!): UploadSchemaPayload! - validateClient(input: ValidateClientInput!): ValidateClientPayload! - validateFusionConfigurationComposition(input: ValidateFusionConfigurationCompositionInput!): ValidateFusionConfigurationCompositionPayload! - validateMcpFeatureCollection(input: ValidateMcpFeatureCollectionInput!): ValidateMcpFeatureCollectionPayload! - validateOpenApiCollection(input: ValidateOpenApiCollectionInput!): ValidateOpenApiCollectionPayload! - validateSchema(input: ValidateSchemaInput!): ValidateSchemaPayload! +type OpenApiModel implements Node { + id: ID! + name: String! } -type OAuth2AuthenticationFlowOptions { - accessTokenUrl: String! - activeFlowKind: String! - audience: String! - authorizationUrl: String! - clientId: String! - clientSecret: String! - credentialsInBody: Boolean! - grantType: String! - origin: String! - password: String! - pkceMethod: String! - prefix: String! - redirectUrl: String! - resource: String! - responseType: String! - scope: String! - state: String! - usePkce: Boolean! - username: String! -} - -type ObjectModifiedChange implements SchemaChange { - changes: [ObjectChange!]! - coordinate: String! - kind: TypeSystemMemberKind! - severity: SchemaChangeSeverity! -} - -type OpenApiCollection implements Node { - api: Api - createdAt: DateTime! - createdBy: UserInfo! - id: ID! - name: String! - versions("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): OpenApiCollectionVersionsConnection -} - -type OpenApiCollectionChangeLog implements StageChangeLog & Node { - changedAt: DateTime! - id: ID! - kind: StageChangeLogKind! - tag: String! -} - -type OpenApiCollectionDeletedStageChangeEvent implements StageChangedEvent { - kind: StageChangeKind! - openApiCollectionId: ID! -} - -type OpenApiCollectionDeployment implements Node & Deployment { - approval: DeploymentApproval - createdAt: DateTime! - errors: [OpenApiCollectionDeploymentError!]! - id: ID! - logs: [DeploymentLog!]! - openApiCollection: OpenApiCollection - source: SourceMetadata - status: DeploymentStatus! - tag: String! -} - -type OpenApiCollectionNotFoundError implements Error { - message: String! - openApiCollectionId: ID! -} - -type OpenApiCollectionValidationArchiveError implements OpenApiCollectionVersionValidationError & ProcessingError { - message: String! -} - -type OpenApiCollectionValidationCollection { - entities: [OpenApiCollectionValidationEntity!]! - openApiCollection: OpenApiCollection -} - -type OpenApiCollectionValidationDocumentError implements OpenApiCollectionValidationEntityError { - code: String - locations: [OpenApiCollectionValidationDocumentErrorLocation!] - message: String! - path: String -} - -type OpenApiCollectionValidationDocumentErrorLocation { - column: Int! - line: Int! -} - -type OpenApiCollectionValidationEndpoint implements OpenApiCollectionValidationEntity { - errors: [OpenApiCollectionValidationEntityError!]! - httpMethod: String! - route: String! -} - -type OpenApiCollectionValidationEntityValidationError implements OpenApiCollectionValidationEntityError { - message: String! -} - -type OpenApiCollectionValidationError implements OpenApiCollectionVersionPublishError & OpenApiCollectionVersionValidationError & SchemaVersionPublishError & SchemaVersionValidationError & FusionConfigurationValidationError & ProcessingError { - collections: [OpenApiCollectionValidationCollection!]! - message: String! -} - -type OpenApiCollectionValidationModel implements OpenApiCollectionValidationEntity { - errors: [OpenApiCollectionValidationEntityError!]! - name: String! -} - -type OpenApiCollectionVersion implements Node { - createdAt: DateTime! - hash: String! - id: ID! - openApiCollection: OpenApiCollection - tag: String! -} - -type OpenApiCollectionVersionNotFoundError implements Error { - message: String! - openApiCollectionId: ID! - tag: String! -} - -type OpenApiCollectionVersionPublishFailed implements OpenApiCollectionVersionPublishResult { - errors: [OpenApiCollectionVersionPublishError!]! - state: ProcessingState! -} - -type OpenApiCollectionVersionPublishSuccess implements OpenApiCollectionVersionPublishResult { - openApiCollectionVersion: OpenApiCollectionVersion - state: ProcessingState! -} - -type OpenApiCollectionVersionPublishedStageChangeEvent implements StageChangedEvent { - kind: StageChangeKind! - openApiCollectionVersion: OpenApiCollectionVersion -} - -type OpenApiCollectionVersionValidationFailed implements OpenApiCollectionVersionValidationResult { - errors: [OpenApiCollectionVersionValidationError!]! - state: ProcessingState! -} - -type OpenApiCollectionVersionValidationSuccess implements OpenApiCollectionVersionValidationResult { - state: ProcessingState! -} - -"A connection to a list of items." -type OpenApiCollectionVersionsConnection { - "A list of edges." - edges: [OpenApiCollectionVersionsEdge!] - "A flattened list of the nodes." - nodes: [OpenApiCollectionVersion!] - "Information to aid in pagination." - pageInfo: PageInfo! -} - -"An edge in a connection." -type OpenApiCollectionVersionsEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: OpenApiCollectionVersion! +type OpenApiSummary { + collectionCount: Int! + deploymentCount: Int! + endpointCount: Int! + modelCount: Int! } type OpenTelemetryBoolAttribute implements OpenTelemetryAttribute { @@ -2368,6 +2604,7 @@ type OpenTelemetryGraphQLResolverSpanSelectionAttributes { name: String path: String type: String + @deprecated(reason: "We no longer reliably have this information.") } type OpenTelemetryHttpClientSpan implements OpenTelemetrySpan { @@ -2488,7 +2725,16 @@ type OpenTelemetryStringAttribute implements OpenTelemetryAttribute { type OpenTelemetryTrace { epoch: Float! errors: [OpenTelemetryError!]! - logs("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): OpenTelemetryLogsConnection + logs( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): OpenTelemetryLogsConnection spans: [OpenTelemetrySpan!]! totalDuration: Float! } @@ -2566,25 +2812,6 @@ type OpenTelemetryTransactionLatencyGraphData { p99: Float! } -type OpenTelemetryTransactionThroughputGraph { - dataset: [OpenTelemetryTransactionThroughputGraphData!]! -} - -type OpenTelemetryTransactionThroughputGraphData { - epoch: Long! - errorRate: Float! - opm: Float! - successRate: Float! - totalCount: Long! - totalCountWithError: Long! -} - -type OpenTelemetryTransactionTraceSample { - seeker: String! - spanId: String! - traceId: String! -} - type OpenTelemetryTransactionsLatencyGraph { dataset: [OpenTelemetryTransactionsLatencyGraphData!]! } @@ -2612,6 +2839,25 @@ type OpenTelemetryTransactionsThroughputGraphData { totalCountWithError: Long! } +type OpenTelemetryTransactionThroughputGraph { + dataset: [OpenTelemetryTransactionThroughputGraphData!]! +} + +type OpenTelemetryTransactionThroughputGraphData { + epoch: Long! + errorRate: Float! + opm: Float! + successRate: Float! + totalCount: Long! + totalCountWithError: Long! +} + +type OpenTelemetryTransactionTraceSample { + seeker: String! + spanId: String! + traceId: String! +} + type Operation { document: RequestDocument kind: OperationKind! @@ -2624,6 +2870,12 @@ type OperationInProgress implements SchemaVersionValidationResult & SchemaVersio type OperationInsight { averageLatency: Float! + clients( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): OperationInsightClientsConnection documentId: String! errorRate: Float! hash: String! @@ -2639,6 +2891,26 @@ type OperationInsight { totalCountWithErrors: Long! } +"A connection to a list of items." +type OperationInsightClientsConnection { + "A list of edges." + edges: [OperationInsightClientsEdge!] + "A flattened list of the nodes." + nodes: [Client!] + "Information to aid in pagination." + pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! +} + +"An edge in a connection." +type OperationInsightClientsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: Client! +} + "A connection to a list of items." type OperationInsightsConnection { "A list of edges." @@ -2658,7 +2930,8 @@ type OperationInsightsEdge { } type OperationLatencyDistributionGraph { - data: [OperationLatencyDistributionGraphData!]! @deprecated(reason: "Use `Dataset` instead") + data: [OperationLatencyDistributionGraphData!]! + @deprecated(reason: "Use `Dataset` instead") dataset: [OperationLatencyDistributionGraphData!]! p95: Float! p95DurationInMS: Float! @deprecated(reason: "Use `P95` instead") @@ -2688,25 +2961,6 @@ type OperationLatencyGraphData { p99: Float! } -type OperationThroughputGraph { - dataset: [OperationThroughputGraphData!]! -} - -type OperationThroughputGraphData { - epoch: Long! - errorRate: Float! - opm: Float! - successRate: Float! - totalCount: Long! - totalCountWithError: Long! -} - -type OperationTraceSample { - seeker: String! - spanId: String! - traceId: String! -} - type OperationsAreNotAllowedError implements SchemaVersionValidationError & SchemaVersionPublishError & ProcessingError { column: Int! @deprecated(reason: "Locations are no longer used") end: Int! @deprecated(reason: "Locations are no longer used") @@ -2761,16 +3015,126 @@ type OperationsThroughputGraphData { totalCountWithError: Long! } +type OperationThroughputGraph { + dataset: [OperationThroughputGraphData!]! +} + +type OperationThroughputGraphData { + epoch: Long! + errorRate: Float! + opm: Float! + successRate: Float! + totalCount: Long! + totalCountWithError: Long! +} + +type OperationTraceSample { + seeker: String! + spanId: String! + traceId: String! +} + type Organization implements Node { - authorizationEventLogs("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int from: DateTime "Returns the last _n_ elements from the list." last: Int to: DateTime): OrganizationAuthorizationEventLogsConnection + """ + Returns the add-on packs purchased by the given organization, + along with the resulting included-usage entitlements and total monthly cost. + """ + addOns: OrganizationAddOns + """ + Returns a paginated connection of authorization audit-log entries for the given + organization, optionally filtered to a time window. + """ + authorizationEventLogs( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime + "Returns the last _n_ elements from the list." + last: Int + to: DateTime + ): OrganizationAuthorizationEventLogsConnection + """ + Returns the billing information - payment method, payment issues, and Stripe + customer details - for the given organization. + """ billingInfo: OrganizationBillingInfo displayName: String! - groups("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): OrganizationGroupsConnection + """ + Returns a paginated connection of groups that belong to the given + organization. + """ + groups( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): OrganizationGroupsConnection id: ID! - members("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): OrganizationMembersConnection + """ + Returns a paginated connection of members belonging to the given + organization. + """ + members( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): OrganizationMembersConnection name: String! + "Returns the active subscription plan for the given organization." plan: OrganizationPlan - usage(from: DateTime to: DateTime): OrganizationUsage + """ + Returns the billing rate schedule - base fee, included quotas, and pack rates - + for the given organization. + """ + pricing: OrganizationPlanPricing + """ + Returns a paginated connection of roles defined within the given + organization. + """ + roles( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): OrganizationRolesConnection + """ + Returns the usage data for the given organization over the + specified date range, defaulting to the current calendar month when bounds are omitted. + """ + usage(from: DateTime, to: DateTime): OrganizationUsage +} + +""" +Represents the add-on packs purchased by an organization and the resulting aggregate +included quotas and fixed monthly billing amount derived from those purchases. +""" +type OrganizationAddOns { + "The total number of active ingest add-on packs purchased by the organization." + ingestPacks: Int! + "The fixed monthly charge in USD for the base plan plus all purchased add-on packs." + monthlyFee: Decimal! + "The total ingest volume in bytes included across the base plan and all purchased packs." + totalIngestQuotaBytes: Long! + "The total number of transactions included across the base plan and all purchased packs." + totalTransactionQuota: Long! + "The total number of active transactions add-on packs purchased by the organization." + transactionPacks: Int! } "A connection to a list of items." @@ -2822,7 +3186,16 @@ type OrganizationInfo { } type OrganizationMember implements Node { - groups("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): OrganizationMemberGroupsConnection + groups( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): OrganizationMemberGroupsConnection id: ID! isDisabled: Boolean! userName: String @@ -2838,8 +3211,11 @@ type OrganizationMemberGroupMember implements GroupMember { "A connection to a list of groups via group members." type OrganizationMemberGroupsConnection { + "A list of edges." edges: [OrganizationMemberGroupsEdge!] + "A flattened list of the nodes." nodes: [Group!]! + "Information to aid in pagination." pageInfo: PageInfo! } @@ -2880,17 +3256,87 @@ type OrganizationPlan { type: OrganizationPlanType! } -type OrganizationUsage { - cumulativeGigabyteHours: OrganizationUsageCumulativeGigabyteHoursGraph - gigabyteHours: OrganizationUsageGigabyteHoursGraph - period: OrganizationUsagePeriod! -} - -type OrganizationUsageCumulativeGigabyteHoursGraph { - dataset: [OrganizationUsageCumulativeGigabyteHoursGraphData!]! +""" +Represents the pricing schedule used to compute billing for an organization, +surfaced to callers so that UI layers can display a consistent rate card. +""" +type OrganizationPlanPricing { + "The ingest volume in gigabytes included in the base fee before any add-on packs are applied." + baseIngestQuotaGigabytes: Decimal! + "The number of transactions included in the base fee before any add-on packs are applied." + baseTransactionQuota: Long! + "The additional ingest gigabytes bundled with each transactions add-on pack." + ingestGigabytesPerTransactionPack: Decimal! + "The rate in USD per gigabyte applied to each purchased ingest add-on pack." + ingestPackRate: Decimal! + "The fixed monthly fee in USD charged to every PRO plan organization." + monthlyBaseFee: Decimal! + "The rate in USD per million transactions applied to each purchased transactions add-on pack." + transactionPackRate: Decimal! } -type OrganizationUsageCumulativeGigabyteHoursGraphCountData { +"A connection to a list of items." +type OrganizationRolesConnection { + "A list of edges." + edges: [OrganizationRolesEdge!] + "A flattened list of the nodes." + nodes: [Role!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type OrganizationRolesEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: Role! +} + +type OrganizationUsage { + """ + Returns the running cumulative gigabyte-hour storage consumption graph for + the period covered by wrapper. + """ + cumulativeGigabyteHours: OrganizationUsageCumulativeGigabyteHoursGraph + """ + Returns the running cumulative ingest volume graph for the period covered + by wrapper. + """ + cumulativeIngestVolume: OrganizationUsageCumulativeIngestVolumeGraph + """ + Returns the running cumulative transaction count graph for the period covered + by wrapper. + """ + cumulativeTransactions: OrganizationUsageCumulativeTransactionsGraph + """ + Returns the daily gigabyte-hour storage consumption graph for the period + covered by wrapper. + """ + gigabyteHours: OrganizationUsageGigabyteHoursGraph + """ + Returns the daily ingest volume graph for the period covered by + wrapper. + """ + ingestVolume: OrganizationUsageIngestVolumeGraph + period: OrganizationUsagePeriod! + """ + Returns the aggregated usage summary - totals, remaining quota, and excess consumption - + for the period covered by wrapper. + """ + summary: OrganizationUsageSummary + """ + Returns the daily transaction count graph for the period covered by + wrapper. + """ + transactions: OrganizationUsageTransactionsGraph +} + +type OrganizationUsageCumulativeGigabyteHoursGraph { + dataset: [OrganizationUsageCumulativeGigabyteHoursGraphData!]! +} + +type OrganizationUsageCumulativeGigabyteHoursGraphCountData { label: String! predictedValue: Float value: Float @@ -2901,13 +3347,99 @@ type OrganizationUsageCumulativeGigabyteHoursGraphData { values: [OrganizationUsageCumulativeGigabyteHoursGraphCountData!]! } +""" +Represents the cumulative ingest volume usage graph for an organization, +containing a time-series dataset of cumulative ingest volumes. +""" +type OrganizationUsageCumulativeIngestVolumeGraph { + "The ordered collection of data points that form the graph." + dataset: [OrganizationUsageCumulativeIngestVolumeGraphData!]! +} + +""" +Represents a single labeled volume entry within a cumulative ingest volume graph data point, +holding an actual measured value alongside a forward-looking predicted value. +""" +type OrganizationUsageCumulativeIngestVolumeGraphCountData { + "The human-readable label that identifies this volume entry (e.g. a telemetry type name)." + label: String! + """ + The model-predicted cumulative ingest volume, or null when no + prediction is available for this entry. + """ + predictedValue: Float + """ + The actual measured cumulative ingest volume, or null when the + measurement has not yet been recorded (e.g. future time buckets). + """ + value: Float +} + +""" +Represents a single time-series data point in the cumulative ingest volume graph, +grouping all per-label volume measurements observed at a specific point in time. +""" +type OrganizationUsageCumulativeIngestVolumeGraphData { + "The Unix timestamp (in seconds) identifying the start of this time bucket." + epoch: Long! + """ + The collection of per-label cumulative ingest volume measurements recorded at this time bucket. + Each entry in Values corresponds to a distinct + OrganizationUsageCumulativeIngestVolumeGraphCountData label. + """ + values: [OrganizationUsageCumulativeIngestVolumeGraphCountData!]! +} + +""" +Represents the cumulative transaction usage graph for an organization, +containing a time-series dataset of cumulative transaction counts. +""" +type OrganizationUsageCumulativeTransactionsGraph { + "The ordered collection of data points that form the graph." + dataset: [OrganizationUsageCumulativeTransactionsGraphData!]! +} + +""" +Represents a single labeled count entry within a cumulative transactions graph data point, +holding an actual measured value alongside a forward-looking predicted value. +""" +type OrganizationUsageCumulativeTransactionsGraphCountData { + "The human-readable label that identifies this count entry (e.g. a service or environment name)." + label: String! + """ + The model-predicted cumulative transaction count, or null when no + prediction is available for this entry. + """ + predictedValue: Float + """ + The actual measured cumulative transaction count, or null when the + measurement has not yet been recorded (e.g. future time buckets). + """ + value: Float +} + +""" +Represents a single time-series data point in the cumulative transactions graph, +grouping all per-label counts observed at a specific point in time. +""" +type OrganizationUsageCumulativeTransactionsGraphData { + "The Unix timestamp (in seconds) identifying the start of this time bucket." + epoch: Long! + """ + The collection of per-label cumulative transaction counts recorded at this time bucket. + Each entry in Values corresponds to a distinct + OrganizationUsageCumulativeTransactionsGraphCountData label. + """ + values: [OrganizationUsageCumulativeTransactionsGraphCountData!]! +} + type OrganizationUsageGigabyteHoursGraph { dataset: [OrganizationUsageGigabyteHoursGraphData!]! } type OrganizationUsageGigabyteHoursGraphCountData { label: String! - value: Float! + value: Float } type OrganizationUsageGigabyteHoursGraphData { @@ -2915,11 +3447,130 @@ type OrganizationUsageGigabyteHoursGraphData { values: [OrganizationUsageGigabyteHoursGraphCountData!]! } +""" +Represents the ingest volume portion of an organization's usage summary for the current +billing period, including measured usage and quota headroom. +""" +type OrganizationUsageIngestSummary { + """ + The ingest volume in bytes consumed beyond the included quota, + or null when quota information is not applicable. + """ + excessBytes: Long + """ + The total ingest volume in bytes included under the current plan and purchased packs, + or null when quota information is not applicable. + """ + quotaBytes: Long + "The total ingest volume in bytes recorded for the organization in the current billing period." + totalBytes: Long! +} + +""" +Represents the ingest volume usage graph for an organization, +containing a time-series dataset of ingested data volumes. +""" +type OrganizationUsageIngestVolumeGraph { + "The ordered collection of data points that form the graph." + dataset: [OrganizationUsageIngestVolumeGraphData!]! +} + +""" +Represents a single labeled volume entry within an ingest volume graph data point, +pairing a measured ingest volume with its identifying label. +""" +type OrganizationUsageIngestVolumeGraphCountData { + "The human-readable label that identifies this volume entry (e.g. a service or environment name)." + label: String! + "The measured ingest volume for this label within the time bucket." + value: Float +} + +""" +Represents a single time-series data point in the ingest volume graph, +grouping all per-label volume measurements observed at a specific point in time. +""" +type OrganizationUsageIngestVolumeGraphData { + "The Unix timestamp (in seconds) identifying the start of this time bucket." + epoch: Long! + """ + The collection of per-label ingest volume measurements recorded at this time bucket. + Each entry in Values corresponds to a distinct + OrganizationUsageIngestVolumeGraphCountData label. + """ + values: [OrganizationUsageIngestVolumeGraphCountData!]! +} + type OrganizationUsagePeriod { endDate: DateTime! startDate: DateTime! } +""" +Represents a snapshot of an organization's resource consumption for the current billing period, +split into transaction and ingest volume sub-summaries. +""" +type OrganizationUsageSummary { + "The ingest volume usage summary including totals, quota, and excess consumption." + ingest: OrganizationUsageIngestSummary! + "The transaction usage summary including totals, quota, and remaining allowance." + transactions: OrganizationUsageTransactionsSummary! +} + +""" +Represents the transaction usage graph for an organization, +containing a time-series dataset of per-period transaction counts. +""" +type OrganizationUsageTransactionsGraph { + "The ordered collection of data points that form the graph." + dataset: [OrganizationUsageTransactionsGraphData!]! +} + +""" +Represents a single labeled count entry within a transactions graph data point, +pairing a measured transaction count with its identifying label. +""" +type OrganizationUsageTransactionsGraphCountData { + "The human-readable label that identifies this count entry (e.g. a service or environment name)." + label: String! + "The measured transaction count for this label within the time bucket." + value: Float +} + +""" +Represents a single time-series data point in the transactions graph, +grouping all per-label transaction counts observed at a specific point in time. +""" +type OrganizationUsageTransactionsGraphData { + "The Unix timestamp (in seconds) identifying the start of this time bucket." + epoch: Long! + """ + The collection of per-label transaction counts recorded at this time bucket. + Each entry in Values corresponds to a distinct + OrganizationUsageTransactionsGraphCountData label. + """ + values: [OrganizationUsageTransactionsGraphCountData!]! +} + +""" +Represents the transaction portion of an organization's usage summary for the current +billing period, including measured usage and quota headroom. +""" +type OrganizationUsageTransactionsSummary { + """ + The total number of transactions included under the current plan and purchased packs, + or null when quota information is not applicable (e.g. for non-PRO plans). + """ + quota: Long + """ + The number of included transactions still available before the included quota is exhausted, + or null when quota information is not applicable. + """ + remaining: Long + "The total number of transactions recorded for the organization in the current billing period." + total: Long! +} + type OutputFieldChanged implements SchemaChange { changes: [OutputFieldChange!]! coordinate: String! @@ -2999,11 +3650,6 @@ type PersonalAccessTokenNotFoundError implements Error { message: String! } -type PersonalAccessTokenWithSecret { - secret: String! - token: PersonalAccessToken! -} - "A connection to a list of items." type PersonalAccessTokensConnection { "A list of edges." @@ -3022,6 +3668,11 @@ type PersonalAccessTokensEdge { node: PersonalAccessToken! } +type PersonalAccessTokenWithSecret { + secret: String! + token: PersonalAccessToken! +} + type PersonalWorkspaceNotSupportedError implements Error { message: String! } @@ -3078,21 +3729,6 @@ type PublishClientPayload { id: ID } -type PublishMcpFeatureCollectionPayload { - errors: [PublishMcpFeatureCollectionError!] - id: ID -} - -type PublishOpenApiCollectionPayload { - errors: [PublishOpenApiCollectionError!] - id: ID -} - -type PublishSchemaPayload { - errors: [PublishSchemaError!] - id: ID -} - type PublishedClient { client: Client! publishedVersions: [PublishedClientVersion!]! @@ -3101,17 +3737,290 @@ type PublishedClient { type PublishedClientVersion { publishedAt: DateTime! stage: Stage - tags: [String!]! + tags: [String!]! @deprecated(reason: "Use `version.tag` instead.") version: ClientVersion } +type PublishedOpenApiCollectionVersion implements Node { + id: ID! + publishedAt: DateTime! + stage: Stage + version: OpenApiCollectionVersion +} + +"A connection to a list of items." +type PublishedOpenApiCollectionVersionsConnection { + "A list of edges." + edges: [PublishedOpenApiCollectionVersionsEdge!] + "A flattened list of the nodes." + nodes: [PublishedOpenApiCollectionVersion!] + "Information to aid in pagination." + pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! +} + +"An edge in a connection." +type PublishedOpenApiCollectionVersionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: PublishedOpenApiCollectionVersion! +} + +type PublishedOpenApiEndpoint implements Node { + collectionVersion: OpenApiCollectionVersion + document(openApiCollectionVersionId: ID): String! + endpoint: OpenApiEndpoint + "Returns the executable document that already contains all referenced OpenAPI model fragments." + executableDocument(openApiCollectionVersionId: ID): String + id: ID! + metrics(from: DateTime, to: DateTime): PublishedOpenApiEndpointMetrics! + models( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): PublishedOpenApiEndpointModelsConnection + revisions( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): PublishedOpenApiEndpointRevisionsConnection + stage: Stage +} + +type PublishedOpenApiEndpointErrorsGraph { + dataset: [PublishedOpenApiEndpointErrorsGraphData!]! +} + +type PublishedOpenApiEndpointErrorsGraphData { + count: Long! + epoch: Long! +} + +type PublishedOpenApiEndpointLatencyGraph { + dataset: [PublishedOpenApiEndpointLatencyGraphData!]! +} + +type PublishedOpenApiEndpointLatencyGraphData { + epoch: Long! + max: Float! + mean: Float! + min: Float! + p50: Float! + p95: Float! + p99: Float! +} + +type PublishedOpenApiEndpointMetrics { + errorInsights( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + search: String + ): OpenApiEndpointErrorInsightsConnection + errorRate: Float! + errors: PublishedOpenApiEndpointErrorsGraph! + firstSeen: DateTime + impact: Float! + lastSeen: DateTime + latency: PublishedOpenApiEndpointLatencyGraph! + meanDuration: Float! + opm: Float! + p95Latency: Float! + p99Latency: Float! + requests: PublishedOpenApiEndpointRequestsGraph! + throughput: PublishedOpenApiEndpointThroughputGraph! + totalErrors: Long! + totalRequests: Long! +} + +"A connection to a list of items." +type PublishedOpenApiEndpointModelsConnection { + "A list of edges." + edges: [PublishedOpenApiEndpointModelsEdge!] + "A flattened list of the nodes." + nodes: [PublishedOpenApiModel!] + "Information to aid in pagination." + pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! +} + +"An edge in a connection." +type PublishedOpenApiEndpointModelsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: PublishedOpenApiModel! +} + +type PublishedOpenApiEndpointRequestsGraph { + dataset: [PublishedOpenApiEndpointRequestsGraphData!]! +} + +type PublishedOpenApiEndpointRequestsGraphData { + count: Long! + epoch: Long! +} + +type PublishedOpenApiEndpointRevision { + collectionVersion: OpenApiCollectionVersion! +} + +"A connection to a list of items." +type PublishedOpenApiEndpointRevisionsConnection { + "A list of edges." + edges: [PublishedOpenApiEndpointRevisionsEdge!] + "A flattened list of the nodes." + nodes: [PublishedOpenApiEndpointRevision!] + "Information to aid in pagination." + pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! +} + +"An edge in a connection." +type PublishedOpenApiEndpointRevisionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: PublishedOpenApiEndpointRevision! +} + +type PublishedOpenApiEndpointThroughputGraph { + dataset: [PublishedOpenApiEndpointThroughputGraphData!]! +} + +type PublishedOpenApiEndpointThroughputGraphData { + epoch: Long! + errorRate: Float! + opm: Float! + successRate: Float! + totalCount: Long! + totalCountWithError: Long! +} + +type PublishedOpenApiModel implements Node { + collectionVersion: OpenApiCollectionVersion + document(openApiCollectionVersionId: ID): String! + id: ID! + metrics: PublishedOpenApiModelMetrics! + model: OpenApiModel + referencedByEndpoints( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): PublishedOpenApiModelReferencedByEndpointsConnection + referencedInCollections( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): PublishedOpenApiModelReferencedInCollectionsConnection + revisions( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): PublishedOpenApiModelRevisionsConnection + stage: Stage +} + +type PublishedOpenApiModelMetrics { + "This includes direct references and transitive references through other models." + referencedByEndpointCount: Int! + referencedInCollectionCount: Int! +} + +"A connection to a list of items." +type PublishedOpenApiModelReferencedByEndpointsConnection { + "A list of edges." + edges: [PublishedOpenApiModelReferencedByEndpointsEdge!] + "A flattened list of the nodes." + nodes: [PublishedOpenApiEndpoint!] + "Information to aid in pagination." + pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! +} + +"An edge in a connection." +type PublishedOpenApiModelReferencedByEndpointsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: PublishedOpenApiEndpoint! +} + +"A connection to a list of items." +type PublishedOpenApiModelReferencedInCollectionsConnection { + "A list of edges." + edges: [PublishedOpenApiModelReferencedInCollectionsEdge!] + "A flattened list of the nodes." + nodes: [OpenApiCollection!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type PublishedOpenApiModelReferencedInCollectionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: OpenApiCollection! +} + +type PublishedOpenApiModelRevision { + collectionVersion: OpenApiCollectionVersion! +} + +"A connection to a list of items." +type PublishedOpenApiModelRevisionsConnection { + "A list of edges." + edges: [PublishedOpenApiModelRevisionsEdge!] + "A flattened list of the nodes." + nodes: [PublishedOpenApiModelRevision!] + "Information to aid in pagination." + pageInfo: PageInfo! + "Identifies the total count of items in the connection." + totalCount: Int! +} + +"An edge in a connection." +type PublishedOpenApiModelRevisionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: PublishedOpenApiModelRevision! +} + type PublishedSchemaVersion { publishedAt: DateTime! stage: Stage - tag: String! + tag: String! @deprecated(reason: "Use `version.tag` instead.") version: SchemaVersion } +type PublishMcpFeatureCollectionPayload { + errors: [PublishMcpFeatureCollectionError!] + id: ID +} + +type PublishOpenApiCollectionPayload { + errors: [PublishOpenApiCollectionError!] + id: ID +} + +type PublishSchemaPayload { + errors: [PublishSchemaError!] + id: ID +} + type PushDocumentChangesPayload { changes: [WorkspaceDocumentChangeResult!] errors: [PushDocumentChangesError!] @@ -3122,19 +4031,6 @@ type PushWorkspaceChangesPayload { errors: [PushWorkspaceChangesError!] } -type Query { - apiById(id: ID!): Api - fusionConfigurationByApiId(id: ID! stage: String!): FusionConfiguration - me: Viewer - "Fetches an object given its ID." - node("ID of the object." id: ID!): Node - "Lookup nodes by a list of IDs." - nodes("The list of node IDs." ids: [ID!]!): [Node]! - organizationById(id: ID!): Organization - stageById(id: ID!): Stage - workspaceById(workspaceId: ID!): Workspace -} - type ReadyTimeoutError implements ClientVersionPublishError & ClientVersionValidationError & SchemaVersionPublishError & SchemaVersionValidationError & FusionConfigurationPublishingError & OpenApiCollectionVersionPublishError & OpenApiCollectionVersionValidationError & McpFeatureCollectionVersionPublishError & McpFeatureCollectionVersionValidationError & ProcessingError { message: String! } @@ -3251,7 +4147,17 @@ type ScalarModifiedChange implements SchemaChange { type SchemaChangeLog implements StageChangeLog & Node { changedAt: DateTime! - changes("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int severity: SchemaChangeSeverity): SchemaChangesConnection + changes( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + severity: SchemaChangeSeverity + ): SchemaChangesConnection id: ID! kind: StageChangeLogKind! previousSchema: SchemaVersion @@ -3266,11 +4172,6 @@ type SchemaChangeLogStatistic { safe: Int! } -type SchemaChangeViolationError { - changes: [SchemaChangeLogEntry!]! - message: String! -} - "A connection to a list of items." type SchemaChangesConnection { "A list of edges." @@ -3289,11 +4190,28 @@ type SchemaChangesEdge { node: SchemaChangeLogEntry! } +type SchemaChangeViolationError { + changes: [SchemaChangeLogEntry!]! + message: String! +} + type SchemaCoordinateMetrics implements CoordinateMetrics { - clientUsage(clientId: ID from: DateTime! to: DateTime!): CoordinateClientUsage - clientUsages(from: DateTime! to: DateTime!): [CoordinateClientUsage!]! - requests(from: DateTime! resolution: Int! = 300 to: DateTime!): CoordinateRequestGraph - usages(from: DateTime! resolution: Int! = 300 to: DateTime!): CoordinateUsageGraph + clientUsage( + clientId: ID + from: DateTime! + to: DateTime! + ): CoordinateClientUsage + clientUsages(from: DateTime!, to: DateTime!): [CoordinateClientUsage!]! + requests( + from: DateTime! + resolution: Int! = 300 + to: DateTime! + ): CoordinateRequestGraph + usages( + from: DateTime! + resolution: Int! = 300 + to: DateTime! + ): CoordinateUsageGraph } type SchemaDeployment implements Node & Deployment { @@ -3309,7 +4227,17 @@ type SchemaDeployment implements Node & Deployment { } type SchemaDeploymentSchemaChanges { - changes("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int severity: SchemaChangeSeverity): SchemaChangesConnection + changes( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + severity: SchemaChangeSeverity + ): SchemaChangesConnection previousSchema: SchemaVersion schema: SchemaVersion statistic: SchemaChangeLogStatistic! @@ -3355,6 +4283,24 @@ type SchemaVersionRequestNotFoundError implements Error { requestId: ID! } +"A connection to a list of items." +type SchemaVersionsConnection { + "A list of edges." + edges: [SchemaVersionsEdge!] + "A flattened list of the nodes." + nodes: [SchemaVersion!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type SchemaVersionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: SchemaVersion! +} + type SchemaVersionSyntaxError implements SchemaVersionValidationError & SchemaVersionPublishError & ProcessingError { column: Int! line: Int! @@ -3372,22 +4318,9 @@ type SchemaVersionValidationSuccess implements SchemaVersionValidationResult { state: ProcessingState! } -"A connection to a list of items." -type SchemaVersionsConnection { - "A list of edges." - edges: [SchemaVersionsEdge!] - "A flattened list of the nodes." - nodes: [SchemaVersion!] - "Information to aid in pagination." - pageInfo: PageInfo! -} - -"An edge in a connection." -type SchemaVersionsEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: SchemaVersion! +type ServiceVersionMarker { + firstSeenAt: DateTime! + version: String! } type SetActiveWorkspacePayload { @@ -3397,22 +4330,112 @@ type SetActiveWorkspacePayload { type Stage implements Node { api: Api - changeLog("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int kind: [StageChangeLogKind!] "Returns the last _n_ elements from the list." last: Int): StageChangeLogConnection + changeLog( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + kind: [StageChangeLogKind!] + "Returns the last _n_ elements from the list." + last: Int + ): StageChangeLogConnection conditions: [StageCondition!]! coordinate(coordinate: String!): GraphQLTypeSystemMember - coordinates("Returns the elements in the list that come after the specified cursor." after: String "Returns the first _n_ elements from the list." first: Int from: DateTime isDeprecated: Boolean kinds: [CoordinateKind!] orderBy: [GraphQLCoordinateOrderByInput!] search: String to: DateTime): CoordinatesConnection - deployments("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): DeploymentsConnection + coordinates( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime + isDeprecated: Boolean + kinds: [CoordinateKind!] + orderBy: [GraphQLCoordinateOrderByInput!] + search: String + to: DateTime + ): CoordinatesConnection + deployments( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): DeploymentsConnection displayName: String! essentials: StageEssentials id: ID! - logDistribution(from: DateTime! to: DateTime!): OpenTelemetryLogsSeverityGraph - logs("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int from: DateTime "Returns the last _n_ elements from the list." last: Int to: DateTime): OpenTelemetryLogsConnection + logDistribution( + from: DateTime! + to: DateTime! + ): OpenTelemetryLogsSeverityGraph + logs( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime + "Returns the last _n_ elements from the list." + last: Int + to: DateTime + ): OpenTelemetryLogsConnection + mcpFeatureCollections( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): StageMcpFeatureCollectionsConnection metrics: StageMetrics! name: String! + openApiDeployments( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + ): StageOpenApiCollectionDeploymentsConnection + openApiSummary: OpenApiSummary! publishedClients: [PublishedClient!]! publishedFusionConfiguration: FusionConfiguration + publishedOpenApiCollections( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + search: String + ): StagePublishedOpenApiCollectionsConnection + publishedOpenApiEndpointById(id: ID!): PublishedOpenApiEndpoint + publishedOpenApiEndpoints( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime + openApiCollectionIds: [ID!] + orderBy: [OpenApiEndpointOrderByInput!] + search: String + to: DateTime + ): StagePublishedOpenApiEndpointsConnection + publishedOpenApiModelById(id: ID!): PublishedOpenApiModel + publishedOpenApiModels( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + openApiCollectionIds: [ID!] + orderBy: [OpenApiModelOrderByInput!] + search: String + ): StagePublishedOpenApiModelsConnection publishedSchema: PublishedSchemaVersion - traceById(seeker: String spanId: String traceId: String!): OpenTelemetryTrace + traceById( + seeker: String + spanId: String + traceId: String! + ): OpenTelemetryTrace } "A connection to a list of items." @@ -3434,11 +4457,27 @@ type StageChangeLogEdge { } type StageClientsMetrics { - insights("Returns the elements in the list that come after the specified cursor." after: String "Returns the first _n_ elements from the list." first: Int from: DateTime! orderBy: [ClientInsightsOrderByInput!] to: DateTime!): ClientInsightsConnection + insights( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime! + orderBy: [ClientInsightsOrderByInput!] + to: DateTime! + ): ClientInsightsConnection } type StageErrorsMetrics { - insights("Returns the elements in the list that come after the specified cursor." after: String "Returns the first _n_ elements from the list." first: Int from: DateTime! search: String to: DateTime!): ErrorInsightsConnection + insights( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime! + search: String + to: DateTime! + ): ErrorInsightsConnection } type StageEssentials { @@ -3457,13 +4496,33 @@ type StageLatencySummary { p99: Float } +"A connection to a list of items." +type StageMcpFeatureCollectionsConnection { + "A list of edges." + edges: [StageMcpFeatureCollectionsEdge!] + "A flattened list of the nodes." + nodes: [McpFeatureCollection!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type StageMcpFeatureCollectionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: McpFeatureCollection! +} + type StageMetrics { clients: StageClientsMetrics! errors: StageErrorsMetrics! - operation(hash: String! operationName: String!): StageOperationMetrics! + openApiCollections: StageOpenApiCollectionsMetrics! + operation(hash: String!, operationName: String!): StageOperationMetrics! operations: StageOperationsMetrics! resolver(coordinate: String!): StageResolverMetrics! resolvers: StageResolversMetrics! + serviceVersionMarkers(from: DateTime!, to: DateTime!): [ServiceVersionMarker!] subgraphs: StageSubgraphsMetrics! transaction(name: String!): StageTransactionMetrics! transactions: StageTransactionsMetrics! @@ -3475,12 +4534,54 @@ type StageNotFoundError implements Error { name: String! } +"A connection to a list of items." +type StageOpenApiCollectionDeploymentsConnection { + "A list of edges." + edges: [StageOpenApiCollectionDeploymentsEdge!] + "A flattened list of the nodes." + nodes: [OpenApiCollectionDeployment!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type StageOpenApiCollectionDeploymentsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: OpenApiCollectionDeployment! +} + +type StageOpenApiCollectionsMetrics { + insights( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime! + orderBy: [OpenApiCollectionInsightsOrderByInput!] + to: DateTime! + ): OpenApiCollectionInsightsConnection +} + type StageOperationMetrics { - latency(from: DateTime! to: DateTime!): OperationLatencyGraph - latencyDistribution(from: DateTime! to: DateTime!): OperationLatencyDistributionGraph + latency(from: DateTime!, to: DateTime!): OperationLatencyGraph + latencyDistribution( + from: DateTime! + to: DateTime! + ): OperationLatencyDistributionGraph requestDocument: RequestDocument - samples(from: DateTime! maxLatency: Float minLatency: Float to: DateTime!): [OperationTraceSample!]! - throughput(from: DateTime! operationKinds: [OperationKind!] to: DateTime!): OperationThroughputGraph + samples( + from: DateTime! + maxLatency: Float + minLatency: Float + to: DateTime! + ): [OperationTraceSample!]! + throughput( + from: DateTime! + operationKinds: [OperationKind!] @deprecated(reason: "Not longer in use") + to: DateTime! + ): OperationThroughputGraph } type StageOperationMetricsSummary { @@ -3489,23 +4590,117 @@ type StageOperationMetricsSummary { } type StageOperationsMetrics { - insights("Returns the elements in the list that come after the specified cursor." after: String "Returns the first _n_ elements from the list." first: Int from: DateTime! operationKinds: [OperationKind!] orderBy: [OperationInsightsOrderByInput!] search: String to: DateTime!): OperationInsightsConnection - latency(from: DateTime! operationKinds: [OperationKind!] to: DateTime!): OperationsLatencyGraph - summary(from: DateTime! to: DateTime!): StageOperationMetricsSummary! - throughput(from: DateTime! operationKinds: [OperationKind!] to: DateTime!): OperationsThroughputGraph + insights( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime! + operationKinds: [OperationKind!] + orderBy: [OperationInsightsOrderByInput!] + search: String + to: DateTime! + ): OperationInsightsConnection + latency( + from: DateTime! + operationKinds: [OperationKind!] + to: DateTime! + ): OperationsLatencyGraph + summary(from: DateTime!, to: DateTime!): StageOperationMetricsSummary! + throughput( + from: DateTime! + operationKinds: [OperationKind!] + to: DateTime! + ): OperationsThroughputGraph +} + +"A connection to a list of items." +type StagePublishedOpenApiCollectionsConnection { + "A list of edges." + edges: [StagePublishedOpenApiCollectionsEdge!] + "A flattened list of the nodes." + nodes: [OpenApiCollection!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type StagePublishedOpenApiCollectionsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: OpenApiCollection! +} + +"A connection to a list of items." +type StagePublishedOpenApiEndpointsConnection { + "A list of edges." + edges: [StagePublishedOpenApiEndpointsEdge!] + "A flattened list of the nodes." + nodes: [PublishedOpenApiEndpoint!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type StagePublishedOpenApiEndpointsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: PublishedOpenApiEndpoint! +} + +"A connection to a list of items." +type StagePublishedOpenApiModelsConnection { + "A list of edges." + edges: [StagePublishedOpenApiModelsEdge!] + "A flattened list of the nodes." + nodes: [PublishedOpenApiModel!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type StagePublishedOpenApiModelsEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: PublishedOpenApiModel! } type StageResolverMetrics { - latency(from: DateTime! to: DateTime!): ResolverLatencyGraph - throughput(from: DateTime! to: DateTime!): ResolverThroughputGraph + latency(from: DateTime!, to: DateTime!): ResolverLatencyGraph + throughput(from: DateTime!, to: DateTime!): ResolverThroughputGraph } type StageResolversMetrics { - insights("Returns the elements in the list that come after the specified cursor." after: String "Returns the first _n_ elements from the list." first: Int from: DateTime! orderBy: [ResolverInsightsOrderByInput!] search: String to: DateTime!): ResolverInsightsConnection + insights( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime! + orderBy: [ResolverInsightsOrderByInput!] + search: String + to: DateTime! + ): ResolverInsightsConnection +} + +type StagesHavePublishedDependenciesError implements Error { + message: String! + stages: [Stage!]! } type StageSubgraphsMetrics { - insights("Returns the elements in the list that come after the specified cursor." after: String "Returns the first _n_ elements from the list." first: Int from: DateTime! orderBy: [SubgraphInsightsOrderByInput!] to: DateTime!): SubgraphInsightsConnection + insights( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime! + orderBy: [SubgraphInsightsOrderByInput!] + to: DateTime! + ): SubgraphInsightsConnection } type StageThroughputSummary { @@ -3517,10 +4712,21 @@ type StageThroughputSummary { } type StageTransactionMetrics { - latency(from: DateTime! to: DateTime!): OpenTelemetryTransactionLatencyGraph - latencyDistribution(from: DateTime! to: DateTime!): OpenTelemetryTransactionLatencyDistributionGraph - samples(from: DateTime! maxLatency: Float minLatency: Float to: DateTime!): [OpenTelemetryTransactionTraceSample!]! - throughput(from: DateTime! to: DateTime!): OpenTelemetryTransactionThroughputGraph + latency(from: DateTime!, to: DateTime!): OpenTelemetryTransactionLatencyGraph + latencyDistribution( + from: DateTime! + to: DateTime! + ): OpenTelemetryTransactionLatencyDistributionGraph + samples( + from: DateTime! + maxLatency: Float + minLatency: Float + to: DateTime! + ): [OpenTelemetryTransactionTraceSample!]! + throughput( + from: DateTime! + to: DateTime! + ): OpenTelemetryTransactionThroughputGraph } type StageTransactionMetricsSummary { @@ -3529,21 +4735,34 @@ type StageTransactionMetricsSummary { } type StageTransactionsMetrics { - insights("Returns the elements in the list that come after the specified cursor." after: String "Returns the first _n_ elements from the list." first: Int from: DateTime! orderBy: [OpenTelemetryTransactionInsightsOrderByInput!] search: String spanKinds: [OpenTelemetrySpanKind!] to: DateTime!): OpenTelemetryTransactionInsightsConnection - latency(from: DateTime! spanKinds: [OpenTelemetrySpanKind!] to: DateTime!): OpenTelemetryTransactionsLatencyGraph - summary(from: DateTime! to: DateTime!): StageTransactionMetricsSummary! - throughput(from: DateTime! spanKinds: [OpenTelemetrySpanKind!] to: DateTime!): OpenTelemetryTransactionsThroughputGraph + insights( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the first _n_ elements from the list." + first: Int + from: DateTime! + orderBy: [OpenTelemetryTransactionInsightsOrderByInput!] + search: String + spanKinds: [OpenTelemetrySpanKind!] + to: DateTime! + ): OpenTelemetryTransactionInsightsConnection + latency( + from: DateTime! + spanKinds: [OpenTelemetrySpanKind!] + to: DateTime! + ): OpenTelemetryTransactionsLatencyGraph + summary(from: DateTime!, to: DateTime!): StageTransactionMetricsSummary! + throughput( + from: DateTime! + spanKinds: [OpenTelemetrySpanKind!] + to: DateTime! + ): OpenTelemetryTransactionsThroughputGraph } type StageValidationError implements Error { message: String! } -type StagesHavePublishedDependenciesError implements Error { - message: String! - stages: [Stage!]! -} - type StartFusionConfigurationCompositionPayload { errors: [StartFusionConfigurationCompositionError!] requestId: ID @@ -3614,22 +4833,6 @@ type SubgraphThroughputGraphData { totalCountWithError: Long! } -type Subscription { - onClientVersionPublishingUpdate(requestId: ID!): ClientVersionPublishResult! - onClientVersionValidationUpdate(requestId: ID!): ClientVersionValidationResult! - onFusionConfigurationPublishingTaskChanged(requestId: ID!): FusionConfigurationPublishingResult! - onMcpFeatureCollectionVersionPublishingUpdate(requestId: ID!): McpFeatureCollectionVersionPublishResult! - onMcpFeatureCollectionVersionValidationUpdate(requestId: ID!): McpFeatureCollectionVersionValidationResult! - onOpenApiCollectionVersionPublishingUpdate(requestId: ID!): OpenApiCollectionVersionPublishResult! - onOpenApiCollectionVersionValidationUpdate(requestId: ID!): OpenApiCollectionVersionValidationResult! - onPersistedQueriesChanged(apiId: ID! stageName: String!): PersistedQueriesChanged! @deprecated - onSchemaVersionPublishingUpdate(requestId: ID!): SchemaVersionPublishResult! - onSchemaVersionValidationUpdate(requestId: ID!): SchemaVersionValidationResult! - onStageChanged(apiId: ID! kind: [StageChangeKind!] stageName: String!): StageChangedEvent! - onStageChangeLogAdded(apiId: ID! kind: [StageChangeLogKind!] stageName: String!): StageChangeLog! - onStageDeploymentsChanged(stageId: ID!): DeploymentEvent! -} - type ThemeSettings { darkThemeName: String lightThemeName: String @@ -3668,295 +4871,647 @@ type TypeSystemMemberRemovedChange implements SchemaChange { severity: SchemaChangeSeverity! } -type UnauthorizedOperation implements Error { - message: String! +type UnauthorizedOperation implements Error { + message: String! +} + +type UnexpectedErrorOnChange implements Error { + message: String! + workspaceId: ID! +} + +type UnexpectedErrorOnDocumentChange implements Error { + message: String! + workspaceId: ID! +} + +type UnexpectedProcessingError implements SchemaVersionValidationError & SchemaVersionPublishError & ClientVersionValidationError & ClientVersionPublishError & FusionConfigurationPublishingError & FusionConfigurationValidationError & OpenApiCollectionVersionPublishError & OpenApiCollectionVersionValidationError & McpFeatureCollectionVersionPublishError & McpFeatureCollectionVersionValidationError & ProcessingError { + message: String! +} + +type UnionMemberAdded implements SchemaChange { + severity: SchemaChangeSeverity! + typeName: String! +} + +type UnionMemberRemoved implements SchemaChange { + severity: SchemaChangeSeverity! + typeName: String! +} + +type UnionModifiedChange implements SchemaChange { + changes: [UnionChange!]! + coordinate: String! + kind: TypeSystemMemberKind! + severity: SchemaChangeSeverity! +} + +type UnpublishClientPayload { + clientVersion: ClientVersion + errors: [UnpublishClientError!] +} + +type UpdateApiSettingsPayload { + api: Api + errors: [UpdateApiSettingsError!] +} + +type UpdateFeatureFlagsPayload { + errors: [UpdateFeatureFlagsError!] + settings: UserSettings +} + +type UpdateMockSchemaPayload { + errors: [UpdateMockSchemaError!] + mockSchema: MockSchema +} + +type UpdatePreferencesPayload { + errors: [UpdatePreferencesError!] + preferences: Any +} + +type UpdateStagesPayload { + api: Api + errors: [UpdateStagesError!] +} + +type UpdateThemeSettingsPayload { + errors: [UpdateThemeSettingsError!] + settings: UserSettings +} + +type UploadClientPayload { + clientVersion: ClientVersion + errors: [UploadClientError!] +} + +type UploadFusionSubgraphPayload { + errors: [UploadFusionSubgraphError!] + fusionSubgraphVersion: FusionSubgraphVersion +} + +type UploadMcpFeatureCollectionPayload { + errors: [UploadMcpFeatureCollectionError!] + mcpFeatureCollectionVersion: McpFeatureCollectionVersion +} + +type UploadOpenApiCollectionPayload { + errors: [UploadOpenApiCollectionError!] + openApiCollectionVersion: OpenApiCollectionVersion +} + +type UploadSchemaPayload { + errors: [UploadSchemaError!] + schemaVersion: SchemaVersion +} + +type User implements Node { + id: ID! + username: String! +} + +type UserInfo { + id: ID! + username: String! +} + +type UserSettings { + featureFlags: [String!]! + theme: ThemeSettings! +} + +type ValidateClientPayload { + errors: [ValidateClientError!] + id: ID +} + +type ValidateFusionConfigurationCompositionPayload { + errors: [ValidateFusionConfigurationCompositionError!] + requestId: ID +} + +type ValidateMcpFeatureCollectionPayload { + errors: [ValidateMcpFeatureCollectionError!] + id: ID +} + +type ValidateOpenApiCollectionPayload { + errors: [ValidateOpenApiCollectionError!] + id: ID +} + +type ValidateSchemaPayload { + errors: [ValidateSchemaError!] + id: ID +} + +type ValidationError implements Error { + errors: [ValidationErrorProperty!]! + message: String! +} + +type ValidationErrorProperty { + message: String! +} + +type ValidationInProgress implements FusionConfigurationPublishingResult & ClientVersionValidationResult & SchemaVersionValidationResult & OpenApiCollectionVersionValidationResult & McpFeatureCollectionVersionValidationResult { + state: ProcessingState! +} + +type Viewer { + activeOrganization: Organization + activeWorkspace: Workspace + billingUrl: String + manageTenantUrl: String + organization: OrganizationInfo + personalAccessTokens( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): PersonalAccessTokensConnection + preferences: Any! + sessionId: String! + settings: UserSettings! + user: User + workspaces( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): WorkspacesConnection +} + +type WaitForApproval implements SchemaVersionPublishResult & ClientVersionPublishResult & FusionConfigurationPublishingResult & OpenApiCollectionVersionPublishResult & McpFeatureCollectionVersionPublishResult { + deployment: Deployment + state: ProcessingState! +} + +type Workspace implements Node { + apiDocuments( + "Returns the elements in the list that come after the specified cursor." + after: Version + "Returns the first _n_ elements from the list." + first: Int + ): ApiDocumentsConnection + apiKeys( + "Returns the elements in the list that come after the specified cursor." + after: String + "Returns the elements in the list that come before the specified cursor." + before: String + "Returns the first _n_ elements from the list." + first: Int + "Returns the last _n_ elements from the list." + last: Int + ): ApiKeysConnection + apis( + "Returns the elements in the list that come after the specified cursor." + after: Version + "Returns the first _n_ elements from the list." + first: Int + ): ApisConnection + changed(version: Version!): Boolean! + changes( + "Returns the elements in the list that come after the specified cursor." + after: Version + "Returns the first _n_ elements from the list." + first: Int + ): ChangesConnection + documentChanges( + "Returns the elements in the list that come after the specified cursor." + after: Version + "Returns the first _n_ elements from the list." + first: Int + ): DocumentChangesConnection @deprecated(reason: "Use changes") + documents( + "Returns the elements in the list that come after the specified cursor." + after: Version + "Returns the first _n_ elements from the list." + first: Int + ): DocumentsConnection + documentsChanged(version: Version): Boolean! + @deprecated(reason: "Use changed") + environments( + "Returns the elements in the list that come after the specified cursor." + after: Version + "Returns the first _n_ elements from the list." + first: Int + ): EnvironmentsConnection + id: ID! + members: [WorkspaceMember!]! + name: String! + personal: Boolean! + version: Version! +} + +type WorkspaceChangePayload { + error: WorkspaceChangeError + referenceId: String! + result: WorkspaceChangeResult +} + +type WorkspaceDocument implements Node { + activeConnectionKind: String! + body: String! + createdAt: DateTime! + createdBy: UserInfo! + httpConnection: WorkspaceDocumentHttpConnection + id: ID! + modifiedAt: DateTime! + modifiedBy: UserInfo! + name: String! + path: [String!]! + variables: String + version: Version! + workspace: Workspace +} + +type WorkspaceDocumentAuthentication { + activeAuthenticationKind: String! + basicOptions: BasicAuthenticationFlowOptions + bearerOptions: BearerAuthenticationFlowOptions + oAuth2Options: OAuth2AuthenticationFlowOptions +} + +type WorkspaceDocumentChangeResult { + document: WorkspaceDocument + error: WorkspaceDocumentChangeError + referenceId: String! +} + +type WorkspaceDocumentHeader { + enabled: Boolean! + name: String! + value: String! +} + +type WorkspaceDocumentHttpConnection { + authentication: WorkspaceDocumentAuthentication + endpoint: String! + headers: [WorkspaceDocumentHeader!] + includeCookies: Boolean! + sdlEndpoint: String + sseSubscriptionEndpoint: String + subscriptionEndpoint: String + subscriptionProtocol: String + useGet: Boolean! + useTunnel: Boolean! +} + +type WorkspaceMember { + role: WorkspaceUserRole! + user: UserInfo! +} + +type WorkspaceNotFound implements Error { + message: String! + workspaceId: ID! +} + +type WorkspaceNotFoundForChange implements Error { + message: String! + workspaceId: ID! +} + +type WorkspaceNotFoundForDocument implements Error { + message: String! + workspaceId: ID! +} + +type WorkspacePermissionScope implements PermissionScope { + id: ID! + type: String! + workspace: Workspace +} + +"A connection to a list of items." +type WorkspacesConnection { + "A list of edges." + edges: [WorkspacesEdge!] + "A flattened list of the nodes." + nodes: [Workspace!] + "Information to aid in pagination." + pageInfo: PageInfo! +} + +"An edge in a connection." +type WorkspacesEdge { + "A cursor for use in pagination." + cursor: String! + "The item at the end of the edge." + node: Workspace! +} + +interface ApiChangeLog implements WorkspaceChangeLog { + apiId: ID! + changedAt: DateTime! + changedBy: UserInfo! + id: ID! + name: String! + path: [String!]! + version: Version! + workspaceId: ID! +} + +interface ApiDocumentChangeLog implements WorkspaceChangeLog { + apiId: ID! + changedAt: DateTime! + changedBy: UserInfo! + documentId: ID! + id: ID! + name: String! + path: [String!]! + version: Version! + workspaceId: ID! } -type UnexpectedErrorOnChange implements Error { +interface ClientVersionPublishError { message: String! - workspaceId: ID! } -type UnexpectedErrorOnDocumentChange implements Error { - message: String! - workspaceId: ID! +interface ClientVersionPublishResult { + state: ProcessingState! } -type UnexpectedProcessingError implements SchemaVersionValidationError & SchemaVersionPublishError & ClientVersionValidationError & ClientVersionPublishError & FusionConfigurationPublishingError & FusionConfigurationValidationError & OpenApiCollectionVersionPublishError & OpenApiCollectionVersionValidationError & McpFeatureCollectionVersionPublishError & McpFeatureCollectionVersionValidationError & ProcessingError { +interface ClientVersionValidationError { message: String! } -type UnionMemberAdded implements SchemaChange { - severity: SchemaChangeSeverity! - typeName: String! +interface ClientVersionValidationResult { + state: ProcessingState! } -type UnionMemberRemoved implements SchemaChange { - severity: SchemaChangeSeverity! - typeName: String! +interface CoordinateMetrics { + clientUsage( + clientId: ID + from: DateTime! + to: DateTime! + ): CoordinateClientUsage + clientUsages(from: DateTime!, to: DateTime!): [CoordinateClientUsage!]! + requests( + from: DateTime! + resolution: Int! = 300 + to: DateTime! + ): CoordinateRequestGraph + usages( + from: DateTime! + resolution: Int! = 300 + to: DateTime! + ): CoordinateUsageGraph } -type UnionModifiedChange implements SchemaChange { - changes: [UnionChange!]! - coordinate: String! - kind: TypeSystemMemberKind! - severity: SchemaChangeSeverity! +interface Deployment { + approval: DeploymentApproval + createdAt: DateTime! + id: ID! + logs: [DeploymentLog!]! + source: SourceMetadata + status: DeploymentStatus! + tag: String! } -type UnpublishClientPayload { - clientVersion: ClientVersion - errors: [UnpublishClientError!] +interface DeploymentLog { + message: String! + timestamp: DateTime! } -type UpdateApiSettingsPayload { - api: Api - errors: [UpdateApiSettingsError!] +interface DocumentChangeLog implements WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + documentId: ID! + id: ID! + name: String! + path: [String!]! + version: Version! + workspaceId: ID! } -type UpdateFeatureFlagsPayload { - errors: [UpdateFeatureFlagsError!] - settings: UserSettings +interface EnvironmentChangeLog implements WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + environmentId: ID! + id: ID! + name: String! + version: Version! + workspaceId: ID! } -type UpdateMockSchemaPayload { - errors: [UpdateMockSchemaError!] - mockSchema: MockSchema +interface Error { + message: String! } -type UpdatePreferencesPayload { - errors: [UpdatePreferencesError!] - preferences: Any +interface FusionConfigurationPublishingError { + message: String! } -type UpdateStagesPayload { - api: Api - errors: [UpdateStagesError!] +interface FusionConfigurationPublishingResult { + state: ProcessingState! } -type UpdateThemeSettingsPayload { - errors: [UpdateThemeSettingsError!] - settings: UserSettings +interface FusionConfigurationValidationError { + message: String! } -type UploadClientPayload { - clientVersion: ClientVersion - errors: [UploadClientError!] +interface GraphQLInputValueDefinition implements GraphQLTypeSystemMember { + coordinate: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type UploadFusionSubgraphPayload { - errors: [UploadFusionSubgraphError!] - fusionSubgraphVersion: FusionSubgraphVersion +interface GraphQLOutputFieldArgumentDefinition implements GraphQLTypeSystemMember & GraphQLInputValueDefinition { + coordinate: String! + declaringField: String! + declaringType: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type UploadMcpFeatureCollectionPayload { - errors: [UploadMcpFeatureCollectionError!] - mcpFeatureCollectionVersion: McpFeatureCollectionVersion +interface GraphQLOutputFieldDefinition implements GraphQLTypeSystemMember { + arguments: GraphQLOutputFieldDefinitionArgumentsConnection! + coordinate: String! + id: ID! + isDeprecated: Boolean! + metrics: CoordinateMetrics! + name: String! + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type UploadOpenApiCollectionPayload { - errors: [UploadOpenApiCollectionError!] - openApiCollectionVersion: OpenApiCollectionVersion +interface GraphQLOutputFieldDefinitionArgumentsConnection { + nodes: [GraphQLOutputFieldArgumentDefinition!]! } -type UploadSchemaPayload { - errors: [UploadSchemaError!] - schemaVersion: SchemaVersion +interface GraphQLTypeSystemMember { + coordinate: String! + isDeprecated: Boolean! + metrics: CoordinateMetrics + usage(from: DateTime, to: DateTime): CoordinateUsage! } -type User implements Node { +interface GroupMember { + assignedAt: DateTime! + group: Group id: ID! - username: String! } -type UserInfo { - id: ID! - username: String! +interface McpFeatureCollectionValidationEntity { + errors: [McpFeatureCollectionValidationEntityError!]! } -type UserSettings { - featureFlags: [String!]! - theme: ThemeSettings! +interface McpFeatureCollectionValidationEntityError { + message: String! } -type ValidateClientPayload { - errors: [ValidateClientError!] - id: ID +interface McpFeatureCollectionVersionPublishError { + message: String! } -type ValidateFusionConfigurationCompositionPayload { - errors: [ValidateFusionConfigurationCompositionError!] - requestId: ID +interface McpFeatureCollectionVersionPublishResult { + state: ProcessingState! } -type ValidateMcpFeatureCollectionPayload { - errors: [ValidateMcpFeatureCollectionError!] - id: ID +interface McpFeatureCollectionVersionValidationError { + message: String! } -type ValidateOpenApiCollectionPayload { - errors: [ValidateOpenApiCollectionError!] - id: ID +interface McpFeatureCollectionVersionValidationResult { + state: ProcessingState! } -type ValidateSchemaPayload { - errors: [ValidateSchemaError!] - id: ID +"The node interface is implemented by entities that have a global unique identifier." +interface Node { + id: ID! } -type ValidationError implements Error { - errors: [ValidationErrorProperty!]! - message: String! +interface OpenApiCollectionValidationEntity { + errors: [OpenApiCollectionValidationEntityError!]! } -type ValidationErrorProperty { +interface OpenApiCollectionValidationEntityError { message: String! } -type ValidationInProgress implements FusionConfigurationPublishingResult & ClientVersionValidationResult & SchemaVersionValidationResult & OpenApiCollectionVersionValidationResult & McpFeatureCollectionVersionValidationResult { - state: ProcessingState! -} - -type Viewer { - activeOrganization: Organization - activeWorkspace: Workspace - billingUrl: String - manageTenantUrl: String - organization: OrganizationInfo - personalAccessTokens("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): PersonalAccessTokensConnection - preferences: Any! - sessionId: String! - settings: UserSettings! - user: User - workspaces("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): WorkspacesConnection +interface OpenApiCollectionVersionPublishError { + message: String! } -type WaitForApproval implements SchemaVersionPublishResult & ClientVersionPublishResult & FusionConfigurationPublishingResult & OpenApiCollectionVersionPublishResult & McpFeatureCollectionVersionPublishResult { - deployment: Deployment +interface OpenApiCollectionVersionPublishResult { state: ProcessingState! } -type Workspace implements Node { - apiDocuments("Returns the elements in the list that come after the specified cursor." after: Version "Returns the first _n_ elements from the list." first: Int): ApiDocumentsConnection - apiKeys("Returns the elements in the list that come after the specified cursor." after: String "Returns the elements in the list that come before the specified cursor." before: String "Returns the first _n_ elements from the list." first: Int "Returns the last _n_ elements from the list." last: Int): ApiKeysConnection - apis("Returns the elements in the list that come after the specified cursor." after: Version "Returns the first _n_ elements from the list." first: Int): ApisConnection - changed(version: Version!): Boolean! - changes("Returns the elements in the list that come after the specified cursor." after: Version "Returns the first _n_ elements from the list." first: Int): ChangesConnection - documentChanges("Returns the elements in the list that come after the specified cursor." after: Version "Returns the first _n_ elements from the list." first: Int): DocumentChangesConnection - documents("Returns the elements in the list that come after the specified cursor." after: Version "Returns the first _n_ elements from the list." first: Int): DocumentsConnection - documentsChanged(version: Version): Boolean! - environments("Returns the elements in the list that come after the specified cursor." after: Version "Returns the first _n_ elements from the list." first: Int): EnvironmentsConnection - id: ID! - members: [WorkspaceMember!]! - name: String! - personal: Boolean! - version: Version! +interface OpenApiCollectionVersionValidationError { + message: String! } -type WorkspaceChangePayload { - error: WorkspaceChangeError - referenceId: String! - result: WorkspaceChangeResult +interface OpenApiCollectionVersionValidationResult { + state: ProcessingState! } -type WorkspaceDocument implements Node { - activeConnectionKind: String! - body: String! - createdAt: DateTime! - createdBy: UserInfo! - httpConnection: WorkspaceDocumentHttpConnection - id: ID! - modifiedAt: DateTime! - modifiedBy: UserInfo! - name: String! - path: [String!]! - variables: String - version: Version! - workspace: Workspace +interface OpenTelemetryAttribute { + key: String! } -type WorkspaceDocumentAuthentication { - activeAuthenticationKind: String! - basicOptions: BasicAuthenticationFlowOptions - bearerOptions: BearerAuthenticationFlowOptions - oAuth2Options: OAuth2AuthenticationFlowOptions +interface OpenTelemetrySpan { + api: Api + clockSkew: Float + duration: Float! + epoch: Float! + events: [OpenTelemetryTraceEvent!]! + links: [OpenTelemetryTraceLink!]! + parentSpanId: String! + resourceAttributes: [Attribute!]! + spanAttributes: [Attribute!]! + spanId: String! + spanKind: String! + spanName: String! + stage: Stage + statusCode: String! + statusMessage: String! + traceId: String! + traceState: String! } -type WorkspaceDocumentChangeResult { - document: WorkspaceDocument - error: WorkspaceDocumentChangeError - referenceId: String! +interface PermissionScope { + id: ID! + type: String! } -type WorkspaceDocumentHeader { - enabled: Boolean! - name: String! - value: String! +interface ProcessingError { + message: String! } -type WorkspaceDocumentHttpConnection { - authentication: WorkspaceDocumentAuthentication - endpoint: String! - headers: [WorkspaceDocumentHeader!] - includeCookies: Boolean! - sdlEndpoint: String - sseSubscriptionEndpoint: String - subscriptionEndpoint: String - subscriptionProtocol: String - useGet: Boolean! - useTunnel: Boolean! +interface SchemaChange { + severity: SchemaChangeSeverity! } -type WorkspaceMember { - role: WorkspaceUserRole! - user: UserInfo! +interface SchemaVersionPublishError { + message: String! } -type WorkspaceNotFound implements Error { - message: String! - workspaceId: ID! +interface SchemaVersionPublishResult { + state: ProcessingState! } -type WorkspaceNotFoundForChange implements Error { +interface SchemaVersionValidationError { message: String! - workspaceId: ID! } -type WorkspaceNotFoundForDocument implements Error { - message: String! - workspaceId: ID! +interface SchemaVersionValidationResult { + state: ProcessingState! } -type WorkspacePermissionScope implements PermissionScope { +interface StageChangedEvent { + kind: StageChangeKind! +} + +interface StageChangeLog { + changedAt: DateTime! id: ID! - type: String! - workspace: Workspace + kind: StageChangeLogKind! + tag: String! } -"A connection to a list of items." -type WorkspacesConnection { - "A list of edges." - edges: [WorkspacesEdge!] - "A flattened list of the nodes." - nodes: [Workspace!] - "Information to aid in pagination." - pageInfo: PageInfo! +interface Subgraph { + api: Api + id: ID! + name: String! } -"An edge in a connection." -type WorkspacesEdge { - "A cursor for use in pagination." - cursor: String! - "The item at the end of the edge." - node: Workspace! +interface WorkspaceChangeLog { + changedAt: DateTime! + changedBy: UserInfo! + id: ID! + version: Version! + workspaceId: ID! } union ApiKeyReference = Api -union ApproveDeploymentError = UnauthorizedOperation | DeploymentNotFoundError | DeploymentIsNotWaitingForApprovalError +union ApproveDeploymentError = + | UnauthorizedOperation + | DeploymentNotFoundError + | DeploymentIsNotWaitingForApprovalError union ArgumentChange = DeprecatedChange | DescriptionChanged | TypeChanged -union AuthorizationEventLogPrincipal = UserInfo | ApiKey | OrganizationMember | Group +union AuthorizationEventLogPrincipal = + | UserInfo + | ApiKey + | OrganizationMember + | Group union AuthorizationEventLogRealm = Organization | Workspace | User @@ -3964,111 +5519,278 @@ union AuthorizationEventLogResource = Organization | Workspace | Api union AuthorizationEventLogSubject = User | ApiKey -union BeginFusionConfigurationPublishError = UnauthorizedOperation | ApiNotFoundError | StageNotFoundError | SubgraphInvalidError | InvalidProcessingStateTransitionError | InvalidSourceMetadataInputError +union BeginFusionConfigurationPublishError = + | UnauthorizedOperation + | ApiNotFoundError + | StageNotFoundError + | SubgraphInvalidError + | InvalidProcessingStateTransitionError + | InvalidSourceMetadataInputError -union CancelDeploymentError = UnauthorizedOperation | DeploymentNotFoundError | DeploymentCannotBeCancelledError +union CancelDeploymentError = + | UnauthorizedOperation + | DeploymentNotFoundError + | DeploymentCannotBeCancelledError -union CancelFusionConfigurationCompositionError = UnauthorizedOperation | FusionConfigurationRequestNotFoundError | InvalidProcessingStateTransitionError +union CancelFusionConfigurationCompositionError = + | UnauthorizedOperation + | FusionConfigurationRequestNotFoundError + | InvalidProcessingStateTransitionError union ClientDeploymentError = PersistedQueryValidationError -union CommitFusionConfigurationPublishError = UnauthorizedOperation | FusionConfigurationRequestNotFoundError | InvalidProcessingStateTransitionError +union CommitFusionConfigurationPublishError = + | UnauthorizedOperation + | FusionConfigurationRequestNotFoundError + | InvalidProcessingStateTransitionError union CreateAccountError = UnauthorizedOperation -union CreateApiKeyError = ApiNotFoundError | WorkspaceNotFound | PersonalWorkspaceNotSupportedError | ValidationError | UnauthorizedOperation | RoleNotFoundError - -union CreateApiKeyForApiError = ApiNotFoundError | PersonalWorkspaceNotSupportedError | ValidationError | UnauthorizedOperation - -union CreateClientError = ApiNotFoundError | UnauthorizedOperation - -union CreateMcpFeatureCollectionError = ApiNotFoundError | UnauthorizedOperation - -union CreateMockSchemaError = ApiNotFoundError | MockSchemaNonUniqueNameError | UnauthorizedOperation | ValidationError - -union CreateOpenApiCollectionError = ApiNotFoundError | UnauthorizedOperation +union CreateApiKeyError = + | ApiNotFoundError + | WorkspaceNotFound + | PersonalWorkspaceNotSupportedError + | ValidationError + | UnauthorizedOperation + | RoleNotFoundError + +union CreateApiKeyForApiError = + | ApiNotFoundError + | PersonalWorkspaceNotSupportedError + | ValidationError + | UnauthorizedOperation + +union CreateClientError = + | ApiNotFoundError + | UnauthorizedOperation + | DuplicateNameError + +union CreateMcpFeatureCollectionError = + | ApiNotFoundError + | UnauthorizedOperation + | DuplicateNameError + +union CreateMockSchemaError = + | ApiNotFoundError + | MockSchemaNonUniqueNameError + | UnauthorizedOperation + | ValidationError + +union CreateOpenApiCollectionError = + | ApiNotFoundError + | UnauthorizedOperation + | DuplicateNameError union CreatePersonalAccessTokenError = ValidationError | UnauthorizedOperation union CreateWorkspaceError = UnauthorizedOperation | ValidationError -union DeleteApiByIdError = ApiNotFoundError | UnauthorizedOperation | ApiDeletionFailedError +union DeleteApiByIdError = + | ApiNotFoundError + | UnauthorizedOperation + | ApiDeletionFailedError union DeleteApiKeyError = ApiKeyNotFoundError | UnauthorizedOperation union DeleteClientByIdError = ClientNotFoundError | UnauthorizedOperation -union DeleteMcpFeatureCollectionByIdError = McpFeatureCollectionNotFoundError | UnauthorizedOperation +union DeleteMcpFeatureCollectionByIdError = + | McpFeatureCollectionNotFoundError + | UnauthorizedOperation -union DeleteMockSchemaByIdError = MockSchemaNotFoundError | UnauthorizedOperation +union DeleteMockSchemaByIdError = + | MockSchemaNotFoundError + | UnauthorizedOperation -union DeleteOpenApiCollectionByIdError = OpenApiCollectionNotFoundError | UnauthorizedOperation +union DeleteOpenApiCollectionByIdError = + | OpenApiCollectionNotFoundError + | UnauthorizedOperation union DeploymentEvent = DeploymentCreatedEvent | DeploymentUpdatedEvent -union DirectiveChange = ArgumentAdded | ArgumentChanged | ArgumentRemoved | DescriptionChanged | DirectiveLocationAdded | DirectiveLocationRemoved +union DirectiveChange = + | ArgumentAdded + | ArgumentChanged + | ArgumentRemoved + | DescriptionChanged + | DirectiveLocationAdded + | DirectiveLocationRemoved union EnsureTunnelSessionError = UnauthorizedOperation -union EnumChange = DescriptionChanged | EnumValueAdded | EnumValueChanged | EnumValueRemoved +union EnumChange = + | DescriptionChanged + | EnumValueAdded + | EnumValueChanged + | EnumValueRemoved union EnumValueChange = DeprecatedChange | DescriptionChanged -union FieldChange = ArgumentAdded | ArgumentChanged | ArgumentRemoved | DeprecatedChange | DescriptionChanged | TypeChanged - -union ForceDeleteStageByApiIdError = ApiNotFoundError | StageNotFoundError | UnauthorizedOperation - -union FusionConfigurationDeploymentError = PersistedQueryValidationError | McpFeatureCollectionValidationError | OpenApiCollectionValidationError | SchemaChangeViolationError | InvalidGraphQLSchemaError +union FieldChange = + | ArgumentAdded + | ArgumentChanged + | ArgumentRemoved + | DeprecatedChange + | DescriptionChanged + | TypeChanged + +union ForceDeleteStageByApiIdError = + | ApiNotFoundError + | StageNotFoundError + | UnauthorizedOperation + +union FusionConfigurationDeploymentError = + | PersistedQueryValidationError + | McpFeatureCollectionValidationError + | OpenApiCollectionValidationError + | SchemaChangeViolationError + | InvalidGraphQLSchemaError union InputFieldChange = DeprecatedChange | DescriptionChanged | TypeChanged -union InputObjectChange = DescriptionChanged | FieldAddedChange | FieldRemovedChange | InputFieldChanged - -union InterfaceChange = DescriptionChanged | FieldAddedChange | FieldRemovedChange | InterfaceImplementationAdded | InterfaceImplementationRemoved | OutputFieldChanged | PossibleTypeAdded | PossibleTypeRemoved +union InputObjectChange = + | DescriptionChanged + | FieldAddedChange + | FieldRemovedChange + | InputFieldChanged + +union InterfaceChange = + | DescriptionChanged + | FieldAddedChange + | FieldRemovedChange + | InterfaceImplementationAdded + | InterfaceImplementationRemoved + | OutputFieldChanged + | PossibleTypeAdded + | PossibleTypeRemoved union McpFeatureCollectionDeploymentError = McpFeatureCollectionValidationError -union ObjectChange = DescriptionChanged | FieldAddedChange | FieldRemovedChange | InterfaceImplementationAdded | InterfaceImplementationRemoved | OutputFieldChanged +union ObjectChange = + | DescriptionChanged + | FieldAddedChange + | FieldRemovedChange + | InterfaceImplementationAdded + | InterfaceImplementationRemoved + | OutputFieldChanged union OpenApiCollectionDeploymentError = OpenApiCollectionValidationError -union OutputFieldChange = ArgumentAdded | ArgumentChanged | ArgumentRemoved | DeprecatedChange | DescriptionChanged | TypeChanged - -union PollClientVersionPublishRequestError = ClientVersionRequestNotFoundError | UnauthorizedOperation - -union PollClientVersionValidationRequestError = ClientVersionRequestNotFoundError | UnauthorizedOperation - -union PollSchemaVersionPublishRequestError = SchemaVersionRequestNotFoundError | UnauthorizedOperation - -union PollSchemaVersionValidationRequestError = SchemaVersionRequestNotFoundError | UnauthorizedOperation - -union PublishClientError = StageNotFoundError | ClientNotFoundError | UnauthorizedOperation | ClientVersionNotFoundError | InvalidSourceMetadataInputError - -union PublishMcpFeatureCollectionError = StageNotFoundError | McpFeatureCollectionNotFoundError | UnauthorizedOperation | McpFeatureCollectionVersionNotFoundError | InvalidSourceMetadataInputError - -union PublishOpenApiCollectionError = StageNotFoundError | OpenApiCollectionNotFoundError | UnauthorizedOperation | OpenApiCollectionVersionNotFoundError | InvalidSourceMetadataInputError - -union PublishSchemaError = StageNotFoundError | ApiNotFoundError | SchemaNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError +union OutputFieldChange = + | ArgumentAdded + | ArgumentChanged + | ArgumentRemoved + | DeprecatedChange + | DescriptionChanged + | TypeChanged + +union PollClientVersionPublishRequestError = + | ClientVersionRequestNotFoundError + | UnauthorizedOperation + +union PollClientVersionValidationRequestError = + | ClientVersionRequestNotFoundError + | UnauthorizedOperation + +union PollSchemaVersionPublishRequestError = + | SchemaVersionRequestNotFoundError + | UnauthorizedOperation + +union PollSchemaVersionValidationRequestError = + | SchemaVersionRequestNotFoundError + | UnauthorizedOperation + +union PublishClientError = + | StageNotFoundError + | ClientNotFoundError + | UnauthorizedOperation + | ClientVersionNotFoundError + | InvalidSourceMetadataInputError + +union PublishMcpFeatureCollectionError = + | StageNotFoundError + | McpFeatureCollectionNotFoundError + | UnauthorizedOperation + | McpFeatureCollectionVersionNotFoundError + | InvalidSourceMetadataInputError + +union PublishOpenApiCollectionError = + | StageNotFoundError + | OpenApiCollectionNotFoundError + | UnauthorizedOperation + | OpenApiCollectionVersionNotFoundError + | InvalidSourceMetadataInputError + +union PublishSchemaError = + | StageNotFoundError + | ApiNotFoundError + | SchemaNotFoundError + | UnauthorizedOperation + | InvalidSourceMetadataInputError union PushDocumentChangesError = UnauthorizedOperation | ChangeStructureInvalid union PushWorkspaceChangesError = UnauthorizedOperation | ChangeStructureInvalid -union RemoveWorkspaceError = UnauthorizedOperation | WorkspaceNotFound | ValidationError +union RemoveWorkspaceError = + | UnauthorizedOperation + | WorkspaceNotFound + | ValidationError -union RenameWorkspaceError = UnauthorizedOperation | WorkspaceNotFound | ValidationError +union RenameWorkspaceError = + | UnauthorizedOperation + | WorkspaceNotFound + | ValidationError -union RevokePersonalAccessTokenError = UnauthorizedOperation | PersonalAccessTokenNotFoundError +union RevokePersonalAccessTokenError = + | UnauthorizedOperation + | PersonalAccessTokenNotFoundError union RoleAssignmentCondition = RoleAssignmentStageAuthorizationCondition union ScalarChange = DescriptionChanged -union SchemaChangeLogEntry = DirectiveModifiedChange | EnumModifiedChange | InputObjectModifiedChange | InterfaceModifiedChange | ObjectModifiedChange | ScalarModifiedChange | TypeSystemMemberAddedChange | TypeSystemMemberModifiedChange | TypeSystemMemberRemovedChange | UnionModifiedChange - -union SchemaDeploymentError = PersistedQueryValidationError | McpFeatureCollectionValidationError | OpenApiCollectionValidationError | SchemaChangeViolationError | OperationsAreNotAllowedError | SchemaVersionSyntaxError | InvalidGraphQLSchemaError - -union SchemaMemberChange = ArgumentAdded | ArgumentChanged | ArgumentRemoved | DescriptionChanged | DirectiveLocationAdded | DirectiveLocationRemoved | EnumValueAdded | EnumValueChanged | EnumValueRemoved | FieldAddedChange | FieldRemovedChange | InputFieldChanged | InterfaceImplementationAdded | InterfaceImplementationRemoved | OutputFieldChanged | PossibleTypeAdded | PossibleTypeRemoved | UnionMemberAdded | UnionMemberRemoved +union SchemaChangeLogEntry = + | DirectiveModifiedChange + | EnumModifiedChange + | InputObjectModifiedChange + | InterfaceModifiedChange + | ObjectModifiedChange + | ScalarModifiedChange + | TypeSystemMemberAddedChange + | TypeSystemMemberModifiedChange + | TypeSystemMemberRemovedChange + | UnionModifiedChange + +union SchemaDeploymentError = + | PersistedQueryValidationError + | McpFeatureCollectionValidationError + | OpenApiCollectionValidationError + | SchemaChangeViolationError + | OperationsAreNotAllowedError + | SchemaVersionSyntaxError + | InvalidGraphQLSchemaError + +union SchemaMemberChange = + | ArgumentAdded + | ArgumentChanged + | ArgumentRemoved + | DescriptionChanged + | DirectiveLocationAdded + | DirectiveLocationRemoved + | EnumValueAdded + | EnumValueChanged + | EnumValueRemoved + | FieldAddedChange + | FieldRemovedChange + | InputFieldChanged + | InterfaceImplementationAdded + | InterfaceImplementationRemoved + | OutputFieldChanged + | PossibleTypeAdded + | PossibleTypeRemoved + | UnionMemberAdded + | UnionMemberRemoved union SetActiveWorkspaceError = UnauthorizedOperation | WorkspaceNotFound @@ -4076,49 +5798,130 @@ union SourceMetadata = GitHubSourceMetadata union StageCondition = AfterStageCondition -union StartFusionConfigurationCompositionError = UnauthorizedOperation | FusionConfigurationRequestNotFoundError | InvalidProcessingStateTransitionError +union StartFusionConfigurationCompositionError = + | UnauthorizedOperation + | FusionConfigurationRequestNotFoundError + | InvalidProcessingStateTransitionError union UnionChange = DescriptionChanged | UnionMemberAdded | UnionMemberRemoved -union UnpublishClientError = StageNotFoundError | ClientNotFoundError | UnauthorizedOperation | ClientVersionNotFoundError | ConcurrentOperationError +union UnpublishClientError = + | StageNotFoundError + | ClientNotFoundError + | UnauthorizedOperation + | ClientVersionNotFoundError + | ConcurrentOperationError union UpdateApiSettingsError = ApiNotFoundError | UnauthorizedOperation union UpdateFeatureFlagsError = UnauthorizedOperation | ValidationError -union UpdateMockSchemaError = MockSchemaNonUniqueNameError | MockSchemaNotFoundError | UnauthorizedOperation | ValidationError +union UpdateMockSchemaError = + | MockSchemaNonUniqueNameError + | MockSchemaNotFoundError + | UnauthorizedOperation + | ValidationError union UpdatePreferencesError = UnauthorizedOperation | ValidationError -union UpdateStagesError = ApiNotFoundError | StageNotFoundError | StagesHavePublishedDependenciesError | StageValidationError +union UpdateStagesError = + | ApiNotFoundError + | StageNotFoundError + | StagesHavePublishedDependenciesError + | StageValidationError union UpdateThemeSettingsError = UnauthorizedOperation | ValidationError -union UploadClientError = ClientNotFoundError | ConcurrentOperationError | InvalidPersistedQueryError | UnauthorizedOperation | DuplicatedTagError | InvalidSourceMetadataInputError - -union UploadFusionSubgraphError = InvalidFusionSourceSchemaArchiveError | ApiNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError | InvalidSourceMetadataInputError - -union UploadMcpFeatureCollectionError = McpFeatureCollectionNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError | InvalidMcpFeatureCollectionArchiveError | InvalidSourceMetadataInputError - -union UploadOpenApiCollectionError = OpenApiCollectionNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError | InvalidOpenApiCollectionArchiveError | InvalidSourceMetadataInputError - -union UploadSchemaError = ApiNotFoundError | ConcurrentOperationError | DuplicatedTagError | UnauthorizedOperation | InvalidSourceMetadataInputError - -union ValidateClientError = StageNotFoundError | ClientNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError - -union ValidateFusionConfigurationCompositionError = UnauthorizedOperation | FusionConfigurationRequestNotFoundError | InvalidProcessingStateTransitionError - -union ValidateMcpFeatureCollectionError = StageNotFoundError | McpFeatureCollectionNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError - -union ValidateOpenApiCollectionError = StageNotFoundError | OpenApiCollectionNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError - -union ValidateSchemaError = StageNotFoundError | SchemaNotFoundError | ApiNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError - -union WorkspaceChangeError = ChangeValidationFailed | HasBeenChangedConflict | HasBeenDeletedConflict | IdentifierCollisionConflict | UnexpectedErrorOnChange | WorkspaceNotFoundForChange - -union WorkspaceChangeResult = ApiDocument | Api | WorkspaceDocument | Environment - -union WorkspaceDocumentChangeError = DocumentChangedConflict | DocumentNameCollisionConflict | DocumentDeletionConflict | UnexpectedErrorOnDocumentChange | DocumentChangeValidationFailed | WorkspaceNotFoundForDocument +union UploadClientError = + | ClientNotFoundError + | ConcurrentOperationError + | InvalidPersistedQueryError + | UnauthorizedOperation + | DuplicatedTagError + | InvalidSourceMetadataInputError + +union UploadFusionSubgraphError = + | InvalidFusionSourceSchemaArchiveError + | ApiNotFoundError + | ConcurrentOperationError + | UnauthorizedOperation + | DuplicatedTagError + | InvalidSourceMetadataInputError + +union UploadMcpFeatureCollectionError = + | McpFeatureCollectionNotFoundError + | ConcurrentOperationError + | UnauthorizedOperation + | DuplicatedTagError + | InvalidMcpFeatureCollectionArchiveError + | InvalidSourceMetadataInputError + +union UploadOpenApiCollectionError = + | OpenApiCollectionNotFoundError + | ConcurrentOperationError + | UnauthorizedOperation + | DuplicatedTagError + | InvalidOpenApiCollectionArchiveError + | InvalidSourceMetadataInputError + +union UploadSchemaError = + | ApiNotFoundError + | ConcurrentOperationError + | DuplicatedTagError + | UnauthorizedOperation + | InvalidSourceMetadataInputError + +union ValidateClientError = + | StageNotFoundError + | ClientNotFoundError + | UnauthorizedOperation + | InvalidSourceMetadataInputError + +union ValidateFusionConfigurationCompositionError = + | UnauthorizedOperation + | FusionConfigurationRequestNotFoundError + | InvalidProcessingStateTransitionError + +union ValidateMcpFeatureCollectionError = + | StageNotFoundError + | McpFeatureCollectionNotFoundError + | UnauthorizedOperation + | InvalidSourceMetadataInputError + +union ValidateOpenApiCollectionError = + | StageNotFoundError + | OpenApiCollectionNotFoundError + | UnauthorizedOperation + | InvalidSourceMetadataInputError + +union ValidateSchemaError = + | StageNotFoundError + | SchemaNotFoundError + | ApiNotFoundError + | UnauthorizedOperation + | InvalidSourceMetadataInputError + +union WorkspaceChangeError = + | ChangeValidationFailed + | HasBeenChangedConflict + | HasBeenDeletedConflict + | IdentifierCollisionConflict + | UnexpectedErrorOnChange + | WorkspaceNotFoundForChange + +union WorkspaceChangeResult = + | ApiDocument + | Api + | WorkspaceDocument + | Environment + +union WorkspaceDocumentChangeError = + | DocumentChangedConflict + | DocumentNameCollisionConflict + | DocumentDeletionConflict + | UnexpectedErrorOnDocumentChange + | DocumentChangeValidationFailed + | WorkspaceNotFoundForDocument input ApiCreateChangeInput { httpConnection: ApiHttpConnectionInput @@ -4126,6 +5929,7 @@ input ApiCreateChangeInput { name: String! path: [String!]! referenceId: String! + referenceName: String workspaceId: ID! } @@ -4204,6 +6008,7 @@ input ApiUpdateChangeInput { name: String! path: [String!]! referenceId: String! + referenceName: String version: Version! workspaceId: ID! } @@ -4326,7 +6131,7 @@ input DeleteOpenApiCollectionByIdInput { input EnvironmentCreateChangeInput { name: String! referenceId: String! - variables: [EnvironmentVariableInput!]! = [ ] + variables: [EnvironmentVariableInput!]! = [] workspaceId: ID! } @@ -4341,7 +6146,7 @@ input EnvironmentUpdateChangeInput { id: ID! name: String! referenceId: String! - variables: [EnvironmentVariableInput!]! = [ ] + variables: [EnvironmentVariableInput!]! = [] version: Version! workspaceId: ID! } @@ -4407,6 +6212,29 @@ input OAuth2AuthenticationFlowOptionsInput { username: String! } +input OpenApiCollectionInsightsOrderByInput { + averageLatency: SortEnumType + errorRate: SortEnumType + impact: SortEnumType + opm: SortEnumType + totalCount: SortEnumType + totalCountWithError: SortEnumType +} + +input OpenApiEndpointOrderByInput { + errorRate: SortEnumType + meanDuration: SortEnumType + name: SortEnumType + opm: SortEnumType + totalRequests: SortEnumType +} + +input OpenApiModelOrderByInput { + name: SortEnumType + referencedByEndpointCount: SortEnumType + referencedInCollectionCount: SortEnumType +} + input OpenTelemetryTransactionInsightsOrderByInput { averageLatency: SortEnumType errorRate: SortEnumType @@ -4486,12 +6314,14 @@ input PublishSchemaInput { waitForApproval: Boolean! = false } +"@oneOf" input PushApiChangeInput { create: ApiCreateChangeInput delete: ApiDeleteChangeInput update: ApiUpdateChangeInput } +"@oneOf" input PushApiDocumentChangeInput { create: ApiDocumentCreateChangeInput delete: ApiDocumentDeleteChangeInput @@ -4502,12 +6332,14 @@ input PushDocumentChangeInput { changes: [WorkspaceDocumentInput!]! } +"@oneOf" input PushEnvironmentChangeInput { create: EnvironmentCreateChangeInput delete: EnvironmentDeleteChangeInput update: EnvironmentUpdateChangeInput } +"@oneOf" input PushWorkspaceChangeInput { api: PushApiChangeInput apiDocument: PushApiDocumentChangeInput @@ -4519,6 +6351,7 @@ input PushWorkspaceChangesInput { changes: [PushWorkspaceChangeInput!]! } +"@oneOf" input PushWorkspaceDocumentChangeInput { create: WorkspaceDocumentCreateChangeInput delete: WorkspaceDocumentDeleteChangeInput @@ -4568,7 +6401,7 @@ input StageConditionUpdateInput { } input StageUpdateInput { - conditions: [StageConditionUpdateInput!]! = [ ] + conditions: [StageConditionUpdateInput!]! = [] displayName: String! name: String! } @@ -4777,107 +6610,131 @@ input WorkspaceDocumentUpdateChangeInput { enum ApiKind { COLLECTION - SERVICE GATEWAY + SERVICE } "Defines when a policy shall be executed." enum ApplyPolicy { - "Before the resolver was executed." - BEFORE_RESOLVER "After the resolver was executed." AFTER_RESOLVER + "Before the resolver was executed." + BEFORE_RESOLVER "The policy is applied in the validation step before the execution." VALIDATION } enum AuthorizationEventEffect { ALLOW - DENY BYPASSED - UNSET + DENY OTHER + UNSET } enum AuthorizationEventType { - TENANT_ACCESS_BYPASSED - TENANT_ACCESS + OTHER PERMISSION_BYPASSED PERMISSION_MATCH PERMISSION_NO_MATCH - OTHER + TENANT_ACCESS + TENANT_ACCESS_BYPASSED } enum CoordinateKind { + DIRECTIVE + DIRECTIVE_ARGUMENT + ENUM_TYPE + ENUM_VALUE + INPUT_OBJECT_FIELD + INPUT_OBJECT_TYPE + INTERFACE_FIELD + INTERFACE_FIELD_ARGUMENT + INTERFACE_TYPE NONE - OBJECT_TYPE OBJECT_FIELD OBJECT_FIELD_ARGUMENT - INTERFACE_TYPE - INTERFACE_FIELD - INTERFACE_FIELD_ARGUMENT - UNION_TYPE - INPUT_OBJECT_TYPE - INPUT_OBJECT_FIELD - ENUM_TYPE - ENUM_VALUE + OBJECT_TYPE SCALAR_TYPE - DIRECTIVE - DIRECTIVE_ARGUMENT SCHEMA + UNION_TYPE } enum DeploymentStatus { + APPROVED + CANCELLED + FAILED + PROCESSING QUEUED READY - PROCESSING - WAITING_FOR_APPROVAL - APPROVED SUCCEEDED - FAILED - CANCELLED + WAITING_FOR_APPROVAL } +""" +A directive in GraphQL can be associated with various components of the GraphQL language. The +term DirectiveLocation refers to the specific points within the GraphQL schema +where a directive can be applied. +""" enum DirectiveLocation { - QUERY - MUTATION - SUBSCRIPTION + "Location adjacent to an argument definition" + ARGUMENT_DEFINITION + "Location adjacent to an enum definition." + ENUM + "Location adjacent to an enum value definition." + ENUM_VALUE + "Location adjacent to a field." FIELD + "Location adjacent to a field definition." + FIELD_DEFINITION + "Location adjacent to a fragment definition." FRAGMENT_DEFINITION + "Location adjacent to a fragment spread." FRAGMENT_SPREAD + "Location adjacent to an inline fragment." INLINE_FRAGMENT - VARIABLE_DEFINITION - SCHEMA - SCALAR - OBJECT - FIELD_DEFINITION - ARGUMENT_DEFINITION + "Location adjacent to an input object field definition." + INPUT_FIELD_DEFINITION + "Location adjacent to an input object type definition." + INPUT_OBJECT + "Location adjacent to an interface definition." INTERFACE + "Location adjacent to a mutation operation." + MUTATION + "Location adjacent to an object type definition." + OBJECT + "Location adjacent to a query operation." + QUERY + "Location adjacent to a scalar definition." + SCALAR + "Location adjacent to a schema definition." + SCHEMA + "Location adjacent to a subscription operation." + SUBSCRIPTION + "Location adjacent to a union definition." UNION - ENUM - ENUM_VALUE - INPUT_OBJECT - INPUT_FIELD_DEFINITION + "Location adjacent to a field." + VARIABLE_DEFINITION } enum FusionConfigurationFormat { - FGP FAR + FGP } enum OpenTelemetrySpanKind { - UNSPECIFIED - SERVER CLIENT + CONSUMER INTERNAL PRODUCER - CONSUMER + SERVER + UNSPECIFIED } enum OperationKind { + MUTATION QUERY SUBSCRIPTION - MUTATION } enum OrganizationPaymentMethod { @@ -4886,21 +6743,21 @@ enum OrganizationPaymentMethod { } enum OrganizationPlanType { - FREE - SERVERLESS DEDICATED + FREE SELF_HOSTED + SERVERLESS } enum ProcessingState { + APPROVED + CANCELLED + FAILED + PROCESSING QUEUED READY - PROCESSING SUCCESS - FAILED - CANCELLED WAITING_FOR_APPROVAL - APPROVED } enum RoleEffect { @@ -4911,9 +6768,9 @@ enum RoleEffect { } enum SchemaChangeSeverity { - SAFE - DANGEROUS BREAKING + DANGEROUS + SAFE } enum SortEnumType { @@ -4922,53 +6779,53 @@ enum SortEnumType { } enum StageChangeKind { - FUSION_CONFIGURATION CLIENT - OPEN_API_COLLECTION + FUSION_CONFIGURATION MCP_FEATURE_COLLECTION + OPEN_API_COLLECTION } enum StageChangeLogKind { - SCHEMA CLIENT FUSION_CONFIGURATION - OPEN_API_COLLECTION MCP_FEATURE_COLLECTION + OPEN_API_COLLECTION + SCHEMA } enum TypeSystemMemberKind { - OBJECT + DIRECTIVE ENUM INPUT_OBJECT - DIRECTIVE INTERFACE - UNION + OBJECT SCALAR + UNION } enum WorkspaceUserRole { - OWNER ADMINISTRATOR MEMBER + OWNER } -"The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`." -directive @defer("Deferred when true." if: Boolean "If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." label: String) on FRAGMENT_SPREAD | INLINE_FRAGMENT - -"The `@oneOf` directive is used within the type system definition language to indicate that an Input Object is a OneOf Input Object." -directive @oneOf on INPUT_OBJECT - -"The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions." -directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR - "The `Any` scalar type represents any valid GraphQL value." scalar Any @specifiedBy(url: "https://scalars.graphql.org/chillicream/any.html") "The `DateTime` scalar type represents a date and time with time zone offset information." -scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") +scalar DateTime + @specifiedBy(url: "https://scalars.graphql.org/chillicream/date-time.html") + +"The `Decimal` scalar type represents a decimal floating-point number with high precision." +scalar Decimal + @specifiedBy(url: "https://scalars.graphql.org/chillicream/decimal.html") "The `Long` scalar type represents a signed 64-bit integer." -scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +scalar Long + @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") + +"The `Upload` scalar type represents a file upload." +scalar Upload "The `URI` scalar type represents a Uniform Resource Identifier (URI) as defined by RFC 3986." scalar URI @specifiedBy(url: "https://scalars.graphql.org/chillicream/uri.html") @@ -4977,9 +6834,15 @@ scalar URI @specifiedBy(url: "https://scalars.graphql.org/chillicream/uri.html") scalar URL @specifiedBy(url: "https://scalars.graphql.org/chillicream/url.html") "The `UUID` scalar type represents a Universally Unique Identifier (UUID) as defined by RFC 9562." -scalar UUID @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") - -"The `Upload` scalar type represents a file upload." -scalar Upload +scalar UUID + @specifiedBy(url: "https://scalars.graphql.org/chillicream/uuid.html") scalar Version + +"The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`." +directive @defer( + "Deferred when true." + if: Boolean + "If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." + label: String +) on FRAGMENT_SPREAD | INLINE_FRAGMENT